From aa89e984742987b593052e93e7704314e8f72ca3 Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Tue, 22 Dec 2015 10:48:19 +0100 Subject: [PATCH 001/678] pkgs.boost: 1.59 -> 1.60 See http://www.boost.org/users/history/version_1_60_0.html --- pkgs/development/libraries/boost/1.60.nix | 11 +++++++++++ pkgs/top-level/all-packages.nix | 10 ++++++---- pkgs/top-level/python-packages.nix | 2 +- 3 files changed, 18 insertions(+), 5 deletions(-) create mode 100644 pkgs/development/libraries/boost/1.60.nix diff --git a/pkgs/development/libraries/boost/1.60.nix b/pkgs/development/libraries/boost/1.60.nix new file mode 100644 index 00000000000..b6d74234f79 --- /dev/null +++ b/pkgs/development/libraries/boost/1.60.nix @@ -0,0 +1,11 @@ +{ stdenv, callPackage, fetchurl, ... } @ args: + +callPackage ./generic.nix (args // rec { + version = "1.60.0"; + + src = fetchurl { + url = "mirror://sourceforge/boost/boost_1_60_0.tar.bz2"; + sha256 = "0fzx6dwqbrkd4bcd8pjv0fpapwmrxxwr8yx9g67lihlsk3zzysk8"; + }; + +}) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 82708cd30e5..0c1ed64f521 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1057,7 +1057,7 @@ let cdrkit = callPackage ../tools/cd-dvd/cdrkit { }; libceph = ceph.lib; - ceph = callPackage ../tools/filesystems/ceph { }; + ceph = callPackage ../tools/filesystems/ceph { boost = boost159; }; ceph-dev = ceph; #ceph-dev = lowPrio (callPackage ../tools/filesystems/ceph/dev.nix { }); @@ -4935,7 +4935,7 @@ let scala_2_11 = callPackage ../development/compilers/scala { }; scala = scala_2_11; - sdcc = callPackage ../development/compilers/sdcc { }; + sdcc = callPackage ../development/compilers/sdcc { boost = boost159; }; smlnjBootstrap = callPackage ../development/compilers/smlnj/bootstrap.nix { }; smlnj = if stdenv.isDarwin @@ -6179,7 +6179,8 @@ let boost155 = callPackage ../development/libraries/boost/1.55.nix { }; boost159 = callPackage ../development/libraries/boost/1.59.nix { }; - boost = boost159; + boost160 = callPackage ../development/libraries/boost/1.60.nix { }; + boost = boost160; boost_process = callPackage ../development/libraries/boost-process { }; @@ -9398,6 +9399,7 @@ let mariadb = callPackage ../servers/sql/mariadb { inherit (darwin) cctools; inherit (pkgs.darwin.apple_sdk.frameworks) CoreServices; + boost = boost159; }; mongodb = callPackage ../servers/nosql/mongodb { @@ -12973,7 +12975,7 @@ let demo = false; }; - rapcad = qt5.callPackage ../applications/graphics/rapcad {}; + rapcad = qt5.callPackage ../applications/graphics/rapcad { boost = boost159; }; rapidsvn = callPackage ../applications/version-management/rapidsvn { }; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ec17d9434a0..d2f295f67fe 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -8196,7 +8196,7 @@ in modules // { # py3k disabled, see https://travis-ci.org/NixOS/nixpkgs/builds/48759067 graph-tool = if isPy3k then throw "graph-tool in Nix doesn't support py3k yet" - else callPackage ../development/python-modules/graph-tool/2.x.x.nix { }; + else callPackage ../development/python-modules/graph-tool/2.x.x.nix { boost = pkgs.boost159; }; grappelli_safe = buildPythonPackage rec { version = "0.3.13"; From 424af2cd52c3c9a684ad595703fcf96eede5499c Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sat, 27 Feb 2016 21:47:34 +0100 Subject: [PATCH 002/678] patchelf: 0.8 -> 0.9 --- pkgs/development/tools/misc/patchelf/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/misc/patchelf/default.nix b/pkgs/development/tools/misc/patchelf/default.nix index 5aa81e46bed..50e5443ad5f 100644 --- a/pkgs/development/tools/misc/patchelf/default.nix +++ b/pkgs/development/tools/misc/patchelf/default.nix @@ -1,11 +1,12 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - name = "patchelf-0.8"; + name = "patchelf-0.9"; src = fetchurl { - url = "http://nixos.org/releases/patchelf/${name}/${name}.tar.bz2"; - sha256 = "c99f84d124347340c36707089ec8f70530abd56e7827c54d506eb4cc097a17e7"; + #url = "http://nixos.org/releases/patchelf/${name}/${name}.tar.bz2"; + url = http://hydra.nixos.org/build/32429884/download/2/patchelf-0.9pre265_498aa37.tar.bz2; + sha256 = "f762813ad493ad73afb7846a530fe2f5e40a5d89b7dba228ce0c62651e9c851e"; }; setupHook = [ ./setup-hook.sh ]; From a85ba820a409c84d97ca04cb02c12500927fb5e3 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sat, 27 Feb 2016 22:23:34 +0100 Subject: [PATCH 003/678] perl: Make 5.22 the default --- pkgs/development/interpreters/perl/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/interpreters/perl/default.nix b/pkgs/development/interpreters/perl/default.nix index d9158ad55ab..1a92f3aa007 100644 --- a/pkgs/development/interpreters/perl/default.nix +++ b/pkgs/development/interpreters/perl/default.nix @@ -113,7 +113,7 @@ let in rec { - perl = perl520; + perl = perl522; perl520 = common { version = "5.20.3"; From 015c7afffa9bf7c3ee92a852e16ce3a7d57363b7 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sat, 27 Feb 2016 23:15:31 +0100 Subject: [PATCH 004/678] findutils: 4.4.2 -> 4.6.0 The first findutils update in six years! Changes: https://lists.gnu.org/archive/html/info-gnu/2015-12/msg00014.html --- pkgs/tools/misc/findutils/change_echo_path.patch | 12 ------------ pkgs/tools/misc/findutils/default.nix | 14 +++++--------- .../misc/findutils/disable-test-canonicalize.patch | 12 ------------ pkgs/tools/misc/findutils/findutils-path.patch | 12 ------------ 4 files changed, 5 insertions(+), 45 deletions(-) delete mode 100644 pkgs/tools/misc/findutils/change_echo_path.patch delete mode 100644 pkgs/tools/misc/findutils/disable-test-canonicalize.patch delete mode 100644 pkgs/tools/misc/findutils/findutils-path.patch diff --git a/pkgs/tools/misc/findutils/change_echo_path.patch b/pkgs/tools/misc/findutils/change_echo_path.patch deleted file mode 100644 index 5bbd9aea9ac..00000000000 --- a/pkgs/tools/misc/findutils/change_echo_path.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -Naur findutils-4.2.30/xargs/xargs.c findutils-4.2.30_new/xargs/xargs.c ---- findutils-4.2.30/xargs/xargs.c 2007-02-27 11:21:08.000000000 +0100 -+++ findutils-4.2.30_new/xargs/xargs.c 2007-07-17 19:02:05.000000000 +0200 -@@ -402,7 +402,7 @@ - int show_limits = 0; /* --show-limits */ - int always_run_command = 1; - char *input_file = "-"; /* "-" is stdin */ -- char *default_cmd = "/bin/echo"; -+ char *default_cmd = "echo"; - int (*read_args) PARAMS ((void)) = read_line; - void (*act_on_init_result)(void) = noop; - int env_too_big = 0; diff --git a/pkgs/tools/misc/findutils/default.nix b/pkgs/tools/misc/findutils/default.nix index 16d53c9f436..64f791fb77b 100644 --- a/pkgs/tools/misc/findutils/default.nix +++ b/pkgs/tools/misc/findutils/default.nix @@ -1,16 +1,14 @@ -{stdenv, fetchurl, coreutils}: +{ stdenv, fetchurl, coreutils }: stdenv.mkDerivation rec { - name = "findutils-4.4.2"; + name = "findutils-4.6.0"; src = fetchurl { url = "mirror://gnu/findutils/${name}.tar.gz"; - sha256 = "0amn0bbwqvsvvsh6drfwz20ydc2czk374lzw5kksbh6bf78k4ks3"; + sha256 = "178nn4dl7wbcw499czikirnkniwnx36argdnqgz4ik9i6zvwkm6y"; }; - nativeBuildInputs = [coreutils]; - - patches = [ ./findutils-path.patch ./change_echo_path.patch ./disable-test-canonicalize.patch ]; + nativeBuildInputs = [ coreutils ]; doCheck = true; @@ -19,9 +17,7 @@ stdenv.mkDerivation rec { configureFlags = [ "gl_cv_func_wcwidth_works=yes" ]; }; - preConfigure = if stdenv.isCygwin then '' - sed -i gnulib/lib/fpending.h -e '/include /d' - '' else null; + enableParallelBuilding = true; meta = { homepage = http://www.gnu.org/software/findutils/; diff --git a/pkgs/tools/misc/findutils/disable-test-canonicalize.patch b/pkgs/tools/misc/findutils/disable-test-canonicalize.patch deleted file mode 100644 index 3a8d42eb560..00000000000 --- a/pkgs/tools/misc/findutils/disable-test-canonicalize.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -ruN findutils-4.4.2/tests/test-canonicalize.sh findutils-4.4.2_edited/tests/test-canonicalize.sh ---- findutils-4.4.2/tests/test-canonicalize.sh 2008-12-23 12:50:15.000000000 +0000 -+++ findutils-4.4.2_edited/tests/test-canonicalize.sh 2015-06-14 10:51:19.000000000 +0000 -@@ -1,5 +1,8 @@ - #!/bin/sh - -+# skipped because user might not have directory listing permission for all parents of TMPDIR -+exit 77 -+ - tmpfiles="" - trap 'rm -fr $tmpfiles' 1 2 3 15 - diff --git a/pkgs/tools/misc/findutils/findutils-path.patch b/pkgs/tools/misc/findutils/findutils-path.patch deleted file mode 100644 index be8d85be303..00000000000 --- a/pkgs/tools/misc/findutils/findutils-path.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -ruN findutils-4.2.20/locate/updatedb.sh findutils-4.2.20.new/locate/updatedb.sh ---- findutils-4.2.20/locate/updatedb.sh 2005-01-24 17:12:35.000000000 +0100 -+++ findutils-4.2.20.new/locate/updatedb.sh 2005-08-23 14:37:10.000000000 +0200 -@@ -141,7 +141,7 @@ - : ${code:=${LIBEXECDIR}/@code@} - - --PATH=/bin:/usr/bin:${BINDIR}; export PATH -+PATH=/bin:/usr/bin:${BINDIR}:${PATH}; export PATH - - : ${PRUNEFS="nfs NFS proc afs proc smbfs autofs iso9660 ncpfs coda devpts ftpfs devfs mfs sysfs shfs"} - From 817145ebbce3c69f0ace4f356103514b5b601bec Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 28 Feb 2016 01:10:35 +0100 Subject: [PATCH 005/678] binutils: 2.23.1 -> 2.26 There has been an abortive attempt to upgrade binutils in the past (see #909). Since we can't stay stuck at 2.23.1 forever, let's try again. --- .../tools/misc/binutils/default.nix | 10 +- .../misc/binutils/pt-pax-flags-20121023.patch | 1786 ----------------- .../tools/misc/binutils/pt-pax-flags.patch | 233 +++ 3 files changed, 239 insertions(+), 1790 deletions(-) delete mode 100644 pkgs/development/tools/misc/binutils/pt-pax-flags-20121023.patch create mode 100644 pkgs/development/tools/misc/binutils/pt-pax-flags.patch diff --git a/pkgs/development/tools/misc/binutils/default.nix b/pkgs/development/tools/misc/binutils/default.nix index 86d69d8da8c..944a5db07c7 100644 --- a/pkgs/development/tools/misc/binutils/default.nix +++ b/pkgs/development/tools/misc/binutils/default.nix @@ -2,7 +2,7 @@ , cross ? null, gold ? true, bison ? null }: -let basename = "binutils-2.23.1"; in +let basename = "binutils-2.26"; in with { inherit (stdenv.lib) optional optionals optionalString; }; @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "mirror://gnu/binutils/${basename}.tar.bz2"; - sha256 = "06bs5v5ndb4g5qx96d52lc818gkbskd1m0sz57314v887sqfbcia"; + sha256 = "1ngc2h3knhiw8s22l8y6afycfaxr5grviqy7mwvm4bsl14cf9b62"; }; patches = [ @@ -31,10 +31,12 @@ stdenv.mkDerivation rec { # Always add PaX flags section to ELF files. # This is needed, for instance, so that running "ldd" on a binary that is # PaX-marked to disable mprotect doesn't fail with permission denied. - ./pt-pax-flags-20121023.patch + ./pt-pax-flags.patch ]; - nativeBuildInputs = optional gold bison; + outputs = [ "out" "info" ]; + + nativeBuildInputs = [ bison ]; buildInputs = [ zlib ]; inherit noSysDirs; diff --git a/pkgs/development/tools/misc/binutils/pt-pax-flags-20121023.patch b/pkgs/development/tools/misc/binutils/pt-pax-flags-20121023.patch deleted file mode 100644 index bb0785fe192..00000000000 --- a/pkgs/development/tools/misc/binutils/pt-pax-flags-20121023.patch +++ /dev/null @@ -1,1786 +0,0 @@ ---- binutils-2.23/bfd/elf-bfd.h -+++ binutils-2.23/bfd/elf-bfd.h -@@ -1577,6 +1577,9 @@ struct elf_obj_tdata - /* Segment flags for the PT_GNU_STACK segment. */ - unsigned int stack_flags; - -+ /* Segment flags for the PT_PAX_FLAGS segment. */ -+ unsigned int pax_flags; -+ - /* Symbol version definitions in external objects. */ - Elf_Internal_Verdef *verdef; - ---- binutils-2.23/bfd/elf.c -+++ binutils-2.23/bfd/elf.c -@@ -1158,6 +1158,7 @@ get_segment_type (unsigned int p_type) - case PT_GNU_EH_FRAME: pt = "EH_FRAME"; break; - case PT_GNU_STACK: pt = "STACK"; break; - case PT_GNU_RELRO: pt = "RELRO"; break; -+ case PT_PAX_FLAGS: pt = "PAX_FLAGS"; break; - default: pt = NULL; break; - } - return pt; -@@ -2477,6 +2478,9 @@ bfd_section_from_phdr (bfd *abfd, Elf_Internal_Phdr *hdr, int hdr_index) - case PT_GNU_RELRO: - return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "relro"); - -+ case PT_PAX_FLAGS: -+ return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "pax_flags"); -+ - default: - /* Check for any processor-specific program segment types. */ - bed = get_elf_backend_data (abfd); -@@ -3551,6 +3555,11 @@ get_program_header_size (bfd *abfd, struct bfd_link_info *info) - ++segs; - } - -+ { -+ /* We need a PT_PAX_FLAGS segment. */ -+ ++segs; -+ } -+ - for (s = abfd->sections; s != NULL; s = s->next) - { - if ((s->flags & SEC_LOAD) != 0 -@@ -4153,6 +4162,20 @@ _bfd_elf_map_sections_to_segments (bfd *abfd, struct bfd_link_info *info) - } - } - -+ { -+ amt = sizeof (struct elf_segment_map); -+ m = bfd_zalloc (abfd, amt); -+ if (m == NULL) -+ goto error_return; -+ m->next = NULL; -+ m->p_type = PT_PAX_FLAGS; -+ m->p_flags = elf_tdata (abfd)->pax_flags; -+ m->p_flags_valid = 1; -+ -+ *pm = m; -+ pm = &m->next; -+ } -+ - free (sections); - elf_tdata (abfd)->segment_map = mfirst; - } -@@ -5417,7 +5440,8 @@ rewrite_elf_program_header (bfd *ibfd, bfd *obfd) - 6. PT_TLS segment includes only SHF_TLS sections. - 7. SHF_TLS sections are only in PT_TLS or PT_LOAD segments. - 8. PT_DYNAMIC should not contain empty sections at the beginning -- (with the possible exception of .dynamic). */ -+ (with the possible exception of .dynamic). -+ 9. PT_PAX_FLAGS segments do not include any sections. */ - #define IS_SECTION_IN_INPUT_SEGMENT(section, segment, bed) \ - ((((segment->p_paddr \ - ? IS_CONTAINED_BY_LMA (section, segment, segment->p_paddr) \ -@@ -5425,6 +5449,7 @@ rewrite_elf_program_header (bfd *ibfd, bfd *obfd) - && (section->flags & SEC_ALLOC) != 0) \ - || IS_NOTE (segment, section)) \ - && segment->p_type != PT_GNU_STACK \ -+ && segment->p_type != PT_PAX_FLAGS \ - && (segment->p_type != PT_TLS \ - || (section->flags & SEC_THREAD_LOCAL)) \ - && (segment->p_type == PT_LOAD \ ---- binutils-2.23/bfd/elflink.c -+++ binutils-2.23/bfd/elflink.c -@@ -5545,16 +5545,30 @@ bfd_elf_size_dynamic_sections (bfd *output_bfd, - return TRUE; - - bed = get_elf_backend_data (output_bfd); -+ -+ elf_tdata (output_bfd)->pax_flags = PF_NORANDEXEC; -+ if (info->execheap) -+ elf_tdata (output_bfd)->pax_flags |= PF_NOMPROTECT; -+ else if (info->noexecheap) -+ elf_tdata (output_bfd)->pax_flags |= PF_MPROTECT; -+ - if (info->execstack) -- elf_tdata (output_bfd)->stack_flags = PF_R | PF_W | PF_X; -+ { -+ elf_tdata (output_bfd)->stack_flags = PF_R | PF_W | PF_X; -+ elf_tdata (output_bfd)->pax_flags |= PF_EMUTRAMP; -+ } - else if (info->noexecstack) -- elf_tdata (output_bfd)->stack_flags = PF_R | PF_W; -+ { -+ elf_tdata (output_bfd)->stack_flags = PF_R | PF_W; -+ elf_tdata (output_bfd)->pax_flags |= PF_NOEMUTRAMP; -+ } - else - { - bfd *inputobj; - asection *notesec = NULL; - int exec = 0; - -+ elf_tdata (output_bfd)->pax_flags |= PF_NOEMUTRAMP; - for (inputobj = info->input_bfds; - inputobj; - inputobj = inputobj->link_next) -@@ -5567,7 +5581,11 @@ bfd_elf_size_dynamic_sections (bfd *output_bfd, - if (s) - { - if (s->flags & SEC_CODE) -- exec = PF_X; -+ { -+ elf_tdata (output_bfd)->pax_flags &= ~PF_NOEMUTRAMP; -+ elf_tdata (output_bfd)->pax_flags |= PF_EMUTRAMP; -+ exec = PF_X; -+ } - notesec = s; - } - else if (bed->default_execstack) ---- binutils-2.23/binutils/readelf.c -+++ binutils-2.23/binutils/readelf.c -@@ -2740,6 +2740,7 @@ get_segment_type (unsigned long p_type) - return "GNU_EH_FRAME"; - case PT_GNU_STACK: return "GNU_STACK"; - case PT_GNU_RELRO: return "GNU_RELRO"; -+ case PT_PAX_FLAGS: return "PAX_FLAGS"; - - default: - if ((p_type >= PT_LOPROC) && (p_type <= PT_HIPROC)) ---- binutils-2.23/include/bfdlink.h -+++ binutils-2.23/include/bfdlink.h -@@ -322,6 +322,14 @@ struct bfd_link_info - /* TRUE if PT_GNU_RELRO segment should be created. */ - unsigned int relro: 1; - -+ /* TRUE if PT_PAX_FLAGS segment should be created with PF_NOMPROTECT -+ flags. */ -+ unsigned int execheap: 1; -+ -+ /* TRUE if PT_PAX_FLAGS segment should be created with PF_MPROTECT -+ flags. */ -+ unsigned int noexecheap: 1; -+ - /* TRUE if .eh_frame_hdr section and PT_GNU_EH_FRAME ELF segment - should be created. */ - unsigned int eh_frame_hdr: 1; ---- binutils-2.23/include/elf/common.h -+++ binutils-2.23/include/elf/common.h -@@ -429,6 +429,7 @@ - #define PT_SUNW_EH_FRAME PT_GNU_EH_FRAME /* Solaris uses the same value */ - #define PT_GNU_STACK (PT_LOOS + 0x474e551) /* Stack flags */ - #define PT_GNU_RELRO (PT_LOOS + 0x474e552) /* Read-only after relocation */ -+#define PT_PAX_FLAGS (PT_LOOS + 0x5041580) /* PaX flags */ - - /* Program segment permissions, in program header p_flags field. */ - -@@ -439,6 +440,21 @@ - #define PF_MASKOS 0x0FF00000 /* New value, Oct 4, 1999 Draft */ - #define PF_MASKPROC 0xF0000000 /* Processor-specific reserved bits */ - -+/* Flags to control PaX behavior. */ -+ -+#define PF_PAGEEXEC (1 << 4) /* Enable PAGEEXEC */ -+#define PF_NOPAGEEXEC (1 << 5) /* Disable PAGEEXEC */ -+#define PF_SEGMEXEC (1 << 6) /* Enable SEGMEXEC */ -+#define PF_NOSEGMEXEC (1 << 7) /* Disable SEGMEXEC */ -+#define PF_MPROTECT (1 << 8) /* Enable MPROTECT */ -+#define PF_NOMPROTECT (1 << 9) /* Disable MPROTECT */ -+#define PF_RANDEXEC (1 << 10) /* Enable RANDEXEC */ -+#define PF_NORANDEXEC (1 << 11) /* Disable RANDEXEC */ -+#define PF_EMUTRAMP (1 << 12) /* Enable EMUTRAMP */ -+#define PF_NOEMUTRAMP (1 << 13) /* Disable EMUTRAMP */ -+#define PF_RANDMMAP (1 << 14) /* Enable RANDMMAP */ -+#define PF_NORANDMMAP (1 << 15) /* Disable RANDMMAP */ -+ - /* Values for section header, sh_type field. */ - - #define SHT_NULL 0 /* Section header table entry unused */ ---- binutils-2.23/ld/emultempl/elf32.em -+++ binutils-2.23/ld/emultempl/elf32.em -@@ -2285,6 +2285,16 @@ fragment <: -+[a-f0-9]+ <.text>: - [ ]*[a-f0-9]+: 0b 60 80 02 00 24 \[MMI\] addl r12=32,r1;; - [ ]*[a-f0-9]+: c0 c0 04 00 48 00 addl r12=24,r1 - [ ]*[a-f0-9]+: 00 00 04 00 nop.i 0x0;; ---- binutils-2.23/ld/testsuite/ld-ia64/merge2.d -+++ binutils-2.23/ld/testsuite/ld-ia64/merge2.d -@@ -4,7 +4,7 @@ - #objdump: -d - - #... --0+1e0 <.text>: -+[a-f0-9]+ <.text>: - [ ]*[a-f0-9]+: 0b 60 80 02 00 24 \[MMI\] addl r12=32,r1;; - [ ]*[a-f0-9]+: c0 c0 04 00 48 00 addl r12=24,r1 - [ ]*[a-f0-9]+: 00 00 04 00 nop.i 0x0;; ---- binutils-2.23/ld/testsuite/ld-ia64/merge3.d -+++ binutils-2.23/ld/testsuite/ld-ia64/merge3.d -@@ -4,7 +4,7 @@ - #objdump: -d - - #... --0+210 <.text>: -+[a-f0-9]+ <.text>: - [ ]*[a-f0-9]+: 0b 60 80 02 00 24 \[MMI\] addl r12=32,r1;; - [ ]*[a-f0-9]+: c0 40 05 00 48 00 addl r12=40,r1 - [ ]*[a-f0-9]+: 00 00 04 00 nop.i 0x0;; ---- binutils-2.23/ld/testsuite/ld-ia64/merge4.d -+++ binutils-2.23/ld/testsuite/ld-ia64/merge4.d -@@ -4,7 +4,7 @@ - #objdump: -d - - #... --0+240 <.text>: -+[a-f0-9]+ <.text>: - [ ]*[a-f0-9]+: 0b 60 80 02 00 24 \[MMI\] addl r12=32,r1;; - [ ]*[a-f0-9]+: c0 40 05 00 48 00 addl r12=40,r1 - [ ]*[a-f0-9]+: 00 00 04 00 nop.i 0x0;; ---- binutils-2.23/ld/testsuite/ld-ia64/merge5.d -+++ binutils-2.23/ld/testsuite/ld-ia64/merge5.d -@@ -4,7 +4,7 @@ - #objdump: -d - - #... --0+270 <.text>: -+[a-f0-9]+ <.text>: - [ ]*[a-f0-9]+: 0b 60 80 02 00 24 \[MMI\] addl r12=32,r1;; - [ ]*[a-f0-9]+: c0 40 05 00 48 00 addl r12=40,r1 - [ ]*[a-f0-9]+: 00 00 04 00 nop.i 0x0;; ---- binutils-2.23/ld/testsuite/ld-ia64/tlsbin.rd -+++ binutils-2.23/ld/testsuite/ld-ia64/tlsbin.rd -@@ -36,13 +36,14 @@ There are [0-9]+ program headers, starting at offset [0-9]+ - - Program Headers: - +Type +Offset +VirtAddr +PhysAddr +FileSiz +MemSiz +Flg Align -- +PHDR +0x0+40 0x40+40 0x40+40 0x0+188 0x0+188 R E 0x8 -- +INTERP +0x0+1c8 0x40+1c8 0x40+1c8 0x[0-9a-f]+ 0x[0-9a-f]+ R +0x1 -+ +PHDR +0x0+40 0x40+40 0x40+40 (0x[0-9a-f]+) \1 R E 0x8 -+ +INTERP +0x0+([0-9a-f]+) (0x40+\1) \2 0x[0-9a-f]+ 0x[0-9a-f]+ R +0x1 - .*Requesting program interpreter.* - +LOAD +0x0+ 0x40+ 0x40+ 0x0+1[0-9a-f]+ 0x0+1[0-9a-f]+ R E 0x10000 - +LOAD +0x0+1[0-9a-f]+ 0x60+1[0-9a-f]+ 0x60+1[0-9a-f]+ 0x0+0[0-9a-f]+ 0x0+0[0-9a-f]+ RW +0x10000 - +DYNAMIC +0x0+1[0-9a-f]+ 0x60+1[0-9a-f]+ 0x60+1[0-9a-f]+ 0x0+150 0x0+150 RW +0x8 - +TLS +0x0+1[0-9a-f]+ 0x60+1[0-9a-f]+ 0x60+1[0-9a-f]+ 0x0+60 0x0+a0 R +0x4 -+ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] - +IA_64_UNWIND .* R +0x8 - #... - ---- binutils-2.23/ld/testsuite/ld-ia64/tlspic.rd -+++ binutils-2.23/ld/testsuite/ld-ia64/tlspic.rd -@@ -40,6 +40,7 @@ Program Headers: - +LOAD +0x0+1[0-9a-f]+ 0x0+11[0-9a-f]+ 0x0+11[0-9a-f]+ 0x0+0[0-9a-f]+ 0x0+0[0-9a-f]+ RW +0x10000 - +DYNAMIC +0x0+1[0-9a-f]+ 0x0+11[0-9a-f]+ 0x0+11[0-9a-f]+ 0x0+140 0x0+140 RW +0x8 - +TLS +0x0+1[0-9a-f]+ 0x0+11[0-9a-f]+ 0x0+11[0-9a-f]+ 0x0+60 0x0+80 R +0x4 -+ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] - +IA_64_UNWIND +0x0+1[0-9a-f]+ 0x0+1[0-9a-f]+ 0x0+1[0-9a-f]+ 0x0+18 0x0+18 R +0x8 - #... - ---- binutils-2.23/ld/testsuite/ld-mips-elf/multi-got-no-shared.d -+++ binutils-2.23/ld/testsuite/ld-mips-elf/multi-got-no-shared.d -@@ -8,9 +8,9 @@ - .*: +file format.* - - Disassembly of section \.text: --004000b0 <[^>]*> 3c1c0043 lui gp,0x43 --004000b4 <[^>]*> 279c9ff0 addiu gp,gp,-24592 --004000b8 <[^>]*> afbc0008 sw gp,8\(sp\) -+004000d0 <[^>]*> 3c1c0043 lui gp,0x43 -+004000d4 <[^>]*> 279c9ff0 addiu gp,gp,-24592 -+004000d8 <[^>]*> afbc0008 sw gp,8\(sp\) - #... - 00408d60 <[^>]*> 3c1c0043 lui gp,0x43 - 00408d64 <[^>]*> 279c2c98 addiu gp,gp,11416 ---- binutils-2.23/ld/testsuite/ld-mips-elf/pic-and-nonpic-3a.sd -+++ binutils-2.23/ld/testsuite/ld-mips-elf/pic-and-nonpic-3a.sd -@@ -1,7 +1,7 @@ - - Elf file type is DYN \(Shared object file\) - Entry point .* --There are 5 program headers, starting at offset .* -+There are [0-9] program headers, starting at offset .* - - Program Headers: - * Type * Offset * VirtAddr * PhysAddr * FileSiz * MemSiz * Flg * Align -@@ -9,6 +9,7 @@ Program Headers: - * LOAD * [^ ]+ * 0x0+00000 * 0x0+00000 [^ ]+ * [^ ]+ * R E * 0x.* - * LOAD * [^ ]+ * 0x0+10000 * 0x0+10000 [^ ]+ * [^ ]+ * RW * 0x.* - * DYNAMIC * [^ ]+ * 0x0+00400 * 0x0+00400 .* -+ * PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] - * NULL * .* - - *Section to Segment mapping: -@@ -18,3 +19,4 @@ Program Headers: - *0*2 * \.data \.got * - *0*3 * \.dynamic * - *0*4 * -+ *0*5 * ---- binutils-2.23/ld/testsuite/ld-mips-elf/pic-and-nonpic-3b.sd -+++ binutils-2.23/ld/testsuite/ld-mips-elf/pic-and-nonpic-3b.sd -@@ -1,7 +1,7 @@ - - Elf file type is EXEC \(Executable file\) - Entry point 0x44000 --There are 8 program headers, starting at offset .* -+There are [0-9] program headers, starting at offset .* - - Program Headers: - * Type * Offset * VirtAddr * PhysAddr * FileSiz * MemSiz * Flg * Align -@@ -13,6 +13,7 @@ Program Headers: - * LOAD * [^ ]+ * 0x0+80000 * 0x0+80000 [^ ]+ * [^ ]+ * RW * 0x.* - * LOAD * [^ ]+ * 0x0+a0000 * 0x0+a0000 [^ ]+ * [^ ]+ * RW * 0x.* - * DYNAMIC * [^ ]+ * 0x0+42000 * 0x0+42000 .* -+ * PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] - * NULL * .* - - *Section to Segment mapping: -@@ -25,3 +26,4 @@ Program Headers: - *0*5 *\.got \.data * - *0*6 *\.dynamic * - *0*7 * -+ *0*8 * ---- binutils-2.23/ld/testsuite/ld-mips-elf/pic-and-nonpic-4b.sd -+++ binutils-2.23/ld/testsuite/ld-mips-elf/pic-and-nonpic-4b.sd -@@ -1,7 +1,7 @@ - - Elf file type is EXEC \(Executable file\) - Entry point 0x44000 --There are 8 program headers, starting at offset .* -+There are [0-9] program headers, starting at offset .* - - Program Headers: - * Type * Offset * VirtAddr * PhysAddr * FileSiz * MemSiz * Flg * Align -@@ -13,6 +13,7 @@ Program Headers: - * LOAD * [^ ]+ * 0x0+80000 * 0x0+80000 [^ ]+ * [^ ]+ * RW * 0x.* - * LOAD * [^ ]+ * 0x0+a0000 * 0x0+a0000 [^ ]+ * [^ ]+ * RW * 0x.* - * DYNAMIC * [^ ]+ * 0x0+42000 * 0x0+42000 .* -+ * PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] - * NULL * .* - - *Section to Segment mapping: -@@ -25,3 +26,4 @@ Program Headers: - *0*5 * \.got \.data \.bss * - *0*6 * \.dynamic * - *0*7 * -+ *0*8 * ---- binutils-2.23/ld/testsuite/ld-mips-elf/pic-and-nonpic-5b.sd -+++ binutils-2.23/ld/testsuite/ld-mips-elf/pic-and-nonpic-5b.sd -@@ -1,7 +1,7 @@ - - Elf file type is EXEC \(Executable file\) - Entry point 0x44000 --There are 8 program headers, starting at offset .* -+There are [0-9] program headers, starting at offset .* - - Program Headers: - * Type * Offset * VirtAddr * PhysAddr * FileSiz * MemSiz * Flg * Align -@@ -13,6 +13,7 @@ Program Headers: - * LOAD * [^ ]+ * 0x0+80000 * 0x0+80000 [^ ]+ * [^ ]+ * RW * 0x.* - * LOAD * [^ ]+ * 0x0+a0000 * 0x0+a0000 [^ ]+ * [^ ]+ * RW * 0x.* - * DYNAMIC * [^ ]+ * 0x0+42000 * 0x0+42000 .* -+ * PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] - * NULL * .* - - *Section to Segment mapping: -@@ -25,3 +26,4 @@ Program Headers: - *0*5 * \.got \.data \.bss * - *0*6 * \.dynamic * - *0*7 * -+ *0*8 * ---- binutils-2.23/ld/testsuite/ld-mips-elf/pic-and-nonpic-6-n32.sd -+++ binutils-2.23/ld/testsuite/ld-mips-elf/pic-and-nonpic-6-n32.sd -@@ -1,7 +1,7 @@ - - Elf file type is EXEC \(Executable file\) - Entry point 0x44000 --There are 8 program headers, starting at offset .* -+There are [0-9] program headers, starting at offset .* - - Program Headers: - * Type * Offset * VirtAddr * PhysAddr * FileSiz * MemSiz * Flg * Align -@@ -13,6 +13,7 @@ Program Headers: - * LOAD * [^ ]+ * 0x0+80000 * 0x0+80000 [^ ]+ * [^ ]+ * RW * 0x.* - * LOAD * [^ ]+ * 0x0+a0000 * 0x0+a0000 [^ ]+ * [^ ]+ * RW * 0x.* - * DYNAMIC * [^ ]+ * 0x0+42000 * 0x0+42000 .* -+ * PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] - * NULL * .* - - *Section to Segment mapping: -@@ -25,3 +26,4 @@ Program Headers: - *0*5 * \.got \.data \.bss * - *0*6 * \.dynamic * - *0*7 * -+ *0*8 * ---- binutils-2.23/ld/testsuite/ld-mips-elf/pic-and-nonpic-6-n64.sd -+++ binutils-2.23/ld/testsuite/ld-mips-elf/pic-and-nonpic-6-n64.sd -@@ -1,7 +1,7 @@ - - Elf file type is EXEC \(Executable file\) - Entry point 0x44000 --There are 7 program headers, starting at offset .* -+There are [0-9] program headers, starting at offset .* - - Program Headers: - * Type * Offset * VirtAddr * PhysAddr * FileSiz * MemSiz * Flg * Align -@@ -12,6 +12,7 @@ Program Headers: - * LOAD * [^ ]+ * 0x0+80000 * 0x0+80000 [^ ]+ * [^ ]+ * RW * 0x.* - * LOAD * [^ ]+ * 0x0+a0000 * 0x0+a0000 [^ ]+ * [^ ]+ * RW * 0x.* - * DYNAMIC * [^ ]+ * 0x0+42000 * 0x0+42000 .* -+ * PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] - * NULL * .* - - *Section to Segment mapping: -@@ -23,3 +24,4 @@ Program Headers: - *0*4 * \.got \.data \.bss * - *0*5 * \.dynamic * - *0*6 * -+ *0*7 * ---- binutils-2.23/ld/testsuite/ld-mips-elf/pic-and-nonpic-6-o32.sd -+++ binutils-2.23/ld/testsuite/ld-mips-elf/pic-and-nonpic-6-o32.sd -@@ -1,7 +1,7 @@ - - Elf file type is EXEC \(Executable file\) - Entry point 0x44000 --There are 8 program headers, starting at offset .* -+There are [0-9] program headers, starting at offset .* - - Program Headers: - * Type * Offset * VirtAddr * PhysAddr * FileSiz * MemSiz * Flg * Align -@@ -13,6 +13,7 @@ Program Headers: - * LOAD * [^ ]+ * 0x0+80000 * 0x0+80000 [^ ]+ * [^ ]+ * RW * 0x.* - * LOAD * [^ ]+ * 0x0+a0000 * 0x0+a0000 [^ ]+ * [^ ]+ * RW * 0x.* - * DYNAMIC * [^ ]+ * 0x0+42000 * 0x0+42000 .* -+ * PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] - * NULL * .* - - *Section to Segment mapping: -@@ -25,3 +26,4 @@ Program Headers: - *0*5 * \.got \.data \.bss * - *0*6 * \.dynamic * - *0*7 * -+ *0*8 * ---- binutils-2.23/ld/testsuite/ld-mips-elf/tlsbin-o32.d -+++ binutils-2.23/ld/testsuite/ld-mips-elf/tlsbin-o32.d -@@ -2,42 +2,42 @@ - - Disassembly of section .text: - --004000d0 <__start>: -- 4000d0: 3c1c0fc0 lui gp,0xfc0 -- 4000d4: 279c7f30 addiu gp,gp,32560 -- 4000d8: 0399e021 addu gp,gp,t9 -- 4000dc: 27bdfff0 addiu sp,sp,-16 -- 4000e0: afbe0008 sw s8,8\(sp\) -- 4000e4: 03a0f021 move s8,sp -- 4000e8: afbc0000 sw gp,0\(sp\) -- 4000ec: 8f998018 lw t9,-32744\(gp\) -- 4000f0: 27848028 addiu a0,gp,-32728 -- 4000f4: 0320f809 jalr t9 -- 4000f8: 00000000 nop -- 4000fc: 8fdc0000 lw gp,0\(s8\) -- 400100: 00000000 nop -- 400104: 8f998018 lw t9,-32744\(gp\) -- 400108: 27848020 addiu a0,gp,-32736 -- 40010c: 0320f809 jalr t9 -- 400110: 00000000 nop -- 400114: 8fdc0000 lw gp,0\(s8\) -- 400118: 00401021 move v0,v0 -- 40011c: 3c030000 lui v1,0x0 -- 400120: 24638000 addiu v1,v1,-32768 -- 400124: 00621821 addu v1,v1,v0 -- 400128: 7c02283b rdhwr v0,\$5 -- 40012c: 8f83801c lw v1,-32740\(gp\) -- 400130: 00000000 nop -- 400134: 00621821 addu v1,v1,v0 -- 400138: 7c02283b rdhwr v0,\$5 -- 40013c: 3c030000 lui v1,0x0 -- 400140: 24639004 addiu v1,v1,-28668 -- 400144: 00621821 addu v1,v1,v0 -- 400148: 03c0e821 move sp,s8 -- 40014c: 8fbe0008 lw s8,8\(sp\) -- 400150: 03e00008 jr ra -- 400154: 27bd0010 addiu sp,sp,16 -+00400[0-9a-f]{3} <__start>: -+ 400[0-9a-f]{3}: 3c1c0fc0 lui gp,0xfc0 -+ 400[0-9a-f]{3}: 279c7f30 addiu gp,gp,32560 -+ 400[0-9a-f]{3}: 0399e021 addu gp,gp,t9 -+ 400[0-9a-f]{3}: 27bdfff0 addiu sp,sp,-16 -+ 400[0-9a-f]{3}: afbe0008 sw s8,8\(sp\) -+ 400[0-9a-f]{3}: 03a0f021 move s8,sp -+ 400[0-9a-f]{3}: afbc0000 sw gp,0\(sp\) -+ 400[0-9a-f]{3}: 8f998018 lw t9,-32744\(gp\) -+ 400[0-9a-f]{3}: 27848028 addiu a0,gp,-32728 -+ 400[0-9a-f]{3}: 0320f809 jalr t9 -+ 400[0-9a-f]{3}: 00000000 nop -+ 400[0-9a-f]{3}: 8fdc0000 lw gp,0\(s8\) -+ 400[0-9a-f]{3}: 00000000 nop -+ 400[0-9a-f]{3}: 8f998018 lw t9,-32744\(gp\) -+ 400[0-9a-f]{3}: 27848020 addiu a0,gp,-32736 -+ 400[0-9a-f]{3}: 0320f809 jalr t9 -+ 400[0-9a-f]{3}: 00000000 nop -+ 400[0-9a-f]{3}: 8fdc0000 lw gp,0\(s8\) -+ 400[0-9a-f]{3}: 00401021 move v0,v0 -+ 400[0-9a-f]{3}: 3c030000 lui v1,0x0 -+ 400[0-9a-f]{3}: 24638000 addiu v1,v1,-32768 -+ 400[0-9a-f]{3}: 00621821 addu v1,v1,v0 -+ 400[0-9a-f]{3}: 7c02283b rdhwr v0,\$5 -+ 400[0-9a-f]{3}: 8f83801c lw v1,-32740\(gp\) -+ 400[0-9a-f]{3}: 00000000 nop -+ 400[0-9a-f]{3}: 00621821 addu v1,v1,v0 -+ 400[0-9a-f]{3}: 7c02283b rdhwr v0,\$5 -+ 400[0-9a-f]{3}: 3c030000 lui v1,0x0 -+ 400[0-9a-f]{3}: 24639004 addiu v1,v1,-28668 -+ 400[0-9a-f]{3}: 00621821 addu v1,v1,v0 -+ 400[0-9a-f]{3}: 03c0e821 move sp,s8 -+ 400[0-9a-f]{3}: 8fbe0008 lw s8,8\(sp\) -+ 400[0-9a-f]{3}: 03e00008 jr ra -+ 400[0-9a-f]{3}: 27bd0010 addiu sp,sp,16 - --00400158 <__tls_get_addr>: -- 400158: 03e00008 jr ra -- 40015c: 00000000 nop -+00400[0-9a-f]{3} <__tls_get_addr>: -+ 400[0-9a-f]{3}: 03e00008 jr ra -+ 400[0-9a-f]{3}: 00000000 nop ---- binutils-2.23/ld/testsuite/ld-powerpc/tls.d -+++ binutils-2.23/ld/testsuite/ld-powerpc/tls.d -@@ -9,45 +9,45 @@ - - Disassembly of section \.text: - --0+100000e8 <_start>: -- 100000e8: 3c 6d 00 00 addis r3,r13,0 -- 100000ec: 60 00 00 00 nop -- 100000f0: 38 63 90 78 addi r3,r3,-28552 -- 100000f4: 3c 6d 00 00 addis r3,r13,0 -- 100000f8: 60 00 00 00 nop -- 100000fc: 38 63 10 00 addi r3,r3,4096 -- 10000100: 3c 6d 00 00 addis r3,r13,0 -- 10000104: 60 00 00 00 nop -- 10000108: 38 63 90 40 addi r3,r3,-28608 -- 1000010c: 3c 6d 00 00 addis r3,r13,0 -- 10000110: 60 00 00 00 nop -- 10000114: 38 63 10 00 addi r3,r3,4096 -- 10000118: 39 23 80 48 addi r9,r3,-32696 -- 1000011c: 3d 23 00 00 addis r9,r3,0 -- 10000120: 81 49 80 50 lwz r10,-32688\(r9\) -- 10000124: e9 22 80 10 ld r9,-32752\(r2\) -- 10000128: 7d 49 18 2a ldx r10,r9,r3 -- 1000012c: 3d 2d 00 00 addis r9,r13,0 -- 10000130: a1 49 90 60 lhz r10,-28576\(r9\) -- 10000134: 89 4d 90 68 lbz r10,-28568\(r13\) -- 10000138: 3d 2d 00 00 addis r9,r13,0 -- 1000013c: 99 49 90 70 stb r10,-28560\(r9\) -- 10000140: 3c 6d 00 00 addis r3,r13,0 -- 10000144: 60 00 00 00 nop -- 10000148: 38 63 90 00 addi r3,r3,-28672 -- 1000014c: 3c 6d 00 00 addis r3,r13,0 -- 10000150: 60 00 00 00 nop -- 10000154: 38 63 10 00 addi r3,r3,4096 -- 10000158: f9 43 80 08 std r10,-32760\(r3\) -- 1000015c: 3d 23 00 00 addis r9,r3,0 -- 10000160: 91 49 80 10 stw r10,-32752\(r9\) -- 10000164: e9 22 80 08 ld r9,-32760\(r2\) -- 10000168: 7d 49 19 2a stdx r10,r9,r3 -- 1000016c: 3d 2d 00 00 addis r9,r13,0 -- 10000170: b1 49 90 60 sth r10,-28576\(r9\) -- 10000174: e9 4d 90 2a lwa r10,-28632\(r13\) -- 10000178: 3d 2d 00 00 addis r9,r13,0 -- 1000017c: a9 49 90 30 lha r10,-28624\(r9\) -+0+10000[0-9a-f]{3} <_start>: -+ 10000[0-9a-f]{3}: 3c 6d 00 00 addis r3,r13,0 -+ 10000[0-9a-f]{3}: 60 00 00 00 nop -+ 10000[0-9a-f]{3}: 38 63 90 78 addi r3,r3,-28552 -+ 10000[0-9a-f]{3}: 3c 6d 00 00 addis r3,r13,0 -+ 10000[0-9a-f]{3}: 60 00 00 00 nop -+ 10000[0-9a-f]{3}: 38 63 10 00 addi r3,r3,4096 -+ 10000[0-9a-f]{3}: 3c 6d 00 00 addis r3,r13,0 -+ 10000[0-9a-f]{3}: 60 00 00 00 nop -+ 10000[0-9a-f]{3}: 38 63 90 40 addi r3,r3,-28608 -+ 10000[0-9a-f]{3}: 3c 6d 00 00 addis r3,r13,0 -+ 10000[0-9a-f]{3}: 60 00 00 00 nop -+ 10000[0-9a-f]{3}: 38 63 10 00 addi r3,r3,4096 -+ 10000[0-9a-f]{3}: 39 23 80 48 addi r9,r3,-32696 -+ 10000[0-9a-f]{3}: 3d 23 00 00 addis r9,r3,0 -+ 10000[0-9a-f]{3}: 81 49 80 50 lwz r10,-32688\(r9\) -+ 10000[0-9a-f]{3}: e9 22 80 10 ld r9,-32752\(r2\) -+ 10000[0-9a-f]{3}: 7d 49 18 2a ldx r10,r9,r3 -+ 10000[0-9a-f]{3}: 3d 2d 00 00 addis r9,r13,0 -+ 10000[0-9a-f]{3}: a1 49 90 60 lhz r10,-28576\(r9\) -+ 10000[0-9a-f]{3}: 89 4d 90 68 lbz r10,-28568\(r13\) -+ 10000[0-9a-f]{3}: 3d 2d 00 00 addis r9,r13,0 -+ 10000[0-9a-f]{3}: 99 49 90 70 stb r10,-28560\(r9\) -+ 10000[0-9a-f]{3}: 3c 6d 00 00 addis r3,r13,0 -+ 10000[0-9a-f]{3}: 60 00 00 00 nop -+ 10000[0-9a-f]{3}: 38 63 90 00 addi r3,r3,-28672 -+ 10000[0-9a-f]{3}: 3c 6d 00 00 addis r3,r13,0 -+ 10000[0-9a-f]{3}: 60 00 00 00 nop -+ 10000[0-9a-f]{3}: 38 63 10 00 addi r3,r3,4096 -+ 10000[0-9a-f]{3}: f9 43 80 08 std r10,-32760\(r3\) -+ 10000[0-9a-f]{3}: 3d 23 00 00 addis r9,r3,0 -+ 10000[0-9a-f]{3}: 91 49 80 10 stw r10,-32752\(r9\) -+ 10000[0-9a-f]{3}: e9 22 80 08 ld r9,-32760\(r2\) -+ 10000[0-9a-f]{3}: 7d 49 19 2a stdx r10,r9,r3 -+ 10000[0-9a-f]{3}: 3d 2d 00 00 addis r9,r13,0 -+ 10000[0-9a-f]{3}: b1 49 90 60 sth r10,-28576\(r9\) -+ 10000[0-9a-f]{3}: e9 4d 90 2a lwa r10,-28632\(r13\) -+ 10000[0-9a-f]{3}: 3d 2d 00 00 addis r9,r13,0 -+ 10000[0-9a-f]{3}: a9 49 90 30 lha r10,-28624\(r9\) - --0+10000180 <\.__tls_get_addr>: -- 10000180: 4e 80 00 20 blr -+0+10000[0-9a-f]{3} <\.__tls_get_addr>: -+ 10000[0-9a-f]{3}: 4e 80 00 20 blr ---- binutils-2.23/ld/testsuite/ld-powerpc/tls.g -+++ binutils-2.23/ld/testsuite/ld-powerpc/tls.g -@@ -8,5 +8,5 @@ - .*: +file format elf64-powerpc - - Contents of section \.got: -- 100101e0 00000000 100181e0 ffffffff ffff8018 .* -- 100101f0 ffffffff ffff8058 .* -+ 10010([0-9a-f]{3}) 00000000 10018\1 ffffffff ffff8018 .* -+ 10010[0-9a-f]{3} ffffffff ffff8058 .* ---- binutils-2.23/ld/testsuite/ld-powerpc/tls32.d -+++ binutils-2.23/ld/testsuite/ld-powerpc/tls32.d -@@ -9,42 +9,42 @@ - - Disassembly of section \.text: - --0+1800094 <_start>: -- 1800094: 3c 62 00 00 addis r3,r2,0 -- 1800098: 38 63 90 3c addi r3,r3,-28612 -- 180009c: 3c 62 00 00 addis r3,r2,0 -- 18000a0: 38 63 10 00 addi r3,r3,4096 -- 18000a4: 3c 62 00 00 addis r3,r2,0 -- 18000a8: 38 63 90 20 addi r3,r3,-28640 -- 18000ac: 3c 62 00 00 addis r3,r2,0 -- 18000b0: 38 63 10 00 addi r3,r3,4096 -- 18000b4: 39 23 80 24 addi r9,r3,-32732 -- 18000b8: 3d 23 00 00 addis r9,r3,0 -- 18000bc: 81 49 80 28 lwz r10,-32728\(r9\) -- 18000c0: 3d 22 00 00 addis r9,r2,0 -- 18000c4: a1 49 90 30 lhz r10,-28624\(r9\) -- 18000c8: 89 42 90 34 lbz r10,-28620\(r2\) -- 18000cc: 3d 22 00 00 addis r9,r2,0 -- 18000d0: 99 49 90 38 stb r10,-28616\(r9\) -- 18000d4: 3c 62 00 00 addis r3,r2,0 -- 18000d8: 38 63 90 00 addi r3,r3,-28672 -- 18000dc: 3c 62 00 00 addis r3,r2,0 -- 18000e0: 38 63 10 00 addi r3,r3,4096 -- 18000e4: 91 43 80 04 stw r10,-32764\(r3\) -- 18000e8: 3d 23 00 00 addis r9,r3,0 -- 18000ec: 91 49 80 08 stw r10,-32760\(r9\) -- 18000f0: 3d 22 00 00 addis r9,r2,0 -- 18000f4: b1 49 90 30 sth r10,-28624\(r9\) -- 18000f8: a1 42 90 14 lhz r10,-28652\(r2\) -- 18000fc: 3d 22 00 00 addis r9,r2,0 -- 1800100: a9 49 90 18 lha r10,-28648\(r9\) -+0+1800[0-9a-f]{3} <_start>: -+ 1800[0-9a-f]{3}: 3c 62 00 00 addis r3,r2,0 -+ 1800[0-9a-f]{3}: 38 63 90 3c addi r3,r3,-28612 -+ 1800[0-9a-f]{3}: 3c 62 00 00 addis r3,r2,0 -+ 1800[0-9a-f]{3}: 38 63 10 00 addi r3,r3,4096 -+ 1800[0-9a-f]{3}: 3c 62 00 00 addis r3,r2,0 -+ 1800[0-9a-f]{3}: 38 63 90 20 addi r3,r3,-28640 -+ 1800[0-9a-f]{3}: 3c 62 00 00 addis r3,r2,0 -+ 1800[0-9a-f]{3}: 38 63 10 00 addi r3,r3,4096 -+ 1800[0-9a-f]{3}: 39 23 80 24 addi r9,r3,-32732 -+ 1800[0-9a-f]{3}: 3d 23 00 00 addis r9,r3,0 -+ 1800[0-9a-f]{3}: 81 49 80 28 lwz r10,-32728\(r9\) -+ 1800[0-9a-f]{3}: 3d 22 00 00 addis r9,r2,0 -+ 1800[0-9a-f]{3}: a1 49 90 30 lhz r10,-28624\(r9\) -+ 1800[0-9a-f]{3}: 89 42 90 34 lbz r10,-28620\(r2\) -+ 1800[0-9a-f]{3}: 3d 22 00 00 addis r9,r2,0 -+ 1800[0-9a-f]{3}: 99 49 90 38 stb r10,-28616\(r9\) -+ 1800[0-9a-f]{3}: 3c 62 00 00 addis r3,r2,0 -+ 1800[0-9a-f]{3}: 38 63 90 00 addi r3,r3,-28672 -+ 1800[0-9a-f]{3}: 3c 62 00 00 addis r3,r2,0 -+ 1800[0-9a-f]{3}: 38 63 10 00 addi r3,r3,4096 -+ 1800[0-9a-f]{3}: 91 43 80 04 stw r10,-32764\(r3\) -+ 1800[0-9a-f]{3}: 3d 23 00 00 addis r9,r3,0 -+ 1800[0-9a-f]{3}: 91 49 80 08 stw r10,-32760\(r9\) -+ 1800[0-9a-f]{3}: 3d 22 00 00 addis r9,r2,0 -+ 1800[0-9a-f]{3}: b1 49 90 30 sth r10,-28624\(r9\) -+ 1800[0-9a-f]{3}: a1 42 90 14 lhz r10,-28652\(r2\) -+ 1800[0-9a-f]{3}: 3d 22 00 00 addis r9,r2,0 -+ 1800[0-9a-f]{3}: a9 49 90 18 lha r10,-28648\(r9\) - --0+1800104 <__tls_get_addr>: -- 1800104: 4e 80 00 20 blr -+0+1800[0-9a-f]{3} <__tls_get_addr>: -+ 1800[0-9a-f]{3}: 4e 80 00 20 blr - Disassembly of section \.got: - --0+1810128 <_GLOBAL_OFFSET_TABLE_-0x4>: -- 1810128: 4e 80 00 21 blrl -+0+1810[0-9a-f]{3} <_GLOBAL_OFFSET_TABLE_-0x4>: -+ 1810[0-9a-f]{3}: 4e 80 00 21 blrl - --0+181012c <_GLOBAL_OFFSET_TABLE_>: -+0+1810[0-9a-f]{3} <_GLOBAL_OFFSET_TABLE_>: - \.\.\. ---- binutils-2.23/ld/testsuite/ld-powerpc/tls32.g -+++ binutils-2.23/ld/testsuite/ld-powerpc/tls32.g -@@ -8,4 +8,4 @@ - .*: +file format elf32-powerpc - - Contents of section \.got: -- 1810128 4e800021 00000000 00000000 00000000 .* -+ 18101[0-9a-f]{2} 4e800021 00000000 00000000 00000000 .* ---- binutils-2.23/ld/testsuite/ld-powerpc/tls32.t -+++ binutils-2.23/ld/testsuite/ld-powerpc/tls32.t -@@ -8,5 +8,5 @@ - .*: +file format elf32-powerpc - - Contents of section \.tdata: -- 1810108 12345678 23456789 3456789a 456789ab .* -- 1810118 56789abc 6789abcd 789abcde 00c0ffee .* -+ 18101[0-9a-f]{2} 12345678 23456789 3456789a 456789ab .* -+ 18101[0-9a-f]{2} 56789abc 6789abcd 789abcde 00c0ffee .* ---- binutils-2.23/ld/testsuite/ld-powerpc/tlsexe32.d -+++ binutils-2.23/ld/testsuite/ld-powerpc/tlsexe32.d -@@ -44,4 +44,4 @@ Disassembly of section \.got: - .*: 4e 80 00 21 blrl - - .* <_GLOBAL_OFFSET_TABLE_>: --.*: 01 81 02 b8 00 00 00 00 00 00 00 00 .* -+.*: 01 81 02 [bd]8 00 00 00 00 00 00 00 00 .* ---- binutils-2.23/ld/testsuite/ld-powerpc/tlsexe32.g -+++ binutils-2.23/ld/testsuite/ld-powerpc/tlsexe32.g -@@ -8,4 +8,4 @@ - - Contents of section \.got: - .* 00000000 00000000 00000000 4e800021 .* --.* 018102b8 00000000 00000000 .* -+.* 018102[bd]8 00000000 00000000 .* ---- binutils-2.23/ld/testsuite/ld-powerpc/tlsexe32.r -+++ binutils-2.23/ld/testsuite/ld-powerpc/tlsexe32.r -@@ -33,13 +33,14 @@ There are [0-9]+ program headers, starting at offset [0-9]+ - - Program Headers: - +Type +Offset +VirtAddr +PhysAddr +FileSiz MemSiz +Flg Align -- +PHDR +0x000034 0x01800034 0x01800034 0x000c0 0x000c0 R E 0x4 -- +INTERP +0x0000f4 0x018000f4 0x018000f4 0x00011 0x00011 R +0x1 -+ +PHDR +0x000034 0x01800034 0x01800034 (0x000[0-9a-f]{2}) \1 R E 0x4 -+ +INTERP +0x000([0-9a-f]{3}) 0x01800\1 0x01800\1 0x00011 0x00011 R +0x1 - +\[Requesting program interpreter: .*\] - +LOAD .* R E 0x10000 - +LOAD .* RWE 0x10000 - +DYNAMIC .* RW +0x4 - +TLS .* 0x0001c 0x00038 R +0x4 -+ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] - - Section to Segment mapping: - +Segment Sections\.\.\. -@@ -49,6 +50,7 @@ Program Headers: - +03 +\.tdata \.dynamic \.got \.plt - +04 +\.dynamic - +05 +\.tdata \.tbss -+ +06 + - - Relocation section '\.rela\.dyn' at offset .* contains 2 entries: - Offset +Info +Type +Sym\. Value +Symbol's Name \+ Addend ---- binutils-2.23/ld/testsuite/ld-powerpc/tlsmark.d -+++ binutils-2.23/ld/testsuite/ld-powerpc/tlsmark.d -@@ -9,29 +9,29 @@ - - Disassembly of section \.text: - --0+100000e8 <_start>: -- 100000e8: 48 00 00 18 b 10000100 <_start\+0x18> -- 100000ec: 60 00 00 00 nop -- 100000f0: 38 63 90 00 addi r3,r3,-28672 -- 100000f4: e8 83 00 00 ld r4,0\(r3\) -- 100000f8: 3c 6d 00 00 addis r3,r13,0 -- 100000fc: 48 00 00 0c b 10000108 <_start\+0x20> -- 10000100: 3c 6d 00 00 addis r3,r13,0 -- 10000104: 4b ff ff e8 b 100000ec <_start\+0x4> -- 10000108: 60 00 00 00 nop -- 1000010c: 38 63 10 00 addi r3,r3,4096 -- 10000110: e8 83 80 00 ld r4,-32768\(r3\) -- 10000114: 3c 6d 00 00 addis r3,r13,0 -- 10000118: 48 00 00 0c b 10000124 <_start\+0x3c> -- 1000011c: 3c 6d 00 00 addis r3,r13,0 -- 10000120: 48 00 00 14 b 10000134 <_start\+0x4c> -- 10000124: 60 00 00 00 nop -- 10000128: 38 63 90 04 addi r3,r3,-28668 -- 1000012c: e8 a3 00 00 ld r5,0\(r3\) -- 10000130: 4b ff ff ec b 1000011c <_start\+0x34> -- 10000134: 60 00 00 00 nop -- 10000138: 38 63 10 00 addi r3,r3,4096 -- 1000013c: e8 a3 80 04 ld r5,-32764\(r3\) -+0+10000[0-9a-f]{3} <_start>: -+ 10000[0-9a-f]{3}: 48 00 00 18 b 10000[0-9a-f]{3} <_start\+0x18> -+ 10000[0-9a-f]{3}: 60 00 00 00 nop -+ 10000[0-9a-f]{3}: 38 63 90 00 addi r3,r3,-28672 -+ 10000[0-9a-f]{3}: e8 83 00 00 ld r4,0\(r3\) -+ 10000[0-9a-f]{3}: 3c 6d 00 00 addis r3,r13,0 -+ 10000[0-9a-f]{3}: 48 00 00 0c b 10000[0-9a-f]{3} <_start\+0x20> -+ 10000[0-9a-f]{3}: 3c 6d 00 00 addis r3,r13,0 -+ 10000[0-9a-f]{3}: 4b ff ff e8 b 10000[0-9a-f]{3} <_start\+0x4> -+ 10000[0-9a-f]{3}: 60 00 00 00 nop -+ 10000[0-9a-f]{3}: 38 63 10 00 addi r3,r3,4096 -+ 10000[0-9a-f]{3}: e8 83 80 00 ld r4,-32768\(r3\) -+ 10000[0-9a-f]{3}: 3c 6d 00 00 addis r3,r13,0 -+ 10000[0-9a-f]{3}: 48 00 00 0c b 10000[0-9a-f]{3} <_start\+0x3c> -+ 10000[0-9a-f]{3}: 3c 6d 00 00 addis r3,r13,0 -+ 10000[0-9a-f]{3}: 48 00 00 14 b 10000[0-9a-f]{3} <_start\+0x4c> -+ 10000[0-9a-f]{3}: 60 00 00 00 nop -+ 10000[0-9a-f]{3}: 38 63 90 04 addi r3,r3,-28668 -+ 10000[0-9a-f]{3}: e8 a3 00 00 ld r5,0\(r3\) -+ 10000[0-9a-f]{3}: 4b ff ff ec b 10000[0-9a-f]{3} <_start\+0x34> -+ 10000[0-9a-f]{3}: 60 00 00 00 nop -+ 10000[0-9a-f]{3}: 38 63 10 00 addi r3,r3,4096 -+ 10000[0-9a-f]{3}: e8 a3 80 04 ld r5,-32764\(r3\) - --0+10000140 <\.__tls_get_addr>: -- 10000140: 4e 80 00 20 blr -+0+10000[0-9a-f]{3} <\.__tls_get_addr>: -+ 10000[0-9a-f]{3}: 4e 80 00 20 blr ---- binutils-2.23/ld/testsuite/ld-powerpc/tlsmark32.d -+++ binutils-2.23/ld/testsuite/ld-powerpc/tlsmark32.d -@@ -9,17 +9,17 @@ - - Disassembly of section \.text: - --0+1800094 <_start>: -- 1800094: 48 00 00 14 b 18000a8 <_start\+0x14> -- 1800098: 38 63 90 00 addi r3,r3,-28672 -- 180009c: 80 83 00 00 lwz r4,0\(r3\) -- 18000a0: 3c 62 00 00 addis r3,r2,0 -- 18000a4: 48 00 00 0c b 18000b0 <_start\+0x1c> -- 18000a8: 3c 62 00 00 addis r3,r2,0 -- 18000ac: 4b ff ff ec b 1800098 <_start\+0x4> -- 18000b0: 38 63 10 00 addi r3,r3,4096 -- 18000b4: 80 83 80 00 lwz r4,-32768\(r3\) -+0+18000[0-9a-f]{2} <_start>: -+ 18000[0-9a-f]{2}: 48 00 00 14 b 18000[0-9a-f]{2} <_start\+0x14> -+ 18000[0-9a-f]{2}: 38 63 90 00 addi r3,r3,-28672 -+ 18000[0-9a-f]{2}: 80 83 00 00 lwz r4,0\(r3\) -+ 18000[0-9a-f]{2}: 3c 62 00 00 addis r3,r2,0 -+ 18000[0-9a-f]{2}: 48 00 00 0c b 18000[0-9a-f]{2} <_start\+0x1c> -+ 18000[0-9a-f]{2}: 3c 62 00 00 addis r3,r2,0 -+ 18000[0-9a-f]{2}: 4b ff ff ec b 18000[0-9a-f]{2} <_start\+0x4> -+ 18000[0-9a-f]{2}: 38 63 10 00 addi r3,r3,4096 -+ 18000[0-9a-f]{2}: 80 83 80 00 lwz r4,-32768\(r3\) - --0+18000b8 <__tls_get_addr>: -- 18000b8: 4e 80 00 20 blr --#pass -\ No newline at end of file -+0+18000[0-9a-f]{2} <__tls_get_addr>: -+ 18000[0-9a-f]{2}: 4e 80 00 20 blr -+#pass ---- binutils-2.23/ld/testsuite/ld-powerpc/tlsopt1.d -+++ binutils-2.23/ld/testsuite/ld-powerpc/tlsopt1.d -@@ -9,17 +9,17 @@ - - Disassembly of section \.text: - --0+100000e8 <\.__tls_get_addr>: -- 100000e8: 4e 80 00 20 blr -+0+10000[0-9a-f]{3} <\.__tls_get_addr>: -+ 10000[0-9a-f]{3}: 4e 80 00 20 blr - - Disassembly of section \.no_opt1: - --0+100000ec <\.no_opt1>: -- 100000ec: 38 62 80 08 addi r3,r2,-32760 -- 100000f0: 2c 24 00 00 cmpdi r4,0 -- 100000f4: 41 82 00 10 beq- .* -- 100000f8: 4b ff ff f1 bl 100000e8 <\.__tls_get_addr> -- 100000fc: 60 00 00 00 nop -- 10000100: 48 00 00 0c b .* -- 10000104: 4b ff ff e5 bl 100000e8 <\.__tls_get_addr> -- 10000108: 60 00 00 00 nop -+0+10000[0-9a-f]{3} <\.no_opt1>: -+ 10000[0-9a-f]{3}: 38 62 80 08 addi r3,r2,-32760 -+ 10000[0-9a-f]{3}: 2c 24 00 00 cmpdi r4,0 -+ 10000[0-9a-f]{3}: 41 82 00 10 beq- .* -+ 10000[0-9a-f]{3}: 4b ff ff f1 bl 10000[0-9a-f]{3} <\.__tls_get_addr> -+ 10000[0-9a-f]{3}: 60 00 00 00 nop -+ 10000[0-9a-f]{3}: 48 00 00 0c b .* -+ 10000[0-9a-f]{3}: 4b ff ff e5 bl 10000[0-9a-f]{3} <\.__tls_get_addr> -+ 10000[0-9a-f]{3}: 60 00 00 00 nop ---- binutils-2.23/ld/testsuite/ld-powerpc/tlsopt1_32.d -+++ binutils-2.23/ld/testsuite/ld-powerpc/tlsopt1_32.d -@@ -9,16 +9,16 @@ - - Disassembly of section \.text: - --0+1800094 <__tls_get_addr>: -- 1800094: 4e 80 00 20 blr -+0+18000[0-9a-f]{2} <__tls_get_addr>: -+ 18000[0-9a-f]{2}: 4e 80 00 20 blr - - Disassembly of section \.no_opt1: - --0+1800098 <\.no_opt1>: -- 1800098: 38 6d ff f4 addi r3,r13,-12 -- 180009c: 2c 04 00 00 cmpwi r4,0 -- 18000a0: 41 82 00 0c beq- .* -- 18000a4: 4b ff ff f1 bl 1800094 <__tls_get_addr> -- 18000a8: 48 00 00 08 b .* -- 18000ac: 4b ff ff e9 bl 1800094 <__tls_get_addr> -+0+18000[0-9a-f]{2} <\.no_opt1>: -+ 18000[0-9a-f]{2}: 38 6d ff f4 addi r3,r13,-12 -+ 18000[0-9a-f]{2}: 2c 04 00 00 cmpwi r4,0 -+ 18000[0-9a-f]{2}: 41 82 00 0c beq- .* -+ 18000[0-9a-f]{2}: 4b ff ff f1 bl 18000[0-9a-f]{2} <__tls_get_addr> -+ 18000[0-9a-f]{2}: 48 00 00 08 b .* -+ 18000[0-9a-f]{2}: 4b ff ff e9 bl 18000[0-9a-f]{2} <__tls_get_addr> - #pass ---- binutils-2.23/ld/testsuite/ld-powerpc/tlsopt2.d -+++ binutils-2.23/ld/testsuite/ld-powerpc/tlsopt2.d -@@ -9,15 +9,15 @@ - - Disassembly of section \.text: - --0+100000e8 <\.__tls_get_addr>: -- 100000e8: 4e 80 00 20 blr -+0+10000[0-9a-f]{3} <\.__tls_get_addr>: -+ 10000[0-9a-f]{3}: 4e 80 00 20 blr - - Disassembly of section \.no_opt2: - --0+100000ec <\.no_opt2>: -- 100000ec: 38 62 80 08 addi r3,r2,-32760 -- 100000f0: 2c 24 00 00 cmpdi r4,0 -- 100000f4: 41 82 00 08 beq- .* -- 100000f8: 38 62 80 08 addi r3,r2,-32760 -- 100000fc: 4b ff ff ed bl 100000e8 <\.__tls_get_addr> -- 10000100: 60 00 00 00 nop -+0+10000[0-9a-f]{3} <\.no_opt2>: -+ 10000[0-9a-f]{3}: 38 62 80 08 addi r3,r2,-32760 -+ 10000[0-9a-f]{3}: 2c 24 00 00 cmpdi r4,0 -+ 10000[0-9a-f]{3}: 41 82 00 08 beq- .* -+ 10000[0-9a-f]{3}: 38 62 80 08 addi r3,r2,-32760 -+ 10000[0-9a-f]{3}: 4b ff ff ed bl 10000[0-9a-f]{3} <\.__tls_get_addr> -+ 10000[0-9a-f]{3}: 60 00 00 00 nop ---- binutils-2.23/ld/testsuite/ld-powerpc/tlsopt2_32.d -+++ binutils-2.23/ld/testsuite/ld-powerpc/tlsopt2_32.d -@@ -9,15 +9,15 @@ - - Disassembly of section \.text: - --0+1800094 <__tls_get_addr>: -- 1800094: 4e 80 00 20 blr -+0+18000[0-9a-f]{2} <__tls_get_addr>: -+ 18000[0-9a-f]{2}: 4e 80 00 20 blr - - Disassembly of section \.no_opt2: - --0+1800098 <\.no_opt2>: -- 1800098: 38 6d ff f4 addi r3,r13,-12 -- 180009c: 2c 04 00 00 cmpwi r4,0 -- 18000a0: 41 82 00 08 beq- .* -- 18000a4: 38 6d ff f4 addi r3,r13,-12 -- 18000a8: 4b ff ff ed bl 1800094 <__tls_get_addr> -+0+18000[0-9a-f]{2} <\.no_opt2>: -+ 18000[0-9a-f]{2}: 38 6d ff f4 addi r3,r13,-12 -+ 18000[0-9a-f]{2}: 2c 04 00 00 cmpwi r4,0 -+ 18000[0-9a-f]{2}: 41 82 00 08 beq- .* -+ 18000[0-9a-f]{2}: 38 6d ff f4 addi r3,r13,-12 -+ 18000[0-9a-f]{2}: 4b ff ff ed bl 18000[0-9a-f]{2} <__tls_get_addr> - #pass ---- binutils-2.23/ld/testsuite/ld-powerpc/tlsopt3.d -+++ binutils-2.23/ld/testsuite/ld-powerpc/tlsopt3.d -@@ -9,18 +9,18 @@ - - Disassembly of section \.text: - --00000000100000e8 <\.__tls_get_addr>: -- 100000e8: 4e 80 00 20 blr -+0000000010000[0-9a-f]{3} <\.__tls_get_addr>: -+ 10000[0-9a-f]{3}: 4e 80 00 20 blr - - Disassembly of section \.no_opt3: - --00000000100000ec <\.no_opt3>: -- 100000ec: 38 62 80 08 addi r3,r2,-32760 -- 100000f0: 48 00 00 0c b .* -- 100000f4: 38 62 80 18 addi r3,r2,-32744 -- 100000f8: 48 00 00 10 b .* -- 100000fc: 4b ff ff ed bl 100000e8 <\.__tls_get_addr> -- 10000100: 60 00 00 00 nop -- 10000104: 48 00 00 0c b .* -- 10000108: 4b ff ff e1 bl 100000e8 <\.__tls_get_addr> -- 1000010c: 60 00 00 00 nop -+0000000010000[0-9a-f]{3} <\.no_opt3>: -+ 10000[0-9a-f]{3}: 38 62 80 08 addi r3,r2,-32760 -+ 10000[0-9a-f]{3}: 48 00 00 0c b .* -+ 10000[0-9a-f]{3}: 38 62 80 18 addi r3,r2,-32744 -+ 10000[0-9a-f]{3}: 48 00 00 10 b .* -+ 10000[0-9a-f]{3}: 4b ff ff ed bl 10000[0-9a-f]{3} <\.__tls_get_addr> -+ 10000[0-9a-f]{3}: 60 00 00 00 nop -+ 10000[0-9a-f]{3}: 48 00 00 0c b .* -+ 10000[0-9a-f]{3}: 4b ff ff e1 bl 10000[0-9a-f]{3} <\.__tls_get_addr> -+ 10000[0-9a-f]{3}: 60 00 00 00 nop ---- binutils-2.23/ld/testsuite/ld-powerpc/tlsopt3_32.d -+++ binutils-2.23/ld/testsuite/ld-powerpc/tlsopt3_32.d -@@ -9,17 +9,17 @@ - - Disassembly of section \.text: - --0+1800094 <__tls_get_addr>: -- 1800094: 4e 80 00 20 blr -+0+18000[0-9a-f]{2} <__tls_get_addr>: -+ 18000[0-9a-f]{2}: 4e 80 00 20 blr - - Disassembly of section \.no_opt3: - --0+1800098 <\.no_opt3>: -- 1800098: 38 6d ff ec addi r3,r13,-20 -- 180009c: 48 00 00 0c b .* -- 18000a0: 38 6d ff f4 addi r3,r13,-12 -- 18000a4: 48 00 00 0c b .* -- 18000a8: 4b ff ff ed bl 1800094 <__tls_get_addr> -- 18000ac: 48 00 00 08 b .* -- 18000b0: 4b ff ff e5 bl 1800094 <__tls_get_addr> -+0+18000[0-9a-f]{2} <\.no_opt3>: -+ 18000[0-9a-f]{2}: 38 6d ff ec addi r3,r13,-20 -+ 18000[0-9a-f]{2}: 48 00 00 0c b .* -+ 18000[0-9a-f]{2}: 38 6d ff f4 addi r3,r13,-12 -+ 18000[0-9a-f]{2}: 48 00 00 0c b .* -+ 18000[0-9a-f]{2}: 4b ff ff ed bl 18000[0-9a-f]{2} <__tls_get_addr> -+ 18000[0-9a-f]{2}: 48 00 00 08 b .* -+ 18000[0-9a-f]{2}: 4b ff ff e5 bl 18000[0-9a-f]{2} <__tls_get_addr> - #pass ---- binutils-2.23/ld/testsuite/ld-powerpc/tlsopt4.d -+++ binutils-2.23/ld/testsuite/ld-powerpc/tlsopt4.d -@@ -9,40 +9,40 @@ - - Disassembly of section \.text: - --0+100000e8 <\.__tls_get_addr>: -- 100000e8: 4e 80 00 20 blr -+0+10000[0-9a-f]{3} <\.__tls_get_addr>: -+ 10000[0-9a-f]{3}: 4e 80 00 20 blr - - Disassembly of section \.opt1: - --0+100000ec <\.opt1>: -- 100000ec: 3c 6d 00 00 addis r3,r13,0 -- 100000f0: 2c 24 00 00 cmpdi r4,0 -- 100000f4: 41 82 00 10 beq- .* -- 100000f8: 60 00 00 00 nop -- 100000fc: 38 63 90 10 addi r3,r3,-28656 -- 10000100: 48 00 00 0c b .* -- 10000104: 60 00 00 00 nop -- 10000108: 38 63 90 10 addi r3,r3,-28656 -+0+10000[0-9a-f]{3} <\.opt1>: -+ 10000[0-9a-f]{3}: 3c 6d 00 00 addis r3,r13,0 -+ 10000[0-9a-f]{3}: 2c 24 00 00 cmpdi r4,0 -+ 10000[0-9a-f]{3}: 41 82 00 10 beq- .* -+ 10000[0-9a-f]{3}: 60 00 00 00 nop -+ 10000[0-9a-f]{3}: 38 63 90 10 addi r3,r3,-28656 -+ 10000[0-9a-f]{3}: 48 00 00 0c b .* -+ 10000[0-9a-f]{3}: 60 00 00 00 nop -+ 10000[0-9a-f]{3}: 38 63 90 10 addi r3,r3,-28656 - - Disassembly of section \.opt2: - --0+1000010c <\.opt2>: -- 1000010c: 3c 6d 00 00 addis r3,r13,0 -- 10000110: 2c 24 00 00 cmpdi r4,0 -- 10000114: 41 82 00 08 beq- .* -- 10000118: 3c 6d 00 00 addis r3,r13,0 -- 1000011c: 60 00 00 00 nop -- 10000120: 38 63 90 10 addi r3,r3,-28656 -+0+10000[0-9a-f]{3} <\.opt2>: -+ 10000[0-9a-f]{3}: 3c 6d 00 00 addis r3,r13,0 -+ 10000[0-9a-f]{3}: 2c 24 00 00 cmpdi r4,0 -+ 10000[0-9a-f]{3}: 41 82 00 08 beq- .* -+ 10000[0-9a-f]{3}: 3c 6d 00 00 addis r3,r13,0 -+ 10000[0-9a-f]{3}: 60 00 00 00 nop -+ 10000[0-9a-f]{3}: 38 63 90 10 addi r3,r3,-28656 - - Disassembly of section \.opt3: - --0+10000124 <\.opt3>: -- 10000124: 3c 6d 00 00 addis r3,r13,0 -- 10000128: 48 00 00 0c b .* -- 1000012c: 3c 6d 00 00 addis r3,r13,0 -- 10000130: 48 00 00 10 b .* -- 10000134: 60 00 00 00 nop -- 10000138: 38 63 90 10 addi r3,r3,-28656 -- 1000013c: 48 00 00 0c b .* -- 10000140: 60 00 00 00 nop -- 10000144: 38 63 90 08 addi r3,r3,-28664 -+0+10000[0-9a-f]{3} <\.opt3>: -+ 10000[0-9a-f]{3}: 3c 6d 00 00 addis r3,r13,0 -+ 10000[0-9a-f]{3}: 48 00 00 0c b .* -+ 10000[0-9a-f]{3}: 3c 6d 00 00 addis r3,r13,0 -+ 10000[0-9a-f]{3}: 48 00 00 10 b .* -+ 10000[0-9a-f]{3}: 60 00 00 00 nop -+ 10000[0-9a-f]{3}: 38 63 90 10 addi r3,r3,-28656 -+ 10000[0-9a-f]{3}: 48 00 00 0c b .* -+ 10000[0-9a-f]{3}: 60 00 00 00 nop -+ 10000[0-9a-f]{3}: 38 63 90 08 addi r3,r3,-28664 ---- binutils-2.23/ld/testsuite/ld-powerpc/tlsopt4_32.d -+++ binutils-2.23/ld/testsuite/ld-powerpc/tlsopt4_32.d -@@ -9,36 +9,36 @@ - - Disassembly of section \.text: - --0+1800094 <__tls_get_addr>: -- 1800094: 4e 80 00 20 blr -+0+18000[0-9a-f]{2} <__tls_get_addr>: -+ 18000[0-9a-f]{2}: 4e 80 00 20 blr - - Disassembly of section \.opt1: - --0+1800098 <\.opt1>: -- 1800098: 3c 62 00 00 addis r3,r2,0 -- 180009c: 2c 04 00 00 cmpwi r4,0 -- 18000a0: 41 82 00 0c beq- .* -- 18000a4: 38 63 90 10 addi r3,r3,-28656 -- 18000a8: 48 00 00 08 b .* -- 18000ac: 38 63 90 10 addi r3,r3,-28656 -+0+18000[0-9a-f]{2} <\.opt1>: -+ 18000[0-9a-f]{2}: 3c 62 00 00 addis r3,r2,0 -+ 18000[0-9a-f]{2}: 2c 04 00 00 cmpwi r4,0 -+ 18000[0-9a-f]{2}: 41 82 00 0c beq- .* -+ 18000[0-9a-f]{2}: 38 63 90 10 addi r3,r3,-28656 -+ 18000[0-9a-f]{2}: 48 00 00 08 b .* -+ 18000[0-9a-f]{2}: 38 63 90 10 addi r3,r3,-28656 - - Disassembly of section \.opt2: - --0+18000b0 <\.opt2>: -- 18000b0: 3c 62 00 00 addis r3,r2,0 -- 18000b4: 2c 04 00 00 cmpwi r4,0 -- 18000b8: 41 82 00 08 beq- .* -- 18000bc: 3c 62 00 00 addis r3,r2,0 -- 18000c0: 38 63 90 10 addi r3,r3,-28656 -+0+18000[0-9a-f]{2} <\.opt2>: -+ 18000[0-9a-f]{2}: 3c 62 00 00 addis r3,r2,0 -+ 18000[0-9a-f]{2}: 2c 04 00 00 cmpwi r4,0 -+ 18000[0-9a-f]{2}: 41 82 00 08 beq- .* -+ 18000[0-9a-f]{2}: 3c 62 00 00 addis r3,r2,0 -+ 18000[0-9a-f]{2}: 38 63 90 10 addi r3,r3,-28656 - - Disassembly of section \.opt3: - --0+18000c4 <\.opt3>: -- 18000c4: 3c 62 00 00 addis r3,r2,0 -- 18000c8: 48 00 00 0c b .* -- 18000cc: 3c 62 00 00 addis r3,r2,0 -- 18000d0: 48 00 00 0c b .* -- 18000d4: 38 63 90 10 addi r3,r3,-28656 -- 18000d8: 48 00 00 08 b .* -- 18000dc: 38 63 90 08 addi r3,r3,-28664 -+0+18000[0-9a-f]{2} <\.opt3>: -+ 18000[0-9a-f]{2}: 3c 62 00 00 addis r3,r2,0 -+ 18000[0-9a-f]{2}: 48 00 00 0c b .* -+ 18000[0-9a-f]{2}: 3c 62 00 00 addis r3,r2,0 -+ 18000[0-9a-f]{2}: 48 00 00 0c b .* -+ 18000[0-9a-f]{2}: 38 63 90 10 addi r3,r3,-28656 -+ 18000[0-9a-f]{2}: 48 00 00 08 b .* -+ 18000[0-9a-f]{2}: 38 63 90 08 addi r3,r3,-28664 - #pass ---- binutils-2.23/ld/testsuite/ld-powerpc/tlsso32.d -+++ binutils-2.23/ld/testsuite/ld-powerpc/tlsso32.d -@@ -42,5 +42,5 @@ Disassembly of section \.got: - #... - .*: 4e 80 00 21 blrl - .* <_GLOBAL_OFFSET_TABLE_>: --.*: 00 01 03 ec .* -+.*: 00 01 [0-9a-f]{2} [0-9a-f]{2} .* - #pass ---- binutils-2.23/ld/testsuite/ld-powerpc/tlsso32.g -+++ binutils-2.23/ld/testsuite/ld-powerpc/tlsso32.g -@@ -9,5 +9,5 @@ - Contents of section \.got: - .* 00000000 00000000 00000000 00000000 .* - .* 00000000 00000000 00000000 00000000 .* --.* 00000000 4e800021 000103ec 00000000 .* -+.* 00000000 4e800021 00010[0-9a-f]{3} 00000000 .* - .* 00000000 .* ---- binutils-2.23/ld/testsuite/ld-powerpc/tlsso32.r -+++ binutils-2.23/ld/testsuite/ld-powerpc/tlsso32.r -@@ -35,6 +35,7 @@ Program Headers: - +LOAD .* RWE 0x10000 - +DYNAMIC .* RW +0x4 - +TLS .* 0x0+1c 0x0+38 R +0x4 -+ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] - - Section to Segment mapping: - +Segment Sections\.\.\. -@@ -42,6 +43,7 @@ Program Headers: - +01 +\.tdata \.dynamic \.got \.plt - +02 +\.dynamic - +03 +\.tdata \.tbss -+ +04 + - - Relocation section '\.rela\.dyn' at offset 0x[0-9a-f]+ contains 18 entries: - Offset +Info +Type +Sym\. Value +Symbol's Name \+ Addend -@@ -52,9 +54,9 @@ Relocation section '\.rela\.dyn' at offset 0x[0-9a-f]+ contains 18 entries: - [0-9a-f ]+R_PPC_TPREL16 +0+30 +le0 \+ 0 - [0-9a-f ]+R_PPC_TPREL16_HA +0+34 +le1 \+ 0 - [0-9a-f ]+R_PPC_TPREL16_LO +0+34 +le1 \+ 0 --[0-9a-f ]+R_PPC_TPREL16 +0+103d0 +\.tdata \+ 103e4 --[0-9a-f ]+R_PPC_TPREL16_HA +0+103d0 +\.tdata \+ 103e8 --[0-9a-f ]+R_PPC_TPREL16_LO +0+103d0 +\.tdata \+ 103e8 -+[0-9a-f ]+R_PPC_TPREL16 +0+103[df]0 +\.tdata \+ 10[0-9a-f]{3} -+[0-9a-f ]+R_PPC_TPREL16_HA +0+103[df]0 +\.tdata \+ 10[0-9a-f]{3} -+[0-9a-f ]+R_PPC_TPREL16_LO +0+103[df]0 +\.tdata \+ 10[0-9a-f]{3} - [0-9a-f ]+R_PPC_DTPMOD32 +0 - [0-9a-f ]+R_PPC_DTPREL32 +0 - [0-9a-f ]+R_PPC_DTPMOD32 +0 ---- binutils-2.23/ld/testsuite/ld-powerpc/tlstoc.g -+++ binutils-2.23/ld/testsuite/ld-powerpc/tlstoc.g -@@ -8,8 +8,8 @@ - .*: +file format elf64-powerpc - - Contents of section \.got: -- 100101a0 00000000 00000001 00000000 00000000 .* -- 100101b0 00000000 00000001 00000000 00000000 .* -- 100101c0 00000000 00000001 00000000 00000000 .* -- 100101d0 00000000 00000001 00000000 00000000 .* -- 100101e0 ffffffff ffff8060 00000000 00000000 .* -+ 10010[0-9a-f]{3} 00000000 00000001 00000000 00000000 .* -+ 10010[0-9a-f]{3} 00000000 00000001 00000000 00000000 .* -+ 10010[0-9a-f]{3} 00000000 00000001 00000000 00000000 .* -+ 10010[0-9a-f]{3} 00000000 00000001 00000000 00000000 .* -+ 10010[0-9a-f]{3} ffffffff ffff8060 00000000 00000000 .* ---- binutils-2.23/ld/testsuite/ld-powerpc/tlstoc.t -+++ binutils-2.23/ld/testsuite/ld-powerpc/tlstoc.t -@@ -8,7 +8,7 @@ - .*: +file format elf64-powerpc - - Contents of section \.tdata: -- 10010148 00c0ffee 00000000 12345678 9abcdef0 .* -- 10010158 23456789 abcdef01 3456789a bcdef012 .* -- 10010168 456789ab cdef0123 56789abc def01234 .* -- 10010178 6789abcd ef012345 789abcde f0123456 .* -+ 10010180 00c0ffee 00000000 12345678 9abcdef0 .* -+ 10010190 23456789 abcdef01 3456789a bcdef012 .* -+ 100101a0 456789ab cdef0123 56789abc def01234 .* -+ 100101b0 6789abcd ef012345 789abcde f0123456 .* ---- binutils-2.23/ld/testsuite/ld-powerpc/tlstocso.g -+++ binutils-2.23/ld/testsuite/ld-powerpc/tlstocso.g -@@ -7,7 +7,7 @@ - .*: +file format elf64-powerpc - - Contents of section \.got: --.* 00000000 000186c0 00000000 00000000 .* -+.* 00000000 000186f8 00000000 00000000 .* - .* 00000000 00000000 00000000 00000000 .* - .* 00000000 00000000 00000000 00000000 .* - .* 00000000 00000000 00000000 00000000 .* ---- binutils-2.23/ld/testsuite/ld-s390/tlsbin.rd -+++ binutils-2.23/ld/testsuite/ld-s390/tlsbin.rd -@@ -36,6 +36,7 @@ There are [0-9]+ program headers, starting at offset [0-9]+ - +LOAD .* RW +0x1000 - +DYNAMIC .* RW +0x4 - +TLS .* 0x0+60 0x0+a0 R +0x20 -+ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] - - Section to Segment mapping: - +Segment Sections... -@@ -52,6 +53,7 @@ Program Headers: - +03 +.tdata .dynamic .got * - +04 +.dynamic * - +05 +.tdata .tbss * -+ +06 + - - Relocation section '.rela.dyn' at offset .* contains 4 entries: - Offset +Info +Type +Sym.Value +Sym. Name \+ Addend ---- binutils-2.23/ld/testsuite/ld-s390/tlsbin_64.rd -+++ binutils-2.23/ld/testsuite/ld-s390/tlsbin_64.rd -@@ -36,6 +36,7 @@ There are [0-9]+ program headers, starting at offset [0-9]+ - +LOAD .* RW +0x1000 - +DYNAMIC .* RW +0x8 - +TLS .* 0x0+60 0x0+a0 R +0x20 -+ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] - - Section to Segment mapping: - +Segment Sections... -@@ -52,6 +53,7 @@ Program Headers: - +03 +.tdata .dynamic .got * - +04 +.dynamic * - +05 +.tdata .tbss * -+ +06 + - - Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 4 entries: - +Offset +Info +Type +Symbol's Value +Symbol's Name \+ Addend ---- binutils-2.23/ld/testsuite/ld-s390/tlspic.rd -+++ binutils-2.23/ld/testsuite/ld-s390/tlspic.rd -@@ -39,6 +39,7 @@ Program Headers: - +LOAD .* RW +0x1000 - +DYNAMIC .* RW +0x4 - +TLS .* 0x0+60 0x0+80 R +0x20 -+ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] - - Section to Segment mapping: - +Segment Sections... -@@ -46,6 +47,7 @@ Program Headers: - +01 +.tdata .dynamic .got - +02 +.dynamic - +03 +.tdata .tbss -+ +04 + - - Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 14 entries: - Offset +Info +Type +Sym.Value +Sym. Name \+ Addend ---- binutils-2.23/ld/testsuite/ld-s390/tlspic_64.rd -+++ binutils-2.23/ld/testsuite/ld-s390/tlspic_64.rd -@@ -39,6 +39,7 @@ Program Headers: - +LOAD .* RW +0x1000 - +DYNAMIC .* RW +0x8 - +TLS .* 0x0+60 0x0+80 R +0x20 -+ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] - - Section to Segment mapping: - +Segment Sections... -@@ -46,6 +47,7 @@ Program Headers: - +01 +.tdata .dynamic .got * - +02 +.dynamic * - +03 +.tdata .tbss * -+ +04 + - - Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 14 entries: - +Offset +Info +Type +Symbol's Value +Symbol's Name \+ Addend ---- binutils-2.23/ld/testsuite/ld-scripts/empty-aligned.d -+++ binutils-2.23/ld/testsuite/ld-scripts/empty-aligned.d -@@ -8,7 +8,9 @@ - Program Headers: - +Type +Offset +VirtAddr +PhysAddr +FileSiz +MemSiz +Flg +Align - +LOAD +0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ [RWE ]+ +0x[0-9a-f]+ -+ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] - - Section to Segment mapping: - +Segment Sections\.\.\. - +00 +.text -+ +01 + ---- binutils-2.23/ld/testsuite/ld-sh/tlsbin-2.d -+++ binutils-2.23/ld/testsuite/ld-sh/tlsbin-2.d -@@ -44,6 +44,7 @@ Program Headers: - +LOAD.* - +DYNAMIC.* - +TLS +0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ 0x0+18 0x0+28 R +0x4 -+ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] - - Section to Segment mapping: - +Segment Sections\.\.\. -@@ -53,6 +54,7 @@ Program Headers: - +03 +\.tdata \.dynamic \.got * - +04 +\.dynamic * - +05 +\.tdata \.tbss * -+ +06 + - - Relocation section '\.rela\.dyn' at offset 0x[0-9a-f]+ contains 4 entries: - Offset +Info +Type +Sym\.Value +Sym\. Name \+ Addend ---- binutils-2.23/ld/testsuite/ld-sh/tlspic-2.d -+++ binutils-2.23/ld/testsuite/ld-sh/tlspic-2.d -@@ -32,7 +32,7 @@ Key to Flags: - - Elf file type is DYN \(Shared object file\) - Entry point 0x[0-9a-f]+ --There are 4 program headers, starting at offset [0-9]+ -+There are [0-9] program headers, starting at offset [0-9]+ - - Program Headers: - +Type +Offset +VirtAddr +PhysAddr +FileSiz +MemSiz +Flg Align -@@ -40,6 +40,7 @@ Program Headers: - +LOAD.* - +DYNAMIC.* - +TLS .* 0x0+18 0x0+20 R +0x4 -+ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] - - Section to Segment mapping: - +Segment Sections\.\.\. -@@ -47,6 +48,7 @@ Program Headers: - +01 +\.tdata \.dynamic \.got * - +02 +\.dynamic * - +03 +\.tdata \.tbss * -+ +04 + - - Relocation section '\.rela\.dyn' at offset 0x[0-9a-f]+ contains 10 entries: - Offset +Info +Type +Sym\.Value +Sym\. Name \+ Addend ---- binutils-2.23/ld/testsuite/ld-sparc/gotop32.rd -+++ binutils-2.23/ld/testsuite/ld-sparc/gotop32.rd -@@ -31,6 +31,7 @@ Program Headers: - +LOAD +0x0+ 0x0+ 0x0+ 0x0+2000 0x0+2000 R E 0x10000 - +LOAD +0x0+2000 0x0+12000 0x0+12000 0x0+2000 0x0+2000 RW +0x10000 - +DYNAMIC +0x0+2000 0x0+12000 0x0+12000 0x0+70 0x0+70 RW +0x4 -+ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] - #... - - Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 1 entries: ---- binutils-2.23/ld/testsuite/ld-sparc/gotop64.rd -+++ binutils-2.23/ld/testsuite/ld-sparc/gotop64.rd -@@ -31,6 +31,7 @@ Program Headers: - +LOAD +0x0+ 0x0+ 0x0+ 0x0+2000 0x0+2000 R E 0x100000 - +LOAD +0x0+2000 0x0+102000 0x0+102000 0x0+2000 0x0+2000 RW +0x100000 - +DYNAMIC +0x0+2000 0x0+102000 0x0+102000 0x0+e0 0x0+e0 RW +0x8 -+ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] - #... - - Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 1 entries: ---- binutils-2.23/ld/testsuite/ld-sparc/tlssunbin32.rd -+++ binutils-2.23/ld/testsuite/ld-sparc/tlssunbin32.rd -@@ -30,13 +30,14 @@ There are [0-9]+ program headers, starting at offset [0-9]+ - - Program Headers: - +Type +Offset +VirtAddr +PhysAddr +FileSiz MemSiz +Flg Align -- +PHDR +0x0+34 0x0+10034 0x0+10034 0x0+c0 0x0+c0 R E 0x4 -- +INTERP +0x0+f4 0x0+100f4 0x0+100f4 0x0+11 0x0+11 R +0x1 -+ +PHDR +0x0+34 0x0+10034 0x0+10034 (0x[0-9a-f]+) \1 R E 0x4 -+ +INTERP +(0x[0-9a-f]+ ){3}0x0+11 0x0+11 R +0x1 - .*Requesting program interpreter.* - +LOAD .* R E 0x10000 - +LOAD .* RW +0x10000 - +DYNAMIC .* RW +0x4 - +TLS .* 0x0+1060 0x0+10a0 R +0x4 -+ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] - #... - - Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 4 entries: ---- binutils-2.23/ld/testsuite/ld-sparc/tlssunbin64.rd -+++ binutils-2.23/ld/testsuite/ld-sparc/tlssunbin64.rd -@@ -30,13 +30,14 @@ There are [0-9]+ program headers, starting at offset [0-9]+ - - Program Headers: - +Type +Offset +VirtAddr +PhysAddr +FileSiz +MemSiz +Flg Align -- +PHDR +0x0+40 0x0+100040 0x0+100040 0x0+150 0x0+150 R E 0x8 -- +INTERP +0x0+190 0x0+100190 0x0+100190 0x0+19 0x0+19 R +0x1 -+ +PHDR +0x0+40 0x0+100040 0x0+100040 (0x[0-9a-f]+) \1 R E 0x8 -+ +INTERP +0x0+([0-9a-f]+) (0x0+10+\1) \2 0x0+19 0x0+19 R +0x1 - .*Requesting program interpreter.* - +LOAD .* R E 0x100000 - +LOAD .* RW +0x100000 - +DYNAMIC .* RW +0x8 - +TLS .* 0x0+60 0x0+a0 R +0x4 -+ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] - #... - - Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 4 entries: ---- binutils-2.23/ld/testsuite/ld-sparc/tlssunnopic32.rd -+++ binutils-2.23/ld/testsuite/ld-sparc/tlssunnopic32.rd -@@ -32,6 +32,7 @@ Program Headers: - +LOAD .* RW +0x10000 - +DYNAMIC .* RW +0x4 - +TLS .* 0x0+ 0x0+24 R +0x4 -+ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] - #... - - Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 12 entries: ---- binutils-2.23/ld/testsuite/ld-sparc/tlssunnopic64.rd -+++ binutils-2.23/ld/testsuite/ld-sparc/tlssunnopic64.rd -@@ -32,6 +32,7 @@ Program Headers: - +LOAD .* RW +0x100000 - +DYNAMIC .* RW +0x8 - +TLS .* 0x0+ 0x0+24 R +0x4 -+ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] - #... - - Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 14 entries: ---- binutils-2.23/ld/testsuite/ld-sparc/tlssunpic32.rd -+++ binutils-2.23/ld/testsuite/ld-sparc/tlssunpic32.rd -@@ -36,6 +36,7 @@ Program Headers: - +LOAD +0x0+2000 0x0+12000 0x0+12000 0x0+184 0x0+184 RWE 0x10000 - +DYNAMIC +0x0+2060 0x0+12060 0x0+12060 0x0+98 0x0+98 RW +0x4 - +TLS +0x0+2000 0x0+12000 0x0+12000 0x0+60 0x0+80 R +0x4 -+ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] - #... - - Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 14 entries: ---- binutils-2.23/ld/testsuite/ld-sparc/tlssunpic64.rd -+++ binutils-2.23/ld/testsuite/ld-sparc/tlssunpic64.rd -@@ -36,6 +36,7 @@ Program Headers: - +LOAD +0x0+2000 0x0+102000 0x0+102000 0x0+3a0 0x0+3a0 RWE 0x100000 - +DYNAMIC +0x0+2060 0x0+102060 0x0+102060 0x0+130 0x0+130 RW +0x8 - +TLS +0x0+2000 0x0+102000 0x0+102000 0x0+60 0x0+80 R +0x4 -+ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] - #... - - Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 14 entries: ---- binutils-2.23/ld/testsuite/ld-x86-64/tlsgdesc.rd -+++ binutils-2.23/ld/testsuite/ld-x86-64/tlsgdesc.rd -@@ -36,12 +36,14 @@ Program Headers: - +LOAD.* - +LOAD.* - +DYNAMIC.* -+ +PAX_FLAGS.* - - Section to Segment mapping: - +Segment Sections... - +00 +.hash .dynsym .dynstr .rela.dyn .rela.plt .plt .text * - +01 +.dynamic .got .got.plt * - +02 +.dynamic * -+ +03 + - - Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 8 entries: - +Offset +Info +Type +Symbol's Value +Symbol's Name \+ Addend ---- binutils-2.23/ld/testsuite/ld-x86-64/tlspic.rd -+++ binutils-2.23/ld/testsuite/ld-x86-64/tlspic.rd -@@ -40,6 +40,7 @@ Program Headers: - +LOAD +0x0+11ac 0x0+2011ac 0x0+2011ac 0x0+244 0x0+244 RW +0x200000 - +DYNAMIC +0x0+1210 0x0+201210 0x0+201210 0x0+130 0x0+130 RW +0x8 - +TLS +0x0+11ac 0x0+2011ac 0x0+2011ac 0x0+60 0x0+80 R +0x1 -+ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] - - Section to Segment mapping: - +Segment Sections... -@@ -47,6 +48,7 @@ Program Headers: - +01 +.tdata .dynamic .got .got.plt * - +02 +.dynamic * - +03 +.tdata .tbss * -+ +04 + - - Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 14 entries: - +Offset +Info +Type +Symbol's Value +Symbol's Name \+ Addend diff --git a/pkgs/development/tools/misc/binutils/pt-pax-flags.patch b/pkgs/development/tools/misc/binutils/pt-pax-flags.patch new file mode 100644 index 00000000000..3c060012ad0 --- /dev/null +++ b/pkgs/development/tools/misc/binutils/pt-pax-flags.patch @@ -0,0 +1,233 @@ +--- binutils-2.15.94.0.2.2.orig/bfd/elf-bfd.h 2005-02-07 20:42:44.000000000 +0100 ++++ binutils-2.15.94.0.2.2/bfd/elf-bfd.h 2005-02-20 13:13:17.362558200 +0100 +@@ -1266,6 +1266,9 @@ + /* Should the PT_GNU_RELRO segment be emitted? */ + bfd_boolean relro; + ++ /* Segment flags for the PT_PAX_FLAGS segment. */ ++ unsigned int pax_flags; ++ + /* Symbol version definitions in external objects. */ + Elf_Internal_Verdef *verdef; + +--- binutils-2.17.50.0.18/bfd/elf.c.orig 2007-08-01 11:12:02.000000000 -0400 ++++ binutils-2.17.50.0.18/bfd/elf.c 2007-08-01 14:27:36.086986774 -0400 +@@ -1085,6 +1085,7 @@ + case PT_GNU_EH_FRAME: pt = "EH_FRAME"; break; + case PT_GNU_STACK: pt = "STACK"; break; + case PT_GNU_RELRO: pt = "RELRO"; break; ++ case PT_PAX_FLAGS: pt = "PAX_FLAGS"; break; + default: pt = NULL; break; + } + return pt; +@@ -2346,6 +2347,9 @@ + case PT_GNU_RELRO: + return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "relro"); + ++ case PT_PAX_FLAGS: ++ return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "pax_flags"); ++ + default: + /* Check for any processor-specific program segment types. */ + bed = get_elf_backend_data (abfd); +@@ -3326,6 +3330,11 @@ + ++segs; + } + ++ { ++ /* We need a PT_PAX_FLAGS segment. */ ++ ++segs; ++ } ++ + for (s = abfd->sections; s != NULL; s = s->next) + { + if ((s->flags & SEC_LOAD) != 0 +@@ -3945,6 +3954,20 @@ + pm = &m->next; + } + ++ { ++ amt = sizeof (struct elf_segment_map); ++ m = bfd_zalloc (abfd, amt); ++ if (m == NULL) ++ goto error_return; ++ m->next = NULL; ++ m->p_type = PT_PAX_FLAGS; ++ m->p_flags = elf_tdata (abfd)->pax_flags; ++ m->p_flags_valid = 1; ++ ++ *pm = m; ++ pm = &m->next; ++ } ++ + free (sections); + elf_tdata (abfd)->segment_map = mfirst; + } +@@ -5129,7 +5152,8 @@ + 5. PT_GNU_STACK segments do not include any sections. + 6. PT_TLS segment includes only SHF_TLS sections. + 7. SHF_TLS sections are only in PT_TLS or PT_LOAD segments. +- 8. PT_DYNAMIC should not contain empty sections at the beginning ++ 8. PT_PAX_FLAGS segments do not include any sections. ++ 9. PT_DYNAMIC should not contain empty sections at the beginning + (with the possible exception of .dynamic). */ + #define IS_SECTION_IN_INPUT_SEGMENT(section, segment, bed) \ + ((((segment->p_paddr \ +@@ -5138,6 +5162,7 @@ + && (section->flags & SEC_ALLOC) != 0) \ + || IS_COREFILE_NOTE (segment, section)) \ + && segment->p_type != PT_GNU_STACK \ ++ && segment->p_type != PT_PAX_FLAGS \ + && (segment->p_type != PT_TLS \ + || (section->flags & SEC_THREAD_LOCAL)) \ + && (segment->p_type == PT_LOAD \ +--- binutils-2.23.52.0.1/bfd/elflink.c.orig 2013-02-27 21:28:03.000000000 +0100 ++++ binutils-2.23.52.0.1/bfd/elflink.c 2013-03-01 17:32:44.922717879 +0100 +@@ -5764,18 +5764,32 @@ + && ! (*bed->elf_backend_always_size_sections) (output_bfd, info)) + return FALSE; + ++ elf_tdata (output_bfd)->pax_flags = PF_NORANDEXEC; ++ ++ if (info->execheap) ++ elf_tdata (output_bfd)->pax_flags |= PF_NOMPROTECT; ++ else if (info->noexecheap) ++ elf_tdata (output_bfd)->pax_flags |= PF_MPROTECT; ++ + /* Determine any GNU_STACK segment requirements, after the backend + has had a chance to set a default segment size. */ + if (info->execstack) ++ { + elf_stack_flags (output_bfd) = PF_R | PF_W | PF_X; ++ elf_tdata (output_bfd)->pax_flags |= PF_EMUTRAMP; ++ } + else if (info->noexecstack) ++ { + elf_stack_flags (output_bfd) = PF_R | PF_W; ++ elf_tdata (output_bfd)->pax_flags |= PF_NOEMUTRAMP; ++ } + else + { + bfd *inputobj; + asection *notesec = NULL; + int exec = 0; + ++ elf_tdata (output_bfd)->pax_flags |= PF_NOEMUTRAMP; + for (inputobj = info->input_bfds; + inputobj; + inputobj = inputobj->link_next) +@@ -5789,7 +5803,11 @@ + if (s) + { + if (s->flags & SEC_CODE) +- exec = PF_X; ++ { ++ elf_tdata (output_bfd)->pax_flags &= ~PF_NOEMUTRAMP; ++ elf_tdata (output_bfd)->pax_flags |= PF_EMUTRAMP; ++ exec = PF_X; ++ } + notesec = s; + } + else if (bed->default_execstack) +--- binutils-2.15.94.0.2.2.orig/binutils/readelf.c 2005-02-18 07:14:30.000000000 +0100 ++++ binutils-2.15.94.0.2.2/binutils/readelf.c 2005-02-20 13:13:17.470541784 +0100 +@@ -2293,6 +2293,7 @@ + return "GNU_EH_FRAME"; + case PT_GNU_STACK: return "GNU_STACK"; + case PT_GNU_RELRO: return "GNU_RELRO"; ++ case PT_PAX_FLAGS: return "PAX_FLAGS"; + + default: + if ((p_type >= PT_LOPROC) && (p_type <= PT_HIPROC)) +--- binutils-2.15.94.0.2.2.orig/include/bfdlink.h 2004-11-22 21:33:32.000000000 +0100 ++++ binutils-2.15.94.0.2.2/include/bfdlink.h 2005-02-20 13:13:17.476540872 +0100 +@@ -313,6 +313,14 @@ + flags. */ + unsigned int noexecstack: 1; + ++ /* TRUE if PT_PAX_FLAGS segment should be created with PF_NOMPROTECT ++ flags. */ ++ unsigned int execheap: 1; ++ ++ /* TRUE if PT_PAX_FLAGS segment should be created with PF_MPROTECT ++ flags. */ ++ unsigned int noexecheap: 1; ++ + /* TRUE if PT_GNU_RELRO segment should be created. */ + unsigned int relro: 1; + +--- binutils-2.15.94.0.2.2.orig/include/elf/common.h 2004-11-22 21:33:32.000000000 +0100 ++++ binutils-2.15.94.0.2.2/include/elf/common.h 2005-02-20 13:13:17.482539960 +0100 +@@ -423,6 +423,7 @@ + #define PT_SUNW_EH_FRAME PT_GNU_EH_FRAME /* Solaris uses the same value */ + #define PT_GNU_STACK (PT_LOOS + 0x474e551) /* Stack flags */ + #define PT_GNU_RELRO (PT_LOOS + 0x474e552) /* Read-only after relocation */ ++#define PT_PAX_FLAGS (PT_LOOS + 0x5041580) /* PaX flags */ + + /* Program segment permissions, in program header p_flags field. */ + +@@ -433,6 +434,19 @@ + #define PF_MASKOS 0x0FF00000 /* New value, Oct 4, 1999 Draft */ + #define PF_MASKPROC 0xF0000000 /* Processor-specific reserved bits */ + ++#define PF_PAGEEXEC (1 << 4) /* Enable PAGEEXEC */ ++#define PF_NOPAGEEXEC (1 << 5) /* Disable PAGEEXEC */ ++#define PF_SEGMEXEC (1 << 6) /* Enable SEGMEXEC */ ++#define PF_NOSEGMEXEC (1 << 7) /* Disable SEGMEXEC */ ++#define PF_MPROTECT (1 << 8) /* Enable MPROTECT */ ++#define PF_NOMPROTECT (1 << 9) /* Disable MPROTECT */ ++#define PF_RANDEXEC (1 << 10) /* Enable RANDEXEC */ ++#define PF_NORANDEXEC (1 << 11) /* Disable RANDEXEC */ ++#define PF_EMUTRAMP (1 << 12) /* Enable EMUTRAMP */ ++#define PF_NOEMUTRAMP (1 << 13) /* Disable EMUTRAMP */ ++#define PF_RANDMMAP (1 << 14) /* Enable RANDMMAP */ ++#define PF_NORANDMMAP (1 << 15) /* Disable RANDMMAP */ ++ + /* Values for section header, sh_type field. */ + + #define SHT_NULL 0 /* Section header table entry unused */ +--- binutils-2.18.50.0.1/ld/emultempl/elf32.em.orig 2007-09-08 19:34:12.000000000 +0200 ++++ binutils-2.18.50.0.1/ld/emultempl/elf32.em 2007-09-15 21:41:35.688212063 +0200 +@@ -2139,6 +2139,16 @@ + link_info.noexecstack = TRUE; + link_info.execstack = FALSE; + } ++ else if (strcmp (optarg, "execheap") == 0) ++ { ++ link_info.execheap = TRUE; ++ link_info.noexecheap = FALSE; ++ } ++ else if (strcmp (optarg, "noexecheap") == 0) ++ { ++ link_info.noexecheap = TRUE; ++ link_info.execheap = FALSE; ++ } + EOF + + if test -n "$COMMONPAGESIZE"; then +--- binutils-2.15.94.0.2.2.orig/ld/ldgram.y 2004-11-22 21:33:32.000000000 +0100 ++++ binutils-2.15.94.0.2.2/ld/ldgram.y 2005-02-20 13:13:17.499537376 +0100 +@@ -1073,6 +1073,8 @@ + $$ = exp_intop (0x6474e550); + else if (strcmp (s, "PT_GNU_STACK") == 0) + $$ = exp_intop (0x6474e551); ++ else if (strcmp (s, "PT_PAX_FLAGS") == 0) ++ $$ = exp_intop (0x65041580); + else + { + einfo (_("\ +--- binutils-2.26/ld/lexsup.c.orig 2015-11-13 09:27:42.000000000 +0100 ++++ binutils-2.26/ld/lexsup.c 2016-01-26 21:08:41.787138458 +0100 +@@ -1793,8 +1793,12 @@ + fprintf (file, _("\ + -z muldefs Allow multiple definitions\n")); + fprintf (file, _("\ ++ -z execheap Mark executable as requiring executable heap\n")); ++ fprintf (file, _("\ + -z execstack Mark executable as requiring executable stack\n")); + fprintf (file, _("\ ++ -z noexecheap Mark executable as not requiring executable heap\n")); ++ fprintf (file, _("\ + -z noexecstack Mark executable as not requiring executable stack\n")); + } + From 559ecc92127873d2075dc1c24dad986bc1ff868a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 28 Feb 2016 01:12:58 +0100 Subject: [PATCH 006/678] stdenv-linux: Avoid building m4/bison twice --- pkgs/stdenv/linux/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/stdenv/linux/default.nix b/pkgs/stdenv/linux/default.nix index 965188a0cdd..2aa32bec85e 100644 --- a/pkgs/stdenv/linux/default.nix +++ b/pkgs/stdenv/linux/default.nix @@ -190,7 +190,7 @@ rec { name = "bootstrap-gcc-wrapper"; overrides = pkgs: { - inherit (stage1.pkgs) perl binutils paxctl; + inherit (stage1.pkgs) perl binutils paxctl gnum4 bison; # This also contains the full, dynamically linked, final Glibc. }; }; @@ -207,7 +207,7 @@ rec { name = "bootstrap-gcc-wrapper"; overrides = pkgs: rec { - inherit (stage2.pkgs) binutils glibc perl patchelf linuxHeaders; + inherit (stage2.pkgs) binutils glibc perl patchelf linuxHeaders gnum4 bison; # Link GCC statically against GMP etc. This makes sense because # these builds of the libraries are only used by GCC, so it # reduces the size of the stdenv closure. @@ -241,7 +241,7 @@ rec { # because gcc (since JAR support) already depends on zlib, and # then if we already have a zlib we want to use that for the # other purposes (binutils and top-level pkgs) too. - inherit (stage3.pkgs) gettext gnum4 gmp perl glibc zlib linuxHeaders; + inherit (stage3.pkgs) gettext gnum4 bison gmp perl glibc zlib linuxHeaders; gcc = lib.makeOverridable (import ../../build-support/cc-wrapper) { nativeTools = false; From 2040a9ac574fffd36fe20130897ccec2d5928827 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 28 Feb 2016 01:13:15 +0100 Subject: [PATCH 007/678] stdenv-linux: Ensure binutils comes before bootstrapTools in $PATH Otherwise, when building glibc and other packages, the "strip" from bootstrapTools is used, which doesn't recognise some tags produced by the newer "ld" from binutils. --- pkgs/build-support/cc-wrapper/setup-hook.sh | 12 ++++++------ pkgs/stdenv/generic/setup.sh | 16 ++++------------ 2 files changed, 10 insertions(+), 18 deletions(-) diff --git a/pkgs/build-support/cc-wrapper/setup-hook.sh b/pkgs/build-support/cc-wrapper/setup-hook.sh index 3d0b2fdfe8a..35620483d2b 100644 --- a/pkgs/build-support/cc-wrapper/setup-hook.sh +++ b/pkgs/build-support/cc-wrapper/setup-hook.sh @@ -22,20 +22,20 @@ envHooks+=(addCVars) # Note: these come *after* $out in the PATH (see setup.sh). -if [ -n "@cc@" ]; then - addToSearchPath PATH @cc@/bin +if [ -n "@binutils@" ]; then + addToSearchPath _PATH @binutils@/bin fi -if [ -n "@binutils@" ]; then - addToSearchPath PATH @binutils@/bin +if [ -n "@cc@" ]; then + addToSearchPath _PATH @cc@/bin fi if [ -n "@libc@" ]; then - addToSearchPath PATH @libc@/bin + addToSearchPath _PATH @libc@/bin fi if [ -n "@coreutils@" ]; then - addToSearchPath PATH @coreutils@/bin + addToSearchPath _PATH @coreutils@/bin fi if [ -z "$crossConfig" ]; then diff --git a/pkgs/stdenv/generic/setup.sh b/pkgs/stdenv/generic/setup.sh index b49846fa050..97eb855d359 100644 --- a/pkgs/stdenv/generic/setup.sh +++ b/pkgs/stdenv/generic/setup.sh @@ -214,7 +214,6 @@ PATH= for i in $initialPath; do if [ "$i" = / ]; then i=; fi addToSearchPath PATH $i/bin - addToSearchPath PATH $i/sbin done if [ "$NIX_DEBUG" = 1 ]; then @@ -262,6 +261,10 @@ findInputs() { source "$pkg" fi + if [ -d $1/bin ]; then + addToSearchPath _PATH $1/bin + fi + if [ -f "$pkg/nix-support/setup-hook" ]; then source "$pkg/nix-support/setup-hook" fi @@ -289,10 +292,6 @@ done _addToNativeEnv() { local pkg=$1 - if [ -d $1/bin ]; then - addToSearchPath _PATH $1/bin - fi - # Run the package-specific hooks set by the setup-hook scripts. runHook envHook "$pkg" } @@ -304,13 +303,6 @@ done _addToCrossEnv() { local pkg=$1 - # Some programs put important build scripts (freetype-config and similar) - # into their crossDrv bin path. Intentionally these should go after - # the nativePkgs in PATH. - if [ -d $1/bin ]; then - addToSearchPath _PATH $1/bin - fi - # Run the package-specific hooks set by the setup-hook scripts. runHook crossEnvHook "$pkg" } From 69a337edae4d8d0dd6bd6e96468ba887509f3f0a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 28 Feb 2016 01:54:55 +0100 Subject: [PATCH 008/678] separateDebugInfo: Compress debug sections at compile/link time --- .../setup-hooks/separate-debug-info.sh | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/pkgs/build-support/setup-hooks/separate-debug-info.sh b/pkgs/build-support/setup-hooks/separate-debug-info.sh index 37753d9ce40..d2d8386c92d 100644 --- a/pkgs/build-support/setup-hooks/separate-debug-info.sh +++ b/pkgs/build-support/setup-hooks/separate-debug-info.sh @@ -1,5 +1,5 @@ -export NIX_LDFLAGS+=" --build-id" -export NIX_CFLAGS_COMPILE+=" -ggdb" +export NIX_LDFLAGS+=" --build-id --compress-debug-sections" +export NIX_CFLAGS_COMPILE+=" -ggdb -Wa,--compress-debug-sections" dontStrip=1 fixupOutputHooks+=(_separateDebugInfo) @@ -25,18 +25,10 @@ _separateDebugInfo() { # Extract the debug info. header "separating debug info from $i (build ID $id)" mkdir -p "$dst/${id:0:2}" - objcopy --only-keep-debug "$i" "$dst/${id:0:2}/${id:2}.debug" --compress-debug-sections + objcopy --only-keep-debug "$i" "$dst/${id:0:2}/${id:2}.debug" strip --strip-debug "$i" # Also a create a symlink .debug. ln -sfn ".build-id/${id:0:2}/${id:2}.debug" "$dst/../$(basename "$i")" done < <(find "$prefix" -type f -print0) } - -# - We might prefer to compress the debug info during link-time already, -# but our ld doesn't support --compress-debug-sections=zlib (yet). -# - Debug info may cause problems due to excessive memory usage during linking. -# Using -Wa,--compress-debug-sections should help with that; -# further interesting information: https://gcc.gnu.org/wiki/DebugFission -# - Another related tool: https://fedoraproject.org/wiki/Features/DwarfCompressor - From d5bb6a1f9c0c099738a37ce2e923cd71d85b5145 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 28 Feb 2016 02:57:37 +0100 Subject: [PATCH 009/678] glibc: Enable separate debug symbols The importance of glibc makes it worthwhile to provide debug symbols. However, this revealed an issue with separateDebugInfo: it was indiscriminately adding --build-id to all ld invocations, while in fact it should only do that for final links. Glibc also uses non-final ("relocatable") links, leading to subsequent failure to apply a build ID ("Cannot create .note.gnu.build-id section, --build-id ignored"). So now ld-wrapper.sh only passes --build-id for final links. --- pkgs/build-support/cc-wrapper/ld-wrapper.sh | 17 ++++++++++++++++- .../setup-hooks/separate-debug-info.sh | 3 ++- pkgs/development/libraries/glibc/builder.sh | 4 ++++ pkgs/development/libraries/glibc/default.nix | 19 +++---------------- 4 files changed, 25 insertions(+), 18 deletions(-) diff --git a/pkgs/build-support/cc-wrapper/ld-wrapper.sh b/pkgs/build-support/cc-wrapper/ld-wrapper.sh index 6ef06eb7034..449a8645904 100644 --- a/pkgs/build-support/cc-wrapper/ld-wrapper.sh +++ b/pkgs/build-support/cc-wrapper/ld-wrapper.sh @@ -146,11 +146,26 @@ if [ "$NIX_DONT_SET_RPATH" != 1 ]; then # Finally, add `-rpath' switches. for i in $rpath; do - extra=(${extra[@]} -rpath $i) + extra+=(-rpath $i) done fi +# Only add --build-id if this is a final link. FIXME: should build gcc +# with --enable-linker-build-id instead? +if [ "$NIX_SET_BUILD_ID" = 1 ]; then + for p in "${params[@]}"; do + if [ "$p" = "-r" -o "$p" = "--relocatable" -o "$p" = "-i" ]; then + relocatable=1 + break + fi + done + if [ -z "$relocatable" ]; then + extra+=(--build-id) + fi +fi + + # Optionally print debug info. if [ -n "$NIX_DEBUG" ]; then echo "original flags to @prog@:" >&2 diff --git a/pkgs/build-support/setup-hooks/separate-debug-info.sh b/pkgs/build-support/setup-hooks/separate-debug-info.sh index d2d8386c92d..518be964733 100644 --- a/pkgs/build-support/setup-hooks/separate-debug-info.sh +++ b/pkgs/build-support/setup-hooks/separate-debug-info.sh @@ -1,4 +1,5 @@ -export NIX_LDFLAGS+=" --build-id --compress-debug-sections" +export NIX_SET_BUILD_ID=1 +export NIX_LDFLAGS+=" --compress-debug-sections=zlib" export NIX_CFLAGS_COMPILE+=" -ggdb -Wa,--compress-debug-sections" dontStrip=1 diff --git a/pkgs/development/libraries/glibc/builder.sh b/pkgs/development/libraries/glibc/builder.sh index d0684d6194d..d60b143a1ec 100644 --- a/pkgs/development/libraries/glibc/builder.sh +++ b/pkgs/development/libraries/glibc/builder.sh @@ -37,6 +37,10 @@ postInstall() { # Get rid of more unnecessary stuff. rm -rf $out/var $out/sbin/sln + + for i in $out/lib/*.a; do + strip -S "$i" + done } genericBuild diff --git a/pkgs/development/libraries/glibc/default.nix b/pkgs/development/libraries/glibc/default.nix index 5e25c2dc8bc..2630cdb127f 100644 --- a/pkgs/development/libraries/glibc/default.nix +++ b/pkgs/development/libraries/glibc/default.nix @@ -2,7 +2,6 @@ , installLocales ? true , profilingLibraries ? false , gccCross ? null -, debugSymbols ? false , withGd ? false, gd ? null, libpng ? null }: @@ -13,9 +12,7 @@ let cross = if gccCross != null then gccCross.target else null; in build cross ({ - name = "glibc" - + lib.optionalString debugSymbols "-debug" - + lib.optionalString withGd "-gd"; + name = "glibc" + lib.optionalString withGd "-gd"; inherit lib stdenv fetchurl linuxHeaders installLocales profilingLibraries gccCross withGd gd libpng; @@ -38,23 +35,13 @@ in fi ''; + separateDebugInfo = true; + meta.description = "The GNU C Library"; } // - (if debugSymbols - then { - # Build with debugging symbols, but leave optimizations on and don't - # attempt to keep the build tree. - dontStrip = true; - dontCrossStrip = true; - NIX_STRIP_DEBUG = 0; - } - else {}) - - // - (if cross != null then { preConfigure = '' From abd3c246a43ea5e2128d3372b5fe0295f18cad78 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 28 Feb 2016 12:59:17 +0100 Subject: [PATCH 010/678] netpbm: Disable parallel building Looks like the "partlist" file is constructed in an unsound way. http://hydra.nixos.org/build/32430147 --- pkgs/tools/graphics/netpbm/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/graphics/netpbm/default.nix b/pkgs/tools/graphics/netpbm/default.nix index e69a73ff321..3b9f4e64d07 100644 --- a/pkgs/tools/graphics/netpbm/default.nix +++ b/pkgs/tools/graphics/netpbm/default.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation rec { touch lib/standardppmdfont.c ''; - enableParallelBuilding = true; + enableParallelBuilding = false; installPhase = '' make package pkgdir=$out From c388380bb48411dae999440f378daa75129eaabc Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 28 Feb 2016 15:20:14 +0100 Subject: [PATCH 011/678] Switch to GCC 5 --- pkgs/stdenv/linux/default.nix | 9 ++------- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/pkgs/stdenv/linux/default.nix b/pkgs/stdenv/linux/default.nix index 965188a0cdd..6012264d3a6 100644 --- a/pkgs/stdenv/linux/default.nix +++ b/pkgs/stdenv/linux/default.nix @@ -214,14 +214,9 @@ rec { gmp = pkgs.gmp.override { stdenv = pkgs.makeStaticLibraries pkgs.stdenv; }; mpfr = pkgs.mpfr.override { stdenv = pkgs.makeStaticLibraries pkgs.stdenv; }; libmpc = pkgs.libmpc.override { stdenv = pkgs.makeStaticLibraries pkgs.stdenv; }; - isl_0_11 = pkgs.isl_0_11.override { stdenv = pkgs.makeStaticLibraries pkgs.stdenv; }; - cloog_0_18_0 = pkgs.cloog_0_18_0.override { - stdenv = pkgs.makeStaticLibraries pkgs.stdenv; - isl = isl_0_11; - }; + isl_0_14 = pkgs.isl_0_14.override { stdenv = pkgs.makeStaticLibraries pkgs.stdenv; }; gccPlain = pkgs.gcc.cc.override { - isl = isl_0_11; - cloog = cloog_0_18_0; + isl = isl_0_14; }; }; extraBuildInputs = [ stage2.pkgs.patchelf stage2.pkgs.paxctl ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ef6dc1f6f3b..e1b19a8ccbe 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4062,7 +4062,7 @@ let gambit = callPackage ../development/compilers/gambit { }; - gcc = gcc49; + gcc = gcc5; gcc_multi = if system == "x86_64-linux" then lowPrio ( From 83011723af5cf666db4cd10c14f9162b0a463fa1 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 28 Feb 2016 17:52:32 +0100 Subject: [PATCH 012/678] gcc: Use the pre-C++11 ABI by default --- pkgs/development/compilers/gcc/5/default.nix | 2 ++ pkgs/development/compilers/gcc/5/use-old-abi.sh | 1 + 2 files changed, 3 insertions(+) create mode 100644 pkgs/development/compilers/gcc/5/use-old-abi.sh diff --git a/pkgs/development/compilers/gcc/5/default.nix b/pkgs/development/compilers/gcc/5/default.nix index 3b105143c0b..53e64fe8abc 100644 --- a/pkgs/development/compilers/gcc/5/default.nix +++ b/pkgs/development/compilers/gcc/5/default.nix @@ -495,6 +495,8 @@ stdenv.mkDerivation ({ inherit (stdenv) is64bit; + setupHook = ./use-old-abi.sh; + meta = { homepage = http://gcc.gnu.org/; license = stdenv.lib.licenses.gpl3Plus; # runtime support libraries are typically LGPLv3+ diff --git a/pkgs/development/compilers/gcc/5/use-old-abi.sh b/pkgs/development/compilers/gcc/5/use-old-abi.sh new file mode 100644 index 00000000000..3a0c996033a --- /dev/null +++ b/pkgs/development/compilers/gcc/5/use-old-abi.sh @@ -0,0 +1 @@ +NIX_CFLAGS_COMPILE+=" -D_GLIBCXX_USE_CXX11_ABI=0" From d255a8980a9a17c9b5ec7217ba1b63b6f9ef21f6 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 29 Feb 2016 11:35:59 +0100 Subject: [PATCH 013/678] patchelf: Use 0.9 release tarball --- pkgs/development/tools/misc/patchelf/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/misc/patchelf/default.nix b/pkgs/development/tools/misc/patchelf/default.nix index 50e5443ad5f..7154166c251 100644 --- a/pkgs/development/tools/misc/patchelf/default.nix +++ b/pkgs/development/tools/misc/patchelf/default.nix @@ -4,9 +4,8 @@ stdenv.mkDerivation rec { name = "patchelf-0.9"; src = fetchurl { - #url = "http://nixos.org/releases/patchelf/${name}/${name}.tar.bz2"; - url = http://hydra.nixos.org/build/32429884/download/2/patchelf-0.9pre265_498aa37.tar.bz2; - sha256 = "f762813ad493ad73afb7846a530fe2f5e40a5d89b7dba228ce0c62651e9c851e"; + url = "http://nixos.org/releases/patchelf/${name}/${name}.tar.bz2"; + sha256 = "a0f65c1ba148890e9f2f7823f4bedf7ecad5417772f64f994004f59a39014f83"; }; setupHook = [ ./setup-hook.sh ]; From 735b430537d648e11436ba6082ca22567d6448cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 29 Feb 2016 10:53:35 +0100 Subject: [PATCH 014/678] haskellPackages: fix evaluation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It seems `self` was wanted instead of `pkgs` by the author of 3844206. (cherry picked from commit 0294fc5bbda95f80d39a6242388787d6d3576701) Signed-off-by: Domen Kožar (cherry picked from commit 6ee0b0e335563a7213a71c9fa6737cb6563db8e0) Signed-off-by: Domen Kožar --- pkgs/development/haskell-modules/configuration-common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 1b2a82f3dcb..4fa6d2f78bb 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -323,7 +323,7 @@ self: super: { github-types = dontCheck super.github-types; # http://hydra.cryp.to/build/1114046/nixlog/1/raw hadoop-rpc = dontCheck super.hadoop-rpc; # http://hydra.cryp.to/build/527461/nixlog/2/raw hasql = dontCheck super.hasql; # http://hydra.cryp.to/build/502489/nixlog/4/raw - hjsonschema = overrideCabal (super.hjsonschema.override { hjsonpointer = pkgs.hjsonpointer_0_2_0_4; }) (drv: { testTarget = "local"; }); + hjsonschema = overrideCabal (super.hjsonschema.override { hjsonpointer = self.hjsonpointer_0_2_0_4; }) (drv: { testTarget = "local"; }); hoogle = overrideCabal super.hoogle (drv: { testTarget = "--test-option=--no-net"; }); marmalade-upload = dontCheck super.marmalade-upload; # http://hydra.cryp.to/build/501904/nixlog/1/raw network-transport-tcp = dontCheck super.network-transport-tcp; From 89742e6b051e6ae109586bf2251b5d837295fe75 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 29 Feb 2016 15:33:57 +0100 Subject: [PATCH 015/678] binutils: Apply upstream bug fix This broke syslinux: http://hydra.nixos.org/build/32430411/nixlog/89/raw --- .../tools/misc/binutils/default.nix | 3 ++ .../tools/misc/binutils/fix-bsymbolic.patch | 47 +++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 pkgs/development/tools/misc/binutils/fix-bsymbolic.patch diff --git a/pkgs/development/tools/misc/binutils/default.nix b/pkgs/development/tools/misc/binutils/default.nix index 944a5db07c7..89dd269b8cc 100644 --- a/pkgs/development/tools/misc/binutils/default.nix +++ b/pkgs/development/tools/misc/binutils/default.nix @@ -32,6 +32,9 @@ stdenv.mkDerivation rec { # This is needed, for instance, so that running "ldd" on a binary that is # PaX-marked to disable mprotect doesn't fail with permission denied. ./pt-pax-flags.patch + + # Bug fix backported from binutils master. + ./fix-bsymbolic.patch ]; outputs = [ "out" "info" ]; diff --git a/pkgs/development/tools/misc/binutils/fix-bsymbolic.patch b/pkgs/development/tools/misc/binutils/fix-bsymbolic.patch new file mode 100644 index 00000000000..afaafc997ef --- /dev/null +++ b/pkgs/development/tools/misc/binutils/fix-bsymbolic.patch @@ -0,0 +1,47 @@ +http://lists.gnu.org/archive/html/bug-binutils/2016-01/msg00193.html +https://sourceware.org/bugzilla/show_bug.cgi?id=19615 + +From 1dab972d797c060e17229c2e10da01852ba82629 Mon Sep 17 00:00:00 2001 +From: "H.J. Lu" +Date: Thu, 11 Feb 2016 15:31:15 -0800 +Subject: [PATCH] Enable -Bsymbolic and -Bsymbolic-functions to PIE + +Before binutils 2.26, -Bsymbolic and -Bsymbolic-functions were also +applied to PIE so that "ld -pie -Bsymbolic -E" can be used to export +symbols in PIE with local binding. This patch re-enables -Bsymbolic +and -Bsymbolic-functions for PIE. + +diff --git a/ld/lexsup.c b/ld/lexsup.c +index 4cad209..e2fb212 100644 +--- a/ld/lexsup.c ++++ b/ld/lexsup.c +@@ -1586,15 +1586,14 @@ parse_args (unsigned argc, char **argv) + /* We may have -Bsymbolic, -Bsymbolic-functions, --dynamic-list-data, + --dynamic-list-cpp-new, --dynamic-list-cpp-typeinfo and + --dynamic-list FILE. -Bsymbolic and -Bsymbolic-functions are +- for shared libraries. -Bsymbolic overrides all others and vice +- versa. */ ++ for PIC outputs. -Bsymbolic overrides all others and vice versa. */ + switch (command_line.symbolic) + { + case symbolic_unset: + break; + case symbolic: +- /* -Bsymbolic is for shared library only. */ +- if (bfd_link_dll (&link_info)) ++ /* -Bsymbolic is for PIC output only. */ ++ if (bfd_link_pic (&link_info)) + { + link_info.symbolic = TRUE; + /* Should we free the unused memory? */ +@@ -1603,8 +1602,8 @@ parse_args (unsigned argc, char **argv) + } + break; + case symbolic_functions: +- /* -Bsymbolic-functions is for shared library only. */ +- if (bfd_link_dll (&link_info)) ++ /* -Bsymbolic-functions is for PIC output only. */ ++ if (bfd_link_pic (&link_info)) + command_line.dynamic_list = dynamic_list_data; + break; + } From cdbd14a1a8c40b6ee9d25df8dc65c4e5e6bd9ff7 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 1 Mar 2016 15:18:57 +0100 Subject: [PATCH 016/678] openssl: 1.0.1r -> 1.0.1s, 1.0.2f -> 1.0.2g CVE-2016-0800 --- pkgs/development/libraries/openssl/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/openssl/default.nix b/pkgs/development/libraries/openssl/default.nix index 98e168f310d..432f9c42b51 100644 --- a/pkgs/development/libraries/openssl/default.nix +++ b/pkgs/development/libraries/openssl/default.nix @@ -5,7 +5,7 @@ with stdenv.lib; let - opensslCrossSystem = stdenv.cross.openssl.system or + opensslCrossSystem = stdenv.cross.openssl.system or (throw "openssl needs its platform name cross building"); common = { version, sha256 }: stdenv.mkDerivation rec { @@ -100,13 +100,13 @@ let in { openssl_1_0_1 = common { - version = "1.0.1r"; - sha256 = "0iik7a3b0mrfrxzngdf7ywfscg9inbw77y0jp2ccw0gdap9xhjvq"; + version = "1.0.1s"; + sha256 = "e7e81d82f3cd538ab0cdba494006d44aab9dd96b7f6233ce9971fb7c7916d511"; }; openssl_1_0_2 = lowPrio (common { - version = "1.0.2f"; - sha256 = "932b4ee4def2b434f85435d9e3e19ca8ba99ce9a065a61524b429a9d5e9b2e9c"; + version = "1.0.2g"; + sha256 = "b784b1b3907ce39abf4098702dade6365522a253ad1552e267a9a0e89594aa33"; }); } From e0d17fdf105340f28c2208bb750f0a32f136f0fc Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 1 Mar 2016 15:25:53 +0100 Subject: [PATCH 017/678] openssl: Use 1.0.2 by default Provided that not too much breaks, we should probably cherry-pick this to 16.03, since the end of the 1.0.1 support window is a bit too close to the expected lifetime of 16.0.3. @domenkozar --- pkgs/development/libraries/openssl/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 4 +--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/openssl/default.nix b/pkgs/development/libraries/openssl/default.nix index 432f9c42b51..081f71b498e 100644 --- a/pkgs/development/libraries/openssl/default.nix +++ b/pkgs/development/libraries/openssl/default.nix @@ -104,9 +104,9 @@ in { sha256 = "e7e81d82f3cd538ab0cdba494006d44aab9dd96b7f6233ce9971fb7c7916d511"; }; - openssl_1_0_2 = lowPrio (common { + openssl_1_0_2 = common { version = "1.0.2g"; sha256 = "b784b1b3907ce39abf4098702dade6365522a253ad1552e267a9a0e89594aa33"; - }); + }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2eddc9a3891..bc56c08a0e1 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2201,12 +2201,10 @@ let nodejs-5_x = callPackage ../development/web/nodejs/v5.nix { libtool = darwin.cctools; - openssl = openssl_1_0_2; }; nodejs-4_x = callPackage ../development/web/nodejs/v4.nix { libtool = darwin.cctools; - openssl = openssl_1_0_2; }; nodejs-0_10 = callPackage ../development/web/nodejs/v0_10.nix { @@ -8276,7 +8274,7 @@ let wolfssl = callPackage ../development/libraries/wolfssl { }; - openssl = openssl_1_0_1; + openssl = openssl_1_0_2; inherit (callPackages ../development/libraries/openssl { fetchurl = fetchurlBoot; From e9b408936c7b4c56d7326fb364e7d2138060f0ec Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 1 Mar 2016 16:14:58 +0100 Subject: [PATCH 018/678] findutils: Disable tests on Darwin The strftime test fails with: NZST-12NZDT,M9.5.0,M4.1.0/3: expected "1970-01-01 13:00:00 +1300 (NZDT)", got "1970-01-01 12:00:00 +1200 (NZST)" The source in fact marks this test as "ahistorical", so the result on Darwin might not be incorrect. http://hydra.nixos.org/build/32578562/nixlog/1/raw --- pkgs/tools/misc/findutils/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/misc/findutils/default.nix b/pkgs/tools/misc/findutils/default.nix index 64f791fb77b..b6ab3985f23 100644 --- a/pkgs/tools/misc/findutils/default.nix +++ b/pkgs/tools/misc/findutils/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ coreutils ]; - doCheck = true; + doCheck = !stdenv.isDarwin; crossAttrs = { # http://osdir.com/ml/bug-findutils-gnu/2009-08/msg00026.html From a5b501a36ec628895ca1bdfa9d7f78fb978476b2 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 2 Mar 2016 17:21:46 +0100 Subject: [PATCH 019/678] aterm: Mark as broken It segfaults when built with GCC 5. I could try to fix it, but it's not clear if anybody still cares about this package. Disabling it until somebody complains. http://hydra.nixos.org/build/32612811 --- pkgs/development/libraries/aterm/2.5.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/libraries/aterm/2.5.nix b/pkgs/development/libraries/aterm/2.5.nix index ef53a76d20b..c1bbbb0ae5a 100644 --- a/pkgs/development/libraries/aterm/2.5.nix +++ b/pkgs/development/libraries/aterm/2.5.nix @@ -29,5 +29,6 @@ stdenv.mkDerivation { description = "Library for manipulation of term data structures in C"; platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; maintainers = [ stdenv.lib.maintainers.eelco ]; + broken = true; }; } From 6bec7cb9fcb2e79b88b9c7377ccab8e945a31d18 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 2 Mar 2016 17:34:14 +0100 Subject: [PATCH 020/678] libcli: Fix build on gcc 5 http://hydra.nixos.org/build/32606953 --- pkgs/development/libraries/libcli/default.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/libcli/default.nix b/pkgs/development/libraries/libcli/default.nix index 1c247f6faa8..587e72409c4 100644 --- a/pkgs/development/libraries/libcli/default.nix +++ b/pkgs/development/libraries/libcli/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub }: +{ stdenv, fetchFromGitHub, fetchurl }: stdenv.mkDerivation rec { name = "libcli-${version}"; @@ -11,6 +11,13 @@ stdenv.mkDerivation rec { owner = "dparrish"; }; + patches = + [ (fetchurl { + url = "https://github.com/dparrish/libcli/commit/ebc5a09db457ee1be9996711463cbbafe5ea72d5.patch"; + sha256 = "0szjiw3gd7by1sv924shnngfxvc98xvaqvx228b575xq93xxjcwl"; + }) + ]; + enableParallelBuilding = true; makeFlags = [ "PREFIX=$(out)" ]; From 4bb9117992aba27b4f23f25083ee2ce42755ba77 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 2 Mar 2016 17:40:08 +0100 Subject: [PATCH 021/678] telepathy-qt: Fix build on gcc 5 -Werror considered harmful. --- pkgs/development/libraries/telepathy/qt/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/telepathy/qt/default.nix b/pkgs/development/libraries/telepathy/qt/default.nix index 441d9385f73..e3e579eefdb 100644 --- a/pkgs/development/libraries/telepathy/qt/default.nix +++ b/pkgs/development/libraries/telepathy/qt/default.nix @@ -8,6 +8,7 @@ stdenv.mkDerivation rec { url = "http://telepathy.freedesktop.org/releases/telepathy-qt/${name}.tar.gz"; sha256 = "1y51c6rxk5qvmab98c8rnmrlyk27hnl248casvbq3cd93sav8vj9"; }; + patches = let mkUrl = hash: "http://cgit.freedesktop.org/telepathy/telepathy-qt/patch/?id=" + hash; in [ @@ -36,7 +37,7 @@ stdenv.mkDerivation rec { cmakeFlags = "-DDESIRED_QT_VERSION=${builtins.substring 0 1 qtbase.version}"; # should be removable after the next update - NIX_CFLAGS_COMPILE = [ "-Wno-error=cpp" "-Wno-error=unused-but-set-variable" ]; + NIX_CFLAGS_COMPILE = [ "-Wno-error" ]; preBuild = '' NIX_CFLAGS_COMPILE+=" `pkg-config --cflags dbus-glib-1`" From dd1f01ec110fc8dea45884f40a76b805b1a60f0b Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 2 Mar 2016 17:51:32 +0100 Subject: [PATCH 022/678] gsl: Disable tests on i686-linux http://hydra.nixos.org/build/32624041 --- pkgs/development/libraries/gsl/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/gsl/default.nix b/pkgs/development/libraries/gsl/default.nix index af6c91499ac..f5fdf4eec44 100644 --- a/pkgs/development/libraries/gsl/default.nix +++ b/pkgs/development/libraries/gsl/default.nix @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { ./disable-fma.patch # http://lists.gnu.org/archive/html/bug-gsl/2011-11/msg00019.html ]; - doCheck = true; + doCheck = stdenv.system != "i686-linux"; # https://lists.gnu.org/archive/html/bug-gsl/2015-11/msg00012.html meta = { description = "The GNU Scientific Library, a large numerical library"; From 62c562a52298767dac05e8f213247bf84d2156a9 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 2 Mar 2016 18:01:17 +0100 Subject: [PATCH 023/678] gcc: Remove 4.3 and 4.4 GCC 4.3 was used by only one package ("self"), which I've marked as broken. --- pkgs/development/compilers/gcc/4.3/builder.sh | 144 -------- .../development/compilers/gcc/4.3/default.nix | 184 ----------- .../compilers/gcc/4.3/ghdl-ortho-cflags.patch | 36 -- .../compilers/gcc/4.3/ghdl-runtime-o2.patch | 13 - .../gcc/4.3/java-jvgenmain-link.patch | 17 - .../compilers/gcc/4.3/libmudflap-cpp.patch | 12 - .../gcc/4.3/no-sys-dirs-fortran.patch | 15 - .../compilers/gcc/4.3/no-sys-dirs.patch | 132 -------- .../compilers/gcc/4.3/pass-cxxcpp.patch | 21 -- .../compilers/gcc/4.3/siginfo_t_fix.patch | 174 ---------- pkgs/development/compilers/gcc/4.4/builder.sh | 200 ----------- .../development/compilers/gcc/4.4/default.nix | 310 ------------------ .../compilers/gcc/4.4/ghdl-ortho-cflags.patch | 111 ------- .../compilers/gcc/4.4/gnat-cflags.patch | 33 -- .../compilers/gcc/4.4/libstdc++-target.patch | 15 - .../compilers/gcc/4.4/no-sys-dirs.patch | 66 ---- .../compilers/gcc/4.4/pass-cxxcpp.patch | 21 -- .../compilers/gcc/4.4/pr41818.patch | 26 -- .../compilers/gcc/4.4/siginfo_t_fix.patch | 174 ---------- .../development/compilers/gcc/4.4/sources.nix | 26 -- .../compilers/gcc/4.4/target-cpp.patch | 12 - .../compilers/gcc/4.4/update-gcc.sh | 64 ---- .../development/interpreters/self/default.nix | 8 +- pkgs/top-level/all-packages.nix | 18 - pkgs/top-level/release.nix | 1 - 25 files changed, 4 insertions(+), 1829 deletions(-) delete mode 100644 pkgs/development/compilers/gcc/4.3/builder.sh delete mode 100644 pkgs/development/compilers/gcc/4.3/default.nix delete mode 100644 pkgs/development/compilers/gcc/4.3/ghdl-ortho-cflags.patch delete mode 100644 pkgs/development/compilers/gcc/4.3/ghdl-runtime-o2.patch delete mode 100644 pkgs/development/compilers/gcc/4.3/java-jvgenmain-link.patch delete mode 100644 pkgs/development/compilers/gcc/4.3/libmudflap-cpp.patch delete mode 100644 pkgs/development/compilers/gcc/4.3/no-sys-dirs-fortran.patch delete mode 100644 pkgs/development/compilers/gcc/4.3/no-sys-dirs.patch delete mode 100644 pkgs/development/compilers/gcc/4.3/pass-cxxcpp.patch delete mode 100644 pkgs/development/compilers/gcc/4.3/siginfo_t_fix.patch delete mode 100644 pkgs/development/compilers/gcc/4.4/builder.sh delete mode 100644 pkgs/development/compilers/gcc/4.4/default.nix delete mode 100644 pkgs/development/compilers/gcc/4.4/ghdl-ortho-cflags.patch delete mode 100644 pkgs/development/compilers/gcc/4.4/gnat-cflags.patch delete mode 100644 pkgs/development/compilers/gcc/4.4/libstdc++-target.patch delete mode 100644 pkgs/development/compilers/gcc/4.4/no-sys-dirs.patch delete mode 100644 pkgs/development/compilers/gcc/4.4/pass-cxxcpp.patch delete mode 100644 pkgs/development/compilers/gcc/4.4/pr41818.patch delete mode 100644 pkgs/development/compilers/gcc/4.4/siginfo_t_fix.patch delete mode 100644 pkgs/development/compilers/gcc/4.4/sources.nix delete mode 100644 pkgs/development/compilers/gcc/4.4/target-cpp.patch delete mode 100755 pkgs/development/compilers/gcc/4.4/update-gcc.sh diff --git a/pkgs/development/compilers/gcc/4.3/builder.sh b/pkgs/development/compilers/gcc/4.3/builder.sh deleted file mode 100644 index 16e53d9f231..00000000000 --- a/pkgs/development/compilers/gcc/4.3/builder.sh +++ /dev/null @@ -1,144 +0,0 @@ -source $stdenv/setup - - -export NIX_FIXINC_DUMMY=$NIX_BUILD_TOP/dummy -mkdir $NIX_FIXINC_DUMMY - - -# libstdc++ needs this; otherwise it will use /lib/cpp, which is a Bad -# Thing. -export CPP="gcc -E" - - -if test "$noSysDirs" = "1"; then - - if test -e $NIX_CC/nix-support/orig-libc; then - - # Figure out what extra flags to pass to the gcc compilers - # being generated to make sure that they use our glibc. - extraCFlags="$(cat $NIX_CC/nix-support/libc-cflags)" - extraLDFlags="$(cat $NIX_CC/nix-support/libc-ldflags) $(cat $NIX_CC/nix-support/libc-ldflags-before)" - - # Use *real* header files, otherwise a limits.h is generated - # that does not include Glibc's limits.h (notably missing - # SSIZE_MAX, which breaks the build). - export NIX_FIXINC_DUMMY=$(cat $NIX_CC/nix-support/orig-libc)/include - - else - # Hack: support impure environments. - extraCFlags="-isystem /usr/include" - extraLDFlags="-L/usr/lib64 -L/usr/lib" - export NIX_FIXINC_DUMMY=/usr/include - fi - - - extraCFlags="-g0 -I$gmp/include -I$mpfr/include $extraCFlags" - extraLDFlags="--strip-debug $extraLDFlags" - - export NIX_EXTRA_CFLAGS=$extraCFlags - for i in $extraLDFlags; do - export NIX_EXTRA_LDFLAGS="$NIX_EXTRA_LDFLAGS -Wl,$i" - done - - if test -n "$targetConfig"; then - if test -z "$crossStageStatic"; then - extraXCFlags="-B${libcCross}/lib -idirafter ${libcCross}/include" - extraXLDFlags="-L${libcCross}/lib" - export NIX_EXTRA_CFLAGS_TARGET=$extraXCFlags - for i in $extraXLDFlags; do - export NIX_EXTRA_LDFLAGS_TARGET="$NIX_EXTRA_LDFLAGS_TARGET -Wl,$i" - done - fi - - makeFlagsArray=( \ - "${makeFlagsArray[@]}" \ - NATIVE_SYSTEM_HEADER_DIR="$NIX_FIXINC_DUMMY" \ - SYSTEM_HEADER_DIR="$NIX_FIXINC_DUMMY" \ - CFLAGS_FOR_TARGET="$NIX_EXTRA_CFLAGS_TARGET $NIX_EXTRA_LDFLAGS_TARGET" \ - LDFLAGS_FOR_TARGET="$NIX_EXTRA_CFLAGS_TARGET $NIX_EXTRA_LDFLAGS_TARGET" \ - ) - else - export NIX_EXTRA_CFLAGS_TARGET=$NIX_EXTRA_CFLAGS - export NIX_EXTRA_LDFLAGS_TARGET=$NIX_EXTRA_LDFLAGS - makeFlagsArray=( \ - "${makeFlagsArray[@]}" \ - NATIVE_SYSTEM_HEADER_DIR="$NIX_FIXINC_DUMMY" \ - SYSTEM_HEADER_DIR="$NIX_FIXINC_DUMMY" \ - CFLAGS_FOR_BUILD="$NIX_EXTRA_CFLAGS $NIX_EXTRA_LDFLAGS" \ - CFLAGS_FOR_TARGET="$NIX_EXTRA_CFLAGS $NIX_EXTRA_LDFLAGS" \ - LDFLAGS_FOR_BUILD="$NIX_EXTRA_CFLAGS $NIX_EXTRA_LDFLAGS" \ - LDFLAGS_FOR_TARGET="$NIX_EXTRA_CFLAGS $NIX_EXTRA_LDFLAGS" \ - ) - fi - - if test -n "$targetConfig" -a "$crossStageStatic" == 1; then - # We don't want the gcc build to assume there will be a libc providing - # limits.h in this stagae - makeFlagsArray=( \ - "${makeFlagsArray[@]}" \ - LIMITS_H_TEST=false \ - ) - else - makeFlagsArray=( \ - "${makeFlagsArray[@]}" \ - LIMITS_H_TEST=true \ - ) - fi -fi - -if test -n "$targetConfig"; then - # The host strip will destroy everything in the target binaries otherwise - dontStrip=1 -fi - -preConfigure() { - # Perform the build in a different directory. - mkdir ../build - cd ../build - configureScript=../$sourceRoot/configure -} - - -postInstall() { - # Remove precompiled headers for now. They are very big and - # probably not very useful yet. - find $out/include -name "*.gch" -exec rm -rf {} \; -prune - - # Remove `fixincl' to prevent a retained dependency on the - # previous gcc. - rm -rf $out/libexec/gcc/*/*/install-tools - rm -rf $out/lib/gcc/*/*/install-tools - - # Get rid of some "fixed" header files - rm -rf $out/lib/gcc/*/*/include/root - - # Replace hard links for i686-pc-linux-gnu-gcc etc. with symlinks. - for i in $out/bin/*-gcc*; do - if cmp -s $out/bin/gcc $i; then - ln -sfn gcc $i - fi - done - - for i in $out/bin/*-c++* $out/bin/*-g++*; do - if cmp -s $out/bin/g++ $i; then - ln -sfn g++ $i - fi - done - - eval "$postInstallGhdl" -} - - -if test -z "$targetConfig"; then - if test -z "$profiledCompiler"; then - buildFlags="bootstrap $buildFlags" - else - buildFlags="profiledbootstrap $buildFlags" - fi -else -: -# buildFlags="all-gcc all-target-libgcc $buildFlags" -# installTargets="install-gcc install-target-libgcc" -fi - -genericBuild diff --git a/pkgs/development/compilers/gcc/4.3/default.nix b/pkgs/development/compilers/gcc/4.3/default.nix deleted file mode 100644 index 3db8ee5f3ea..00000000000 --- a/pkgs/development/compilers/gcc/4.3/default.nix +++ /dev/null @@ -1,184 +0,0 @@ -{ stdenv, fetchurl, noSysDirs -, langC ? true, langCC ? true, langFortran ? false, langTreelang ? false -, langJava ? false -, langVhdl ? false -, profiledCompiler ? false -, staticCompiler ? false -, enableShared ? true -, texinfo ? null -, gmp, mpfr -, bison ? null, flex ? null -, zlib ? null, boehmgc ? null -, enableMultilib ? false -, name ? "gcc" -, cross ? null -, binutilsCross ? null -, libcCross ? null -, crossStageStatic ? true -, gnat ? null -}: - -assert langTreelang -> bison != null && flex != null; - -assert cross != null -> profiledCompiler == false && enableMultilib == true; -assert (cross != null && crossStageStatic) -> (langCC == false && langFortran -== false && langTreelang == false); - -assert langVhdl -> gnat != null; - -with stdenv.lib; - -let - version = "4.3.6"; - - crossConfigureFlags = - "--target=${cross.config}" + - (if crossStageStatic then - " --disable-libssp --disable-nls" + - " --without-headers" + - " --disable-threads " + - " --disable-libmudflap " + - " --disable-libgomp " + - " --disable-shared" - else - " --with-headers=${libcCross}/include" + - " --enable-__cxa_atexit" + - " --enable-long-long" + - " --enable-threads=posix" + - " --enable-nls" - ); - stageNameAddon = if crossStageStatic then "-stage-static" else - "-stage-final"; - crossNameAddon = if cross != null then "-${cross.config}" + stageNameAddon else ""; -in - -stdenv.mkDerivation ({ - name = "${name}-${version}" + crossNameAddon; - - builder = ./builder.sh; - - src = - optional /*langC*/ true (fetchurl { - url = "mirror://gcc/releases/gcc-${version}/gcc-core-${version}.tar.bz2"; - sha256 = "0ygrfw3hgp48hkqipbl9lw38f27npigc2sm6f01g9iswpq1igbw6"; - }) ++ - optional langCC (fetchurl { - url = "mirror://gcc/releases/gcc-${version}/gcc-g++-${version}.tar.bz2"; - sha256 = "105xz3991b57zx3146xwlpchdb2sjmlknclvi1iac2gawm4mhxhf"; - }) ++ - optional langFortran (fetchurl { - url = "mirror://gcc/releases/gcc-${version}/gcc-fortran-${version}.tar.bz2"; - sha256 = "12bqvf53hvhrwjnh101vn9frb5g8cr98cra4f11dzhzs4ppydpi1"; - }) ++ - optional langJava (fetchurl { - url = "mirror://gcc/releases/gcc-${version}/gcc-java-${version}.tar.bz2"; - sha256 = "03w6jln9gmdv149s774rlw4rzi2zhbqna54r86cd6mql8flmy7fs"; - }); - - patches = - [ ./pass-cxxcpp.patch ./libmudflap-cpp.patch ./siginfo_t_fix.patch ] - ++ optional noSysDirs ./no-sys-dirs.patch - ++ optional (noSysDirs && langFortran) ./no-sys-dirs-fortran.patch - ++ optional langJava ./java-jvgenmain-link.patch - ++ optional langVhdl ./ghdl-ortho-cflags.patch - ++ optional langVhdl ./ghdl-runtime-o2.patch; - - inherit noSysDirs profiledCompiler staticCompiler crossStageStatic - binutilsCross libcCross; - targetConfig = if cross != null then cross.config else null; - - buildInputs = [texinfo gmp mpfr] - ++ (optionals langTreelang [bison flex]) - ++ (optional (zlib != null) zlib) - ++ (optional (boehmgc != null) boehmgc) - ++ (optionals (cross != null) [binutilsCross]) - ++ (optionals langVhdl [gnat]) - ; - - configureFlags = " - ${if enableMultilib then "" else "--disable-multilib"} - ${if enableShared then "" else "--disable-shared"} - --disable-libstdcxx-pch - --with-system-zlib - --enable-languages=${ - concatStrings (intersperse "," - ( optional langC "c" - ++ optional langCC "c++" - ++ optional langFortran "fortran" - ++ optional langJava "java" - ++ optional langTreelang "treelang" - ++ optional langVhdl "vhdl" - ) - ) - } - ${if stdenv.isi686 then "--with-arch=i686" else ""} - ${if cross != null then crossConfigureFlags else ""} - "; - #Above I added a hack on making the build different than the host. - - # Needed for the cross compilation to work - AR = "ar"; - LD = "ld"; - CC = "gcc"; - - NIX_EXTRA_LDFLAGS = if staticCompiler then "-static" else ""; - - inherit gmp mpfr; - - passthru = { inherit langC langCC langFortran langVhdl langTreelang - enableMultilib; }; - - # ghdl does not build fine with parallel building - enableParallelBuilding = !langVhdl; - - meta = { - homepage = "http://gcc.gnu.org/"; - license = "GPL/LGPL"; - description = "GNU Compiler Collection, 4.3.x"; - maintainers = with stdenv.lib.maintainers; [viric]; - platforms = with stdenv.lib.platforms; linux; - }; - -} // (if langJava then { - postConfigure = '' - make configure-gcc - sed -i gcc/Makefile -e 's@^CFLAGS = .*@& -I${zlib}/include@ ; s@^LDFLAGS = .*@& -L${zlib}/lib@' - sed -i gcc/Makefile -e 's@^CFLAGS = .*@& -I${boehmgc}/include@ ; s@^LDFLAGS = .*@& -L${boehmgc}/lib -lgc@' - ''; -} else {}) -// (if langVhdl then rec { - name = "ghdl-0.29"; - - ghdlSrc = fetchurl { - url = "http://ghdl.free.fr/ghdl-0.29.tar.bz2"; - sha256 = "15mlinr1lwljwll9ampzcfcrk9bk0qpdks1kxlvb70xf9zhh2jva"; - }; - - # Ghdl has some timestamps checks, storing file timestamps in '.cf' files. - # As we will change the timestamps to 1970-01-01 00:00:01, we also set the - # content of that .cf to that value. This way ghdl does not complain on - # the installed object files from the basic libraries (ieee, ...) - postInstallGhdl = '' - pushd $out - find . -name "*.cf" -exec \ - sed 's/[0-9]*\.000" /19700101000001.000" /g' -i {} \; - popd - ''; - - postUnpack = '' - tar xvf ${ghdlSrc} - mv ghdl-*/vhdl gcc*/gcc - rm -Rf ghdl-* - ''; - - passthru.isGNU = true; - - meta = { - homepage = "http://ghdl.free.fr/"; - license = stdenv.lib.licenses.gpl2Plus; - description = "Complete VHDL simulator, using the GCC technology"; - maintainers = with stdenv.lib.maintainers; [viric]; - platforms = with stdenv.lib.platforms; linux; - }; - -} else {})) diff --git a/pkgs/development/compilers/gcc/4.3/ghdl-ortho-cflags.patch b/pkgs/development/compilers/gcc/4.3/ghdl-ortho-cflags.patch deleted file mode 100644 index 14188083f76..00000000000 --- a/pkgs/development/compilers/gcc/4.3/ghdl-ortho-cflags.patch +++ /dev/null @@ -1,36 +0,0 @@ -diff --git a/gcc/vhdl/Make-lang.in b/gcc/vhdl/Make-lang.in -index 8f481df..681ac59 100644 ---- a/gcc/vhdl/Make-lang.in -+++ b/gcc/vhdl/Make-lang.in -@@ -96,7 +96,7 @@ AGCC_GCCOBJ_DIR=../ - AGCC_INC_FLAGS=-I$(AGCC_GCCOBJ_DIR)/gcc -I$(AGCC_GCCSRC_DIR)/include \ - -I$(AGCC_GCCSRC_DIR)/gcc -I$(AGCC_GCCSRC_DIR)/gcc/config \ - -I$(AGCC_GCCSRC_DIR)/libcpp/include --AGCC_CFLAGS=-g -Wall -DIN_GCC $(AGCC_INC_FLAGS) -+AGCC_CFLAGS=-g -Wall -DIN_GCC $(AGCC_INC_FLAGS) $(CFLAGS) - - AGCC_LOCAL_OBJS=ortho-lang.o - -@@ -140,7 +140,7 @@ ghdl$(exeext): force - - # Ghdl libraries. - ghdllib: ghdl$(exeext) $(GCC_PASSES) force -- $(MAKE_IN_VHDL) GRT_FLAGS="-O -g" ghdllib -+ $(MAKE_IN_VHDL) GRT_FLAGS="-O -g $(CFLAGS)" ghdllib - - # Build hooks: - -diff --git a/gcc/vhdl/Makefile.in b/gcc/vhdl/Makefile.in -index d754c6c..07abc4a 100644 ---- a/gcc/vhdl/Makefile.in -+++ b/gcc/vhdl/Makefile.in -@@ -80,7 +80,8 @@ T_CPPFLAGS = - X_ADAFLAGS = - T_ADAFLAGS = - --ADAC = $(CC) -+# Never use the bootstrapped compiler, as it may not be built for ada -+ADAC = gcc - - ECHO = echo - CHMOD = chmod diff --git a/pkgs/development/compilers/gcc/4.3/ghdl-runtime-o2.patch b/pkgs/development/compilers/gcc/4.3/ghdl-runtime-o2.patch deleted file mode 100644 index ddc455143c0..00000000000 --- a/pkgs/development/compilers/gcc/4.3/ghdl-runtime-o2.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/gcc/vhdl/Makefile.in b/gcc/vhdl/Makefile.in -index b8d2ed0..0e8bd55 100644 ---- a/gcc/vhdl/Makefile.in -+++ b/gcc/vhdl/Makefile.in -@@ -682,7 +682,7 @@ install-ghdllib: ghdllib grt.lst $(STD93_SRCS) $(STD87_SRCS) \ - PDIR=`pwd` && cd $(DESTDIR)$(VHDL_LIB_DIR) && \ - $(MAKE) -f $$PDIR/Makefile REL_DIR=../../.. \ - LIBSRC_DIR="src" LIB93_DIR=lib/v93 LIB87_DIR=lib/v87 \ -- ANALYZE="$$PDIR/../ghdl -a --GHDL1=$$PDIR/../ghdl1 --ieee=none" \ -+ ANALYZE="$$PDIR/../ghdl -a --GHDL1=$$PDIR/../ghdl1 --ieee=none -Wc,-O2" \ - std.v93 std.v87 ieee.v93 ieee.v87 synopsys.v93 synopsys.v87 mentor.v93 - # Copy std_standard (this is done after libraries, since they remove dirs). - $(INSTALL_DATA) std87_standard.o \ diff --git a/pkgs/development/compilers/gcc/4.3/java-jvgenmain-link.patch b/pkgs/development/compilers/gcc/4.3/java-jvgenmain-link.patch deleted file mode 100644 index 2612e8bfbbb..00000000000 --- a/pkgs/development/compilers/gcc/4.3/java-jvgenmain-link.patch +++ /dev/null @@ -1,17 +0,0 @@ -The `jvgenmain' executable must be linked against `vec.o', among others, -since it uses its vector API. - ---- gcc-4.3.3/gcc/java/Make-lang.in 2008-12-05 00:00:19.000000000 +0100 -+++ gcc-4.3.3/gcc/java/Make-lang.in 2009-07-03 16:11:41.000000000 +0200 -@@ -109,9 +109,9 @@ jcf-dump$(exeext): $(JCFDUMP_OBJS) $(LIB - $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(JCFDUMP_OBJS) \ - $(CPPLIBS) $(ZLIB) $(LDEXP_LIB) $(LIBS) - --jvgenmain$(exeext): $(JVGENMAIN_OBJS) $(LIBDEPS) -+jvgenmain$(exeext): $(JVGENMAIN_OBJS) $(LIBDEPS) $(BUILD_RTL) - rm -f $@ -- $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(JVGENMAIN_OBJS) $(LIBS) -+ $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(JVGENMAIN_OBJS) $(BUILD_RTL) $(LIBS) - - # - # Build hooks: diff --git a/pkgs/development/compilers/gcc/4.3/libmudflap-cpp.patch b/pkgs/development/compilers/gcc/4.3/libmudflap-cpp.patch deleted file mode 100644 index 09dfb26b20d..00000000000 --- a/pkgs/development/compilers/gcc/4.3/libmudflap-cpp.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff --git a/Makefile.in b/Makefile.in -index d24c1af..b86e522 100644 ---- a/Makefile.in -+++ b/Makefile.in -@@ -230,6 +229,7 @@ RAW_CXX_TARGET_EXPORTS = \ - - NORMAL_TARGET_EXPORTS = \ - $(BASE_TARGET_EXPORTS) \ -+ CPP="$(CC_FOR_TARGET) -E"; export CPP; \ - CXX="$(CXX_FOR_TARGET)"; export CXX; - - # Where to find GMP diff --git a/pkgs/development/compilers/gcc/4.3/no-sys-dirs-fortran.patch b/pkgs/development/compilers/gcc/4.3/no-sys-dirs-fortran.patch deleted file mode 100644 index 4568e57819b..00000000000 --- a/pkgs/development/compilers/gcc/4.3/no-sys-dirs-fortran.patch +++ /dev/null @@ -1,15 +0,0 @@ -diff -ru gcc-4.3.1-orig/libgfortran/configure gcc-4.3.1/libgfortran/configure ---- gcc-4.3.1-orig/libgfortran/configure 2008-06-06 16:49:11.000000000 +0200 -+++ gcc-4.3.1/libgfortran/configure 2008-06-27 08:25:08.000000000 +0200 -@@ -35405,6 +35405,11 @@ - # A language specific compiler. - CC=$lt_compiler - -+# Ugly hack to get libmudflap (and possibly other libraries) to build. -+# Libtool filters out \`-B' flags when linking (why?), so the \`-B' flag -+# to Glibc gets lost. Here we forcibly add it to any invocation. -+CC="\$CC $NIX_EXTRA_CFLAGS $NIX_EXTRA_LDFLAGS" -+ - # Is the compiler the GNU compiler? - with_gcc=$GCC - diff --git a/pkgs/development/compilers/gcc/4.3/no-sys-dirs.patch b/pkgs/development/compilers/gcc/4.3/no-sys-dirs.patch deleted file mode 100644 index 69fa2c7de82..00000000000 --- a/pkgs/development/compilers/gcc/4.3/no-sys-dirs.patch +++ /dev/null @@ -1,132 +0,0 @@ -diff -ru gcc-4.3.1-orig/gcc/cppdefault.c gcc-4.3.1/gcc/cppdefault.c ---- gcc-4.3.1-orig/gcc/cppdefault.c 2007-07-26 10:37:01.000000000 +0200 -+++ gcc-4.3.1/gcc/cppdefault.c 2008-06-25 17:48:23.000000000 +0200 -@@ -41,6 +41,10 @@ - # undef CROSS_INCLUDE_DIR - #endif - -+#undef LOCAL_INCLUDE_DIR -+#undef SYSTEM_INCLUDE_DIR -+#undef STANDARD_INCLUDE_DIR -+ - const struct default_include cpp_include_defaults[] - #ifdef INCLUDE_DEFAULTS - = INCLUDE_DEFAULTS; -diff -ru gcc-4.3.1-orig/gcc/gcc.c gcc-4.3.1/gcc/gcc.c ---- gcc-4.3.1-orig/gcc/gcc.c 2008-03-02 23:55:19.000000000 +0100 -+++ gcc-4.3.1/gcc/gcc.c 2008-06-25 17:52:53.000000000 +0200 -@@ -1478,10 +1478,10 @@ - /* Default prefixes to attach to command names. */ - - #ifndef STANDARD_STARTFILE_PREFIX_1 --#define STANDARD_STARTFILE_PREFIX_1 "/lib/" -+#define STANDARD_STARTFILE_PREFIX_1 "" - #endif - #ifndef STANDARD_STARTFILE_PREFIX_2 --#define STANDARD_STARTFILE_PREFIX_2 "/usr/lib/" -+#define STANDARD_STARTFILE_PREFIX_2 "" - #endif - - #ifdef CROSS_DIRECTORY_STRUCTURE /* Don't use these prefixes for a cross compiler. */ -@@ -1515,8 +1515,8 @@ - /* For native compilers, these are well-known paths containing - components that may be provided by the system. For cross - compilers, these paths are not used. */ --static const char *const standard_exec_prefix_1 = "/usr/libexec/gcc/"; --static const char *const standard_exec_prefix_2 = "/usr/lib/gcc/"; -+static const char *const standard_exec_prefix_1 = "/no-such-path/"; -+static const char *const standard_exec_prefix_2 = "/no-such-path/"; - static const char *md_exec_prefix = MD_EXEC_PREFIX; - static const char *md_startfile_prefix = MD_STARTFILE_PREFIX; - static const char *md_startfile_prefix_1 = MD_STARTFILE_PREFIX_1; -diff -ru gcc-4.3.1-orig/gcc/Makefile.in gcc-4.3.1/gcc/Makefile.in ---- gcc-4.3.1-orig/gcc/Makefile.in 2008-05-11 20:54:15.000000000 +0200 -+++ gcc-4.3.1/gcc/Makefile.in 2008-06-25 17:48:23.000000000 +0200 -@@ -378,7 +378,11 @@ - MD5_H = $(srcdir)/../include/md5.h - - # Default native SYSTEM_HEADER_DIR, to be overridden by targets. --NATIVE_SYSTEM_HEADER_DIR = /usr/include -+# Nix: we override NATIVE_SYSTEM_HEADER_DIR in order to prevent -+# `fixinc' from fixing header files in /usr/include. However, -+# NATIVE_SYSTEM_HEADER_DIR must point to an existing directory, so set -+# it to some dummy directory. -+NATIVE_SYSTEM_HEADER_DIR = $(NIX_FIXINC_DUMMY) - # Default cross SYSTEM_HEADER_DIR, to be overridden by targets. - CROSS_SYSTEM_HEADER_DIR = @CROSS_SYSTEM_HEADER_DIR@ - -@@ -3277,7 +3281,7 @@ - -DGPLUSPLUS_INCLUDE_DIR=\"$(gcc_gxx_include_dir)\" \ - -DGPLUSPLUS_TOOL_INCLUDE_DIR=\"$(gcc_gxx_include_dir)/$(target_noncanonical)\" \ - -DGPLUSPLUS_BACKWARD_INCLUDE_DIR=\"$(gcc_gxx_include_dir)/backward\" \ -- -DLOCAL_INCLUDE_DIR=\"$(local_includedir)\" \ -+ -DLOCAL_INCLUDE_DIR=\"/no-such-dir\" \ - -DCROSS_INCLUDE_DIR=\"$(CROSS_SYSTEM_HEADER_DIR)\" \ - -DTOOL_INCLUDE_DIR=\"$(gcc_tooldir)/include\" \ - -DPREFIX=\"$(prefix)/\" \ -diff -ru gcc-4.3.1-orig/libgomp/configure gcc-4.3.1/libgomp/configure ---- gcc-4.3.1-orig/libgomp/configure 2008-01-24 17:23:13.000000000 +0100 -+++ gcc-4.3.1/libgomp/configure 2008-06-26 11:23:49.000000000 +0200 -@@ -21493,6 +21493,11 @@ - # A language specific compiler. - CC=$lt_compiler - -+# Ugly hack to get libmudflap (and possibly other libraries) to build. -+# Libtool filters out \`-B' flags when linking (why?), so the \`-B' flag -+# to Glibc gets lost. Here we forcibly add it to any invocation. -+CC="\$CC $NIX_EXTRA_CFLAGS_TARGET $NIX_EXTRA_LDFLAGS_TARGET" -+ - # Is the compiler the GNU compiler? - with_gcc=$GCC - -Only in gcc-4.3.1/libgomp: configure~ -diff -ru gcc-4.3.1-orig/libmudflap/configure gcc-4.3.1/libmudflap/configure ---- gcc-4.3.1-orig/libmudflap/configure 2008-01-24 17:30:08.000000000 +0100 -+++ gcc-4.3.1/libmudflap/configure 2008-06-26 11:23:11.000000000 +0200 -@@ -14229,6 +14229,11 @@ - # A language specific compiler. - CC=$lt_compiler - -+# Ugly hack to get libmudflap (and possibly other libraries) to build. -+# Libtool filters out \`-B' flags when linking (why?), so the \`-B' flag -+# to Glibc gets lost. Here we forcibly add it to any invocation. -+CC="\$CC $NIX_EXTRA_CFLAGS_TARGET $NIX_EXTRA_LDFLAGS_TARGET" -+ - # Is the compiler the GNU compiler? - with_gcc=$GCC - -Only in gcc-4.3.1/libmudflap: configure~ -diff -ru gcc-4.3.1-orig/libssp/configure gcc-4.3.1/libssp/configure ---- gcc-4.3.1-orig/libssp/configure 2008-01-24 17:33:29.000000000 +0100 -+++ gcc-4.3.1/libssp/configure 2008-06-26 11:23:25.000000000 +0200 -@@ -12142,6 +12142,11 @@ - # A language specific compiler. - CC=$lt_compiler - -+# Ugly hack to get libmudflap (and possibly other libraries) to build. -+# Libtool filters out \`-B' flags when linking (why?), so the \`-B' flag -+# to Glibc gets lost. Here we forcibly add it to any invocation. -+CC="\$CC $NIX_EXTRA_CFLAGS_TARGET $NIX_EXTRA_LDFLAGS_TARGET" -+ - # Is the compiler the GNU compiler? - with_gcc=$GCC - -Only in gcc-4.3.1/libssp: configure~ -diff -ru gcc-4.3.1-orig/Makefile.in gcc-4.3.1/Makefile.in ---- gcc-4.3.1-orig/Makefile.in 2007-12-13 10:30:49.000000000 +0100 -+++ gcc-4.3.1/Makefile.in 2008-06-25 17:48:23.000000000 +0200 -@@ -405,6 +405,14 @@ - @host_makefile_frag@ - ### - -+CFLAGS += $(NIX_EXTRA_CFLAGS) -+CPPFLAGS_FOR_TARGET += $(NIX_EXTRA_CFLAGS_TARGET) -+CXXFLAGS += $(NIX_EXTRA_CFLAGS) -+LDFLAGS += $(NIX_EXTRA_LDFLAGS) -+LDFLAGS_FOR_TARGET += $(NIX_EXTRA_LDFLAGS_TARGET) -+BOOT_CFLAGS += $(NIX_EXTRA_CFLAGS) -+BOOT_LDFLAGS += $(NIX_EXTRA_LDFLAGS) -+ - # This is the list of directories that may be needed in RPATH_ENVVAR - # so that prorgams built for the target machine work. - TARGET_LIB_PATH = $(TARGET_LIB_PATH_libstdc++-v3)$(TARGET_LIB_PATH_libmudflap)$(TARGET_LIB_PATH_libssp)$(TARGET_LIB_PATH_libgomp)$(HOST_LIB_PATH_gcc) diff --git a/pkgs/development/compilers/gcc/4.3/pass-cxxcpp.patch b/pkgs/development/compilers/gcc/4.3/pass-cxxcpp.patch deleted file mode 100644 index 9b0676d4fdc..00000000000 --- a/pkgs/development/compilers/gcc/4.3/pass-cxxcpp.patch +++ /dev/null @@ -1,21 +0,0 @@ -diff -rc gcc-orig/Makefile.in gcc-4.1.1/Makefile.in -*** gcc-orig/Makefile.in Wed Jun 21 13:40:23 2006 ---- gcc-4.1.1/Makefile.in Wed Jun 21 14:19:44 2006 -*************** -*** 213,219 **** - RAW_CXX_TARGET_EXPORTS = \ - $(BASE_TARGET_EXPORTS) \ - CXX_FOR_TARGET="$(RAW_CXX_FOR_TARGET)"; export CXX_FOR_TARGET; \ -! CXX="$(RAW_CXX_FOR_TARGET)"; export CXX; - - NORMAL_TARGET_EXPORTS = \ - $(BASE_TARGET_EXPORTS) \ ---- 213,220 ---- - RAW_CXX_TARGET_EXPORTS = \ - $(BASE_TARGET_EXPORTS) \ - CXX_FOR_TARGET="$(RAW_CXX_FOR_TARGET)"; export CXX_FOR_TARGET; \ -! CXX="$(RAW_CXX_FOR_TARGET) $(CFLAGS_FOR_BUILD)"; export CXX; \ -! CXXCPP="$(RAW_CXX_FOR_TARGET) $(CFLAGS_FOR_BUILD) -E"; export CXXCPP; - - NORMAL_TARGET_EXPORTS = \ - $(BASE_TARGET_EXPORTS) \ diff --git a/pkgs/development/compilers/gcc/4.3/siginfo_t_fix.patch b/pkgs/development/compilers/gcc/4.3/siginfo_t_fix.patch deleted file mode 100644 index 8b126cd08c3..00000000000 --- a/pkgs/development/compilers/gcc/4.3/siginfo_t_fix.patch +++ /dev/null @@ -1,174 +0,0 @@ -https://bugs.gentoo.org/424970 - -fix from upstream for building with newer glibc versions - -From f0cdca2bf2230005025e13e7354fedb612933c96 Mon Sep 17 00:00:00 2001 -From: tschwinge -Date: Fri, 20 Apr 2012 08:14:00 +0000 -Subject: [PATCH] struct siginfo vs. siginfo_t - - Backport from trunk (but apply to gcc/): - - 2012-04-20 Thomas Schwinge - -gcc/ - * config/alpha/linux-unwind.h (alpha_fallback_frame_state): Use - siginfo_t instead of struct siginfo. - * config/bfin/linux-unwind.h (bfin_fallback_frame_state): Likewise. - * config/i386/linux-unwind.h (x86_fallback_frame_state): Likewise. - * config/ia64/linux-unwind.h (ia64_fallback_frame_state) - (ia64_handle_unwabi): Likewise. - * config/mips/linux-unwind.h (mips_fallback_frame_state): Likewise. - * config/pa/linux-unwind.h (pa32_fallback_frame_state): Likewise. - * config/sh/linux-unwind.h (shmedia_fallback_frame_state) - (sh_fallback_frame_state): Likewise. - * config/xtensa/linux-unwind.h (xtensa_fallback_frame_state): Likewise. - -git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_5-branch@186613 138bc75d-0d04-0410-961f-82ee72b054a4 ---- - gcc/ChangeLog | 20 ++++++++++++++++++++ - gcc/config/alpha/linux-unwind.h | 4 ++-- - gcc/config/bfin/linux-unwind.h | 6 +++--- - gcc/config/i386/linux-unwind.h | 6 +++--- - gcc/config/ia64/linux-unwind.h | 6 +++--- - gcc/config/mips/linux-unwind.h | 5 +++-- - gcc/config/pa/linux-unwind.h | 4 ++-- - gcc/config/sh/linux-unwind.h | 9 +++++---- - gcc/config/xtensa/linux-unwind.h | 4 ++-- - 9 files changed, 43 insertions(+), 21 deletions(-) - -diff --git a/gcc/config/alpha/linux-unwind.h b/gcc/config/alpha/linux-unwind.h -index 4c811dc..8c04b3b 100644 ---- a/gcc/config/alpha/linux-unwind.h -+++ b/gcc/config/alpha/linux-unwind.h -@@ -49,7 +49,7 @@ alpha_fallback_frame_state (struct _Unwind_Context *context, - else if (pc[1] == 0x201f015f) /* lda $0,NR_rt_sigreturn */ - { - struct rt_sigframe { -- struct siginfo info; -+ siginfo_t info; - struct ucontext uc; - } *rt_ = context->cfa; - sc = &rt_->uc.uc_mcontext; -diff --git a/gcc/config/bfin/linux-unwind.h b/gcc/config/bfin/linux-unwind.h -index 88c8285..15bb2f1 100644 ---- a/gcc/config/bfin/linux-unwind.h -+++ b/gcc/config/bfin/linux-unwind.h -@@ -48,10 +48,10 @@ bfin_fallback_frame_state (struct _Unwind_Context *context, - { - struct rt_sigframe { - int sig; -- struct siginfo *pinfo; -+ siginfo_t *pinfo; - void *puc; - char retcode[8]; -- struct siginfo info; -+ siginfo_t info; - struct ucontext uc; - } *rt_ = context->cfa; - -diff --git a/gcc/config/i386/linux-unwind.h b/gcc/config/i386/linux-unwind.h -index 36ee370..fe0ea3e 100644 ---- a/gcc/config/i386/linux-unwind.h -+++ b/gcc/config/i386/linux-unwind.h -@@ -133,9 +133,9 @@ x86_fallback_frame_state (struct _Unwind_Context *context, - { - struct rt_sigframe { - int sig; -- struct siginfo *pinfo; -+ siginfo_t *pinfo; - void *puc; -- struct siginfo info; -+ siginfo_t info; - struct ucontext uc; - } *rt_ = context->cfa; - /* The void * cast is necessary to avoid an aliasing warning. -diff --git a/gcc/config/ia64/linux-unwind.h b/gcc/config/ia64/linux-unwind.h -index 93f762d..da31259 100644 ---- a/gcc/config/ia64/linux-unwind.h -+++ b/gcc/config/ia64/linux-unwind.h -@@ -47,7 +47,7 @@ ia64_fallback_frame_state (struct _Unwind_Context *context, - struct sigframe { - char scratch[16]; - unsigned long sig_number; -- struct siginfo *info; -+ siginfo_t *info; - struct sigcontext *sc; - } *frame_ = (struct sigframe *)context->psp; - struct sigcontext *sc = frame_->sc; -@@ -137,7 +137,7 @@ ia64_handle_unwabi (struct _Unwind_Context *context, _Unwind_FrameState *fs) - struct sigframe { - char scratch[16]; - unsigned long sig_number; -- struct siginfo *info; -+ siginfo_t *info; - struct sigcontext *sc; - } *frame = (struct sigframe *)context->psp; - struct sigcontext *sc = frame->sc; -diff --git a/gcc/config/mips/linux-unwind.h b/gcc/config/mips/linux-unwind.h -index 02f7cd5..094ff58 100644 ---- a/gcc/config/mips/linux-unwind.h -+++ b/gcc/config/mips/linux-unwind.h -@@ -75,7 +76,7 @@ mips_fallback_frame_state (struct _Unwind_Context *context, - struct rt_sigframe { - u_int32_t ass[4]; /* Argument save space for o32. */ - u_int32_t trampoline[2]; -- struct siginfo info; -+ siginfo_t info; - _sig_ucontext_t uc; - } *rt_ = context->cfa; - sc = &rt_->uc.uc_mcontext; -diff --git a/gcc/config/pa/linux-unwind.h b/gcc/config/pa/linux-unwind.h -index a0560e9..38b4eda 100644 ---- a/gcc/config/pa/linux-unwind.h -+++ b/gcc/config/pa/linux-unwind.h -@@ -63,7 +63,7 @@ pa32_fallback_frame_state (struct _Unwind_Context *context, - int i; - struct sigcontext *sc; - struct rt_sigframe { -- struct siginfo info; -+ siginfo_t info; - struct ucontext uc; - } *frame; - -diff --git a/gcc/config/sh/linux-unwind.h b/gcc/config/sh/linux-unwind.h -index 94ed95d..5a78e31 100644 ---- a/gcc/config/sh/linux-unwind.h -+++ b/gcc/config/sh/linux-unwind.h -@@ -80,9 +81,9 @@ shmedia_fallback_frame_state (struct _Unwind_Context *context, - && (*(unsigned long *) (pc+11) == 0x6ff0fff0)) - { - struct rt_sigframe { -- struct siginfo *pinfo; -+ siginfo_t *pinfo; - void *puc; -- struct siginfo info; -+ siginfo_t info; - struct ucontext uc; - } *rt_ = context->cfa; - /* The void * cast is necessary to avoid an aliasing warning. -@@ -179,7 +180,7 @@ sh_fallback_frame_state (struct _Unwind_Context *context, - && (*(unsigned short *) (pc+14) == 0x00ad)))) - { - struct rt_sigframe { -- struct siginfo info; -+ siginfo_t info; - struct ucontext uc; - } *rt_ = context->cfa; - /* The void * cast is necessary to avoid an aliasing warning. -diff --git a/gcc/config/xtensa/linux-unwind.h b/gcc/config/xtensa/linux-unwind.h -index 32e9349..2456497 100644 ---- a/gcc/config/xtensa/linux-unwind.h -+++ b/gcc/config/xtensa/linux-unwind.h -@@ -62,7 +62,7 @@ xtensa_fallback_frame_state (struct _Unwind_Context *context, - struct sigcontext *sc; - - struct rt_sigframe { -- struct siginfo info; -+ siginfo_t info; - struct ucontext uc; - } *rt_; - --- -1.7.9.7 - diff --git a/pkgs/development/compilers/gcc/4.4/builder.sh b/pkgs/development/compilers/gcc/4.4/builder.sh deleted file mode 100644 index 15476131e03..00000000000 --- a/pkgs/development/compilers/gcc/4.4/builder.sh +++ /dev/null @@ -1,200 +0,0 @@ -source $stdenv/setup - - -export NIX_FIXINC_DUMMY=$NIX_BUILD_TOP/dummy -mkdir $NIX_FIXINC_DUMMY - - -# libstdc++ needs this; otherwise it will use /lib/cpp, which is a Bad -# Thing. -export CPP="gcc -E" - -if test "$staticCompiler" = "1"; then - EXTRA_LDFLAGS="-static" -else - EXTRA_LDFLAGS="" -fi - -if test "$noSysDirs" = "1"; then - - if test -e $NIX_CC/nix-support/orig-libc; then - - # Figure out what extra flags to pass to the gcc compilers - # being generated to make sure that they use our glibc. - extraFlags="$(cat $NIX_CC/nix-support/libc-cflags)" - extraLDFlags="$(cat $NIX_CC/nix-support/libc-ldflags) $(cat $NIX_CC/nix-support/libc-ldflags-before)" - - # Use *real* header files, otherwise a limits.h is generated - # that does not include Glibc's limits.h (notably missing - # SSIZE_MAX, which breaks the build). - export NIX_FIXINC_DUMMY=$(cat $NIX_CC/nix-support/orig-libc)/include - - # The path to the Glibc binaries such as `crti.o'. - glibc_libdir="$(cat $NIX_CC/nix-support/orig-libc)/lib" - - else - # Hack: support impure environments. - extraFlags="-isystem /usr/include" - extraLDFlags="-L/usr/lib64 -L/usr/lib" - glibc_libdir="/usr/lib" - export NIX_FIXINC_DUMMY=/usr/include - fi - - extraFlags="-g0 -O2 -I$NIX_FIXINC_DUMMY $extraFlags" - extraLDFlags="--strip-debug -L$glibc_libdir -rpath $glibc_libdir $extraLDFlags" - - EXTRA_FLAGS="$extraFlags" - for i in $extraLDFlags; do - EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,$i" - done - - if test -n "$targetConfig"; then - # Cross-compiling, we need gcc not to read ./specs in order to build - # the g++ compiler (after the specs for the cross-gcc are created). - # Having LIBRARY_PATH= makes gcc read the specs from ., and the build - # breaks. Having this variable comes from the default.nix code to bring - # gcj in. - unset LIBRARY_PATH - unset CPATH - if test -z "$crossStageStatic"; then - EXTRA_FLAGS_TARGET="-g0 -O2 -B${libcCross}/lib -idirafter ${libcCross}/include" - EXTRA_LDFLAGS_TARGET="-Wl,-L${libcCross}/lib" - fi - else - if test -z "$NIX_CC_CROSS"; then - EXTRA_FLAGS_TARGET="$EXTRA_FLAGS" - EXTRA_LDFLAGS_TARGET="$EXTRA_LDFLAGS" - else - # This the case of cross-building the gcc. - # We need special flags for the target, different than those of the build - # Assertion: - test -e $NIX_CC_CROSS/nix-support/orig-libc - - # Figure out what extra flags to pass to the gcc compilers - # being generated to make sure that they use our glibc. - extraFlags="$(cat $NIX_CC_CROSS/nix-support/libc-cflags)" - extraLDFlags="$(cat $NIX_CC_CROSS/nix-support/libc-ldflags) $(cat $NIX_CC_CROSS/nix-support/libc-ldflags-before)" - - # Use *real* header files, otherwise a limits.h is generated - # that does not include Glibc's limits.h (notably missing - # SSIZE_MAX, which breaks the build). - NIX_FIXINC_DUMMY_CROSS=$(cat $NIX_CC_CROSS/nix-support/orig-libc)/include - - # The path to the Glibc binaries such as `crti.o'. - glibc_libdir="$(cat $NIX_CC_CROSS/nix-support/orig-libc)/lib" - - extraFlags="-g0 -O2 -I$NIX_FIXINC_DUMMY_CROSS $extraFlags" - extraLDFlags="--strip-debug -L$glibc_libdir -rpath $glibc_libdir $extraLDFlags" - - EXTRA_FLAGS_TARGET="$extraFlags" - for i in $extraLDFlags; do - EXTRA_LDFLAGS_TARGET="$EXTRA_LDFLAGS_TARGET -Wl,$i" - done - fi - fi - - - # CFLAGS_FOR_TARGET are needed for the libstdc++ configure script to find - # the startfiles. - # FLAGS_FOR_TARGET are needed for the target libraries to receive the -Bxxx - # for the startfiles. - makeFlagsArray=( \ - "${makeFlagsArray[@]}" \ - NATIVE_SYSTEM_HEADER_DIR="$NIX_FIXINC_DUMMY" \ - SYSTEM_HEADER_DIR="$NIX_FIXINC_DUMMY" \ - CFLAGS_FOR_BUILD="$EXTRA_FLAGS $EXTRA_LDFLAGS" \ - CFLAGS_FOR_TARGET="$EXTRA_FLAGS_TARGET $EXTRA_LDFLAGS_TARGET" \ - FLAGS_FOR_TARGET="$EXTRA_FLAGS_TARGET $EXTRA_LDFLAGS_TARGET" \ - LDFLAGS_FOR_BUILD="$EXTRA_FLAGS $EXTRA_LDFLAGS" \ - LDFLAGS_FOR_TARGET="$EXTRA_FLAGS_TARGET $EXTRA_LDFLAGS_TARGET" \ - ) - - if test -z "$targetConfig"; then - makeFlagsArray=( \ - "${makeFlagsArray[@]}" \ - BOOT_CFLAGS="$EXTRA_FLAGS $EXTRA_LDFLAGS" \ - BOOT_LDFLAGS="$EXTRA_FLAGS_TARGET $EXTRA_LDFLAGS_TARGET" \ - ) - fi - - if test -n "$targetConfig" -a "$crossStageStatic" == 1; then - # We don't want the gcc build to assume there will be a libc providing - # limits.h in this stagae - makeFlagsArray=( \ - "${makeFlagsArray[@]}" \ - LIMITS_H_TEST=false \ - ) - else - makeFlagsArray=( \ - "${makeFlagsArray[@]}" \ - LIMITS_H_TEST=true \ - ) - fi -fi - -if test -n "$targetConfig"; then - # The host strip will destroy some important details of the objects - dontStrip=1 -fi - -preConfigure() { - if test -n "$newlibSrc"; then - tar xvf "$newlibSrc" -C .. - ln -s ../newlib-*/newlib newlib - # Patch to get armvt5el working: - sed -i -e 's/ arm)/ arm*)/' newlib/configure.host - fi - # Bug - they packaged zlib - if test -d "zlib"; then - # This breaks the build without-headers, which should build only - # the target libgcc as target libraries. - # See 'configure:5370' - rm -Rf zlib - fi - - # Perform the build in a different directory. - mkdir ../build - cd ../build - configureScript=../$sourceRoot/configure -} - - -postInstall() { - # Remove precompiled headers for now. They are very big and - # probably not very useful yet. - find $out/include -name "*.gch" -exec rm -rf {} \; -prune - - # Remove `fixincl' to prevent a retained dependency on the - # previous gcc. - rm -rf $out/libexec/gcc/*/*/install-tools - rm -rf $out/lib/gcc/*/*/install-tools - - # Get rid of some "fixed" header files - rm -rf $out/lib/gcc/*/*/include/root - - # Replace hard links for i686-pc-linux-gnu-gcc etc. with symlinks. - for i in $out/bin/*-gcc*; do - if cmp -s $out/bin/gcc $i; then - ln -sfn gcc $i - fi - done - - for i in $out/bin/*-c++* $out/bin/*-g++*; do - if cmp -s $out/bin/g++ $i; then - ln -sfn g++ $i - fi - done - - eval "$postInstallGhdl" -} - - -if test -z "$targetConfig" && test -z "$crossConfig"; then - if test -z "$profiledCompiler"; then - buildFlags="bootstrap $buildFlags" - else - buildFlags="profiledbootstrap $buildFlags" - fi -fi - -genericBuild diff --git a/pkgs/development/compilers/gcc/4.4/default.nix b/pkgs/development/compilers/gcc/4.4/default.nix deleted file mode 100644 index 47c8c86a95d..00000000000 --- a/pkgs/development/compilers/gcc/4.4/default.nix +++ /dev/null @@ -1,310 +0,0 @@ -{ stdenv, fetchurl, noSysDirs -, langC ? true, langCC ? true, langFortran ? false -, langJava ? false -, langAda ? false -, langVhdl ? false -, profiledCompiler ? false -, staticCompiler ? false -, enableShared ? true -, texinfo ? null -, gmp, mpfr, gettext, which -, ppl ? null, cloogppl ? null # used by the Graphite optimization framework -, zlib ? null, boehmgc ? null -, zip ? null, unzip ? null, pkgconfig ? null, gtk ? null, libart_lgpl ? null -, libX11 ? null, libXt ? null, libSM ? null, libICE ? null, libXtst ? null -, libXrender ? null, xproto ? null, renderproto ? null, xextproto ? null -, libXrandr ? null, libXi ? null, inputproto ? null, randrproto ? null -, gnatboot ? null -, enableMultilib ? false -, name ? "gcc" -, cross ? null -, binutilsCross ? null -, libcCross ? null -, crossStageStatic ? true -, gnat ? null -}: - -assert langJava -> zip != null && unzip != null - && zlib != null && boehmgc != null; -assert langAda -> gnatboot != null; -assert langVhdl -> gnat != null; - -with stdenv.lib; - -let version = "4.4.7"; - javaEcj = fetchurl { - # The `$(top_srcdir)/ecj.jar' file is automatically picked up at - # `configure' time. - - # XXX: Eventually we might want to take it from upstream. - url = "ftp://sourceware.org/pub/java/ecj-4.3.jar"; - sha256 = "0jz7hvc0s6iydmhgh5h2m15yza7p2rlss2vkif30vm9y77m97qcx"; - }; - - # Antlr (optional) allows the Java `gjdoc' tool to be built. We want a - # binary distribution here to allow the whole chain to be bootstrapped. - javaAntlr = fetchurl { - url = http://www.antlr.org/download/antlr-3.1.3.jar; - sha256 = "1f41j0y4kjydl71lqlvr73yagrs2jsg1fjymzjz66mjy7al5lh09"; - }; - - xlibs = [ - libX11 libXt libSM libICE libXtst libXrender libXrandr libXi - xproto renderproto xextproto inputproto randrproto - ]; - - javaAwtGtk = langJava && gtk != null; - - /* Cross-gcc settings */ - gccArch = stdenv.lib.attrByPath [ "gcc" "arch" ] null cross; - gccCpu = stdenv.lib.attrByPath [ "gcc" "cpu" ] null cross; - gccAbi = stdenv.lib.attrByPath [ "gcc" "abi" ] null cross; - withArch = if gccArch != null then " --with-arch=${gccArch}" else ""; - withCpu = if gccCpu != null then " --with-cpu=${gccCpu}" else ""; - withAbi = if gccAbi != null then " --with-abi=${gccAbi}" else ""; - - crossConfigureFlags = - "--target=${cross.config}" + - withArch + - withCpu + - withAbi + - (if crossStageStatic then - " --disable-libssp --disable-nls" + - " --without-headers" + - " --disable-threads " + - " --disable-libmudflap " + - " --disable-libgomp " + - " --disable-shared" + - " --disable-decimal-float" # libdecnumber requires libc - else - " --with-headers=${libcCross}/include" + - " --enable-__cxa_atexit" + - " --enable-long-long" + - " --enable-threads=posix" + - " --enable-nls" + - " --disable-decimal-float" # No final libdecnumber (it may work only in 386) - ); - stageNameAddon = if crossStageStatic then "-stage-static" else - "-stage-final"; - crossNameAddon = if cross != null then "-${cross.config}" + stageNameAddon else ""; - -in - -# We need all these X libraries when building AWT with GTK+. -assert gtk != null -> (filter (x: x == null) xlibs) == []; - -stdenv.mkDerivation ({ - name = "${name}-${version}" + crossNameAddon; - - builder = ./builder.sh; - - src = (import ./sources.nix) { - inherit fetchurl optional version; - inherit langC langCC langFortran langJava langAda; - }; - - patches = - [ ./pass-cxxcpp.patch - - # libmudflap and libstdc++ receive the build CPP, - # and not the target. - # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42279 - ./target-cpp.patch - - # Bad mixture of build/target flags - ./libstdc++-target.patch - - # Compatibility with newer Glibc. - ./siginfo_t_fix.patch - ] - ++ optional noSysDirs ./no-sys-dirs.patch - # The GNAT Makefiles did not pay attention to CFLAGS_FOR_TARGET for its - # target libraries and tools. - ++ optional langAda ./gnat-cflags.patch - ++ optional langVhdl ./ghdl-ortho-cflags.patch - ++ optional (cross != null && cross.arch == "sparc64") ./pr41818.patch; - - inherit noSysDirs profiledCompiler staticCompiler langJava crossStageStatic - libcCross; - - nativeBuildInputs = [ texinfo which ]; - - buildInputs = [ gmp mpfr gettext ] - ++ (optional (ppl != null) ppl) - ++ (optional (cloogppl != null) cloogppl) - ++ (optional (zlib != null) zlib) - ++ (optional (boehmgc != null) boehmgc) - ++ (optionals langJava [zip unzip]) - ++ (optionals javaAwtGtk ([gtk pkgconfig libart_lgpl] ++ xlibs)) - ++ (optionals (cross != null) [binutilsCross]) - ++ (optionals langAda [gnatboot]) - ++ (optionals langVhdl [gnat]) - ; - - configureFlags = " - ${if enableMultilib then "" else "--disable-multilib"} - ${if enableShared then "" else "--disable-shared"} - ${if ppl != null then "--with-ppl=${ppl}" else ""} - ${if cloogppl != null then "--with-cloog=${cloogppl}" else ""} - ${if langJava then "--with-ecj-jar=${javaEcj}" else ""} - ${if javaAwtGtk then "--enable-java-awt=gtk" else ""} - ${if langJava && javaAntlr != null then "--with-antlr-jar=${javaAntlr}" else ""} - --with-gmp=${gmp} - --with-mpfr=${mpfr} - --disable-libstdcxx-pch - --without-included-gettext - --with-system-zlib - --enable-languages=${ - concatStrings (intersperse "," - ( optional langC "c" - ++ optional langCC "c++" - ++ optional langFortran "fortran" - ++ optional langJava "java" - ++ optional langAda "ada" - ++ optional langVhdl "vhdl" - ) - ) - } - ${if langAda then " --enable-libada" else ""} - ${if cross == null && stdenv.isi686 then "--with-arch=i686" else ""} - ${if cross != null then crossConfigureFlags else ""} - "; - - targetConfig = if cross != null then cross.config else null; - - # Needed for the cross compilation to work - AR = "ar"; - LD = "ld"; - CC = "gcc"; - - crossAttrs = { - AR = "${stdenv.cross.config}-ar"; - LD = "${stdenv.cross.config}-ld"; - CC = "${stdenv.cross.config}-gcc"; - CXX = "${stdenv.cross.config}-gcc"; - AR_FOR_TARGET = "${stdenv.cross.config}-ar"; - LD_FOR_TARGET = "${stdenv.cross.config}-ld"; - CC_FOR_TARGET = "${stdenv.cross.config}-gcc"; - NM_FOR_TARGET = "${stdenv.cross.config}-nm"; - CXX_FOR_TARGET = "${stdenv.cross.config}-g++"; - # If we are making a cross compiler, cross != null - NIX_CC_CROSS = if cross == null then "${stdenv.ccCross}" else ""; - configureFlags = " - ${if enableMultilib then "" else "--disable-multilib"} - ${if enableShared then "" else "--disable-shared"} - ${if ppl != null then "--with-ppl=${ppl.crossDrv}" else ""} - ${if cloogppl != null then "--with-cloog=${cloogppl.crossDrv}" else ""} - ${if langJava then "--with-ecj-jar=${javaEcj.crossDrv}" else ""} - ${if javaAwtGtk then "--enable-java-awt=gtk" else ""} - ${if langJava && javaAntlr != null then "--with-antlr-jar=${javaAntlr.crossDrv}" else ""} - --with-gmp=${gmp.crossDrv} - --with-mpfr=${mpfr.crossDrv} - --disable-libstdcxx-pch - --without-included-gettext - --with-system-zlib - --enable-languages=${ - concatStrings (intersperse "," - ( optional langC "c" - ++ optional langCC "c++" - ++ optional langFortran "fortran" - ++ optional langJava "java" - ++ optional langAda "ada" - ++ optional langVhdl "vhdl" - ) - ) - } - ${if langAda then " --enable-libada" else ""} - ${if cross == null && stdenv.isi686 then "--with-arch=i686" else ""} - ${if cross != null then crossConfigureFlags else ""} - --target=${stdenv.cross.config} - "; - }; - - # Setting $CPATH and $LIBRARY_PATH to make sure both `gcc' and `xgcc' find - # the library headers and binaries, regarless of the language being - # compiled. - - # Note: When building the Java AWT GTK+ peer, the build system doesn't - # honor `--with-gmp' et al., e.g., when building - # `libjava/classpath/native/jni/java-math/gnu_java_math_GMP.c', so we just - # add them to $CPATH and $LIBRARY_PATH in this case. - - CPATH = concatStrings - (intersperse ":" (map (x: x + "/include") - (optionals langJava [ boehmgc zlib ] - ++ optionals javaAwtGtk xlibs - ++ optionals javaAwtGtk [ gmp mpfr ]))); - - LIBRARY_PATH = concatStrings - (intersperse ":" (map (x: x + "/lib") - (optionals langJava [ boehmgc zlib ] - ++ optionals javaAwtGtk xlibs - ++ optionals javaAwtGtk [ gmp mpfr ]))); - - - passthru = { inherit langC langCC langAda langFortran langVhdl - enableMultilib version; isGNU = true; }; - - # ghdl does not build fine with parallel building - # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46173 - #enableParallelBuilding = !langVhdl && !langAda; - - meta = { - homepage = http://gcc.gnu.org/; - license = stdenv.lib.licenses.gpl3Plus; # runtime support libraries are typically LGPLv3+ - description = "GNU Compiler Collection, version ${version}"; - - longDescription = '' - The GNU Compiler Collection includes compiler front ends for C, C++, - Objective-C, Fortran, OpenMP for C/C++/Fortran, Java, and Ada, as well - as libraries for these languages (libstdc++, libgcj, libgomp,...). - - GCC development is a part of the GNU Project, aiming to improve the - compiler used in the GNU system including the GNU/Linux variant. - ''; - - maintainers = [ - # Add your name here! - stdenv.lib.maintainers.viric - ]; - - # Volunteers needed for the {Cyg,Dar}win ports of *PPL. - # gnatboot is not available out of linux platforms, so we disable the darwin build - # for the gnat (ada compiler). - platforms = stdenv.lib.platforms.linux ++ optionals (langAda == false) [ "i686-darwin" ]; - }; -} -// (if langVhdl then rec { - name = "ghdl-0.29"; - - ghdlSrc = fetchurl { - url = "http://ghdl.free.fr/ghdl-0.29.tar.bz2"; - sha256 = "15mlinr1lwljwll9ampzcfcrk9bk0qpdks1kxlvb70xf9zhh2jva"; - }; - - # Ghdl has some timestamps checks, storing file timestamps in '.cf' files. - # As we will change the timestamps to 1970-01-01 00:00:01, we also set the - # content of that .cf to that value. This way ghdl does not complain on - # the installed object files from the basic libraries (ieee, ...) - postInstallGhdl = '' - pushd $out - find . -name "*.cf" -exec \ - sed 's/[0-9]*\.000" /19700101000001.000" /g' -i {} \; - popd - ''; - - postUnpack = '' - tar xvf ${ghdlSrc} - mv ghdl-*/vhdl gcc*/gcc - rm -Rf ghdl-* - ''; - - meta = { - homepage = "http://ghdl.free.fr/"; - license = stdenv.lib.licenses.gpl2Plus; - description = "Complete VHDL simulator, using the GCC technology (gcc ${version})"; - maintainers = with stdenv.lib.maintainers; [viric]; - platforms = with stdenv.lib.platforms; linux; - }; - -} else {})) diff --git a/pkgs/development/compilers/gcc/4.4/ghdl-ortho-cflags.patch b/pkgs/development/compilers/gcc/4.4/ghdl-ortho-cflags.patch deleted file mode 100644 index 901534591c8..00000000000 --- a/pkgs/development/compilers/gcc/4.4/ghdl-ortho-cflags.patch +++ /dev/null @@ -1,111 +0,0 @@ -diff --git a/gcc/vhdl/Make-lang.in b/gcc/vhdl/Make-lang.in -index 8f481df..681ac59 100644 ---- a/gcc/vhdl/Make-lang.in -+++ b/gcc/vhdl/Make-lang.in -@@ -96,7 +96,7 @@ AGCC_GCCOBJ_DIR=../ - AGCC_INC_FLAGS=-I$(AGCC_GCCOBJ_DIR)/gcc -I$(AGCC_GCCSRC_DIR)/include \ - -I$(AGCC_GCCSRC_DIR)/gcc -I$(AGCC_GCCSRC_DIR)/gcc/config \ - -I$(AGCC_GCCSRC_DIR)/libcpp/include --AGCC_CFLAGS=-g -Wall -DIN_GCC $(AGCC_INC_FLAGS) -+AGCC_CFLAGS=-g -Wall -DIN_GCC $(AGCC_INC_FLAGS) $(CFLAGS) $(INCLUDES) - - AGCC_LOCAL_OBJS=ortho-lang.o - -@@ -140,7 +140,7 @@ ghdl$(exeext): force - - # Ghdl libraries. - ghdllib: ghdl$(exeext) $(GCC_PASSES) force -- $(MAKE_IN_VHDL) GRT_FLAGS="-O -g" ghdllib -+ $(MAKE_IN_VHDL) GRT_FLAGS="-O -g $(CFLAGS)" ghdllib - - # Build hooks: - -diff --git a/gcc/vhdl/Makefile.in b/gcc/vhdl/Makefile.in -index d754c6c..07abc4a 100644 ---- a/gcc/vhdl/Makefile.in -+++ b/gcc/vhdl/Makefile.in -@@ -80,7 +80,8 @@ T_CPPFLAGS = - X_ADAFLAGS = - T_ADAFLAGS = - --ADAC = $(CC) -+# Never use the bootstrapped compiler, as it may not be built for ada -+ADAC = gcc - - ECHO = echo - CHMOD = chmod -diff --git a/gcc/vhdl/ortho-lang.c b/gcc/vhdl/ortho-lang.c -index 84aeb92..8eddd42 100644 ---- a/gcc/vhdl/ortho-lang.c -+++ b/gcc/vhdl/ortho-lang.c -@@ -16,6 +16,7 @@ - #include "options.h" - #include "real.h" --#include "tree-gimple.h" -+#include "gimple.h" -+#include "tree.h" - #include "function.h" - #include "cgraph.h" - #include "target.h" -@@ -680,38 +681,10 @@ type_for_mode (enum machine_mode mode, int unsignedp) - - const struct lang_hooks lang_hooks = LANG_HOOKS_INITIALIZER; - --/* Tree code classes. */ -- --#define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE, -- --const enum tree_code_class tree_code_type[] = { --#include "tree.def" -- 'x' --}; --#undef DEFTREECODE -- --/* Table indexed by tree code giving number of expression -- operands beyond the fixed part of the node structure. -- Not used for types or decls. */ -- --#define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH, -- --const unsigned char tree_code_length[] = { --#include "tree.def" -- 0 --}; --#undef DEFTREECODE -- --#define DEFTREECODE(SYM, NAME, TYPE, LENGTH) NAME, --const char * const tree_code_name[] = { --#include "tree.def" -- "@@dummy" --}; --#undef DEFTREECODE - - union lang_tree_node - GTY((desc ("0"), -- chain_next ("(union lang_tree_node *) GENERIC_NEXT (&%h.generic)"))) -+ chain_next ("(union lang_tree_node *) TREE_CHAIN (&%h.generic)"))) - { - union tree_node GTY ((tag ("0"))) generic; - }; -@@ -1162,7 +1135,7 @@ new_access_type (tree dtype) - res = make_node (POINTER_TYPE); - TREE_TYPE (res) = NULL_TREE; - /* Seems necessary. */ -- TYPE_MODE (res) = Pmode; -+ SET_TYPE_MODE (res, Pmode); - layout_type (res); - return res; - } -diff --git a/gcc/vhdl/Make-lang.in b/gcc/vhdl/Make-lang.in -index e201f64..f36fb97 100644 ---- a/gcc/vhdl/Make-lang.in -+++ b/gcc/vhdl/Make-lang.in -@@ -132,7 +132,7 @@ ghdl1$(exeext): $(AGCC_OBJS) $(AGCC_DEPS) force - -cargs $(CFLAGS) $(GHDL_ADAFLAGS) - $(GNATMAKE) -o $@ -aI$(srcdir)/vhdl -aOvhdl ortho_gcc-main \ - -bargs -E -cargs $(CFLAGS) $(GHDL_ADAFLAGS) \ -- -largs $(AGCC_OBJS) $(LIBS) $(GMPLIBS) -+ -largs $(AGCC_OBJS) $(LIBS) $(GMPLIBS) $(CLOOGLIBS) $(PPLLIBS) - - # The driver for ghdl. - ghdl$(exeext): force diff --git a/pkgs/development/compilers/gcc/4.4/gnat-cflags.patch b/pkgs/development/compilers/gcc/4.4/gnat-cflags.patch deleted file mode 100644 index e85e5076be6..00000000000 --- a/pkgs/development/compilers/gcc/4.4/gnat-cflags.patch +++ /dev/null @@ -1,33 +0,0 @@ -diff --git a/libada/Makefile.in b/libada/Makefile.in -index f5057a0..337e0c6 100644 ---- a/libada/Makefile.in -+++ b/libada/Makefile.in -@@ -55,7 +55,7 @@ GCC_WARN_CFLAGS = $(LOOSE_WARN) - WARN_CFLAGS = @warn_cflags@ - - TARGET_LIBGCC2_CFLAGS= --GNATLIBCFLAGS= -g -O2 -+GNATLIBCFLAGS= -g -O2 $(CFLAGS) - GNATLIBCFLAGS_FOR_C = $(GNATLIBCFLAGS) $(TARGET_LIBGCC2_CFLAGS) -fexceptions \ - -DIN_RTS @have_getipinfo@ - ---- a/gcc/ada/gcc-interface/Makefile.in -+++ b/gcc/ada/gcc-interface/Makefile.in -@@ -105,7 +105,7 @@ ADAFLAGS = -W -Wall -gnatpg -gnata - SOME_ADAFLAGS =-gnata - FORCE_DEBUG_ADAFLAGS = -g - GNATLIBFLAGS = -gnatpg -nostdinc --GNATLIBCFLAGS = -g -O2 -+GNATLIBCFLAGS = -g -O2 $(CFLAGS_FOR_TARGET) - # Pretend that _Unwind_GetIPInfo is available for the target by default. This - # should be autodetected during the configuration of libada and passed down to - # here, but we need something for --disable-libada and hope for the best. -@@ -1838,7 +1838,7 @@ ADA_INCLUDE_SRCS =\ - - LIBGNAT=../$(RTSDIR)/libgnat.a - --GCC_LINK=$(CC) -static-libgcc $(ADA_INCLUDES) -+GCC_LINK=$(CC) -static-libgcc $(CFLAGS_FOR_TARGET) $(ADA_INCLUDES) - - # when compiling the tools, the runtime has to be first on the path so that - # it hides the runtime files lying with the rest of the sources diff --git a/pkgs/development/compilers/gcc/4.4/libstdc++-target.patch b/pkgs/development/compilers/gcc/4.4/libstdc++-target.patch deleted file mode 100644 index 0b04b83d08d..00000000000 --- a/pkgs/development/compilers/gcc/4.4/libstdc++-target.patch +++ /dev/null @@ -1,15 +0,0 @@ -diff --git a/Makefile.in b/Makefile.in -index 245c770..8545b60 100644 ---- a/Makefile.in -+++ b/Makefile.in -@@ -250,8 +250,8 @@ BASE_TARGET_EXPORTS = \ - RAW_CXX_TARGET_EXPORTS = \ - $(BASE_TARGET_EXPORTS) \ - CXX_FOR_TARGET="$(RAW_CXX_FOR_TARGET)"; export CXX_FOR_TARGET; \ -- CXX="$(RAW_CXX_FOR_TARGET) $(CFLAGS_FOR_BUILD)"; export CXX; \ -- CXXCPP="$(RAW_CXX_FOR_TARGET) $(CFLAGS_FOR_BUILD) -E"; export CXXCPP; -+ CXX="$(RAW_CXX_FOR_TARGET) $(CFLAGS_FOR_TARGET)"; export CXX; \ -+ CXXCPP="$(RAW_CXX_FOR_TARGET) $(CFLAGS_FOR_TARGET) -E"; export CXXCPP; - - NORMAL_TARGET_EXPORTS = \ - $(BASE_TARGET_EXPORTS) \ diff --git a/pkgs/development/compilers/gcc/4.4/no-sys-dirs.patch b/pkgs/development/compilers/gcc/4.4/no-sys-dirs.patch deleted file mode 100644 index 7eaf421cc40..00000000000 --- a/pkgs/development/compilers/gcc/4.4/no-sys-dirs.patch +++ /dev/null @@ -1,66 +0,0 @@ -diff -ru gcc-4.3.1-orig/gcc/cppdefault.c gcc-4.3.1/gcc/cppdefault.c ---- gcc-4.3.1-orig/gcc/cppdefault.c 2007-07-26 10:37:01.000000000 +0200 -+++ gcc-4.3.1/gcc/cppdefault.c 2008-06-25 17:48:23.000000000 +0200 -@@ -41,6 +41,10 @@ - # undef CROSS_INCLUDE_DIR - #endif - -+#undef LOCAL_INCLUDE_DIR -+#undef SYSTEM_INCLUDE_DIR -+#undef STANDARD_INCLUDE_DIR -+ - const struct default_include cpp_include_defaults[] - #ifdef INCLUDE_DEFAULTS - = INCLUDE_DEFAULTS; -diff -ru gcc-4.3.1-orig/gcc/gcc.c gcc-4.3.1/gcc/gcc.c ---- gcc-4.3.1-orig/gcc/gcc.c 2008-03-02 23:55:19.000000000 +0100 -+++ gcc-4.3.1/gcc/gcc.c 2008-06-25 17:52:53.000000000 +0200 -@@ -1478,10 +1478,10 @@ - /* Default prefixes to attach to command names. */ - - #ifndef STANDARD_STARTFILE_PREFIX_1 --#define STANDARD_STARTFILE_PREFIX_1 "/lib/" -+#define STANDARD_STARTFILE_PREFIX_1 "" - #endif - #ifndef STANDARD_STARTFILE_PREFIX_2 --#define STANDARD_STARTFILE_PREFIX_2 "/usr/lib/" -+#define STANDARD_STARTFILE_PREFIX_2 "" - #endif - - #ifdef CROSS_DIRECTORY_STRUCTURE /* Don't use these prefixes for a cross compiler. */ -@@ -1515,8 +1515,8 @@ - /* For native compilers, these are well-known paths containing - components that may be provided by the system. For cross - compilers, these paths are not used. */ --static const char *const standard_exec_prefix_1 = "/usr/libexec/gcc/"; --static const char *const standard_exec_prefix_2 = "/usr/lib/gcc/"; -+static const char *const standard_exec_prefix_1 = "/no-such-path/"; -+static const char *const standard_exec_prefix_2 = "/no-such-path/"; - static const char *md_exec_prefix = MD_EXEC_PREFIX; - static const char *md_startfile_prefix = MD_STARTFILE_PREFIX; - static const char *md_startfile_prefix_1 = MD_STARTFILE_PREFIX_1; -diff -ru gcc-4.3.1-orig/gcc/Makefile.in gcc-4.3.1/gcc/Makefile.in ---- gcc-4.3.1-orig/gcc/Makefile.in 2008-05-11 20:54:15.000000000 +0200 -+++ gcc-4.3.1/gcc/Makefile.in 2008-06-25 17:48:23.000000000 +0200 -@@ -378,7 +378,11 @@ - MD5_H = $(srcdir)/../include/md5.h - - # Default native SYSTEM_HEADER_DIR, to be overridden by targets. --NATIVE_SYSTEM_HEADER_DIR = /usr/include -+# Nix: we override NATIVE_SYSTEM_HEADER_DIR in order to prevent -+# `fixinc' from fixing header files in /usr/include. However, -+# NATIVE_SYSTEM_HEADER_DIR must point to an existing directory, so set -+# it to some dummy directory. -+NATIVE_SYSTEM_HEADER_DIR = $(NIX_FIXINC_DUMMY) - # Default cross SYSTEM_HEADER_DIR, to be overridden by targets. - CROSS_SYSTEM_HEADER_DIR = @CROSS_SYSTEM_HEADER_DIR@ - -@@ -3277,7 +3281,7 @@ - -DGPLUSPLUS_INCLUDE_DIR=\"$(gcc_gxx_include_dir)\" \ - -DGPLUSPLUS_TOOL_INCLUDE_DIR=\"$(gcc_gxx_include_dir)/$(target_noncanonical)\" \ - -DGPLUSPLUS_BACKWARD_INCLUDE_DIR=\"$(gcc_gxx_include_dir)/backward\" \ -- -DLOCAL_INCLUDE_DIR=\"$(local_includedir)\" \ -+ -DLOCAL_INCLUDE_DIR=\"/no-such-dir\" \ - -DCROSS_INCLUDE_DIR=\"$(CROSS_SYSTEM_HEADER_DIR)\" \ - -DTOOL_INCLUDE_DIR=\"$(gcc_tooldir)/include\" \ - -DPREFIX=\"$(prefix)/\" \ diff --git a/pkgs/development/compilers/gcc/4.4/pass-cxxcpp.patch b/pkgs/development/compilers/gcc/4.4/pass-cxxcpp.patch deleted file mode 100644 index 9b0676d4fdc..00000000000 --- a/pkgs/development/compilers/gcc/4.4/pass-cxxcpp.patch +++ /dev/null @@ -1,21 +0,0 @@ -diff -rc gcc-orig/Makefile.in gcc-4.1.1/Makefile.in -*** gcc-orig/Makefile.in Wed Jun 21 13:40:23 2006 ---- gcc-4.1.1/Makefile.in Wed Jun 21 14:19:44 2006 -*************** -*** 213,219 **** - RAW_CXX_TARGET_EXPORTS = \ - $(BASE_TARGET_EXPORTS) \ - CXX_FOR_TARGET="$(RAW_CXX_FOR_TARGET)"; export CXX_FOR_TARGET; \ -! CXX="$(RAW_CXX_FOR_TARGET)"; export CXX; - - NORMAL_TARGET_EXPORTS = \ - $(BASE_TARGET_EXPORTS) \ ---- 213,220 ---- - RAW_CXX_TARGET_EXPORTS = \ - $(BASE_TARGET_EXPORTS) \ - CXX_FOR_TARGET="$(RAW_CXX_FOR_TARGET)"; export CXX_FOR_TARGET; \ -! CXX="$(RAW_CXX_FOR_TARGET) $(CFLAGS_FOR_BUILD)"; export CXX; \ -! CXXCPP="$(RAW_CXX_FOR_TARGET) $(CFLAGS_FOR_BUILD) -E"; export CXXCPP; - - NORMAL_TARGET_EXPORTS = \ - $(BASE_TARGET_EXPORTS) \ diff --git a/pkgs/development/compilers/gcc/4.4/pr41818.patch b/pkgs/development/compilers/gcc/4.4/pr41818.patch deleted file mode 100644 index 98731c46067..00000000000 --- a/pkgs/development/compilers/gcc/4.4/pr41818.patch +++ /dev/null @@ -1,26 +0,0 @@ -From . This fixes compilation -of the sparc64-linux-gnu cross-compiler with shared libraries. - ---- trunk/Makefile.in 2010/01/07 19:21:46 155705 -+++ trunk/Makefile.in 2010/01/07 19:53:50 155706 -@@ -259,7 +259,7 @@ - # directories built for the target. - TARGET_CONFIGARGS = @target_configargs@ --with-target-subdir="$(TARGET_SUBDIR)" - # This is the list of variables to export in the environment when --# configuring subdirectories for the host system. -+# configuring subdirectories for the target system. - BASE_TARGET_EXPORTS = \ - $(BASE_EXPORTS) \ - AR="$(AR_FOR_TARGET)"; export AR; \ -@@ -281,7 +281,10 @@ - STRIP="$(STRIP_FOR_TARGET)"; export STRIP; \ - WINDRES="$(WINDRES_FOR_TARGET)"; export WINDRES; \ - WINDMC="$(WINDMC_FOR_TARGET)"; export WINDMC; \ -- $(RPATH_ENVVAR)=`echo "$(HOST_LIB_PATH)$(TARGET_LIB_PATH)$$$(RPATH_ENVVAR)" | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; export $(RPATH_ENVVAR); -+@if gcc-bootstrap -+ $(RPATH_ENVVAR)=`echo "$(TARGET_LIB_PATH)$$$(RPATH_ENVVAR)" | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; export $(RPATH_ENVVAR); \ -+@endif gcc-bootstrap -+ $(RPATH_ENVVAR)=`echo "$(HOST_LIB_PATH)$$$(RPATH_ENVVAR)" | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; export $(RPATH_ENVVAR); - - RAW_CXX_TARGET_EXPORTS = \ - $(BASE_TARGET_EXPORTS) \ diff --git a/pkgs/development/compilers/gcc/4.4/siginfo_t_fix.patch b/pkgs/development/compilers/gcc/4.4/siginfo_t_fix.patch deleted file mode 100644 index 8b126cd08c3..00000000000 --- a/pkgs/development/compilers/gcc/4.4/siginfo_t_fix.patch +++ /dev/null @@ -1,174 +0,0 @@ -https://bugs.gentoo.org/424970 - -fix from upstream for building with newer glibc versions - -From f0cdca2bf2230005025e13e7354fedb612933c96 Mon Sep 17 00:00:00 2001 -From: tschwinge -Date: Fri, 20 Apr 2012 08:14:00 +0000 -Subject: [PATCH] struct siginfo vs. siginfo_t - - Backport from trunk (but apply to gcc/): - - 2012-04-20 Thomas Schwinge - -gcc/ - * config/alpha/linux-unwind.h (alpha_fallback_frame_state): Use - siginfo_t instead of struct siginfo. - * config/bfin/linux-unwind.h (bfin_fallback_frame_state): Likewise. - * config/i386/linux-unwind.h (x86_fallback_frame_state): Likewise. - * config/ia64/linux-unwind.h (ia64_fallback_frame_state) - (ia64_handle_unwabi): Likewise. - * config/mips/linux-unwind.h (mips_fallback_frame_state): Likewise. - * config/pa/linux-unwind.h (pa32_fallback_frame_state): Likewise. - * config/sh/linux-unwind.h (shmedia_fallback_frame_state) - (sh_fallback_frame_state): Likewise. - * config/xtensa/linux-unwind.h (xtensa_fallback_frame_state): Likewise. - -git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_5-branch@186613 138bc75d-0d04-0410-961f-82ee72b054a4 ---- - gcc/ChangeLog | 20 ++++++++++++++++++++ - gcc/config/alpha/linux-unwind.h | 4 ++-- - gcc/config/bfin/linux-unwind.h | 6 +++--- - gcc/config/i386/linux-unwind.h | 6 +++--- - gcc/config/ia64/linux-unwind.h | 6 +++--- - gcc/config/mips/linux-unwind.h | 5 +++-- - gcc/config/pa/linux-unwind.h | 4 ++-- - gcc/config/sh/linux-unwind.h | 9 +++++---- - gcc/config/xtensa/linux-unwind.h | 4 ++-- - 9 files changed, 43 insertions(+), 21 deletions(-) - -diff --git a/gcc/config/alpha/linux-unwind.h b/gcc/config/alpha/linux-unwind.h -index 4c811dc..8c04b3b 100644 ---- a/gcc/config/alpha/linux-unwind.h -+++ b/gcc/config/alpha/linux-unwind.h -@@ -49,7 +49,7 @@ alpha_fallback_frame_state (struct _Unwind_Context *context, - else if (pc[1] == 0x201f015f) /* lda $0,NR_rt_sigreturn */ - { - struct rt_sigframe { -- struct siginfo info; -+ siginfo_t info; - struct ucontext uc; - } *rt_ = context->cfa; - sc = &rt_->uc.uc_mcontext; -diff --git a/gcc/config/bfin/linux-unwind.h b/gcc/config/bfin/linux-unwind.h -index 88c8285..15bb2f1 100644 ---- a/gcc/config/bfin/linux-unwind.h -+++ b/gcc/config/bfin/linux-unwind.h -@@ -48,10 +48,10 @@ bfin_fallback_frame_state (struct _Unwind_Context *context, - { - struct rt_sigframe { - int sig; -- struct siginfo *pinfo; -+ siginfo_t *pinfo; - void *puc; - char retcode[8]; -- struct siginfo info; -+ siginfo_t info; - struct ucontext uc; - } *rt_ = context->cfa; - -diff --git a/gcc/config/i386/linux-unwind.h b/gcc/config/i386/linux-unwind.h -index 36ee370..fe0ea3e 100644 ---- a/gcc/config/i386/linux-unwind.h -+++ b/gcc/config/i386/linux-unwind.h -@@ -133,9 +133,9 @@ x86_fallback_frame_state (struct _Unwind_Context *context, - { - struct rt_sigframe { - int sig; -- struct siginfo *pinfo; -+ siginfo_t *pinfo; - void *puc; -- struct siginfo info; -+ siginfo_t info; - struct ucontext uc; - } *rt_ = context->cfa; - /* The void * cast is necessary to avoid an aliasing warning. -diff --git a/gcc/config/ia64/linux-unwind.h b/gcc/config/ia64/linux-unwind.h -index 93f762d..da31259 100644 ---- a/gcc/config/ia64/linux-unwind.h -+++ b/gcc/config/ia64/linux-unwind.h -@@ -47,7 +47,7 @@ ia64_fallback_frame_state (struct _Unwind_Context *context, - struct sigframe { - char scratch[16]; - unsigned long sig_number; -- struct siginfo *info; -+ siginfo_t *info; - struct sigcontext *sc; - } *frame_ = (struct sigframe *)context->psp; - struct sigcontext *sc = frame_->sc; -@@ -137,7 +137,7 @@ ia64_handle_unwabi (struct _Unwind_Context *context, _Unwind_FrameState *fs) - struct sigframe { - char scratch[16]; - unsigned long sig_number; -- struct siginfo *info; -+ siginfo_t *info; - struct sigcontext *sc; - } *frame = (struct sigframe *)context->psp; - struct sigcontext *sc = frame->sc; -diff --git a/gcc/config/mips/linux-unwind.h b/gcc/config/mips/linux-unwind.h -index 02f7cd5..094ff58 100644 ---- a/gcc/config/mips/linux-unwind.h -+++ b/gcc/config/mips/linux-unwind.h -@@ -75,7 +76,7 @@ mips_fallback_frame_state (struct _Unwind_Context *context, - struct rt_sigframe { - u_int32_t ass[4]; /* Argument save space for o32. */ - u_int32_t trampoline[2]; -- struct siginfo info; -+ siginfo_t info; - _sig_ucontext_t uc; - } *rt_ = context->cfa; - sc = &rt_->uc.uc_mcontext; -diff --git a/gcc/config/pa/linux-unwind.h b/gcc/config/pa/linux-unwind.h -index a0560e9..38b4eda 100644 ---- a/gcc/config/pa/linux-unwind.h -+++ b/gcc/config/pa/linux-unwind.h -@@ -63,7 +63,7 @@ pa32_fallback_frame_state (struct _Unwind_Context *context, - int i; - struct sigcontext *sc; - struct rt_sigframe { -- struct siginfo info; -+ siginfo_t info; - struct ucontext uc; - } *frame; - -diff --git a/gcc/config/sh/linux-unwind.h b/gcc/config/sh/linux-unwind.h -index 94ed95d..5a78e31 100644 ---- a/gcc/config/sh/linux-unwind.h -+++ b/gcc/config/sh/linux-unwind.h -@@ -80,9 +81,9 @@ shmedia_fallback_frame_state (struct _Unwind_Context *context, - && (*(unsigned long *) (pc+11) == 0x6ff0fff0)) - { - struct rt_sigframe { -- struct siginfo *pinfo; -+ siginfo_t *pinfo; - void *puc; -- struct siginfo info; -+ siginfo_t info; - struct ucontext uc; - } *rt_ = context->cfa; - /* The void * cast is necessary to avoid an aliasing warning. -@@ -179,7 +180,7 @@ sh_fallback_frame_state (struct _Unwind_Context *context, - && (*(unsigned short *) (pc+14) == 0x00ad)))) - { - struct rt_sigframe { -- struct siginfo info; -+ siginfo_t info; - struct ucontext uc; - } *rt_ = context->cfa; - /* The void * cast is necessary to avoid an aliasing warning. -diff --git a/gcc/config/xtensa/linux-unwind.h b/gcc/config/xtensa/linux-unwind.h -index 32e9349..2456497 100644 ---- a/gcc/config/xtensa/linux-unwind.h -+++ b/gcc/config/xtensa/linux-unwind.h -@@ -62,7 +62,7 @@ xtensa_fallback_frame_state (struct _Unwind_Context *context, - struct sigcontext *sc; - - struct rt_sigframe { -- struct siginfo info; -+ siginfo_t info; - struct ucontext uc; - } *rt_; - --- -1.7.9.7 - diff --git a/pkgs/development/compilers/gcc/4.4/sources.nix b/pkgs/development/compilers/gcc/4.4/sources.nix deleted file mode 100644 index 5517e7c3b92..00000000000 --- a/pkgs/development/compilers/gcc/4.4/sources.nix +++ /dev/null @@ -1,26 +0,0 @@ -/* Automatically generated by `update-gcc.sh', do not edit. - For GCC 4.4.7. */ -{ fetchurl, optional, version, langC, langCC, langFortran, langJava, langAda }: - -assert version == "4.4.7"; -optional /* langC */ true (fetchurl { - url = "mirror://gcc/releases/gcc-${version}/gcc-core-${version}.tar.bz2"; - sha256 = "c4663b7023909a4a075d3c2b2e17f6e082a9625aebfd0ce7f1d7817e44bf5542"; -}) ++ -optional langCC (fetchurl { - url = "mirror://gcc/releases/gcc-${version}/gcc-g++-${version}.tar.bz2"; - sha256 = "1882ff29be51eeb3fb349cbcda9df200a5c3cd20c97dd1d593101e0998b3c469"; -}) ++ -optional langFortran (fetchurl { - url = "mirror://gcc/releases/gcc-${version}/gcc-fortran-${version}.tar.bz2"; - sha256 = "545a1e8e97d9364de4408c6a91830f9051ce24b4fbfbfdc56e72c7b4be17ebdd"; -}) ++ -optional langJava (fetchurl { - url = "mirror://gcc/releases/gcc-${version}/gcc-java-${version}.tar.bz2"; - sha256 = "3c31ddd80f945b797d8d4ed7761426c26343781c361ec1b33bcea9874cc4c6c0"; -}) ++ -optional langAda (fetchurl { - url = "mirror://gcc/releases/gcc-${version}/gcc-ada-${version}.tar.bz2"; - sha256 = "fb9f30b85d48838390554b948d137487f0db09ad5f8ba73ca4d7ca35765c6ed8"; -}) ++ -[] diff --git a/pkgs/development/compilers/gcc/4.4/target-cpp.patch b/pkgs/development/compilers/gcc/4.4/target-cpp.patch deleted file mode 100644 index ab0f0ee51aa..00000000000 --- a/pkgs/development/compilers/gcc/4.4/target-cpp.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff --git a/Makefile.in b/Makefile.in -index 8545b60..1fab64d 100644 ---- a/Makefile.in -+++ b/Makefile.in -@@ -231,6 +231,7 @@ BASE_TARGET_EXPORTS = \ - CC="$(CC_FOR_TARGET)"; export CC; \ - CFLAGS="$(CFLAGS_FOR_TARGET) $(SYSROOT_CFLAGS_FOR_TARGET) $(DEBUG_PREFIX_CFLAGS_FOR_TARGET)"; export CFLAGS; \ - CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \ -+ CPP="$(CC_FOR_TARGET) -E"; export CPP; \ - CPPFLAGS="$(CPPFLAGS_FOR_TARGET)"; export CPPFLAGS; \ - CXXFLAGS="$(CXXFLAGS_FOR_TARGET) $(SYSROOT_CFLAGS_FOR_TARGET) $(DEBUG_PREFIX_CFLAGS_FOR_TARGET)"; export CXXFLAGS; \ - GCJ="$(GCJ_FOR_TARGET)"; export GCJ; \ diff --git a/pkgs/development/compilers/gcc/4.4/update-gcc.sh b/pkgs/development/compilers/gcc/4.4/update-gcc.sh deleted file mode 100755 index 03297fbadd6..00000000000 --- a/pkgs/development/compilers/gcc/4.4/update-gcc.sh +++ /dev/null @@ -1,64 +0,0 @@ -#!/bin/sh - -if [ $# -ne 1 ] -then - echo "Usage: $(basename $0) VERSION" - echo - echo "Download and GPG-check component tarballs for GCC VERSION." - exit 1 -fi - -version="$1" - -set -e - -out="sources.nix" - -declare -A options - -options["core"]="/* langC */ true" -options["g++"]="langCC" -options["fortran"]="langFortran" -options["java"]="langJava" -options["ada"]="langAda" -#options["go"]="langGo" - -cat > "$out"<> "$out" <> "$out" < 4.4 }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e1b19a8ccbe..2721c90b009 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4123,13 +4123,6 @@ let cross = crossSystem; }; - gcc44 = lowPrio (wrapCC (makeOverridable (import ../development/compilers/gcc/4.4) { - inherit fetchurl stdenv gmp mpfr /* ppl cloogppl */ - gettext which noSysDirs; - texinfo = texinfo4; - profiledCompiler = true; - })); - gcc45 = lowPrio (wrapCC (callPackage ../development/compilers/gcc/4.5 { inherit noSysDirs; texinfo = texinfo4; @@ -4285,17 +4278,6 @@ let profiledCompiler = false; }); - ghdl = wrapCC (import ../development/compilers/gcc/4.3 { - inherit stdenv fetchurl gmp mpfr noSysDirs gnat; - texinfo = texinfo4; - name = "ghdl"; - langVhdl = true; - langCC = false; - langC = false; - profiledCompiler = false; - enableMultilib = false; - }); - ghdl_mcode = callPackage ../development/compilers/ghdl { }; gcl = callPackage ../development/compilers/gcl { diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix index 6c510ea029f..56caa3a3bb4 100644 --- a/pkgs/top-level/release.nix +++ b/pkgs/top-level/release.nix @@ -117,7 +117,6 @@ let gajim = linux; gawk = all; gcc = linux; - gcc44 = linux; gcj = linux; ghostscript = linux; ghostscriptX = linux; From 47a04ac52c579ace473c3f6e2bf388d3712aac17 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 2 Mar 2016 18:02:01 +0100 Subject: [PATCH 024/678] Mark some packages as broken due to GCC 5 --- pkgs/development/libraries/openbabel/default.nix | 1 + pkgs/development/libraries/vxl/default.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/pkgs/development/libraries/openbabel/default.nix b/pkgs/development/libraries/openbabel/default.nix index 03cfbc8fabd..3c4cd8bb6c8 100644 --- a/pkgs/development/libraries/openbabel/default.nix +++ b/pkgs/development/libraries/openbabel/default.nix @@ -18,5 +18,6 @@ stdenv.mkDerivation rec { meta = { platforms = stdenv.lib.platforms.all; maintainers = [ stdenv.lib.maintainers.urkud ]; + broken = true; # doesn't build with GCC 5; fix in GitHub }; } diff --git a/pkgs/development/libraries/vxl/default.nix b/pkgs/development/libraries/vxl/default.nix index e181ade4d6c..b03b9a876a0 100644 --- a/pkgs/development/libraries/vxl/default.nix +++ b/pkgs/development/libraries/vxl/default.nix @@ -26,5 +26,6 @@ stdenv.mkDerivation { license = "VXL License"; maintainers = with stdenv.lib.maintainers; [viric]; platforms = with stdenv.lib.platforms; linux; + broken = true; # requires fix for gcc 5: https://lists.fedoraproject.org/pipermail/scm-commits/Week-of-Mon-20150216/1511118.html }; } From e9a81e41ed73dffdeb8da2a1705b3f1712351e42 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 3 Mar 2016 12:51:13 +0100 Subject: [PATCH 025/678] perlPackages: Fix some Perl 5.22 breakage Most was caused by the removal of CGI and Module::Build from Perl. --- pkgs/top-level/perl-packages.nix | 137 +++++++++++++++++-------------- 1 file changed, 74 insertions(+), 63 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 6c1c23f3454..970086f9ca1 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -1422,7 +1422,7 @@ let self = _self // overrides; _self = with self; { sha256 = "efb3e5235ada6a91f97ca2905399a686bedea60f6b525e52f4a147baff4f131a"; }; buildInputs = [ TestDeep TestWarn ]; - propagatedBuildInputs = [ HTMLParser self."if" ]; + propagatedBuildInputs = [ HTMLParser ]; meta = { homepage = https://metacpan.org/module/CGI; description = "Handle Common Gateway Interface requests and responses"; @@ -1719,6 +1719,11 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/D/DR/DROLSKY/${name}.tar.gz"; sha256 = "09ifd6v0c94vr20n9yr1dxgcp7hyscqq851szdip7y24bd26nlbc"; }; + buildInputs = [ ModuleBuild ]; + meta = { + description = "Provide utility methods for factory classes"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + }; }; ClassInspector = buildPerlPackage { @@ -3010,7 +3015,8 @@ let self = _self // overrides; _self = with self; { url = mirror://cpan/authors/id/D/DR/DROLSKY/DateTime-Format-ICal-0.09.tar.gz; sha256 = "8b09f6539f5e9c0df0e6135031699ed4ef9eef8165fc80aefeecc817ef997c33"; }; - propagatedBuildInputs = [ DateTime DateTimeEventICal DateTimeSet DateTimeTimeZone ParamsValidate ]; + buildInputs = [ ModuleBuild ]; + propagatedBuildInputs = [ DateTime DateTimeEventICal DateTimeSet DateTimeTimeZone ]; meta = { description = "Parse and format iCal datetime and duration strings"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; @@ -3173,7 +3179,7 @@ let self = _self // overrides; _self = with self; { url = mirror://cpan/authors/id/R/RO/ROKR/DateTimeX-Easy-0.089.tar.gz; sha256 = "17e6d202e7ac6049523048e97bb8f195e3c79208570da1504f4313584e487a79"; }; - buildInputs = [ TestMost ]; + buildInputs = [ TestMost ModuleBuild ]; propagatedBuildInputs = [ DateTime DateTimeFormatFlexible DateTimeFormatICal DateTimeFormatNatural TimeDate ]; meta = { description = "Parse a date/time string using the best method available"; @@ -3216,6 +3222,15 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [ IOCaptureOutput ]; }; + DevelCheckOS = buildPerlPackage rec { + name = "Devel-CheckOS-1.76"; + src = fetchurl { + url = "mirror://cpan/authors/id/D/DC/DCANTRELL/${name}.tar.gz"; + sha256 = "f83fb4cb8de060f607214b1e88c98ac6c4e065371e646fe896f16ea887aecb0c"; + }; + propagatedBuildInputs = [ DataCompare FileFindRule ]; + }; + DevelDProf = buildPerlPackage { name = "Devel-DProf-20110802.00"; src = fetchurl { @@ -3616,14 +3631,15 @@ let self = _self // overrides; _self = with self; { }; DevelSymdump = buildPerlPackage rec { - name = "Devel-Symdump-2.11"; + name = "Devel-Symdump-2.15"; src = fetchurl { url = "mirror://cpan/authors/id/A/AN/ANDK/${name}.tar.gz"; - sha256 = "0i5m2w8rsmp5lqi1y5y6b6938pidpz9hg92xahrshaddph00358i"; + sha256 = "76c2a90d31318204ecf1977f0217ce57b142e6681fe2b99fb8789efc5dd86f41"; + }; + meta = { + description = "Dump symbol names or the symbol table"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; - propagatedBuildInputs = [ - TestPod /* cyclic dependency: TestPodCoverage */ - ]; }; Digest = buildPerlPackage { @@ -5913,18 +5929,7 @@ let self = _self // overrides; _self = with self; { }; }; - "if" = buildPerlPackage rec { - name = "if-0.0606"; - src = fetchurl { - url = "mirror://cpan/authors/id/R/RJ/RJBS/${name}.tar.gz"; - sha256 = "63d69282d6c4c9e76370b78d770ca720cea88cfe5ee5b612709240fc6078d50e"; - }; - meta = { - description = "C a Perl module if a condition holds (also can C a module)"; - license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = [ maintainers.rycee ]; - }; - }; + "if" = null; # For backwards compatibility. if_ = self."if"; @@ -6645,13 +6650,15 @@ let self = _self // overrides; _self = with self; { }; }; - ListMoreUtils = buildPerlPackage { - name = "List-MoreUtils-0.33"; + ListMoreUtils = buildPerlPackage rec { + name = "List-MoreUtils-0.413"; src = fetchurl { - url = mirror://cpan/authors/id/A/AD/ADAMK/List-MoreUtils-0.33.tar.gz; - sha256 = "1bcljhhsk5g0xykvgbxz10ilmj02s58ydiy3g8hbzdr29i20np1i"; + url = "mirror://cpan/authors/id/R/RE/REHSACK/${name}.tar.gz"; + sha256 = "4d6429d5672ce74a59d6490320252cb8b5b8285db8fe9c6551a4162e5375ef37"; }; + propagatedBuildInputs = [ ExporterTiny ]; meta = { + homepage = https://metacpan.org/release/List-MoreUtils; description = "Provide the stuff missing in List::Util"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; @@ -7534,11 +7541,11 @@ let self = _self // overrides; _self = with self; { }; }; - ModulePluggable = buildPerlPackage { - name = "Module-Pluggable-5.1"; + ModulePluggable = buildPerlPackage rec { + name = "Module-Pluggable-5.2"; src = fetchurl { - url = mirror://cpan/authors/id/S/SI/SIMONW/Module-Pluggable-5.1.tar.gz; - sha256 = "0vwi433pk7n1ia5wy67j3545jvmjf1hb4jwcvzrz25mv8d03bp72"; + url = "mirror://cpan/authors/id/S/SI/SIMONW/${name}.tar.gz"; + sha256 = "b3f2ad45e4fd10b3fb90d912d78d8b795ab295480db56dc64e86b9fa75c5a6df"; }; patches = [ # !!! merge this patch into Perl itself (which contains Module::Pluggable as well) @@ -7578,6 +7585,7 @@ let self = _self // overrides; _self = with self; { url = mirror://cpan/authors/id/Z/ZE/ZEFRAM/Module-Runtime-0.014.tar.gz; sha256 = "19326f094jmjs6mgpwkyisid54k67w34br8yfh0gvaaml87gwi2c"; }; + buildInputs = [ ModuleBuild ]; meta = { homepage = http://search.cpan.org/perldoc?CPAN::Meta::Spec; description = "Runtime module handling"; @@ -7960,15 +7968,16 @@ let self = _self // overrides; _self = with self; { }; }; - MooseXDaemonize = buildPerlPackage { - name = "MooseX-Daemonize-0.15"; + MooseXDaemonize = buildPerlPackage rec { + name = "MooseX-Daemonize-0.21"; src = fetchurl { - url = mirror://cpan/authors/id/M/MI/MICHAELR/MooseX-Daemonize-0.15.tar.gz; - sha256 = "1h6rzdmk68q4p0nh2bzmwwvr5iaf7pvdfrpwdxmr3z5pc64wajvd"; + url = "mirror://cpan/authors/id/E/ET/ETHER/${name}.tar.gz"; + sha256 = "111f391221d00f8b09cdcc6c806ab114324cf7f529d12f627fb97d054da42225"; }; - buildInputs = [ TestMoose ]; - propagatedBuildInputs = [ Moose MooseXGetopt MooseXTypesPathClass ]; + buildInputs = [ DevelCheckOS ModuleBuildTiny Moose TestFatal ]; + propagatedBuildInputs = [ Moose MooseXGetopt MooseXTypesPathClass namespaceautoclean ]; meta = { + homepage = https://github.com/moose/MooseX-Daemonize; description = "Role for daemonizing your Moose based application"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; @@ -8251,7 +8260,7 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/E/ET/ETHER/${name}.tar.gz"; sha256 = "e9e8c36284cf1adc6563c980c0a4f0a7df720dbaaece0dd6be66b975dde5db7a"; }; - buildInputs = [ ModuleBuildTiny Moose TestFatal TestRequires self."if" ]; + buildInputs = [ ModuleBuildTiny Moose TestFatal TestRequires ]; propagatedBuildInputs = [ CarpClan Moose SubExporterForMethods SubName namespaceautoclean ]; meta = { homepage = https://github.com/moose/MooseX-Types; @@ -8268,7 +8277,7 @@ let self = _self // overrides; _self = with self; { sha256 = "ff0c963f5e8304acb5f64bdf9ba1f19284311148e1a8f0d1f81f123f9950f5f2"; }; buildInputs = [ ModuleBuildTiny TestDeep TestWarnings perl ]; - propagatedBuildInputs = [ MooseXTypes self."if" ]; + propagatedBuildInputs = [ MooseXTypes ]; meta = { homepage = https://github.com/moose/MooseX-Types-Common; description = "A library of commonly used type constraints"; @@ -9570,13 +9579,11 @@ let self = _self // overrides; _self = with self; { }; }; - PadWalker = buildPerlPackage { - name = "PadWalker-1.98"; + PadWalker = buildPerlPackage rec { + name = "PadWalker-2.2"; src = fetchurl { - url = mirror://cpan/authors/id/R/RO/ROBIN/PadWalker-1.98.tar.gz; - sha256 = "0v2pldb5awflf10w1p9pwn8w37lkpfc2h459gd9zz6p57883ibw0"; - }; - meta = { + url = "mirror://cpan/authors/id/R/RO/ROBIN/${name}.tar.gz"; + sha256 = "fc1df2084522e29e892da393f3719d2c1be0da022fdd89cff4b814167aecfea3"; }; }; @@ -10358,22 +10365,20 @@ let self = _self // overrides; _self = with self; { }; SQLTranslator = buildPerlPackage rec { - name = "SQL-Translator-0.11020"; + name = "SQL-Translator-0.11021"; src = fetchurl { url = "mirror://cpan/authors/id/I/IL/ILMARI/${name}.tar.gz"; - sha256 = "18mqnppwk1076sxcink5ajk75ysway0bd049hwxvk8md39x0y7ar"; + sha256 = "64cb38a9f78367bc115359a999003bbeb3c32cc75bba8306ec1a938fc441bfd1"; }; - propagatedBuildInputs = [ - ClassBase ClassDataInheritable ClassMakeMethods DigestSHA1 CarpClan IOStringy - ParseRecDescent ClassAccessor DBI FileShareDir XMLWriter YAML TestDifferences - TemplateToolkit GraphViz XMLLibXML TestPod TextRecordParser HTMLParser - SpreadsheetParseExcel Graph GD Moo TryTiny PackageVariant - ]; + buildInputs = [ JSON TestDifferences TestException XMLWriter YAML ]; + propagatedBuildInputs = [ CarpClan DBI FileShareDir ListMoreUtils Moo PackageVariant ParseRecDescent TryTiny ]; meta = { + description = "SQL DDL transformations and more"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; platforms = stdenv.lib.platforms.linux; }; }; - + PackageVariant = buildPerlPackage { name = "Package-Variant-1.002002"; src = fetchurl { @@ -11609,17 +11614,17 @@ let self = _self // overrides; _self = with self; { }; }; - TestMemoryCycle = buildPerlPackage { - name = "Test-Memory-Cycle-1.04"; + TestMemoryCycle = buildPerlPackage rec { + name = "Test-Memory-Cycle-1.06"; src = fetchurl { - url = mirror://cpan/authors/id/P/PE/PETDANCE/Test-Memory-Cycle-1.04.tar.gz; - sha256 = "09qj48gmj25xgm0k12n1xx7chdk9gdy3sck4pabvzs0v00nmv9p5"; + url = "mirror://cpan/authors/id/P/PE/PETDANCE/${name}.tar.gz"; + sha256 = "9d53ddfdc964cd8454cb0da4c695b6a3ae47b45839291c34cb9d8d1cfaab3202"; }; propagatedBuildInputs = [ DevelCycle PadWalker ]; meta = { description = "Verifies code hasn't left circular references"; maintainers = with maintainers; [ ocharles ]; - platforms = stdenv.lib.platforms.unix; + platforms = stdenv.lib.platforms.unix; }; }; @@ -11651,13 +11656,18 @@ let self = _self // overrides; _self = with self; { }; }; - TestMockObject = buildPerlPackage { - name = "Test-MockObject-1.09"; + TestMockObject = buildPerlPackage rec { + name = "Test-MockObject-1.20150527"; src = fetchurl { - url = mirror://cpan/authors/id/C/CH/CHROMATIC/Test-MockObject-1.09.tar.gz; - sha256 = "1cz385x0jrkj84nmfs6qyzwwvv8m9v8r2isagfj1zxvhdw49wdyy"; + url = "mirror://cpan/authors/id/C/CH/CHROMATIC/${name}.tar.gz"; + sha256 = "adf1357a9014b3a397ff7ecbf1835dec376a67a37bb2e788734a627e17dc1d98"; + }; + buildInputs = [ TestException TestWarn CGI ]; + propagatedBuildInputs = [ UNIVERSALcan UNIVERSALisa ]; + meta = { + description = "Perl extension for emulating troublesome interfaces"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; - propagatedBuildInputs = [TestException UNIVERSALisa UNIVERSALcan]; }; TestMoose = Moose; @@ -11986,7 +11996,7 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/E/ET/ETHER/${name}.tar.gz"; sha256 = "ae2b68b1b5616704598ce07f5118efe42dc4605834453b7b2be14e26f9cc9a08"; }; - buildInputs = [ TestTester CPANMetaCheck ModuleMetadata self."if" ]; + buildInputs = [ TestTester CPANMetaCheck ModuleMetadata ]; meta = { homepage = https://github.com/karenetheridge/Test-Warnings; description = "Test for warnings and the lack of them"; @@ -12015,6 +12025,7 @@ let self = _self // overrides; _self = with self; { url = mirror://cpan/authors/id/P/PE/PETDANCE/Test-WWW-Mechanize-1.44.tar.gz; sha256 = "062pj242vsc73bw11jqpap92ax9wzc9f2m4xhyp1wzrwkfchpl2q"; }; + buildInputs = [ CGI ]; propagatedBuildInputs = [ CarpAssertMore HTMLTree HTTPServerSimple LWP TestLongString URI WWWMechanize ]; meta = { homepage = https://github.com/petdance/test-www-mechanize; @@ -12057,7 +12068,7 @@ let self = _self // overrides; _self = with self; { url = mirror://cpan/authors/id/L/LB/LBROCARD/Test-WWW-Mechanize-PSGI-0.35.tar.gz; sha256 = "1hih8s49zf38bisvhnhzrrj0zwyiivkrbs7nmmdqm1qqy27wv7pc"; }; - buildInputs = [ TestPod ]; + buildInputs = [ TestPod CGI ]; propagatedBuildInputs = [ Plack TestWWWMechanize TryTiny ]; meta = { description = "Test PSGI programs using WWW::Mechanize"; From 1c74a16e10e6d5ebff37d7846638c99850dce641 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 3 Mar 2016 13:10:22 +0100 Subject: [PATCH 026/678] rcs: Fix build on gcc 5 http://hydra.nixos.org/build/32624218 --- pkgs/applications/version-management/rcs/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/version-management/rcs/default.nix b/pkgs/applications/version-management/rcs/default.nix index a829af8aa23..44f72c3f0fe 100644 --- a/pkgs/applications/version-management/rcs/default.nix +++ b/pkgs/applications/version-management/rcs/default.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { doCheck = true; - NIX_CFLAGS_COMPILE = if stdenv.isDarwin then "-std=gnu99" else null; + NIX_CFLAGS_COMPILE = [ "-std=c99" ]; meta = { homepage = http://www.gnu.org/software/rcs/; From 639d7409f2353b754c1d964acc88f9ffea6ab058 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 3 Mar 2016 13:46:21 +0100 Subject: [PATCH 027/678] Move testBootstrapTools to make-bootstrap-tools.nix --- pkgs/stdenv/linux/default.nix | 60 ++-------------------- pkgs/stdenv/linux/make-bootstrap-tools.nix | 59 ++++++++++++++++++--- 2 files changed, 57 insertions(+), 62 deletions(-) diff --git a/pkgs/stdenv/linux/default.nix b/pkgs/stdenv/linux/default.nix index 965188a0cdd..59a8636ceac 100644 --- a/pkgs/stdenv/linux/default.nix +++ b/pkgs/stdenv/linux/default.nix @@ -8,20 +8,17 @@ { system ? builtins.currentSystem , allPackages ? import ../../top-level/all-packages.nix , platform ? null, config ? {}, lib ? (import ../../../lib) -, customBootstrapFiles ? null }: - -rec { - - bootstrapFiles = - if customBootstrapFiles != null then customBootstrapFiles - else if system == "i686-linux" then import ./bootstrap/i686.nix +, bootstrapFiles ? + if system == "i686-linux" then import ./bootstrap/i686.nix else if system == "x86_64-linux" then import ./bootstrap/x86_64.nix else if system == "armv5tel-linux" then import ./bootstrap/armv5tel.nix else if system == "armv6l-linux" then import ./bootstrap/armv6l.nix else if system == "armv7l-linux" then import ./bootstrap/armv7l.nix else if system == "mips64el-linux" then import ./bootstrap/loongson2f.nix - else abort "unsupported platform for the pure Linux stdenv"; + else abort "unsupported platform for the pure Linux stdenv" +}: +rec { commonPreHook = '' @@ -310,51 +307,4 @@ rec { }; }; - - testBootstrapTools = let - defaultPkgs = allPackages { inherit system platform; }; - in derivation { - name = "test-bootstrap-tools"; - inherit system; - builder = bootstrapFiles.busybox; - args = [ "ash" "-e" "-c" "eval \"$buildCommand\"" ]; - - buildCommand = '' - export PATH=${bootstrapTools}/bin - - ls -l - mkdir $out - mkdir $out/bin - sed --version - find --version - diff --version - patch --version - make --version - awk --version - grep --version - gcc --version - - ldlinux=$(echo ${bootstrapTools}/lib/ld-linux*.so.?) - export CPP="cpp -idirafter ${bootstrapTools}/include-glibc -B${bootstrapTools}" - export CC="gcc -idirafter ${bootstrapTools}/include-glibc -B${bootstrapTools} -Wl,-dynamic-linker,$ldlinux -Wl,-rpath,${bootstrapTools}/lib" - export CXX="g++ -idirafter ${bootstrapTools}/include-glibc -B${bootstrapTools} -Wl,-dynamic-linker,$ldlinux -Wl,-rpath,${bootstrapTools}/lib" - - echo '#include ' >> foo.c - echo '#include ' >> foo.c - echo 'int main() { printf("Hello World\\n"); return 0; }' >> foo.c - $CC -o $out/bin/foo foo.c - $out/bin/foo - - echo '#include ' >> bar.cc - echo 'int main() { std::cout << "Hello World\\n"; }' >> bar.cc - $CXX -v -o $out/bin/bar bar.cc - $out/bin/bar - - tar xvf ${defaultPkgs.hello.src} - cd hello-* - ./configure --prefix=$out - make - make install - ''; - }; } diff --git a/pkgs/stdenv/linux/make-bootstrap-tools.nix b/pkgs/stdenv/linux/make-bootstrap-tools.nix index ef651f64368..974f5475341 100644 --- a/pkgs/stdenv/linux/make-bootstrap-tools.nix +++ b/pkgs/stdenv/linux/make-bootstrap-tools.nix @@ -156,12 +156,57 @@ rec { ''; }; - test = ((import ./default.nix) { - inherit system; + bootstrapFiles = { + busybox = "${build}/on-server/busybox"; + bootstrapTools = "${build}/on-server/bootstrap-tools.tar.xz"; + }; - customBootstrapFiles = { - busybox = "${build}/on-server/busybox"; - bootstrapTools = "${build}/on-server/bootstrap-tools.tar.xz"; - }; - }).testBootstrapTools; + bootstrapTools = (import ./default.nix { + inherit system bootstrapFiles; + }).bootstrapTools; + + test = derivation { + name = "test-bootstrap-tools"; + inherit system; + builder = bootstrapFiles.busybox; + args = [ "ash" "-e" "-c" "eval \"$buildCommand\"" ]; + + buildCommand = '' + export PATH=${bootstrapTools}/bin + + ls -l + mkdir $out + mkdir $out/bin + sed --version + find --version + diff --version + patch --version + make --version + awk --version + grep --version + gcc --version + + ldlinux=$(echo ${bootstrapTools}/lib/ld-linux*.so.?) + export CPP="cpp -idirafter ${bootstrapTools}/include-glibc -B${bootstrapTools}" + export CC="gcc -idirafter ${bootstrapTools}/include-glibc -B${bootstrapTools} -Wl,-dynamic-linker,$ldlinux -Wl,-rpath,${bootstrapTools}/lib" + export CXX="g++ -idirafter ${bootstrapTools}/include-glibc -B${bootstrapTools} -Wl,-dynamic-linker,$ldlinux -Wl,-rpath,${bootstrapTools}/lib" + + echo '#include ' >> foo.c + echo '#include ' >> foo.c + echo 'int main() { printf("Hello World\\n"); return 0; }' >> foo.c + $CC -o $out/bin/foo foo.c + $out/bin/foo + + echo '#include ' >> bar.cc + echo 'int main() { std::cout << "Hello World\\n"; }' >> bar.cc + $CXX -v -o $out/bin/bar bar.cc + $out/bin/bar + + tar xvf ${hello.src} + cd hello-* + ./configure --prefix=$out + make + make install + ''; + }; } From 5702bc3b55968f8793327a0b5fd46ea446e3e487 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 3 Mar 2016 12:09:50 +0100 Subject: [PATCH 028/678] make-bootstrap-tools: fix #13629: glibc problems On x86_64-linux glibc started to use linker scripts more extensively. (cherry picked from commit aa564c9ed01268e7e0b030942592bc3beb642eef) --- pkgs/stdenv/linux/make-bootstrap-tools.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pkgs/stdenv/linux/make-bootstrap-tools.nix b/pkgs/stdenv/linux/make-bootstrap-tools.nix index 974f5475341..4a7f057cb6c 100644 --- a/pkgs/stdenv/linux/make-bootstrap-tools.nix +++ b/pkgs/stdenv/linux/make-bootstrap-tools.nix @@ -51,7 +51,15 @@ rec { cp -d ${glibc}/lib/crt?.o $out/lib cp -rL ${glibc}/include $out - chmod -R u+w $out/include + chmod -R u+w "$out" + + # glibc can contain linker scripts: find them, copy their deps, + # and get rid of absolute paths (nuke-refs would make them useless) + local lScripts=$(grep --files-with-matches --max-count=1 'GNU ld script' -R "$out/lib") + cp -d -t "$out/lib/" $(cat $lScripts | tr " " "\n" | grep -F '${glibc}' | sort -u) + for f in $lScripts; do + substituteInPlace "$f" --replace '${glibc}/lib/' "" + done # Hopefully we won't need these. rm -rf $out/include/mtd $out/include/rdma $out/include/sound $out/include/video From a6d19c28f158722ce650a3a1ede352ee4179cdcf Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 3 Mar 2016 13:54:52 +0100 Subject: [PATCH 029/678] Don't apply patchelf to itself Since patchelf 0.8 rewrites binaries in place, this causes a bus error. --- pkgs/stdenv/linux/scripts/unpack-bootstrap-tools.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/stdenv/linux/scripts/unpack-bootstrap-tools.sh b/pkgs/stdenv/linux/scripts/unpack-bootstrap-tools.sh index efec363c5c7..85e74aea89e 100644 --- a/pkgs/stdenv/linux/scripts/unpack-bootstrap-tools.sh +++ b/pkgs/stdenv/linux/scripts/unpack-bootstrap-tools.sh @@ -23,7 +23,7 @@ for i in $out/bin/* $out/libexec/gcc/*/*/*; do if [ -z "${i##*/liblto*}" ]; then continue; fi echo patching "$i" LD_LIBRARY_PATH=$out/lib $LD_BINARY \ - $out/bin/patchelf --set-interpreter $LD_BINARY --set-rpath $out/lib --force-rpath "$i" + ./patchelf --set-interpreter $LD_BINARY --set-rpath $out/lib --force-rpath "$i" done for i in $out/lib/librt-*.so $out/lib/libpcre*; do From 5e5494a85213d535843e86e228f078381ab57459 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sun, 28 Feb 2016 13:27:43 +0000 Subject: [PATCH 030/678] make-wrapper.sh: add an --unset argument `--set FOO ""` is not strictly equivalent to `--unset FOO`. In the former case the environment variable still exists with an empty string as a value. --- pkgs/build-support/setup-hooks/make-wrapper.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/build-support/setup-hooks/make-wrapper.sh b/pkgs/build-support/setup-hooks/make-wrapper.sh index 5150b4f0218..7d0f88abb85 100644 --- a/pkgs/build-support/setup-hooks/make-wrapper.sh +++ b/pkgs/build-support/setup-hooks/make-wrapper.sh @@ -19,6 +19,12 @@ makeWrapper() { echo "export $varName=$value" >> $wrapper fi + if test "$p" = "--unset"; then + varName=${params[$((n + 1))]} + n=$((n + 1)) + echo "unset $varName" >> "$wrapper" + fi + if test "$p" = "--run"; then command=${params[$((n + 1))]} n=$((n + 1)) From ff69fc6fb9093decaaa4a16f89dffce40fc55803 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 7 Mar 2016 13:03:31 +0100 Subject: [PATCH 031/678] go-1.4: Fix build against binutils 2.26 The go linker barfed on the new relocation types emitted by binutils 2.26. https://github.com/golang/go/issues/13114 http://hydra.nixos.org/build/32554876 --- pkgs/development/compilers/go/1.4.nix | 1 + .../compilers/go/new-binutils.patch | 186 ++++++++++++++++++ 2 files changed, 187 insertions(+) create mode 100644 pkgs/development/compilers/go/new-binutils.patch diff --git a/pkgs/development/compilers/go/1.4.nix b/pkgs/development/compilers/go/1.4.nix index 9c6bbba24d5..2a1f437ffdf 100644 --- a/pkgs/development/compilers/go/1.4.nix +++ b/pkgs/development/compilers/go/1.4.nix @@ -87,6 +87,7 @@ stdenv.mkDerivation rec { patches = [ ./remove-tools-1.4.patch + ./new-binutils.patch ]; GOOS = if stdenv.isDarwin then "darwin" else "linux"; diff --git a/pkgs/development/compilers/go/new-binutils.patch b/pkgs/development/compilers/go/new-binutils.patch new file mode 100644 index 00000000000..6669bd63303 --- /dev/null +++ b/pkgs/development/compilers/go/new-binutils.patch @@ -0,0 +1,186 @@ +https://github.com/golang/go/issues/13114 +https://gnats.netbsd.org/50777 + +--- a/src/cmd/6l/asm.c 2014-12-11 01:18:10.000000000 +0000 ++++ b/src/cmd/6l/asm.c +@@ -118,6 +118,8 @@ adddynrel(LSym *s, Reloc *r) + return; + + case 256 + R_X86_64_GOTPCREL: ++ case 256 + R_X86_64_GOTPCRELX: ++ case 256 + R_X86_64_REX_GOTPCRELX: + if(targ->type != SDYNIMPORT) { + // have symbol + if(r->off >= 2 && s->p[r->off-2] == 0x8b) { + +--- a/src/cmd/ld/ldelf.c.orig 2015-09-23 04:37:36.000000000 +0000 ++++ b/src/cmd/ld/ldelf.c +@@ -888,12 +888,15 @@ reltype(char *pn, int elftype, uchar *si + case R('6', R_X86_64_PC32): + case R('6', R_X86_64_PLT32): + case R('6', R_X86_64_GOTPCREL): ++ case R('6', R_X86_64_GOTPCRELX): ++ case R('6', R_X86_64_REX_GOTPCRELX): + case R('8', R_386_32): + case R('8', R_386_PC32): + case R('8', R_386_GOT32): + case R('8', R_386_PLT32): + case R('8', R_386_GOTOFF): + case R('8', R_386_GOTPC): ++ case R('8', R_386_GOT32X): + *siz = 4; + break; + case R('6', R_X86_64_64): + +--- a/src/cmd/ld/elf.h.orig 2015-09-23 04:37:36.000000000 +0000 ++++ b/src/cmd/ld/elf.h +@@ -478,32 +478,47 @@ typedef struct { + * Relocation types. + */ + +-#define R_X86_64_NONE 0 /* No relocation. */ +-#define R_X86_64_64 1 /* Add 64 bit symbol value. */ +-#define R_X86_64_PC32 2 /* PC-relative 32 bit signed sym value. */ +-#define R_X86_64_GOT32 3 /* PC-relative 32 bit GOT offset. */ +-#define R_X86_64_PLT32 4 /* PC-relative 32 bit PLT offset. */ +-#define R_X86_64_COPY 5 /* Copy data from shared object. */ +-#define R_X86_64_GLOB_DAT 6 /* Set GOT entry to data address. */ +-#define R_X86_64_JMP_SLOT 7 /* Set GOT entry to code address. */ +-#define R_X86_64_RELATIVE 8 /* Add load address of shared object. */ +-#define R_X86_64_GOTPCREL 9 /* Add 32 bit signed pcrel offset to GOT. */ +-#define R_X86_64_32 10 /* Add 32 bit zero extended symbol value */ +-#define R_X86_64_32S 11 /* Add 32 bit sign extended symbol value */ +-#define R_X86_64_16 12 /* Add 16 bit zero extended symbol value */ +-#define R_X86_64_PC16 13 /* Add 16 bit signed extended pc relative symbol value */ +-#define R_X86_64_8 14 /* Add 8 bit zero extended symbol value */ +-#define R_X86_64_PC8 15 /* Add 8 bit signed extended pc relative symbol value */ +-#define R_X86_64_DTPMOD64 16 /* ID of module containing symbol */ +-#define R_X86_64_DTPOFF64 17 /* Offset in TLS block */ +-#define R_X86_64_TPOFF64 18 /* Offset in static TLS block */ +-#define R_X86_64_TLSGD 19 /* PC relative offset to GD GOT entry */ +-#define R_X86_64_TLSLD 20 /* PC relative offset to LD GOT entry */ +-#define R_X86_64_DTPOFF32 21 /* Offset in TLS block */ +-#define R_X86_64_GOTTPOFF 22 /* PC relative offset to IE GOT entry */ +-#define R_X86_64_TPOFF32 23 /* Offset in static TLS block */ +- +-#define R_X86_64_COUNT 24 /* Count of defined relocation types. */ ++#define R_X86_64_NONE 0 ++#define R_X86_64_64 1 ++#define R_X86_64_PC32 2 ++#define R_X86_64_GOT32 3 ++#define R_X86_64_PLT32 4 ++#define R_X86_64_COPY 5 ++#define R_X86_64_GLOB_DAT 6 ++#define R_X86_64_JMP_SLOT 7 ++#define R_X86_64_RELATIVE 8 ++#define R_X86_64_GOTPCREL 9 ++#define R_X86_64_32 10 ++#define R_X86_64_32S 11 ++#define R_X86_64_16 12 ++#define R_X86_64_PC16 13 ++#define R_X86_64_8 14 ++#define R_X86_64_PC8 15 ++#define R_X86_64_DTPMOD64 16 ++#define R_X86_64_DTPOFF64 17 ++#define R_X86_64_TPOFF64 18 ++#define R_X86_64_TLSGD 19 ++#define R_X86_64_TLSLD 20 ++#define R_X86_64_DTPOFF32 21 ++#define R_X86_64_GOTTPOFF 22 ++#define R_X86_64_TPOFF32 23 ++#define R_X86_64_PC64 24 ++#define R_X86_64_GOTOFF64 25 ++#define R_X86_64_GOTPC32 26 ++#define R_X86_64_GOT64 27 ++#define R_X86_64_GOTPCREL64 28 ++#define R_X86_64_GOTPC64 29 ++#define R_X86_64_GOTPLT64 30 ++#define R_X86_64_PLTOFF64 31 ++#define R_X86_64_SIZE32 32 ++#define R_X86_64_SIZE64 33 ++#define R_X86_64_GOTPC32_TLSDEC 34 ++#define R_X86_64_TLSDESC_CALL 35 ++#define R_X86_64_TLSDESC 36 ++#define R_X86_64_IRELATIVE 37 ++#define R_X86_64_PC32_BND 40 ++#define R_X86_64_GOTPCRELX 41 ++#define R_X86_64_REX_GOTPCRELX 42 + + + #define R_ALPHA_NONE 0 /* No reloc */ +@@ -581,39 +596,42 @@ typedef struct { + #define R_ARM_COUNT 38 /* Count of defined relocation types. */ + + +-#define R_386_NONE 0 /* No relocation. */ +-#define R_386_32 1 /* Add symbol value. */ +-#define R_386_PC32 2 /* Add PC-relative symbol value. */ +-#define R_386_GOT32 3 /* Add PC-relative GOT offset. */ +-#define R_386_PLT32 4 /* Add PC-relative PLT offset. */ +-#define R_386_COPY 5 /* Copy data from shared object. */ +-#define R_386_GLOB_DAT 6 /* Set GOT entry to data address. */ +-#define R_386_JMP_SLOT 7 /* Set GOT entry to code address. */ +-#define R_386_RELATIVE 8 /* Add load address of shared object. */ +-#define R_386_GOTOFF 9 /* Add GOT-relative symbol address. */ +-#define R_386_GOTPC 10 /* Add PC-relative GOT table address. */ +-#define R_386_TLS_TPOFF 14 /* Negative offset in static TLS block */ +-#define R_386_TLS_IE 15 /* Absolute address of GOT for -ve static TLS */ +-#define R_386_TLS_GOTIE 16 /* GOT entry for negative static TLS block */ +-#define R_386_TLS_LE 17 /* Negative offset relative to static TLS */ +-#define R_386_TLS_GD 18 /* 32 bit offset to GOT (index,off) pair */ +-#define R_386_TLS_LDM 19 /* 32 bit offset to GOT (index,zero) pair */ +-#define R_386_TLS_GD_32 24 /* 32 bit offset to GOT (index,off) pair */ +-#define R_386_TLS_GD_PUSH 25 /* pushl instruction for Sun ABI GD sequence */ +-#define R_386_TLS_GD_CALL 26 /* call instruction for Sun ABI GD sequence */ +-#define R_386_TLS_GD_POP 27 /* popl instruction for Sun ABI GD sequence */ +-#define R_386_TLS_LDM_32 28 /* 32 bit offset to GOT (index,zero) pair */ +-#define R_386_TLS_LDM_PUSH 29 /* pushl instruction for Sun ABI LD sequence */ +-#define R_386_TLS_LDM_CALL 30 /* call instruction for Sun ABI LD sequence */ +-#define R_386_TLS_LDM_POP 31 /* popl instruction for Sun ABI LD sequence */ +-#define R_386_TLS_LDO_32 32 /* 32 bit offset from start of TLS block */ +-#define R_386_TLS_IE_32 33 /* 32 bit offset to GOT static TLS offset entry */ +-#define R_386_TLS_LE_32 34 /* 32 bit offset within static TLS block */ +-#define R_386_TLS_DTPMOD32 35 /* GOT entry containing TLS index */ +-#define R_386_TLS_DTPOFF32 36 /* GOT entry containing TLS offset */ +-#define R_386_TLS_TPOFF32 37 /* GOT entry of -ve static TLS offset */ +- +-#define R_386_COUNT 38 /* Count of defined relocation types. */ ++#define R_386_NONE 0 ++#define R_386_32 1 ++#define R_386_PC32 2 ++#define R_386_GOT32 3 ++#define R_386_PLT32 4 ++#define R_386_COPY 5 ++#define R_386_GLOB_DAT 6 ++#define R_386_JMP_SLOT 7 ++#define R_386_RELATIVE 8 ++#define R_386_GOTOFF 9 ++#define R_386_GOTPC 10 ++#define R_386_TLS_TPOFF 14 ++#define R_386_TLS_IE 15 ++#define R_386_TLS_GOTIE 16 ++#define R_386_TLS_LE 17 ++#define R_386_TLS_GD 18 ++#define R_386_TLS_LDM 19 ++#define R_386_TLS_GD_32 24 ++#define R_386_TLS_GD_PUSH 25 ++#define R_386_TLS_GD_CALL 26 ++#define R_386_TLS_GD_POP 27 ++#define R_386_TLS_LDM_32 28 ++#define R_386_TLS_LDM_PUSH 29 ++#define R_386_TLS_LDM_CALL 30 ++#define R_386_TLS_LDM_POP 31 ++#define R_386_TLS_LDO_32 32 ++#define R_386_TLS_IE_32 33 ++#define R_386_TLS_LE_32 34 ++#define R_386_TLS_DTPMOD32 35 ++#define R_386_TLS_DTPOFF32 36 ++#define R_386_TLS_TPOFF32 37 ++#define R_386_TLS_GOTDESC 39 ++#define R_386_TLS_DESC_CALL 40 ++#define R_386_TLS_DESC 41 ++#define R_386_IRELATIVE 42 ++#define R_386_GOT32X 43 + + #define R_PPC_NONE 0 /* No relocation. */ + #define R_PPC_ADDR32 1 From e9f1fa8bb020b7f1c4531a5bb35db7e1cabb3654 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 7 Mar 2016 13:25:33 +0100 Subject: [PATCH 032/678] librdf_redland: Fix dependency on libraptor2 This broke soprano/nepomuk. http://hydra.nixos.org/build/32556702 --- pkgs/development/libraries/librdf/redland.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/libraries/librdf/redland.nix b/pkgs/development/libraries/librdf/redland.nix index 8ef90049345..34eabfe6473 100644 --- a/pkgs/development/libraries/librdf/redland.nix +++ b/pkgs/development/libraries/librdf/redland.nix @@ -30,6 +30,9 @@ stdenv.mkDerivation rec { [ "--with-threads" ] ++ stdenv.lib.optional withBdb "--with-bdb=${db}"; + # Fix broken DT_NEEDED in lib/redland/librdf_storage_sqlite.so. + NIX_CFLAGS_LINK = "-lraptor2"; + meta = { homepage = http://librdf.org/; }; From a11a28107120612c0284a19d41b6ffb5750a65ac Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 10 Mar 2016 21:06:13 +0100 Subject: [PATCH 033/678] go-1.4: Update binutils patch to handle i686-linux http://hydra.nixos.org/build/32872391 --- .../compilers/go/new-binutils.patch | 62 +++++++++++-------- 1 file changed, 35 insertions(+), 27 deletions(-) diff --git a/pkgs/development/compilers/go/new-binutils.patch b/pkgs/development/compilers/go/new-binutils.patch index 6669bd63303..a547e3ab9b9 100644 --- a/pkgs/development/compilers/go/new-binutils.patch +++ b/pkgs/development/compilers/go/new-binutils.patch @@ -1,9 +1,9 @@ https://github.com/golang/go/issues/13114 https://gnats.netbsd.org/50777 ---- a/src/cmd/6l/asm.c 2014-12-11 01:18:10.000000000 +0000 -+++ b/src/cmd/6l/asm.c -@@ -118,6 +118,8 @@ adddynrel(LSym *s, Reloc *r) +--- a/src/cmd/6l/asm.c 2015-09-23 06:20:05.000000000 +0200 ++++ b/src/cmd/6l/asm.c 2016-03-10 21:00:29.032083210 +0100 +@@ -118,6 +118,8 @@ return; case 256 + R_X86_64_GOTPCREL: @@ -12,29 +12,19 @@ https://gnats.netbsd.org/50777 if(targ->type != SDYNIMPORT) { // have symbol if(r->off >= 2 && s->p[r->off-2] == 0x8b) { - ---- a/src/cmd/ld/ldelf.c.orig 2015-09-23 04:37:36.000000000 +0000 -+++ b/src/cmd/ld/ldelf.c -@@ -888,12 +888,15 @@ reltype(char *pn, int elftype, uchar *si - case R('6', R_X86_64_PC32): - case R('6', R_X86_64_PLT32): - case R('6', R_X86_64_GOTPCREL): -+ case R('6', R_X86_64_GOTPCRELX): -+ case R('6', R_X86_64_REX_GOTPCRELX): - case R('8', R_386_32): - case R('8', R_386_PC32): - case R('8', R_386_GOT32): - case R('8', R_386_PLT32): - case R('8', R_386_GOTOFF): - case R('8', R_386_GOTPC): -+ case R('8', R_386_GOT32X): - *siz = 4; - break; - case R('6', R_X86_64_64): - ---- a/src/cmd/ld/elf.h.orig 2015-09-23 04:37:36.000000000 +0000 -+++ b/src/cmd/ld/elf.h -@@ -478,32 +478,47 @@ typedef struct { +--- a/src/cmd/8l/asm.c 2015-09-23 06:20:05.000000000 +0200 ++++ b/src/cmd/8l/asm.c 2016-03-10 21:02:16.702064080 +0100 +@@ -115,6 +115,7 @@ + return; + + case 256 + R_386_GOT32: ++ case 256 + R_386_GOT32X: + if(targ->type != SDYNIMPORT) { + // have symbol + if(r->off >= 2 && s->p[r->off-2] == 0x8b) { +--- a/src/cmd/ld/elf.h 2015-09-23 06:20:05.000000000 +0200 ++++ b/src/cmd/ld/elf.h 2016-03-10 21:00:29.033083211 +0100 +@@ -478,32 +478,47 @@ * Relocation types. */ @@ -108,7 +98,7 @@ https://gnats.netbsd.org/50777 #define R_ALPHA_NONE 0 /* No reloc */ -@@ -581,39 +596,42 @@ typedef struct { +@@ -581,39 +596,42 @@ #define R_ARM_COUNT 38 /* Count of defined relocation types. */ @@ -184,3 +174,21 @@ https://gnats.netbsd.org/50777 #define R_PPC_NONE 0 /* No relocation. */ #define R_PPC_ADDR32 1 +--- a/src/cmd/ld/ldelf.c 2015-09-23 06:20:05.000000000 +0200 ++++ b/src/cmd/ld/ldelf.c 2016-03-10 21:00:29.033083211 +0100 +@@ -888,12 +888,15 @@ + case R('6', R_X86_64_PC32): + case R('6', R_X86_64_PLT32): + case R('6', R_X86_64_GOTPCREL): ++ case R('6', R_X86_64_GOTPCRELX): ++ case R('6', R_X86_64_REX_GOTPCRELX): + case R('8', R_386_32): + case R('8', R_386_PC32): + case R('8', R_386_GOT32): + case R('8', R_386_PLT32): + case R('8', R_386_GOTOFF): + case R('8', R_386_GOTPC): ++ case R('8', R_386_GOT32X): + *siz = 4; + break; + case R('6', R_X86_64_64): From 1146f460d3811474cf82f5fcc5fd74a665626b59 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 11 Mar 2016 12:52:46 +0100 Subject: [PATCH 034/678] mtdutils: 1.5.1 -> 1.5.2 Fixes gcc 5 build failure. --- pkgs/tools/filesystems/mtdutils/default.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/filesystems/mtdutils/default.nix b/pkgs/tools/filesystems/mtdutils/default.nix index 6e54de033d6..ed3850b9fdd 100644 --- a/pkgs/tools/filesystems/mtdutils/default.nix +++ b/pkgs/tools/filesystems/mtdutils/default.nix @@ -1,13 +1,12 @@ -{stdenv, fetchgit, libuuid, lzo, zlib, acl}: +{ stdenv, fetchurl, libuuid, lzo, zlib, acl }: stdenv.mkDerivation rec { name = "mtd-utils-${version}"; - version = "1.5.1"; + version = "1.5.2"; - src = fetchgit { - url = git://git.infradead.org/mtd-utils.git; - rev = "refs/tags/v" + version; - sha256 = "1bjx42pwl789ara63c672chvgvmqhkj4y132gajqih6naq71f8g7"; + src = fetchurl { + url = ftp://ftp.infradead.org/pub/mtd-utils/mtd-utils-1.5.2.tar.bz2; + sha256 = "007lhsd8yb34l899r4m37whhzdw815cz4fnjbpnblfha524p7dax"; }; patchPhase = '' From bb43b542d686c40c08a6fd081cfb6fe50d72d383 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 11 Mar 2016 12:53:14 +0100 Subject: [PATCH 035/678] pykde4: Fix gcc 5 build failure --- .../kde-4.14/kdebindings/pykde4-gcc-5.patch | 27 +++++++++++++++++++ pkgs/desktops/kde-4.14/kdebindings/pykde4.nix | 2 ++ 2 files changed, 29 insertions(+) create mode 100644 pkgs/desktops/kde-4.14/kdebindings/pykde4-gcc-5.patch diff --git a/pkgs/desktops/kde-4.14/kdebindings/pykde4-gcc-5.patch b/pkgs/desktops/kde-4.14/kdebindings/pykde4-gcc-5.patch new file mode 100644 index 00000000000..27925a3e354 --- /dev/null +++ b/pkgs/desktops/kde-4.14/kdebindings/pykde4-gcc-5.patch @@ -0,0 +1,27 @@ +https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb0ed8c85dd15fb18a902b22a7555ba4f7cf01cb + +Patch created by: Erik Zeek + +See also: https://bugs.gentoo.org/show_bug.cgi?id=567022 + +--- a/CMakeLists.txt ++++ a/CMakeLists.txt +@@ -166,7 +166,7 @@ add_sip_python_module(PyKDE4.kdeui sip/kdeui/kdeuimod.sip ${KDE4_KDEUI_LIBS} ${Q + + file(GLOB kio_files_sip sip/kio/*.sip) + set(SIP_EXTRA_FILES_DEPEND ${kio_files_sip}) +-add_sip_python_module(PyKDE4.kio sip/kio/kiomod.sip ${KDE4_KIO_LIBS} ${KDE4_KFILE_LIBS}) ++add_sip_python_module(PyKDE4.kio sip/kio/kiomod.sip ${KDE4_SOLID_LIBS} ${KDE4_KIO_LIBS} ${KDE4_KFILE_LIBS}) + + file(GLOB kutils_files_sip sip/kutils/*.sip) + set(SIP_EXTRA_FILES_DEPEND ${kutils_files_sip}) +@@ -190,7 +190,7 @@ add_sip_python_module(PyKDE4.knewstuff sip/knewstuff/knewstuffmod.sip ${KDE4_KNE + + file(GLOB dnssd_files_sip sip/dnssd/*.sip) + set(SIP_EXTRA_FILES_DEPEND ${dnssd_files_sip}) +-add_sip_python_module(PyKDE4.dnssd sip/dnssd/dnssdmod.sip ${KDE4_KDNSSD_LIBS} ${QT_QTCORE_LIBRARY}) ++add_sip_python_module(PyKDE4.dnssd sip/dnssd/dnssdmod.sip ${KDE4_KDNSSD_LIBS} ${QT_QTCORE_LIBRARY} ${QT_QTNETWORK_LIBRARY}) + + file(GLOB phonon_files_sip sip/phonon/*.sip) + set(SIP_EXTRA_FILES_DEPEND ${phonon_files_sip}) + diff --git a/pkgs/desktops/kde-4.14/kdebindings/pykde4.nix b/pkgs/desktops/kde-4.14/kdebindings/pykde4.nix index 191b96380e6..5a911d4b3ea 100644 --- a/pkgs/desktops/kde-4.14/kdebindings/pykde4.nix +++ b/pkgs/desktops/kde-4.14/kdebindings/pykde4.nix @@ -5,6 +5,8 @@ let pydir = "lib/python${python.majorVersion}"; in kde { + patches = [ ./pykde4-gcc-5.patch ]; + # todo: polkit isn't found by the build system buildInputs = [ From 4f5d48abf5c4e39da8636b18db1cc9bfebd14d68 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 11 Mar 2016 13:46:27 +0100 Subject: [PATCH 036/678] thunderbird: Fix build on gcc 5 It was barfing due to --enable-stdcxx-compat. Not clear if/why we still need this, so let's disable it. If necessary a fix is available at https://bugzilla.mozilla.org/show_bug.cgi?id=1153109. --- .../applications/networking/mailreaders/thunderbird/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/mailreaders/thunderbird/default.nix b/pkgs/applications/networking/mailreaders/thunderbird/default.nix index 093e7a22b92..ce1335aaff2 100644 --- a/pkgs/applications/networking/mailreaders/thunderbird/default.nix +++ b/pkgs/applications/networking/mailreaders/thunderbird/default.nix @@ -69,7 +69,7 @@ stdenv.mkDerivation rec { "--enable-optimize" "--enable-strip" ]) ++ [ "--disable-javaxpcom" - "--enable-stdcxx-compat" # Avoid dependency on libstdc++ 4.7 + #"--enable-stdcxx-compat" # Avoid dependency on libstdc++ 4.7 ] ++ stdenv.lib.optional enableOfficialBranding "--enable-official-branding"; in '' From c73a22aed586787acfebb9bb039404d3c393297b Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 11 Mar 2016 15:45:01 +0100 Subject: [PATCH 037/678] Drop support for dovecot 2.1.x from Nixpkgs and NixOS. Version 2.2.x has been stable for a long time; let's give up support for the obsolete version. --- nixos/modules/services/mail/dovecot.nix | 4 +- pkgs/servers/mail/dovecot/2.2.x.nix | 75 ------------------------- pkgs/servers/mail/dovecot/default.nix | 72 ++++++++++++++++++++---- pkgs/top-level/all-packages.nix | 12 +--- 4 files changed, 64 insertions(+), 99 deletions(-) delete mode 100644 pkgs/servers/mail/dovecot/2.2.x.nix diff --git a/nixos/modules/services/mail/dovecot.nix b/nixos/modules/services/mail/dovecot.nix index 3935c14dc8c..127c3da69d1 100644 --- a/nixos/modules/services/mail/dovecot.nix +++ b/nixos/modules/services/mail/dovecot.nix @@ -98,8 +98,8 @@ in package = mkOption { type = types.package; - default = pkgs.dovecot22; - defaultText = "pkgs.dovecot22"; + default = pkgs.dovecot; + defaultText = "pkgs.dovecot"; description = "Dovecot package to use."; }; diff --git a/pkgs/servers/mail/dovecot/2.2.x.nix b/pkgs/servers/mail/dovecot/2.2.x.nix deleted file mode 100644 index ec4c5c935af..00000000000 --- a/pkgs/servers/mail/dovecot/2.2.x.nix +++ /dev/null @@ -1,75 +0,0 @@ -{ stdenv, lib, fetchurl, perl, pkgconfig, systemd, openssl -, bzip2, zlib, inotify-tools, pam, libcap -, clucene_core_2, icu, openldap -# Auth modules -, withMySQL ? false, libmysql -, withPgSQL ? false, postgresql -, withSQLite ? true, sqlite -}: - -stdenv.mkDerivation rec { - name = "dovecot-2.2.21"; - - nativeBuildInputs = [ perl pkgconfig ]; - buildInputs = [ openssl bzip2 zlib clucene_core_2 icu openldap ] - ++ lib.optionals (stdenv.isLinux) [ systemd pam libcap inotify-tools ] - ++ lib.optional withMySQL libmysql - ++ lib.optional withPgSQL postgresql - ++ lib.optional withSQLite sqlite; - - src = fetchurl { - url = "http://dovecot.org/releases/2.2/${name}.tar.gz"; - sha256 = "080bil83gr2dski4gk2bxykg2g497kqm2hn2z4xkbw71b6g17dvs"; - }; - - preConfigure = '' - patchShebangs src/config/settings-get.pl - ''; - - # We need this for sysconfdir, see remark below. - installFlags = [ "DESTDIR=$(out)" ]; - - postInstall = '' - cp -r $out/$out/* $out - rm -rf $out/$(echo "$out" | cut -d "/" -f2) - '' + lib.optionalString stdenv.isDarwin '' - install_name_tool -change libclucene-shared.1.dylib \ - ${clucene_core_2}/lib/libclucene-shared.1.dylib \ - $out/lib/dovecot/lib21_fts_lucene_plugin.so - install_name_tool -change libclucene-core.1.dylib \ - ${clucene_core_2}/lib/libclucene-core.1.dylib \ - $out/lib/dovecot/lib21_fts_lucene_plugin.so - ''; - - patches = [ - # Make dovecot look for plugins in /etc/dovecot/modules - # so we can symlink plugins from several packages there. - # The symlinking needs to be done in NixOS. - ./2.2.x-module_dir.patch - ]; - - configureFlags = [ - # It will hardcode this for /var/lib/dovecot. - # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=626211 - "--localstatedir=/var" - # We need this so utilities default to reading /etc/dovecot/dovecot.conf file. - "--sysconfdir=/etc" - "--with-ldap" - "--with-ssl=openssl" - "--with-zlib" - "--with-bzlib" - "--with-ldap" - "--with-lucene" - "--with-icu" - ] ++ lib.optional (stdenv.isLinux) "--with-systemdsystemunitdir=$(out)/etc/systemd/system" - ++ lib.optional withMySQL "--with-mysql" - ++ lib.optional withPgSQL "--with-pgsql" - ++ lib.optional withSQLite "--with-sqlite"; - - meta = { - homepage = "http://dovecot.org/"; - description = "Open source IMAP and POP3 email server written with security primarily in mind"; - maintainers = with stdenv.lib.maintainers; [viric simons rickynils]; - hydraPlatforms = stdenv.lib.platforms.linux; - }; -} diff --git a/pkgs/servers/mail/dovecot/default.nix b/pkgs/servers/mail/dovecot/default.nix index 3997370154e..ec4c5c935af 100644 --- a/pkgs/servers/mail/dovecot/default.nix +++ b/pkgs/servers/mail/dovecot/default.nix @@ -1,27 +1,75 @@ -{stdenv, fetchurl, openssl, pam, bzip2, zlib, inotify-tools, openldap}: +{ stdenv, lib, fetchurl, perl, pkgconfig, systemd, openssl +, bzip2, zlib, inotify-tools, pam, libcap +, clucene_core_2, icu, openldap +# Auth modules +, withMySQL ? false, libmysql +, withPgSQL ? false, postgresql +, withSQLite ? true, sqlite +}: stdenv.mkDerivation rec { - name = "dovecot-2.1.17"; + name = "dovecot-2.2.21"; - buildInputs = [openssl bzip2 zlib openldap] ++ stdenv.lib.optionals stdenv.isLinux [pam inotify-tools]; + nativeBuildInputs = [ perl pkgconfig ]; + buildInputs = [ openssl bzip2 zlib clucene_core_2 icu openldap ] + ++ lib.optionals (stdenv.isLinux) [ systemd pam libcap inotify-tools ] + ++ lib.optional withMySQL libmysql + ++ lib.optional withPgSQL postgresql + ++ lib.optional withSQLite sqlite; src = fetchurl { - url = "http://dovecot.org/releases/2.1/${name}.tar.gz"; - sha256 = "06j2s5bcrmc0dhjsyavqiss3k65p6xn00a7sffpsv6w3yngv777m"; + url = "http://dovecot.org/releases/2.2/${name}.tar.gz"; + sha256 = "080bil83gr2dski4gk2bxykg2g497kqm2hn2z4xkbw71b6g17dvs"; }; - # It will hardcode this for /var/lib/dovecot. - # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=626211 - configureFlags = [ - "--localstatedir=/var" - "--with-ldap" + preConfigure = '' + patchShebangs src/config/settings-get.pl + ''; + + # We need this for sysconfdir, see remark below. + installFlags = [ "DESTDIR=$(out)" ]; + + postInstall = '' + cp -r $out/$out/* $out + rm -rf $out/$(echo "$out" | cut -d "/" -f2) + '' + lib.optionalString stdenv.isDarwin '' + install_name_tool -change libclucene-shared.1.dylib \ + ${clucene_core_2}/lib/libclucene-shared.1.dylib \ + $out/lib/dovecot/lib21_fts_lucene_plugin.so + install_name_tool -change libclucene-core.1.dylib \ + ${clucene_core_2}/lib/libclucene-core.1.dylib \ + $out/lib/dovecot/lib21_fts_lucene_plugin.so + ''; + + patches = [ + # Make dovecot look for plugins in /etc/dovecot/modules + # so we can symlink plugins from several packages there. + # The symlinking needs to be done in NixOS. + ./2.2.x-module_dir.patch ]; + configureFlags = [ + # It will hardcode this for /var/lib/dovecot. + # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=626211 + "--localstatedir=/var" + # We need this so utilities default to reading /etc/dovecot/dovecot.conf file. + "--sysconfdir=/etc" + "--with-ldap" + "--with-ssl=openssl" + "--with-zlib" + "--with-bzlib" + "--with-ldap" + "--with-lucene" + "--with-icu" + ] ++ lib.optional (stdenv.isLinux) "--with-systemdsystemunitdir=$(out)/etc/systemd/system" + ++ lib.optional withMySQL "--with-mysql" + ++ lib.optional withPgSQL "--with-pgsql" + ++ lib.optional withSQLite "--with-sqlite"; + meta = { homepage = "http://dovecot.org/"; description = "Open source IMAP and POP3 email server written with security primarily in mind"; - maintainers = with stdenv.lib.maintainers; [viric simons]; + maintainers = with stdenv.lib.maintainers; [viric simons rickynils]; hydraPlatforms = stdenv.lib.platforms.linux; }; - } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 603e451116c..2835bd22331 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9543,16 +9543,8 @@ let dnschain = callPackage ../servers/dnschain { }; - dovecot = dovecot22; - - dovecot21 = callPackage ../servers/mail/dovecot { }; - - dovecot22 = callPackage ../servers/mail/dovecot/2.2.x.nix { }; - - dovecot_pigeonhole = callPackage ../servers/mail/dovecot/plugins/pigeonhole { - dovecot = dovecot22; - }; - + dovecot = callPackage ../servers/mail/dovecot { }; + dovecot_pigeonhole = callPackage ../servers/mail/dovecot/plugins/pigeonhole { }; dovecot_antispam = callPackage ../servers/mail/dovecot/plugins/antispam { }; dspam = callPackage ../servers/mail/dspam { From 9a67d1dcab481108f8ee3e24836639661a32d255 Mon Sep 17 00:00:00 2001 From: Michiel Leenaars Date: Fri, 11 Mar 2016 21:51:06 +0100 Subject: [PATCH 038/678] python-xcaplib: 1.1.0 -> 1.2.0 --- pkgs/top-level/python-packages.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0e7484287ce..101fd5ff98f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -22213,12 +22213,15 @@ in modules // { }; xcaplib = buildPythonPackage rec { - name = "python-xcaplib-${version}"; - version = "1.1.0"; + pname = "python-xcaplib"; + name = "${pname}-${version}"; + version = "1.2.0"; + disabled = isPy3k; - src = pkgs.fetchurl { - url = "http://download.ag-projects.com/XCAP/${name}.tar.gz"; - sha256 = "2f8ea6fe7d005104ef1d854aa87bd8ee85ca242a70cde42f409f8e5557f864b3"; + src = pkgs.fetchdarcs { + url = "http://devel.ag-projects.com/repositories/${pname}"; + rev = "release-${version}"; + sha256 = "0vna5r4ihv7z1yx6r93954jqskcxky77znzy1m9dg9vna1dgwfdn"; }; propagatedBuildInputs = with self; [ eventlib application ]; From c8f9f9d9ed23c2cbaca6303e83c58dca487a2cdb Mon Sep 17 00:00:00 2001 From: Michiel Leenaars Date: Fri, 11 Mar 2016 22:05:29 +0100 Subject: [PATCH 039/678] python-application: 1.5.0 -> 2.0.2 --- pkgs/top-level/python-packages.nix | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 101fd5ff98f..e78806f5ff2 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -773,13 +773,18 @@ in modules // { }; application = buildPythonPackage rec { - name = "python-application-${version}"; - version = "1.5.0"; + pname = "python-application"; + name = "${pname}-${version}"; + version = "2.0.2"; + disabled = isPy3k; + + src = pkgs.fetchdarcs { + url = "http://devel.ag-projects.com/repositories/${pname}"; + rev = "release-${version}"; + sha256 = "19dszv44py8qrq0jcjdycxpa7z2p8hi3ijq9gnqdsazbbjzf9svn"; + }; + buildInputs = with self; [ zope_interface ]; - src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python-application/${name}.tar.gz"; - sha256 = "9bc00c2c639bf633e2c5e08d4bf1bb5d7edaad6ccdd473692f0362df08f8aafc"; - }; }; appnope = buildPythonPackage rec { From a8c8dc9e270ab321061b916b73f41cce5da67828 Mon Sep 17 00:00:00 2001 From: Michiel Leenaars Date: Fri, 11 Mar 2016 22:11:34 +0100 Subject: [PATCH 040/678] python-msrplib: 0.18 -> 0.19 --- pkgs/top-level/python-packages.nix | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e78806f5ff2..43b63cfb260 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11959,14 +11959,16 @@ in modules // { }; msrplib = buildPythonPackage rec { - name = "python-msrplib-${version}"; - version = "0.18.0"; - - src = pkgs.fetchurl { - url = "http://download.ag-projects.com/MSRP/${name}.tar.gz"; - sha256 = "0vp9g5p015g3f67rl4vz0qnn6x7hciry6nmvwf82h9h5rx11r43j"; - }; + pname = "python-msrplib"; + name = "${pname}-${version}"; + version = "0.19"; + src = pkgs.fetchdarcs { + url = "http://devel.ag-projects.com/repositories/${pname}"; + rev = "release-${version}"; + sha256 = "0jqvvssbwzq7bwqn3wrjfnpj8zb558mynn2visnlrcma6b57yhwd"; + }; + propagatedBuildInputs = with self; [ eventlib application gnutls ]; }; From dc6c4f909b127a6261a8815cc5e119a61a6d9005 Mon Sep 17 00:00:00 2001 From: Michiel Leenaars Date: Fri, 11 Mar 2016 22:15:41 +0100 Subject: [PATCH 041/678] python-eventlib: 0.2.1 -> 0.2.2 --- pkgs/top-level/python-packages.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 43b63cfb260..8b9d86cbff1 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5252,16 +5252,18 @@ in modules // { eventlib = buildPythonPackage rec { - name = "python-eventlib-${version}"; - version = "0.2.1"; + pname = "python-eventlib"; + name = "${pname}-${version}"; + version = "0.2.2"; # Judging from SyntaxError disabled = isPy3k; - src = pkgs.fetchurl { - url = "http://download.ag-projects.com/SipClient/${name}.tar.gz"; - sha256 = "25224794420f430946fe46932718b521a6264903fe8c0ed3563dfdb844c623e7"; - }; + src = pkgs.fetchdarcs { + url = "http://devel.ag-projects.com/repositories/${pname}"; + rev = "release-${version}"; + sha256 = "1zxhpq8i4jwsk7wmfncqfm211hqikj3hp38cfv509924bi76wak8"; + }; propagatedBuildInputs = with self; [ greenlet ]; From b4fc87b06291f8943d9dd3c8b47e3337329baf00 Mon Sep 17 00:00:00 2001 From: Michiel Leenaars Date: Sat, 12 Mar 2016 12:10:38 +0100 Subject: [PATCH 042/678] python-sipsimple: 2.6.0 -> 3.0.0 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8b9d86cbff1..3746f860b66 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -19942,12 +19942,12 @@ in modules // { sipsimple = buildPythonPackage rec { name = "sipsimple-${version}"; - version = "2.6.0"; + version = "3.0.0"; disabled = isPy3k; src = pkgs.fetchurl { url = "http://download.ag-projects.com/SipClient/python-${name}.tar.gz"; - sha256 = "0xcyasas28q1ad1hgw4vd62b72mf1sng7xwfcls6dc05k9p3q8v3"; + sha256 = "1q35kgz151rr99240jq55rs39y741m8shh9yihl3x95rkjxchji4"; }; propagatedBuildInputs = with self; [ cython pkgs.openssl dns dateutil xcaplib msrplib lxml ]; From b776e0cd5fe0e33f52e6458a726e3c3db0b9fc05 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Fri, 11 Mar 2016 23:02:49 +0000 Subject: [PATCH 043/678] nghttp2: 1.7.1 -> 1.8.0 --- pkgs/development/libraries/nghttp2/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/nghttp2/default.nix b/pkgs/development/libraries/nghttp2/default.nix index 01248e3e27a..e6f76ce27ea 100644 --- a/pkgs/development/libraries/nghttp2/default.nix +++ b/pkgs/development/libraries/nghttp2/default.nix @@ -34,12 +34,12 @@ let in stdenv.mkDerivation rec { name = "${prefix}nghttp2-${version}"; - version = "1.7.1"; + version = "1.8.0"; # Don't use fetchFromGitHub since this needs a bootstrap curl src = fetchurl { url = "http://http.debian.net/debian/pool/main/n/nghttp2/nghttp2_${version}.orig.tar.bz2"; - sha256 = "0nbrww5gyjn4il33wz5b4sql5nifi12y2jbkmfbvxwlxlywm48kf"; + sha256 = "10xz3s624w208pr9xgm4ammc8bc5mi17vy4357hjfd5vmmp5m8b0"; }; # Configure script searches for a symbol which does not exist in jemalloc on Darwin From 2f24bef7828736466b5cb5a553be447ad75cb4d5 Mon Sep 17 00:00:00 2001 From: Michiel Leenaars Date: Sat, 12 Mar 2016 22:31:29 +0100 Subject: [PATCH 044/678] python-gnutls: 2.0.1 -> 3.0.0 --- pkgs/top-level/python-packages.nix | 31 +++++++++++++++++++++++++++--- 1 file changed, 28 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 3746f860b66..5287d9a47e4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5695,8 +5695,8 @@ in modules // { gnutls = buildPythonPackage rec { name = "python-gnutls"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python-gnutls/python-gnutls-2.0.1.tar.gz"; - sha256 = "d8fb368c6a4dd58bc6cd5e61d4a12d119c4506fd344a371b3429b3ac2623b9ac"; + url = "https://pypi.python.org/packages/source/p/python-gnutls/python-gnutls-3.0.0.tar.gz"; + sha256 = "1yrdxcj5rzvz8iglircz6icvyggz5fmdcd010n6w3j60yp4p84kc"; }; propagatedBuildInputs = with self; [ pkgs.gnutls ]; @@ -13288,6 +13288,31 @@ in modules // { }; }; + python-otr = buildPythonPackage rec { + name = "${pname}-${version}"; + pname = "python-otr"; + version = "1.2.0"; + + disabled = isPy3k; + + src = pkgs.fetchFromGitHub { + owner = "AGProjects"; + repo = pname; + rev = "release-" + version; + sha256 = "0p3b1n8jlxwd65gbk2k5007fkhdyjwcvr4982s42hncivxvabzzy"; + }; + + propagatedBuildInputs = with self; [ zope_interface cryptography application gmpy2 ]; + + meta = { + description = "A pure python implementation of OTR"; + homepage = https://github.com/AGProjects/otr; + license = licenses.lgpl21Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ edwtjo ]; + }; + }; + ply = buildPythonPackage (rec { name = "ply-3.8"; @@ -19950,7 +19975,7 @@ in modules // { sha256 = "1q35kgz151rr99240jq55rs39y741m8shh9yihl3x95rkjxchji4"; }; - propagatedBuildInputs = with self; [ cython pkgs.openssl dns dateutil xcaplib msrplib lxml ]; + propagatedBuildInputs = with self; [ cython pkgs.openssl dns dateutil xcaplib msrplib lxml python-otr ]; buildInputs = with pkgs; [ alsaLib ffmpeg libv4l pkgconfig sqlite libvpx ]; }; From 6db4b907b8df946eb668aa01c997ecac4509a03e Mon Sep 17 00:00:00 2001 From: Michiel Leenaars Date: Sat, 12 Mar 2016 22:33:00 +0100 Subject: [PATCH 045/678] blinkqt: 1.4.1 -> 2.0.0 --- .../instant-messengers/blink/default.nix | 4 +- .../instant-messengers/blink/pythonpath.patch | 45 +++++++++++++++---- 2 files changed, 39 insertions(+), 10 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/blink/default.nix b/pkgs/applications/networking/instant-messengers/blink/default.nix index 7b0e4d70fd9..0a6d04aef64 100644 --- a/pkgs/applications/networking/instant-messengers/blink/default.nix +++ b/pkgs/applications/networking/instant-messengers/blink/default.nix @@ -3,11 +3,11 @@ pythonPackages.buildPythonApplication rec { name = "blink-${version}"; - version = "1.4.2"; + version = "2.0.0"; src = fetchurl { url = "http://download.ag-projects.com/BlinkQt/${name}.tar.gz"; - sha256 = "0ia5hgwyg6cm393ik4ggzhcmc957ncswycs07ilwj6vrrzraxfk7"; + sha256 = "07hvy45pavgkvdlh4wbz3shsxh4fapg96qlqmfymdi1nfhwghb05"; }; patches = [ ./pythonpath.patch ]; diff --git a/pkgs/applications/networking/instant-messengers/blink/pythonpath.patch b/pkgs/applications/networking/instant-messengers/blink/pythonpath.patch index 723e097ea82..0df8bc84ff3 100644 --- a/pkgs/applications/networking/instant-messengers/blink/pythonpath.patch +++ b/pkgs/applications/networking/instant-messengers/blink/pythonpath.patch @@ -1,14 +1,44 @@ -diff -rupN a/blink/resources.py b/blink/resources.py ---- a/blink/resources.py 2015-03-17 03:24:06.000000000 -0600 -+++ b/blink/resources.py 2015-04-07 22:52:06.101096413 -0600 -@@ -60,14 +60,7 @@ class Resources(object): +--- blink-2.0.0/blink/resources.py 2016-03-09 14:39:07.000000000 +0100 ++++ blink-2.0.0/blink/resources-patched.py 2016-03-12 21:34:14.965476623 +0100 +@@ -1,7 +1,10 @@ ++# Copyright (C) 2010-2013 AG Projects. See LICENSE for details. ++# + + """Provide access to Blink's resources""" + +-import __main__ ++__all__ = ['ApplicationData', 'Resources', 'IconManager'] ++ + import imghdr + import os + import platform +@@ -19,14 +22,10 @@ + from blink.util import run_in_gui_thread + + +-__all__ = ['ApplicationData', 'Resources', 'IconManager'] +- +- + class DirectoryContextManager(unicode): + def __enter__(self): + self.directory = os.getcwdu() + os.chdir(self) +- + def __exit__(self, type, value, traceback): + os.chdir(self.directory) + +@@ -61,18 +60,7 @@ @classproperty def directory(cls): if cls._cached_directory is None: -- if sys.path[0] == '': -- application_directory = os.path.realpath('') # executed in interactive interpreter +- try: +- binary_directory = os.path.dirname(os.path.realpath(__main__.__file__)) +- except AttributeError: +- if hasattr(sys, 'frozen'): +- application_directory = os.path.dirname(os.path.realpath(sys.executable)) +- else: +- application_directory = os.path.realpath('') # executed in interactive interpreter - else: -- binary_directory = os.path.dirname(os.path.realpath(sys.argv[0])) - if os.path.basename(binary_directory) == 'bin': - application_directory = os.path.dirname(binary_directory) - else: @@ -17,4 +47,3 @@ diff -rupN a/blink/resources.py b/blink/resources.py if os.path.exists(os.path.join(application_directory, 'resources', 'blink.ui')): cls._cached_directory = os.path.join(application_directory, 'resources').decode(sys.getfilesystemencoding()) else: -Binary files a/blink/.resources.py.swp and b/blink/.resources.py.swp differ From d4ae8b68cbc59915451b5b00f39ecac844494c68 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sun, 13 Mar 2016 06:28:40 +0100 Subject: [PATCH 046/678] abook: fix build with gcc5 --- pkgs/applications/misc/abook/default.nix | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/misc/abook/default.nix b/pkgs/applications/misc/abook/default.nix index 77e48e49dd8..2c4bc0f2128 100644 --- a/pkgs/applications/misc/abook/default.nix +++ b/pkgs/applications/misc/abook/default.nix @@ -1,15 +1,23 @@ -{ stdenv, fetchurl, pkgconfig, ncurses, readline }: +{ stdenv, fetchurl, fetchpatch, pkgconfig, ncurses, readline }: -let version = "0.6.0pre2"; in stdenv.mkDerivation rec { - name = "abook-${version}"; + name = "abook-0.6.0pre2"; src = fetchurl { url = "http://abook.sourceforge.net/devel/${name}.tar.gz"; - sha256 = "59d444504109dd96816e003b3023175981ae179af479349c34fa70bc12f6d385"; + sha256 = "11fkyq9bqw7s6jf38yglk8bsx0ar2wik0fq0ds0rdp8985849m2r"; }; - buildInputs = [ pkgconfig ncurses readline ]; + patches = [ + (fetchpatch { + url = "https://projects.archlinux.org/svntogit/packages.git/plain/trunk/gcc5.patch?h=packages/abook"; + name = "gcc5.patch"; + sha256 = "13n3qd6yy45i5n8ppjn9hj6y63ymjrq96280683xk7f7rjavw5nn"; + }) + ]; + + nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ ncurses readline ]; meta = { homepage = "http://abook.sourceforge.net/"; From d05a3cd763cedce9690ec21b2180425e8d70dabf Mon Sep 17 00:00:00 2001 From: Tim Cuthbertson Date: Mon, 29 Feb 2016 22:10:26 +1100 Subject: [PATCH 047/678] stdenv: don't overwrite $NIX_ENFORCE_PURITY setting Close #13583. --- pkgs/stdenv/darwin/default.nix | 2 +- pkgs/stdenv/linux/default.nix | 2 +- pkgs/stdenv/nix/default.nix | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/stdenv/darwin/default.nix b/pkgs/stdenv/darwin/default.nix index 0af7071e218..fa6bb55009d 100644 --- a/pkgs/stdenv/darwin/default.nix +++ b/pkgs/stdenv/darwin/default.nix @@ -25,7 +25,7 @@ in rec { allPackages = import ../../top-level/all-packages.nix; commonPreHook = '' - export NIX_ENFORCE_PURITY=1 + export NIX_ENFORCE_PURITY="''${NIX_ENFORCE_PURITY-1}" export NIX_IGNORE_LD_THROUGH_GCC=1 stripAllFlags=" " # the Darwin "strip" command doesn't know "-s" export MACOSX_DEPLOYMENT_TARGET=10.7 diff --git a/pkgs/stdenv/linux/default.nix b/pkgs/stdenv/linux/default.nix index 3e94391c426..1841c3a0693 100644 --- a/pkgs/stdenv/linux/default.nix +++ b/pkgs/stdenv/linux/default.nix @@ -22,7 +22,7 @@ rec { commonPreHook = '' - export NIX_ENFORCE_PURITY=1 + export NIX_ENFORCE_PURITY="''${NIX_ENFORCE_PURITY-1}" ${if system == "x86_64-linux" then "NIX_LIB64_IN_SELF_RPATH=1" else ""} ${if system == "mips64el-linux" then "NIX_LIB32_IN_SELF_RPATH=1" else ""} ''; diff --git a/pkgs/stdenv/nix/default.nix b/pkgs/stdenv/nix/default.nix index 30ac92837cb..0e3434be017 100644 --- a/pkgs/stdenv/nix/default.nix +++ b/pkgs/stdenv/nix/default.nix @@ -5,7 +5,7 @@ import ../generic rec { preHook = '' - export NIX_ENFORCE_PURITY=1 + export NIX_ENFORCE_PURITY="''${NIX_ENFORCE_PURITY-1}" export NIX_IGNORE_LD_THROUGH_GCC=1 ''; From 87607af7a1bf35682f8ad206307ed46e8ead260a Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 14 Mar 2016 06:52:12 +0300 Subject: [PATCH 048/678] cc-wrapper: add C++-specific paths if `-x c++` is passed --- pkgs/build-support/cc-wrapper/cc-wrapper.sh | 42 ++++++++++++--------- 1 file changed, 24 insertions(+), 18 deletions(-) diff --git a/pkgs/build-support/cc-wrapper/cc-wrapper.sh b/pkgs/build-support/cc-wrapper/cc-wrapper.sh index 6e12a0d8bc8..41567fde269 100644 --- a/pkgs/build-support/cc-wrapper/cc-wrapper.sh +++ b/pkgs/build-support/cc-wrapper/cc-wrapper.sh @@ -15,29 +15,37 @@ fi source @out@/nix-support/utils.sh -# Figure out if linker flags should be passed. GCC prints annoying -# warnings when they are not needed. +# Parse command line options and set several variables. +# For instance, figure out if linker flags should be passed. +# GCC prints annoying warnings when they are not needed. dontLink=0 getVersion=0 nonFlagArgs=0 +[[ "@prog@" = *++ ]] && isCpp=1 || isCpp=0 -for i in "$@"; do - if [ "$i" = -c ]; then +params=("$@") +n=0 +while [ $n -lt ${#params[*]} ]; do + p=${params[n]} + p2=${params[$((n+1))]} + if [ "$p" = -c ]; then dontLink=1 - elif [ "$i" = -S ]; then + elif [ "$p" = -S ]; then dontLink=1 - elif [ "$i" = -E ]; then + elif [ "$p" = -E ]; then dontLink=1 - elif [ "$i" = -E ]; then + elif [ "$p" = -E ]; then dontLink=1 - elif [ "$i" = -M ]; then + elif [ "$p" = -M ]; then dontLink=1 - elif [ "$i" = -MM ]; then + elif [ "$p" = -MM ]; then dontLink=1 - elif [ "$i" = -x ]; then - # At least for the cases c-header or c++-header we should set dontLink. - # I expect no one use -x other than making precompiled headers. + elif [[ "$p" = -x && "$p2" = *-header ]]; then dontLink=1 + elif [[ "$p" = -x && "$p2" = c++* && "$isCpp" = 0 ]]; then + isCpp=1 + elif [ "$p" = -nostdlib ]; then + isCpp=-1 elif [ "${i:0:1}" != - ]; then nonFlagArgs=1 elif [ "$i" = -m32 ]; then @@ -45,6 +53,7 @@ for i in "$@"; do NIX_LDFLAGS="$NIX_LDFLAGS -dynamic-linker $(cat @out@/nix-support/dynamic-linker-m32)" fi fi + n=$((n + 1)) done # If we pass a flag like -Wl, then gcc will call the linker unless it @@ -58,7 +67,6 @@ fi # Optionally filter out paths not refering to the store. -params=("$@") if [ "$NIX_ENFORCE_PURITY" = 1 -a -n "$NIX_STORE" ]; then rest=() n=0 @@ -83,11 +91,9 @@ if [ "$NIX_ENFORCE_PURITY" = 1 -a -n "$NIX_STORE" ]; then params=("${rest[@]}") fi -if [[ "@prog@" = *++ ]]; then - if echo "$@" | grep -qv -- -nostdlib; then - NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE ${NIX_CXXSTDLIB_COMPILE-@default_cxx_stdlib_compile@}" - NIX_CFLAGS_LINK="$NIX_CFLAGS_LINK $NIX_CXXSTDLIB_LINK" - fi +if [[ "$isCpp" = 1 ]]; then + NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE ${NIX_CXXSTDLIB_COMPILE-@default_cxx_stdlib_compile@}" + NIX_CFLAGS_LINK="$NIX_CFLAGS_LINK $NIX_CXXSTDLIB_LINK" fi # Add the flags for the C compiler proper. From aef5836e3cbc98137eab9149c3b986b2553a652a Mon Sep 17 00:00:00 2001 From: Raymond Gauthier Date: Fri, 11 Mar 2016 16:15:40 -0500 Subject: [PATCH 049/678] doxygen: 1.8.6 -> 1.8.11 As per upstream change, now uses cmake. Tested proper function of both `doxygen` and `doxygen_gui`. --- .../tools/documentation/doxygen/default.nix | 39 +++++-------------- .../tools/documentation/doxygen/tmake.patch | 23 ----------- 2 files changed, 9 insertions(+), 53 deletions(-) delete mode 100644 pkgs/development/tools/documentation/doxygen/tmake.patch diff --git a/pkgs/development/tools/documentation/doxygen/default.nix b/pkgs/development/tools/documentation/doxygen/default.nix index 82bbab5ff87..c843f0d2eef 100644 --- a/pkgs/development/tools/documentation/doxygen/default.nix +++ b/pkgs/development/tools/documentation/doxygen/default.nix @@ -1,45 +1,24 @@ -{ stdenv, fetchurl, perl, python, flex, bison, qt4, CoreServices, libiconv }: +{ stdenv, cmake, fetchurl, perl, python, flex, bison, qt4, CoreServices, libiconv }: -let - name = "doxygen-1.8.6"; -in -stdenv.mkDerivation { - inherit name; +stdenv.mkDerivation rec { + name = "doxygen-1.8.11"; + src = fetchurl { url = "ftp://ftp.stack.nl/pub/users/dimitri/${name}.src.tar.gz"; - sha256 = "0pskjlkbj76m9ka7zi66yj8ffjcv821izv3qxqyyphf0y0jqcwba"; + sha256 = "0ja02pm3fpfhc5dkry00kq8mn141cqvdqqpmms373ncbwi38pl35"; }; - prePatch = '' - substituteInPlace configure --replace /usr/bin/install $(type -P install) - ''; - - patches = [ ./tmake.patch ]; - + nativeBuildInputs = [ cmake ]; + buildInputs = [ perl python flex bison ] ++ stdenv.lib.optional (qt4 != null) qt4 ++ stdenv.lib.optional stdenv.isSunOS libiconv ++ stdenv.lib.optionals stdenv.isDarwin [ CoreServices libiconv ]; - prefixKey = "--prefix "; - - configureFlags = - [ "--dot dot" ] - ++ stdenv.lib.optional stdenv.isSunOS "--install install" - ++ stdenv.lib.optional (qt4 != null) "--with-doxywizard"; - - preConfigure = - '' - patchShebangs . - '' + stdenv.lib.optionalString (qt4 != null) - '' - echo "using QTDIR=${qt4}..." - export QTDIR=${qt4} - ''; - - makeFlags = "MAN1DIR=share/man/man1"; + cmakeFlags = + stdenv.lib.optional (qt4 != null) "-Dbuild_wizard=YES"; enableParallelBuilding = true; diff --git a/pkgs/development/tools/documentation/doxygen/tmake.patch b/pkgs/development/tools/documentation/doxygen/tmake.patch deleted file mode 100644 index 4bba986c12c..00000000000 --- a/pkgs/development/tools/documentation/doxygen/tmake.patch +++ /dev/null @@ -1,23 +0,0 @@ -Fix the `check_unix' function, which looks for `/bin/uname' to determine -whether we're on a Unix-like system. - ---- doxygen-1.5.8/tmake/bin/tmake 2008-12-06 14:16:20.000000000 +0100 -+++ doxygen-1.5.8/tmake/bin/tmake 2009-03-05 11:29:55.000000000 +0100 -@@ -234,17 +234,7 @@ sub tmake_verb { - # - - sub check_unix { -- my($r); -- $r = 0; -- if ( -f "/bin/uname" ) { -- $r = 1; -- (-f "\\bin\\uname") && ($r = 0); -- } -- if ( -f "/usr/bin/uname" ) { -- $r = 1; -- (-f "\\usr\\bin\\uname") && ($r = 0); -- } -- return $r; -+ return 1; - } - From 86f1579266db4e65571f83acb1400f9943d1d1fb Mon Sep 17 00:00:00 2001 From: zimbatm Date: Wed, 2 Mar 2016 10:05:01 +0000 Subject: [PATCH 050/678] ruby: install rubygems directly into the derivation Having a separate rubygems package can lead to split-brain scenarios. Since rubygems is designed to replace himself on a ruby installation, let's do that. --- .../ruby/build-ruby-gem/default.nix | 9 ++-- .../interpreters/ruby/bundler-env/default.nix | 7 +-- .../development/interpreters/ruby/default.nix | 43 ++++++++++++++----- .../interpreters/ruby/gem_hook.patch | 6 +-- .../interpreters/ruby/rubygems-src.nix | 8 ++++ .../interpreters/ruby/rubygems.nix | 35 --------------- pkgs/top-level/all-packages.nix | 3 +- 7 files changed, 48 insertions(+), 63 deletions(-) create mode 100644 pkgs/development/interpreters/ruby/rubygems-src.nix delete mode 100644 pkgs/development/interpreters/ruby/rubygems.nix diff --git a/pkgs/development/interpreters/ruby/build-ruby-gem/default.nix b/pkgs/development/interpreters/ruby/build-ruby-gem/default.nix index db1ef4c6c43..6e1b0c00bd0 100644 --- a/pkgs/development/interpreters/ruby/build-ruby-gem/default.nix +++ b/pkgs/development/interpreters/ruby/build-ruby-gem/default.nix @@ -18,7 +18,7 @@ # Normal gem packages can be used outside of bundler; a binstub is created in # $out/bin. -{ lib, ruby, rubygems, bundler, fetchurl, fetchgit, makeWrapper, git, +{ lib, ruby, bundler, fetchurl, fetchgit, makeWrapper, git, buildRubyGem, darwin } @ defs: @@ -54,9 +54,6 @@ lib.makeOverridable ( let shellEscape = x: "'${lib.replaceChars ["'"] [("'\\'" + "'")] x}'"; - rubygems = (attrs.rubygems or defs.rubygems).override { - inherit ruby; - }; src = attrs.src or ( if type == "gem" then fetchurl { @@ -79,14 +76,14 @@ let in stdenv.mkDerivation (attrs // { - inherit ruby rubygems; + inherit ruby; inherit doCheck; inherit dontBuild; inherit dontStrip; inherit type; buildInputs = [ - ruby rubygems makeWrapper + ruby makeWrapper ] ++ lib.optionals (type == "git") [ git bundler ] ++ lib.optional stdenv.isDarwin darwin.libobjc ++ buildInputs; diff --git a/pkgs/development/interpreters/ruby/bundler-env/default.nix b/pkgs/development/interpreters/ruby/bundler-env/default.nix index 0c9ed40d3f8..d5e2154ab3b 100644 --- a/pkgs/development/interpreters/ruby/bundler-env/default.nix +++ b/pkgs/development/interpreters/ruby/bundler-env/default.nix @@ -1,6 +1,5 @@ { stdenv, runCommand, writeText, writeScript, writeScriptBin, ruby, lib , callPackage, defaultGemConfig, fetchurl, fetchgit, buildRubyGem, buildEnv -, rubygems , git , makeWrapper , bundler @@ -28,10 +27,9 @@ let ); hasBundler = builtins.hasAttr "bundler" importedGemset; bundler = if hasBundler then gems.bundler else defs.bundler.override (attrs: { inherit ruby; }); - rubygems = defs.rubygems.override (attrs: { inherit ruby; }); gems = lib.flip lib.mapAttrs configuredGemset (name: attrs: buildRubyGem ((removeAttrs attrs ["source"]) // attrs.source // { - inherit ruby rubygems; + inherit ruby; gemName = name; gemPath = map (gemName: gems."${gemName}") (attrs.dependencies or []); })); @@ -45,7 +43,6 @@ let cd $out chmod +w Gemfile.lock - source ${rubygems}/nix-support/setup-hook export GEM_PATH=${bundler}/${ruby.gemPath} ${ruby}/bin/ruby -rubygems -e \ "require 'bundler'; Bundler.definition.lock('Gemfile.lock')" @@ -56,8 +53,6 @@ let paths = envPaths; pathsToLink = [ "/lib" ]; postBuild = '' - source ${rubygems}/nix-support/setup-hook - ${ruby}/bin/ruby ${./gen-bin-stubs.rb} \ "${ruby}/bin/ruby" \ "${confFiles}/Gemfile" \ diff --git a/pkgs/development/interpreters/ruby/default.nix b/pkgs/development/interpreters/ruby/default.nix index 2a22cc74e75..2085d558df5 100644 --- a/pkgs/development/interpreters/ruby/default.nix +++ b/pkgs/development/interpreters/ruby/default.nix @@ -9,6 +9,10 @@ let opString = stdenv.lib.optionalString; patchSet = import ./rvm-patchsets.nix { inherit fetchFromGitHub; }; config = import ./config.nix { inherit fetchFromSavannah; }; + rubygemsSrc = import ./rubygems-src.nix { inherit fetchurl; }; + unpackdir = obj: + lib.removeSuffix ".tgz" + (lib.removeSuffix ".tar.gz" obj.name); generic = { majorVersion, minorVersion, teenyVersion, patchLevel, sha256 }: let versionNoPatch = "${majorVersion}.${minorVersion}.${teenyVersion}"; @@ -32,12 +36,8 @@ let , autoreconfHook, bison, autoconf , darwin ? null }: - stdenv.mkDerivation rec { - inherit version; - - name = "ruby-${version}"; - - src = if useRailsExpress then fetchFromGitHub { + let rubySrc = + if useRailsExpress then fetchFromGitHub { owner = "ruby"; repo = "ruby"; rev = tag; @@ -46,6 +46,18 @@ let url = "http://cache.ruby-lang.org/pub/ruby/${majorVersion}.${minorVersion}/ruby-${fullVersionName}.tar.gz"; sha256 = sha256.src; }; + in + stdenv.mkDerivation rec { + inherit version; + + name = "ruby-${version}"; + + srcs = [ rubySrc rubygemsSrc ]; + sourceRoot = + if useRailsExpress then + "ruby-${tag}-src" + else + unpackdir rubySrc; # Have `configure' avoid `/usr/bin/nroff' in non-chroot builds. NROFF = "${groff}/bin/nroff"; @@ -67,11 +79,15 @@ let enableParallelBuilding = true; - patches = (import ./patchsets.nix { - inherit patchSet useRailsExpress ops patchLevel; - })."${versionNoPatch}"; + patches = + [ ./gem_hook.patch ] ++ + (import ./patchsets.nix { + inherit patchSet useRailsExpress ops patchLevel; + })."${versionNoPatch}"; - postUnpack = opString isRuby21 '' + postUnpack = '' + cp -r ${unpackdir rubygemsSrc} ${sourceRoot}/rubygems + '' + opString isRuby21 '' rm "$sourceRoot/enc/unicode/name2ctype.h" ''; @@ -99,6 +115,11 @@ let installFlags = stdenv.lib.optionalString docSupport "install-doc"; # Bundler tries to create this directory postInstall = '' + # Update rubygems + pushd rubygems + $out/bin/ruby setup.rb + popd + # Bundler tries to create this directory mkdir -pv $out/${passthru.gemPath} mkdir -p $out/nix-support @@ -119,7 +140,7 @@ let meta = { license = stdenv.lib.licenses.ruby; - homepage = "http://www.ruby-lang.org/en/"; + homepage = http://www.ruby-lang.org/en/; description = "The Ruby language"; platforms = stdenv.lib.platforms.all; }; diff --git a/pkgs/development/interpreters/ruby/gem_hook.patch b/pkgs/development/interpreters/ruby/gem_hook.patch index 07f942f505e..e75794fa556 100644 --- a/pkgs/development/interpreters/ruby/gem_hook.patch +++ b/pkgs/development/interpreters/ruby/gem_hook.patch @@ -1,7 +1,7 @@ -diff --git a/lib/rubygems/installer.rb b/lib/rubygems/installer.rb +diff --git a/rubygems/lib/rubygems/installer.rb b/rubygems/lib/rubygems/installer.rb index d1ef3cb..bf15652 100755 ---- a/lib/rubygems/installer.rb -+++ b/lib/rubygems/installer.rb +--- a/rubygems/lib/rubygems/installer.rb ++++ b/rubygems/lib/rubygems/installer.rb @@ -545,6 +545,13 @@ Results logged to #{File.join(Dir.pwd, 'gem_make.out')} say path if Gem.configuration.really_verbose diff --git a/pkgs/development/interpreters/ruby/rubygems-src.nix b/pkgs/development/interpreters/ruby/rubygems-src.nix new file mode 100644 index 00000000000..191da98e56e --- /dev/null +++ b/pkgs/development/interpreters/ruby/rubygems-src.nix @@ -0,0 +1,8 @@ +{ fetchurl +, version ? "2.4.8" +, sha256 ? "0pl4civyf0vhqsqbqaivvxrb3fsg8sid9a8jv5vfnk4hypz3ahss" +}: +fetchurl { + url = "http://production.cf.rubygems.org/rubygems/rubygems-${version}.tgz"; + sha256 = sha256; +} diff --git a/pkgs/development/interpreters/ruby/rubygems.nix b/pkgs/development/interpreters/ruby/rubygems.nix deleted file mode 100644 index fb210ceff4b..00000000000 --- a/pkgs/development/interpreters/ruby/rubygems.nix +++ /dev/null @@ -1,35 +0,0 @@ -{ stdenv, lib, fetchurl, makeWrapper, ruby }: - -stdenv.mkDerivation rec { - name = "rubygems-${version}"; - version = "2.4.8"; - src = fetchurl { - url = "http://production.cf.rubygems.org/rubygems/${name}.tgz"; - sha256 = "0pl4civyf0vhqsqbqaivvxrb3fsg8sid9a8jv5vfnk4hypz3ahss"; - }; - - patches = [ ./gem_hook.patch ]; - - buildInputs = [ruby makeWrapper]; - - buildPhase = ":"; - - installPhase = '' - ruby setup.rb --prefix=$out/ - - wrapProgram $out/bin/gem --prefix RUBYLIB : $out/lib - - find $out -type f -name "*.rb" | - xargs sed -i "s@/usr/bin/env@$(type -p env)@g" - - mkdir -pv $out/nix-support - cat > $out/nix-support/setup-hook < Date: Wed, 2 Mar 2016 10:12:23 +0000 Subject: [PATCH 051/678] bundler: 1.10.6 -> 1.11.2 --- pkgs/development/interpreters/ruby/bundler.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/ruby/bundler.nix b/pkgs/development/interpreters/ruby/bundler.nix index cdcd12990e2..718da20b006 100644 --- a/pkgs/development/interpreters/ruby/bundler.nix +++ b/pkgs/development/interpreters/ruby/bundler.nix @@ -4,7 +4,7 @@ buildRubyGem rec { inherit ruby; name = "${gemName}-${version}"; gemName = "bundler"; - version = "1.10.6"; - sha256 = "1vlzfq0bkkj4jyq6av0y55mh5nj5n0f3mfbmmifwgkh44g8k6agv"; + version = "1.11.2"; + sha256 = "0s37j1hyngc4shq0in8f9y1knjdqkisdg3dd1mfwgq7n1bz8zan7"; dontPatchShebangs = true; } From 19820e9a9633e68b72e27f173d7b367a99577655 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Tue, 1 Mar 2016 20:00:54 +0000 Subject: [PATCH 052/678] ruby: add a new .dev output to ruby derivations The idea is to bundle ruby, bundler and bundix together. I was having issues where bundler was installed with ruby 2.3.0 and I wanted to use ruby 2.0.0. With this change all the developer has to do is install `ruby_2_0_0.dev` either in his environment or in a nix-shell. --- .../development/interpreters/ruby/default.nix | 8 ++++++- pkgs/development/interpreters/ruby/dev.nix | 24 +++++++++++++++++++ 2 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/interpreters/ruby/dev.nix diff --git a/pkgs/development/interpreters/ruby/default.nix b/pkgs/development/interpreters/ruby/default.nix index 2085d558df5..2ff960f6fcc 100644 --- a/pkgs/development/interpreters/ruby/default.nix +++ b/pkgs/development/interpreters/ruby/default.nix @@ -1,6 +1,7 @@ { stdenv, lib, fetchurl, fetchFromSavannah, fetchFromGitHub , zlib, openssl, gdbm, ncurses, readline, groff, libyaml, libffi, autoreconfHook, bison , autoconf, darwin ? null +, buildEnv, bundler, bundix } @ args: let @@ -35,6 +36,7 @@ let , libffi, fiddleSupport ? true , autoreconfHook, bison, autoconf , darwin ? null + , buildEnv, bundler, bundix }: let rubySrc = if useRailsExpress then fetchFromGitHub { @@ -146,11 +148,15 @@ let }; passthru = rec { - inherit majorVersion minorVersion teenyVersion patchLevel; + inherit majorVersion minorVersion teenyVersion patchLevel version; rubyEngine = "ruby"; baseRuby = baseruby; libPath = "lib/${rubyEngine}/${versionNoPatch}"; gemPath = "lib/${rubyEngine}/gems/${versionNoPatch}"; + dev = import ./dev.nix { + inherit buildEnv bundler bundix; + ruby = self; + }; }; } ) args; in self; diff --git a/pkgs/development/interpreters/ruby/dev.nix b/pkgs/development/interpreters/ruby/dev.nix new file mode 100644 index 00000000000..7787306eb32 --- /dev/null +++ b/pkgs/development/interpreters/ruby/dev.nix @@ -0,0 +1,24 @@ +/* An environment for development that bundles ruby, bundler and bundix + together. This avoids version conflicts where each is using a diferent + version of each-other. +*/ +{ buildEnv, ruby, bundler, bundix }: +let + bundler_ = bundler.override { + ruby = ruby; + }; + bundix_ = bundix.override { + ruby = ruby; + bundler = bundler_; + }; +in +buildEnv { + name = "${ruby.rubyEngine}-dev-${ruby.version}"; + paths = [ + bundix_ + bundler_ + ruby + ]; + pathsToLink = [ "/bin" ]; + ignoreCollisions = true; +} From 8bdee80d3927e32bb39630c3993fcf8fd61af950 Mon Sep 17 00:00:00 2001 From: Louis Taylor Date: Mon, 14 Mar 2016 06:17:51 +0000 Subject: [PATCH 053/678] linux: add 4.5 --- pkgs/os-specific/linux/kernel/linux-4.5.nix | 20 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 12 +++++++++++- 2 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 pkgs/os-specific/linux/kernel/linux-4.5.nix diff --git a/pkgs/os-specific/linux/kernel/linux-4.5.nix b/pkgs/os-specific/linux/kernel/linux-4.5.nix new file mode 100644 index 00000000000..790175d6e88 --- /dev/null +++ b/pkgs/os-specific/linux/kernel/linux-4.5.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchurl, perl, buildLinux, ... } @ args: + +import ./generic.nix (args // rec { + version = "4.5"; + modDirVersion = "4.5.0"; + extraMeta.branch = "4.5"; + + src = fetchurl { + url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; + sha256 = "172i3arrc34mb7nxw31iqrmbwrdnp8dmrbf8p3b3f6z006sfy3d4"; + }; + + kernelPatches = args.kernelPatches; + + features.iwlwifi = true; + features.efiBootStub = true; + features.needsCifsUtils = true; + features.canDisableNetfilterConntrackHelpers = true; + features.netfilterRPFilter = true; +} // (args.argsOverride or {})) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c8bbccaf53c..82dc112866d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10274,6 +10274,15 @@ let ]; }; + linux_4_5 = callPackage ../os-specific/linux/kernel/linux-4.5.nix { + kernelPatches = [ kernelPatches.bridge_stp_helper ] + ++ lib.optionals ((platform.kernelArch or null) == "mips") + [ kernelPatches.mips_fpureg_emu + kernelPatches.mips_fpu_sigill + kernelPatches.mips_ext3_n32 + ]; + }; + linux_testing = callPackage ../os-specific/linux/kernel/linux-testing.nix { kernelPatches = [ kernelPatches.bridge_stp_helper ] ++ lib.optionals ((platform.kernelArch or null) == "mips") @@ -10453,7 +10462,7 @@ let linux = linuxPackages.kernel; # Update this when adding the newest kernel major version! - linuxPackages_latest = pkgs.linuxPackages_4_4; + linuxPackages_latest = pkgs.linuxPackages_4_5; linux_latest = linuxPackages_latest.kernel; # Build the kernel modules for the some of the kernels. @@ -10467,6 +10476,7 @@ let linuxPackages_4_1 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_4_1 linuxPackages_4_1); linuxPackages_4_3 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_4_3 linuxPackages_4_3); linuxPackages_4_4 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_4_4 linuxPackages_4_4); + linuxPackages_4_5 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_4_5 linuxPackages_4_5); linuxPackages_testing = recurseIntoAttrs (linuxPackagesFor pkgs.linux_testing linuxPackages_testing); linuxPackages_custom = {version, src, configfile}: let linuxPackages_self = (linuxPackagesFor (pkgs.linuxManualConfig {inherit version src configfile; From d9cf99225b7205ce521daab968d4b16e5e91a5c2 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Mon, 14 Mar 2016 23:28:55 +0000 Subject: [PATCH 054/678] rubygems: 2.4.8 -> 2.6.2 --- .../interpreters/ruby/gem_hook.patch | 23 +++++++++++-------- .../interpreters/ruby/rubygems-src.nix | 4 ++-- 2 files changed, 15 insertions(+), 12 deletions(-) diff --git a/pkgs/development/interpreters/ruby/gem_hook.patch b/pkgs/development/interpreters/ruby/gem_hook.patch index e75794fa556..78ff9ddbb1a 100644 --- a/pkgs/development/interpreters/ruby/gem_hook.patch +++ b/pkgs/development/interpreters/ruby/gem_hook.patch @@ -1,18 +1,21 @@ diff --git a/rubygems/lib/rubygems/installer.rb b/rubygems/lib/rubygems/installer.rb -index d1ef3cb..bf15652 100755 +index a88d393..8612901 100644 --- a/rubygems/lib/rubygems/installer.rb +++ b/rubygems/lib/rubygems/installer.rb -@@ -545,6 +545,13 @@ Results logged to #{File.join(Dir.pwd, 'gem_make.out')} +@@ -766,7 +766,15 @@ TEXT + # Ensures that files can't be installed outside the gem directory. - say path if Gem.configuration.really_verbose - end -+ -+ if !ENV['NIX_POST_EXTRACT_FILES_HOOK'].nil? -+ print "\nrunning NIX_POST_EXTRACT_FILES_HOOK #{ENV['NIX_POST_EXTRACT_FILES_HOOK']} #{@gem_dir}\n" -+ print `#{ENV['NIX_POST_EXTRACT_FILES_HOOK']} #{@gem_dir}` -+ print "\nrunning NIX_POST_EXTRACT_FILES_HOOK done\n" + def extract_files +- @package.extract_files gem_dir ++ ret = @package.extract_files gem_dir ++ if ENV['NIX_POST_EXTRACT_FILES_HOOK'] ++ puts ++ puts "running NIX_POST_EXTRACT_FILES_HOOK #{ENV['NIX_POST_EXTRACT_FILES_HOOK']} #{gem_dir}" ++ system("#{ENV['NIX_POST_EXTRACT_FILES_HOOK']} #{gem_dir}") ++ puts "running NIX_POST_EXTRACT_FILES_HOOK done" ++ puts + end -+ ++ ret end ## diff --git a/pkgs/development/interpreters/ruby/rubygems-src.nix b/pkgs/development/interpreters/ruby/rubygems-src.nix index 191da98e56e..fea749e7de0 100644 --- a/pkgs/development/interpreters/ruby/rubygems-src.nix +++ b/pkgs/development/interpreters/ruby/rubygems-src.nix @@ -1,6 +1,6 @@ { fetchurl -, version ? "2.4.8" -, sha256 ? "0pl4civyf0vhqsqbqaivvxrb3fsg8sid9a8jv5vfnk4hypz3ahss" +, version ? "2.6.2" +, sha256 ? "1j02ajici555f35vd6ky6m4bxs8lh8nqb1c59qqib4jp4ibcv6zy" }: fetchurl { url = "http://production.cf.rubygems.org/rubygems/rubygems-${version}.tgz"; From 665e79324e8a9f80e7e10adce8ccd36c9aa829de Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Tue, 15 Mar 2016 02:34:53 +0100 Subject: [PATCH 055/678] torbrowser: 5.5.2 -> 5.5.3 --- pkgs/tools/security/tor/torbrowser.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/security/tor/torbrowser.nix b/pkgs/tools/security/tor/torbrowser.nix index dfde2b57aa6..457cc5fa4c4 100644 --- a/pkgs/tools/security/tor/torbrowser.nix +++ b/pkgs/tools/security/tor/torbrowser.nix @@ -16,13 +16,13 @@ let in stdenv.mkDerivation rec { name = "tor-browser-${version}"; - version = "5.5.2"; + version = "5.5.3"; src = fetchurl { url = "https://archive.torproject.org/tor-package-archive/torbrowser/${version}/tor-browser-linux${if stdenv.is64bit then "64" else "32"}-${version}_en-US.tar.xz"; sha256 = if stdenv.is64bit then - "1zb5fssy9c37cb0ab083f2jifw47wnck32nc6zpijmqm059yccxc" else - "1gjc6prx3n769nj4gzhfjrb2qpw3ypvsb3pp0a130db1ssgnzqqr"; + "04na0xp2fqq72shj88wayx23cwhbhcdsl0vi0wfhh4k6ajr7yg7c" else + "06xmbrpyazvss89dwd08rdza7s2p4i326izjdrdhxrjkz83jkf2m"; }; desktopItem = makeDesktopItem { From f4cc2c6fb7fa1f56eb253f43a9f0b1a3c4062861 Mon Sep 17 00:00:00 2001 From: Raymond Gauthier Date: Sat, 5 Mar 2016 19:34:08 -0500 Subject: [PATCH 056/678] brgenml1cupswrapper: init at 3.1.0-1 Brother generic cups wrapper over lpr driver `brgenml1lpr` init at same version. --- .../drivers/brgenml1cupswrapper/default.nix | 105 ++++++++++++++++++ .../misc/cups/drivers/brgenml1lpr/default.nix | 93 ++++++++++++++++ pkgs/top-level/all-packages.nix | 4 + 3 files changed, 202 insertions(+) create mode 100644 pkgs/misc/cups/drivers/brgenml1cupswrapper/default.nix create mode 100644 pkgs/misc/cups/drivers/brgenml1lpr/default.nix diff --git a/pkgs/misc/cups/drivers/brgenml1cupswrapper/default.nix b/pkgs/misc/cups/drivers/brgenml1cupswrapper/default.nix new file mode 100644 index 00000000000..e4ac510dd14 --- /dev/null +++ b/pkgs/misc/cups/drivers/brgenml1cupswrapper/default.nix @@ -0,0 +1,105 @@ +{ stdenv, fetchurl, cups, perl, brgenml1lpr, debugLvl ? "0"}: + +/* + [Setup instructions](http://support.brother.com/g/s/id/linux/en/instruction_prn1a.html). + + URI example + ~ `lpd://BRW0080927AFBCE/binary_p1` + + Logging + ------- + + `/tmp/br_cupswrapper_ml1.log` when `DEBUG > 0` in `brother_lpdwrapper_BrGenML1`. + Note that when `DEBUG > 1` the wrapper stops performing its function. Better + keep `DEBUG == 1` unless this is desirable. + + Now activable through this package's `debugLvl` parameter whose value is to be + used to establish `DEBUG`. + + Issues + ------ + + 1. > Error: /tmp/brBrGenML1rc_15642 :cannot open file !! + + This is a non fatal issue. The job will still be printed. However, not sure + what kind of information could be lost. + + There should be a more elegant way to patch this. + + 2. > touch: cannot touch '/tmp/BrGenML1_latest_print_info': Permission denied + + TODO: Address. + + 3. > perl: warning: Falling back to the standard locale ("C"). + + are supported and installed on your system. + LANG = "en_US.UTF-8" + LC_ALL = (unset), + LANGUAGE = (unset), + perl: warning: Please check that your locale settings: + perl: warning: Setting locale failed. + + TODO: Address. +*/ + +stdenv.mkDerivation rec { + + name = "brgenml1cupswrapper-3.1.0-1"; + src = fetchurl { + url = "http://download.brother.com/welcome/dlf101125/${name}.i386.deb"; + sha256 = "0kd2a2waqr10kfv1s8is3nd5dlphw4d1343srdsbrlbbndja3s6r"; + }; + + unpackPhase = '' + ar x $src + tar xfvz data.tar.gz + ''; + + buildInputs = [ cups perl brgenml1lpr ]; + buildPhase = ":"; + + patchPhase = '' + WRAPPER=opt/brother/Printers/BrGenML1/cupswrapper/brother_lpdwrapper_BrGenML1 + PAPER_CFG=opt/brother/Printers/BrGenML1/cupswrapper/paperconfigml1 + + substituteInPlace $WRAPPER \ + --replace "basedir =~" "basedir = \"${brgenml1lpr}/opt/brother/Printers/BrGenML1\"; #" \ + --replace "PRINTER =~" "PRINTER = \"BrGenML1\"; #" \ + --replace "\$DEBUG=0;" "\$DEBUG=${debugLvl};" + + # Fixing issue #2. + substituteInPlace $WRAPPER \ + --replace "\`cp " "\`cp -p " \ + --replace "\$TEMPRC\`" "\$TEMPRC; chmod a+rw \$TEMPRC\`" \ + --replace "\`mv " "\`cp -p " + + # This config script make this assumption that the *.ppd are found in a global location `/etc/cups/ppd`. + substituteInPlace $PAPER_CFG \ + --replace "/etc/cups/ppd" "$out/share/cups/model" + ''; + + installPhase = '' + CUPSFILTER=$out/lib/cups/filter + CUPSPPD=$out/share/cups/model + + CUPSWRAPPER=opt/brother/Printers/BrGenML1/cupswrapper + mkdir -p $out/$CUPSWRAPPER + cp -rp $CUPSWRAPPER/* $out/$CUPSWRAPPER + + mkdir -p $CUPSFILTER + ln -s $out/$CUPSWRAPPER/brother_lpdwrapper_BrGenML1 $CUPSFILTER + + mkdir -p $CUPSPPD + ln -s $out/$CUPSWRAPPER/brother-BrGenML1-cups-en.ppd $CUPSPPD + ''; + + dontPatchELF = true; + + meta = { + description = "Brother BrGenML1 CUPS wrapper driver"; + homepage = http://www.brother.com; + platforms = stdenv.lib.platforms.linux; + license = stdenv.lib.licenses.gpl2Plus; + maintainers = with stdenv.lib.maintainers; [ jraygauthier ]; + }; +} diff --git a/pkgs/misc/cups/drivers/brgenml1lpr/default.nix b/pkgs/misc/cups/drivers/brgenml1lpr/default.nix new file mode 100644 index 00000000000..6dc2408ec88 --- /dev/null +++ b/pkgs/misc/cups/drivers/brgenml1lpr/default.nix @@ -0,0 +1,93 @@ +{ stdenv, fetchurl, cups, perl, glibc, ghostscript, which, makeWrapper}: + +/* + [Setup instructions](http://support.brother.com/g/s/id/linux/en/instruction_prn1a.html). + + URI example + ~ `lpd://BRW0080927AFBCE/binary_p1` + + Logging + ------- + + `/tmp/br_lpdfilter_ml1.log` when `$ENV{LPD_DEBUG} > 0` in `filter_BrGenML1` + which is activated automatically when `DEBUG > 0` in `brother_lpdwrapper_BrGenML1` + from the cups wrapper. + + Issues + ------ + + - filter_BrGenML1 ln 196 `my $GHOST_SCRIPT=`which gs`;` + + `GHOST_SCRIPT` is empty resulting in an empty `/tmp/br_lpdfilter_ml1_gsout.dat` file. + See `/tmp/br_lpdfilter_ml1.log` for the executed command. + + Notes + ----- + + - The `setupPrintcap` has totally no use in our context. +*/ + +let + myPatchElf = file: with stdenv.lib; '' + patchelf --set-interpreter \ + ${stdenv.glibc}/lib/ld-linux${optionalString stdenv.is64bit "-x86-64"}.so.2 \ + ${file} + ''; +in +stdenv.mkDerivation rec { + + name = "brgenml1lpr-3.1.0-1"; + src = fetchurl { + url = "http://download.brother.com/welcome/dlf101123/${name}.i386.deb"; + sha256 = "0zdvjnrjrz9sba0k525linxp55lr4cyivfhqbkq1c11br2nvy09f"; + }; + + unpackPhase = '' + ar x $src + tar xfvz data.tar.gz + ''; + + nativeBuildInputs = [ makeWrapper ]; + buildInputs = [ cups perl glibc ghostscript which ]; + + buildPhase = ":"; + + patchPhase = '' + INFDIR=opt/brother/Printers/BrGenML1/inf + LPDDIR=opt/brother/Printers/BrGenML1/lpd + + # Setup max debug log by default. + substituteInPlace $LPDDIR/filter_BrGenML1 \ + --replace "BR_PRT_PATH =~" "BR_PRT_PATH = \"$out/opt/brother/Printers/BrGenML1\"; #" \ + --replace "PRINTER =~" "PRINTER = \"BrGenML1\"; #" + + ${myPatchElf "$INFDIR/braddprinter"} + ${myPatchElf "$LPDDIR/brprintconflsr3"} + ${myPatchElf "$LPDDIR/rawtobr3"} + ''; + + installPhase = '' + INFDIR=opt/brother/Printers/BrGenML1/inf + LPDDIR=opt/brother/Printers/BrGenML1/lpd + + mkdir -p $out/$INFDIR + cp -rp $INFDIR/* $out/$INFDIR + mkdir -p $out/$LPDDIR + cp -rp $LPDDIR/* $out/$LPDDIR + + wrapProgram $out/$LPDDIR/filter_BrGenML1 \ + --prefix PATH ":" "${ghostscript}/bin" \ + --prefix PATH ":" "${which}/bin" + ''; + + dontPatchELF = true; + + + meta = { + description = "Brother BrGenML1 LPR driver"; + homepage = http://www.brother.com; + platforms = stdenv.lib.platforms.linux; + license = stdenv.lib.licenses.gpl2Plus; + maintainers = with stdenv.lib.maintainers; [ jraygauthier ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a99998b1519..901ff3a06e3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15706,6 +15706,10 @@ let beep = callPackage ../misc/beep { }; + brgenml1lpr = callPackage ../misc/cups/drivers/brgenml1lpr {}; + + brgenml1cupswrapper = callPackage ../misc/cups/drivers/brgenml1cupswrapper {}; + cups = callPackage ../misc/cups { libusb = libusb1; }; From 2be76d8b48956e8e6d848e705c55db7243f56a96 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Mon, 14 Mar 2016 20:56:07 -0500 Subject: [PATCH 057/678] activemq: 5.8.0 -> 5.13.2 It seems Activemq was "split" in to 5.8.0 and 5.12.1 only to keep from trampling someone on 5.8.0. This is to the point of not upgrading the default, but making a new activemq attribute specific for 512. As far as I can tell, there is no good reason to stay providing 5.8.0, so this is the proposal to delete it. Note: There are over 1,000 fixes between 5.9.0 to 5.13.2. --- pkgs/development/libraries/apache-activemq/5.12.nix | 6 ------ pkgs/development/libraries/apache-activemq/5.8.nix | 6 ------ .../libraries/apache-activemq/{recent.nix => default.nix} | 7 +++---- pkgs/top-level/all-packages.nix | 4 +--- 4 files changed, 4 insertions(+), 19 deletions(-) delete mode 100644 pkgs/development/libraries/apache-activemq/5.12.nix delete mode 100644 pkgs/development/libraries/apache-activemq/5.8.nix rename pkgs/development/libraries/apache-activemq/{recent.nix => default.nix} (76%) diff --git a/pkgs/development/libraries/apache-activemq/5.12.nix b/pkgs/development/libraries/apache-activemq/5.12.nix deleted file mode 100644 index e2e3af96532..00000000000 --- a/pkgs/development/libraries/apache-activemq/5.12.nix +++ /dev/null @@ -1,6 +0,0 @@ -import ./recent.nix - rec { - version = "5.12.1"; - sha256 = "1hn6pls12dzc2fngz6lji7kmz7blvd3z1dq4via8gd4fjflmw5c9"; - mkUrl = name: "mirror://apache/activemq/${version}/${name}-bin.tar.gz"; - } diff --git a/pkgs/development/libraries/apache-activemq/5.8.nix b/pkgs/development/libraries/apache-activemq/5.8.nix deleted file mode 100644 index 7e4644895e9..00000000000 --- a/pkgs/development/libraries/apache-activemq/5.8.nix +++ /dev/null @@ -1,6 +0,0 @@ -import ./recent.nix - rec { - version = "5.8.0"; - sha256 = "12a1lmmqapviqdgw307jm07vw1z5q53r56pkbp85w9wnqwspjrbk"; - mkUrl = name: "mirror://apache/activemq/apache-activemq/${version}/${name}-bin.tar.gz"; - } diff --git a/pkgs/development/libraries/apache-activemq/recent.nix b/pkgs/development/libraries/apache-activemq/default.nix similarity index 76% rename from pkgs/development/libraries/apache-activemq/recent.nix rename to pkgs/development/libraries/apache-activemq/default.nix index a6988023343..0e3a1ccd3c4 100644 --- a/pkgs/development/libraries/apache-activemq/recent.nix +++ b/pkgs/development/libraries/apache-activemq/default.nix @@ -1,13 +1,12 @@ -{ version, sha256, mkUrl }: -# use a function to make the source url, because the url schemes differ between 5.8.0 and greater { stdenv, fetchurl }: stdenv.mkDerivation rec { name = "apache-activemq-${version}"; + version = "5.13.2"; src = fetchurl { - url = mkUrl name; - inherit sha256; + sha256 = "0vrgny8fw973xvr3w4wc1s44z50b0c2hgcqa91s8fbx2yjmqn5xy"; + url = "mirror://apache/activemq/${version}/${name}-bin.tar.gz"; }; phases = [ "unpackPhase" "installPhase" ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9de7c9defaf..fd443f56843 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6406,9 +6406,7 @@ let acl = callPackage ../development/libraries/acl { }; - activemq = callPackage ../development/libraries/apache-activemq/5.8.nix { }; - - activemq512 = callPackage ../development/libraries/apache-activemq/5.12.nix { }; + activemq = callPackage ../development/libraries/apache-activemq { }; adns = callPackage ../development/libraries/adns { }; From a0ecf9cee2f36bbbbe3da58a95236a342b91832b Mon Sep 17 00:00:00 2001 From: Doug Beardsley Date: Tue, 15 Mar 2016 12:07:59 +0800 Subject: [PATCH 058/678] ghcjs: on Darwin, build unix-compat with libiconv --- pkgs/development/haskell-modules/configuration-ghcjs.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/haskell-modules/configuration-ghcjs.nix b/pkgs/development/haskell-modules/configuration-ghcjs.nix index 5c14fe788f7..ad482f1824b 100644 --- a/pkgs/development/haskell-modules/configuration-ghcjs.nix +++ b/pkgs/development/haskell-modules/configuration-ghcjs.nix @@ -24,6 +24,7 @@ self: super: network = addBuildTools super.network (pkgs.lib.optional pkgs.stdenv.isDarwin pkgs.darwin.libiconv); zlib = addBuildTools super.zlib (pkgs.lib.optional pkgs.stdenv.isDarwin pkgs.darwin.libiconv); + unix-compat = addBuildTools super.unix-compat (pkgs.lib.optional pkgs.stdenv.isDarwin pkgs.darwin.libiconv); # LLVM is not supported on this GHC; use the latest one. inherit (pkgs) llvmPackages; From fdcd875b0e70750d670501269b4fec76e05b0647 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 15 Mar 2016 10:59:12 +0100 Subject: [PATCH 059/678] anki: update sqlalchemy build input and clean up the expression SQLAlchemy-0.9.9 was broken recently, probably because of an sqlite update. So we just use the latest version. The build expression used to take the entire package set as an argument, which is poor style because it hides the true dependencies from the interface. I've change the code to expect the appropriate individual packages instead. --- pkgs/games/anki/default.nix | 13 +++++++------ pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/pkgs/games/anki/default.nix b/pkgs/games/anki/default.nix index 4c06f9126a9..f4fff289fec 100644 --- a/pkgs/games/anki/default.nix +++ b/pkgs/games/anki/default.nix @@ -1,11 +1,12 @@ { stdenv, lib, fetchurl, substituteAll, lame, mplayer -, libpulseaudio, python, pyqt4, qt4, pythonPackages +, libpulseaudio, python, pyqt4, qt4, wrapPython +, pysqlite, sqlalchemy, pyaudio, beautifulsoup, httplib2, matplotlib # This little flag adds a huge number of dependencies, but we assume that # everyone wants Anki to draw plots with statistics by default. -, plotsSupport ? true }: +, plotsSupport ? true +}: let - py = pythonPackages; version = "2.0.33"; in stdenv.mkDerivation rec { @@ -18,10 +19,10 @@ stdenv.mkDerivation rec { sha256 = "1d5rf5gcw98m38wam6wh3hyh7qd78ws7zipm67xg744flqsjrzmr"; }; - pythonPath = [ pyqt4 py.pysqlite py.sqlalchemy9 py.pyaudio py.beautifulsoup py.httplib2 ] - ++ lib.optional plotsSupport py.matplotlib; + pythonPath = [ pyqt4 pysqlite sqlalchemy pyaudio beautifulsoup httplib2 ] + ++ lib.optional plotsSupport matplotlib; - buildInputs = [ python py.wrapPython lame mplayer libpulseaudio ]; + buildInputs = [ python wrapPython lame mplayer libpulseaudio ]; phases = [ "unpackPhase" "patchPhase" "installPhase" ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 03a2e2756a1..f45905b63a4 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14540,7 +14540,9 @@ let andyetitmoves = if stdenv.isLinux then callPackage ../games/andyetitmoves {} else null; - anki = callPackage ../games/anki { }; + anki = callPackage ../games/anki { + inherit (pythonPackages) wrapPython pysqlite sqlalchemy pyaudio beautifulsoup httplib2 matplotlib; + }; armagetronad = callPackage ../games/armagetronad { }; From cd7242d09d64669c05246a4005731b1fa1cbaa15 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Tue, 15 Mar 2016 11:40:42 +0100 Subject: [PATCH 060/678] kdevplatform: disable parallel build Hotfix for 1edb9b9558fba6026cf3c7dddb11fda71d4c740d Ref: https://github.com/NixOS/nixpkgs/pull/13843 --- pkgs/development/libraries/kdevplatform/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/kdevplatform/default.nix b/pkgs/development/libraries/kdevplatform/default.nix index 44e1a1f63ad..d2b9581462b 100644 --- a/pkgs/development/libraries/kdevplatform/default.nix +++ b/pkgs/development/libraries/kdevplatform/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake automoc4 gettext pkgconfig ]; - enableParallelBuilding = true; + enableParallelBuilding = false; meta = with stdenv.lib; { maintainers = [ maintainers.ambrop72 ]; From 9f3ca09f94dfa7d8389ad524475a555439daf3f4 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 8 Mar 2016 10:52:37 +0100 Subject: [PATCH 061/678] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20160308 using the following inputs: - Nixpkgs: https://github.com/NixOS/nixpkgs/commit/47c2c01ea75db3abb8b4a36a936d606065326cab - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/435f8156b7834ab1d687666be789b57abc8ac564 - LTS Haskell: https://github.com/fpco/lts-haskell/commit/6bcb171af74b3bcce09d9ba8da3c2ef819232dcc - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/a161c91389f59139623ed71ea3bce1591f3c1b1d Also, update the list of broken builds in configuration-hackage2nix.yaml. --- .../configuration-hackage2nix.yaml | 3876 ++++++++ .../haskell-modules/configuration-lts-0.0.nix | 32 + .../haskell-modules/configuration-lts-0.1.nix | 32 + .../haskell-modules/configuration-lts-0.2.nix | 32 + .../haskell-modules/configuration-lts-0.3.nix | 32 + .../haskell-modules/configuration-lts-0.4.nix | 32 + .../haskell-modules/configuration-lts-0.5.nix | 32 + .../haskell-modules/configuration-lts-0.6.nix | 32 + .../haskell-modules/configuration-lts-0.7.nix | 32 + .../haskell-modules/configuration-lts-1.0.nix | 33 + .../haskell-modules/configuration-lts-1.1.nix | 33 + .../configuration-lts-1.10.nix | 33 + .../configuration-lts-1.11.nix | 33 + .../configuration-lts-1.12.nix | 33 + .../configuration-lts-1.13.nix | 33 + .../configuration-lts-1.14.nix | 33 + .../configuration-lts-1.15.nix | 33 + .../haskell-modules/configuration-lts-1.2.nix | 33 + .../haskell-modules/configuration-lts-1.4.nix | 33 + .../haskell-modules/configuration-lts-1.5.nix | 33 + .../haskell-modules/configuration-lts-1.7.nix | 33 + .../haskell-modules/configuration-lts-1.8.nix | 33 + .../haskell-modules/configuration-lts-1.9.nix | 33 + .../haskell-modules/configuration-lts-2.0.nix | 33 + .../haskell-modules/configuration-lts-2.1.nix | 33 + .../configuration-lts-2.10.nix | 34 + .../configuration-lts-2.11.nix | 34 + .../configuration-lts-2.12.nix | 34 + .../configuration-lts-2.13.nix | 34 + .../configuration-lts-2.14.nix | 34 + .../configuration-lts-2.15.nix | 34 + .../configuration-lts-2.16.nix | 34 + .../configuration-lts-2.17.nix | 34 + .../configuration-lts-2.18.nix | 35 + .../configuration-lts-2.19.nix | 35 + .../haskell-modules/configuration-lts-2.2.nix | 33 + .../configuration-lts-2.20.nix | 35 + .../configuration-lts-2.21.nix | 35 + .../configuration-lts-2.22.nix | 35 + .../haskell-modules/configuration-lts-2.3.nix | 33 + .../haskell-modules/configuration-lts-2.4.nix | 33 + .../haskell-modules/configuration-lts-2.5.nix | 33 + .../haskell-modules/configuration-lts-2.6.nix | 33 + .../haskell-modules/configuration-lts-2.7.nix | 33 + .../haskell-modules/configuration-lts-2.8.nix | 33 + .../haskell-modules/configuration-lts-2.9.nix | 33 + .../haskell-modules/configuration-lts-3.0.nix | 36 + .../haskell-modules/configuration-lts-3.1.nix | 36 + .../configuration-lts-3.10.nix | 36 + .../configuration-lts-3.11.nix | 36 + .../configuration-lts-3.12.nix | 36 + .../configuration-lts-3.13.nix | 36 + .../configuration-lts-3.14.nix | 37 + .../configuration-lts-3.15.nix | 37 + .../configuration-lts-3.16.nix | 38 + .../configuration-lts-3.17.nix | 39 + .../configuration-lts-3.18.nix | 40 + .../configuration-lts-3.19.nix | 41 + .../haskell-modules/configuration-lts-3.2.nix | 36 + .../configuration-lts-3.20.nix | 42 + .../configuration-lts-3.21.nix | 42 + .../configuration-lts-3.22.nix | 42 + .../haskell-modules/configuration-lts-3.3.nix | 36 + .../haskell-modules/configuration-lts-3.4.nix | 36 + .../haskell-modules/configuration-lts-3.5.nix | 36 + .../haskell-modules/configuration-lts-3.6.nix | 36 + .../haskell-modules/configuration-lts-3.7.nix | 36 + .../haskell-modules/configuration-lts-3.8.nix | 36 + .../haskell-modules/configuration-lts-3.9.nix | 36 + .../haskell-modules/configuration-lts-4.0.nix | 47 + .../haskell-modules/configuration-lts-4.1.nix | 47 + .../haskell-modules/configuration-lts-4.2.nix | 47 + .../haskell-modules/configuration-lts-5.0.nix | 55 + .../haskell-modules/configuration-lts-5.1.nix | 57 + .../haskell-modules/configuration-lts-5.2.nix | 58 + .../haskell-modules/configuration-lts-5.3.nix | 61 + .../haskell-modules/configuration-lts-5.4.nix | 61 + .../haskell-modules/configuration-lts-5.5.nix | 61 + .../haskell-modules/configuration-lts-5.6.nix | 7814 +++++++++++++++++ .../haskell-modules/configuration-lts-5.7.nix | 7794 ++++++++++++++++ .../haskell-modules/configuration-lts-5.8.nix | 7788 ++++++++++++++++ .../haskell-modules/hackage-packages.nix | 5892 ++++++++++++- 82 files changed, 35656 insertions(+), 359 deletions(-) create mode 100644 pkgs/development/haskell-modules/configuration-lts-5.6.nix create mode 100644 pkgs/development/haskell-modules/configuration-lts-5.7.nix create mode 100644 pkgs/development/haskell-modules/configuration-lts-5.8.nix diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index 5ff2f60a7de..2d549e54bc5 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -145,3 +145,3879 @@ dont-distribute-packages: yices-painless: [ i686-linux, x86_64-linux, x86_64-darwin ] # soft restrictions because of build errors + 3d-graphics-examples: [ x86_64-darwin ] + 3dmodels: [ i686-linux, x86_64-darwin, x86_64-linux ] + 4Blocks: [ i686-linux, x86_64-darwin, x86_64-linux ] + abc-puzzle: [ x86_64-darwin ] + abcBridge: [ i686-linux, x86_64-darwin, x86_64-linux ] + abstract-par-accelerate: [ i686-linux, x86_64-darwin, x86_64-linux ] + AC-BuildPlatform: [ i686-linux, x86_64-darwin, x86_64-linux ] + AC-EasyRaster-GTK: [ i686-linux, x86_64-darwin, x86_64-linux ] + AC-HalfInteger: [ i686-linux, x86_64-darwin, x86_64-linux ] + AC-MiniTest: [ i686-linux, x86_64-darwin, x86_64-linux ] + AC-Terminal: [ i686-linux, x86_64-darwin, x86_64-linux ] + AC-VanillaArray: [ i686-linux, x86_64-darwin, x86_64-linux ] + accelerate-arithmetic: [ i686-linux, x86_64-darwin, x86_64-linux ] + accelerate-fourier: [ i686-linux, x86_64-darwin, x86_64-linux ] + accelerate-utility: [ i686-linux, x86_64-darwin, x86_64-linux ] + accentuateus: [ i686-linux, x86_64-darwin, x86_64-linux ] + access-time: [ i686-linux, x86_64-darwin, x86_64-linux ] + acid-state-dist: [ i686-linux, x86_64-darwin, x86_64-linux ] + ACME: [ i686-linux, x86_64-darwin, x86_64-linux ] + acme-hq9plus: [ i686-linux, x86_64-darwin, x86_64-linux ] + acme-inator: [ i686-linux, x86_64-darwin, x86_64-linux ] + acme-numbersystem: [ i686-linux, x86_64-darwin, x86_64-linux ] + acme-schoenfinkel: [ i686-linux, x86_64-darwin, x86_64-linux ] + acme-zero: [ i686-linux, x86_64-darwin, x86_64-linux ] + ActionKid: [ i686-linux, x86_64-darwin, x86_64-linux ] + activehs: [ i686-linux, x86_64-darwin, x86_64-linux ] + actor: [ i686-linux, x86_64-darwin, x86_64-linux ] + Adaptive: [ i686-linux, x86_64-darwin, x86_64-linux ] + Adaptive-Blaisorblade: [ i686-linux, x86_64-darwin, x86_64-linux ] + adaptive-containers: [ i686-linux, x86_64-darwin, x86_64-linux ] + adaptive-tuple: [ i686-linux, x86_64-darwin, x86_64-linux ] + adhoc-network: [ i686-linux, x86_64-darwin, x86_64-linux ] + adict: [ i686-linux, x86_64-darwin, x86_64-linux ] + adobe-swatch-exchange: [ i686-linux, x86_64-darwin, x86_64-linux ] + adp-multi: [ i686-linux, x86_64-darwin, x86_64-linux ] + adp-multi-monadiccp: [ i686-linux, x86_64-darwin, x86_64-linux ] + ADPfusion: [ i686-linux, x86_64-darwin, x86_64-linux ] + Advgame: [ i686-linux, x86_64-darwin, x86_64-linux ] + AERN-Basics: [ i686-linux, x86_64-darwin, x86_64-linux ] + AERN-Net: [ i686-linux, x86_64-darwin, x86_64-linux ] + AERN-Real: [ i686-linux, x86_64-darwin, x86_64-linux ] + AERN-Real-Double: [ i686-linux, x86_64-darwin, x86_64-linux ] + AERN-Real-Interval: [ i686-linux, x86_64-darwin, x86_64-linux ] + AERN-RnToRm: [ i686-linux, x86_64-darwin, x86_64-linux ] + AERN-RnToRm-Plot: [ i686-linux, x86_64-linux ] + aeson-bson: [ i686-linux, x86_64-darwin, x86_64-linux ] + aeson-native: [ i686-linux, x86_64-darwin, x86_64-linux ] + aeson-smart: [ i686-linux, x86_64-darwin, x86_64-linux ] + AesonBson: [ i686-linux, x86_64-darwin, x86_64-linux ] + afv: [ i686-linux, x86_64-darwin, x86_64-linux ] + Agata: [ i686-linux, x86_64-darwin, x86_64-linux ] + Agda: [ i686-linux, x86_64-darwin, x86_64-linux ] + Agda-executable: [ i686-linux, x86_64-darwin, x86_64-linux ] + agda-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + agda-snippets: [ i686-linux, x86_64-darwin, x86_64-linux ] + agda-snippets-hakyll: [ i686-linux, x86_64-darwin, x86_64-linux ] + AGI: [ i686-linux, x86_64-darwin, x86_64-linux ] + AhoCorasick: [ i686-linux, x86_64-darwin, x86_64-linux ] + airbrake: [ i686-linux, x86_64-darwin, x86_64-linux ] + ajhc: [ i686-linux, x86_64-darwin, x86_64-linux ] + al: [ i686-linux, x86_64-darwin, x86_64-linux ] + alea: [ i686-linux, x86_64-darwin, x86_64-linux ] + alga: [ i686-linux ] + algebraic: [ i686-linux, x86_64-darwin, x86_64-linux ] + AlignmentAlgorithms: [ i686-linux, x86_64-darwin, x86_64-linux ] + Allure: [ i686-linux, x86_64-darwin, x86_64-linux ] + alms: [ i686-linux, x86_64-darwin, x86_64-linux ] + alpha: [ i686-linux, x86_64-darwin, x86_64-linux ] + alpino-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + alsa: [ i686-linux, x86_64-linux ] + alsa-midi: [ i686-linux, x86_64-linux ] + alsa-pcm-tests: [ i686-linux, x86_64-linux ] + alsa-seq-tests: [ i686-linux, x86_64-linux ] + altfloat: [ i686-linux, x86_64-darwin, x86_64-linux ] + alure: [ i686-linux, x86_64-darwin, x86_64-linux ] + ALUT: [ x86_64-darwin ] + amazon-emailer: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazon-products: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-rds: [ i686-linux ] + amazonka-sqs: [ i686-linux ] + AMI: [ i686-linux, x86_64-darwin, x86_64-linux ] + ampersand: [ i686-linux, x86_64-darwin, x86_64-linux ] + anansi-pandoc: [ i686-linux, x86_64-darwin, x86_64-linux ] + anatomy: [ i686-linux, x86_64-darwin, x86_64-linux ] + android-lint-summary: [ i686-linux, x86_64-darwin, x86_64-linux ] + AndroidViewHierarchyImporter: [ i686-linux, x86_64-darwin, x86_64-linux ] + Animas: [ i686-linux, x86_64-darwin, x86_64-linux ] + antfarm: [ i686-linux, x86_64-darwin, x86_64-linux ] + anticiv: [ i686-linux, x86_64-darwin, x86_64-linux ] + antigate: [ i686-linux, x86_64-darwin, x86_64-linux ] + antimirov: [ i686-linux, x86_64-darwin, x86_64-linux ] + antlrc: [ i686-linux, x86_64-darwin, x86_64-linux ] + anydbm: [ i686-linux, x86_64-darwin, x86_64-linux ] + aosd: [ i686-linux, x86_64-darwin, x86_64-linux ] + apelsin: [ i686-linux, x86_64-darwin, x86_64-linux ] + api-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + apiary-helics: [ i686-linux, x86_64-linux ] + apiary-purescript: [ i686-linux, x86_64-darwin, x86_64-linux ] + apis: [ i686-linux, x86_64-darwin, x86_64-linux ] + apotiki: [ i686-linux, x86_64-darwin, x86_64-linux ] + app-lens: [ i686-linux, x86_64-darwin, x86_64-linux ] + appc: [ i686-linux, x86_64-darwin, x86_64-linux ] + ApplePush: [ i686-linux, x86_64-darwin, x86_64-linux ] + AppleScript: [ i686-linux, x86_64-darwin, x86_64-linux ] + apply-refact: [ x86_64-darwin ] + approx-rand-test: [ i686-linux, x86_64-darwin, x86_64-linux ] + arb-fft: [ i686-linux, x86_64-darwin, x86_64-linux ] + arbb-vm: [ i686-linux, x86_64-darwin, x86_64-linux ] + archiver: [ i686-linux, x86_64-darwin, x86_64-linux ] + archlinux: [ i686-linux, x86_64-darwin, x86_64-linux ] + archlinux-web: [ i686-linux, x86_64-darwin, x86_64-linux ] + arff: [ i686-linux, x86_64-darwin, x86_64-linux ] + arghwxhaskell: [ x86_64-darwin ] + argon2: [ i686-linux, x86_64-darwin, x86_64-linux ] + argparser: [ i686-linux, x86_64-darwin, x86_64-linux ] + arguedit: [ i686-linux, x86_64-darwin, x86_64-linux ] + ariadne: [ i686-linux, x86_64-darwin, x86_64-linux ] + arion: [ i686-linux, x86_64-darwin, x86_64-linux ] + arith-encode: [ i686-linux, x86_64-darwin, x86_64-linux ] + arithmetic: [ i686-linux ] + arithmoi: [ i686-linux ] + armada: [ i686-linux, x86_64-darwin, x86_64-linux ] + array-forth: [ i686-linux, x86_64-darwin, x86_64-linux ] + ArrayRef: [ i686-linux, x86_64-darwin, x86_64-linux ] + arrow-improve: [ i686-linux, x86_64-darwin, x86_64-linux ] + arrowapply-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + arrowp: [ i686-linux, x86_64-darwin, x86_64-linux ] + ArrowVHDL: [ i686-linux, x86_64-darwin, x86_64-linux ] + ascii85-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + asic: [ i686-linux, x86_64-darwin, x86_64-linux ] + asil: [ i686-linux, x86_64-darwin, x86_64-linux ] + AspectAG: [ i686-linux, x86_64-darwin, x86_64-linux ] + assimp: [ i686-linux, x86_64-darwin, x86_64-linux ] + astrds: [ i686-linux, x86_64-linux ] + astview: [ i686-linux, x86_64-darwin, x86_64-linux ] + async-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + aterm-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + atlassian-connect-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + atlassian-connect-descriptor: [ i686-linux, x86_64-darwin, x86_64-linux ] + atom-msp430: [ x86_64-darwin, x86_64-linux ] + atomic-primops-foreign: [ x86_64-darwin ] + atomic-primops-vector: [ i686-linux, x86_64-darwin, x86_64-linux ] + atomo: [ i686-linux, x86_64-darwin, x86_64-linux ] + AttoJson: [ i686-linux, x86_64-darwin, x86_64-linux ] + attoparsec-csv: [ i686-linux, x86_64-darwin, x86_64-linux ] + attoparsec-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] + attoparsec-text: [ i686-linux, x86_64-darwin, x86_64-linux ] + attoparsec-text-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + Attrac: [ i686-linux, x86_64-darwin, x86_64-linux ] + atuin: [ i686-linux, x86_64-darwin, x86_64-linux ] + audiovisual: [ i686-linux, x86_64-darwin, x86_64-linux ] + augeas: [ i686-linux, x86_64-darwin, x86_64-linux ] + augur: [ i686-linux, x86_64-darwin, x86_64-linux ] + Aurochs: [ i686-linux, x86_64-darwin, x86_64-linux ] + authoring: [ i686-linux, x86_64-darwin, x86_64-linux ] + AutoForms: [ i686-linux, x86_64-darwin, x86_64-linux ] + autoproc: [ i686-linux, x86_64-darwin, x86_64-linux ] + avahi: [ i686-linux, x86_64-darwin, x86_64-linux ] + AvlTree: [ i686-linux, x86_64-darwin, x86_64-linux ] + awesomium: [ i686-linux, x86_64-darwin, x86_64-linux ] + awesomium-glut: [ i686-linux, x86_64-darwin, x86_64-linux ] + awesomium-raw: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-configuration-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-dynamodb-streams: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-elastic-transcoder: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-general: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-kinesis: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-kinesis-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-kinesis-reshard: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-lambda: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-performance-tests: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-sdk: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-sign4: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-sns: [ i686-linux, x86_64-darwin, x86_64-linux ] + azure-service-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + azurify: [ i686-linux, x86_64-darwin, x86_64-linux ] + b-tree: [ i686-linux, x86_64-darwin, x86_64-linux ] + babylon: [ x86_64-darwin ] + backdropper: [ i686-linux, x86_64-darwin, x86_64-linux ] + bag: [ i686-linux, x86_64-darwin, x86_64-linux ] + Baggins: [ i686-linux, x86_64-darwin, x86_64-linux ] + bamboo: [ i686-linux, x86_64-darwin, x86_64-linux ] + bamboo-launcher: [ i686-linux, x86_64-darwin, x86_64-linux ] + bamboo-plugin-highlight: [ i686-linux, x86_64-darwin, x86_64-linux ] + bamboo-plugin-photo: [ i686-linux, x86_64-darwin, x86_64-linux ] + bamboo-theme-blueprint: [ i686-linux, x86_64-darwin, x86_64-linux ] + bamboo-theme-mini-html5: [ i686-linux, x86_64-darwin, x86_64-linux ] + bamse: [ i686-linux, x86_64-darwin, x86_64-linux ] + Bang: [ x86_64-darwin ] + barchart: [ i686-linux, x86_64-darwin, x86_64-linux ] + barcodes-code128: [ i686-linux, x86_64-darwin, x86_64-linux ] + barley: [ i686-linux, x86_64-darwin, x86_64-linux ] + Barracuda: [ i686-linux, x86_64-darwin, x86_64-linux ] + barrie: [ i686-linux, x86_64-darwin, x86_64-linux ] + barrier-monad: [ i686-linux, x86_64-darwin, x86_64-linux ] + base32-bytestring: [ x86_64-darwin ] + BASIC: [ i686-linux, x86_64-darwin, x86_64-linux ] + baskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + battleships: [ i686-linux, x86_64-darwin, x86_64-linux ] + bayes-stack: [ i686-linux, x86_64-darwin, x86_64-linux ] + BCMtools: [ i686-linux, x86_64-darwin, x86_64-linux ] + beamable: [ i686-linux, x86_64-darwin, x86_64-linux ] + beautifHOL: [ i686-linux, x86_64-darwin, x86_64-linux ] + bed-and-breakfast: [ i686-linux, x86_64-darwin, x86_64-linux ] + Befunge93: [ i686-linux, x86_64-darwin, x86_64-linux ] + bein: [ i686-linux, x86_64-darwin, x86_64-linux ] + berkeleydb: [ i686-linux, x86_64-darwin, x86_64-linux ] + BerkeleyDBXML: [ i686-linux, x86_64-darwin, x86_64-linux ] + berp: [ i686-linux, x86_64-darwin, x86_64-linux ] + bff: [ i686-linux, x86_64-darwin, x86_64-linux ] + bgzf: [ i686-linux, x86_64-darwin, x86_64-linux ] + bidirectionalization-combined: [ i686-linux, x86_64-darwin, x86_64-linux ] + bidispec: [ i686-linux, x86_64-darwin, x86_64-linux ] + BigPixel: [ x86_64-darwin ] + billboard-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] + billeksah-forms: [ i686-linux, x86_64-darwin, x86_64-linux ] + billeksah-main: [ i686-linux, x86_64-darwin, x86_64-linux ] + billeksah-pane: [ i686-linux, x86_64-darwin, x86_64-linux ] + billeksah-services: [ i686-linux, x86_64-darwin, x86_64-linux ] + bimaps: [ i686-linux, x86_64-darwin, x86_64-linux ] + binary-derive: [ i686-linux, x86_64-darwin, x86_64-linux ] + binary-indexed-tree: [ i686-linux, x86_64-darwin, x86_64-linux ] + binary-protocol-zmq: [ i686-linux, x86_64-darwin, x86_64-linux ] + binary-streams: [ i686-linux, x86_64-darwin, x86_64-linux ] + bind-marshal: [ i686-linux, x86_64-darwin, x86_64-linux ] + binding-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + binding-wx: [ x86_64-darwin ] + bindings-apr: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-apr-util: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-bfd: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-cctools: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-codec2: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-common: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-dc1394: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-eskit: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-EsounD: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-fann: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-fluidsynth: [ x86_64-darwin ] + bindings-friso: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-GLFW: [ x86_64-darwin ] + bindings-gpgme: [ x86_64-darwin ] + bindings-gsl: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-gts: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-hamlib: [ x86_64-darwin ] + bindings-hdf5: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-K8055: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-libcddb: [ x86_64-darwin ] + bindings-libftdi: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-librrd: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-libstemmer: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-libv4l2: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-libzip: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-linux-videodev2: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-mmap: [ x86_64-darwin ] + bindings-mpdecimal: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-parport: [ x86_64-darwin ] + bindings-portaudio: [ x86_64-darwin ] + bindings-posix: [ x86_64-darwin ] + bindings-ppdev: [ x86_64-darwin ] + bindings-sane: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-sc3: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-sipc: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-svm: [ x86_64-darwin ] + binembed-example: [ x86_64-darwin ] + bio: [ i686-linux, x86_64-darwin, x86_64-linux ] + Biobase: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseBlast: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseDotP: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseFasta: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseFR3D: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseInfernal: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseMAF: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseTrainingData: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseTurner: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseTypes: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseVienna: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseXNA: [ i686-linux, x86_64-darwin, x86_64-linux ] + biohazard: [ i686-linux, x86_64-darwin, x86_64-linux ] + bioinformatics-toolkit: [ i686-linux, x86_64-darwin, x86_64-linux ] + biosff: [ i686-linux, x86_64-darwin, x86_64-linux ] + biostockholm: [ i686-linux, x86_64-darwin, x86_64-linux ] + bird: [ i686-linux, x86_64-darwin, x86_64-linux ] + BirdPP: [ i686-linux, x86_64-darwin, x86_64-linux ] + bit-vector: [ i686-linux ] + bitcoin-rpc: [ i686-linux, x86_64-darwin, x86_64-linux ] + Bitly: [ i686-linux, x86_64-darwin, x86_64-linux ] + bitly-cli: [ i686-linux, x86_64-darwin, x86_64-linux ] + bitmap-opengl: [ x86_64-darwin ] + bits-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + bits-extras: [ x86_64-darwin ] + bitset: [ i686-linux, x86_64-darwin, x86_64-linux ] + bitspeak: [ i686-linux, x86_64-darwin, x86_64-linux ] + bitstream: [ i686-linux, x86_64-darwin, x86_64-linux ] + bittorrent: [ i686-linux, x86_64-darwin, x86_64-linux ] + bitvec: [ i686-linux, x86_64-darwin, x86_64-linux ] + bkr: [ i686-linux, x86_64-darwin, x86_64-linux ] + bla: [ i686-linux, x86_64-darwin, x86_64-linux ] + black-jewel: [ i686-linux, x86_64-darwin, x86_64-linux ] + blake2: [ i686-linux ] + blakesum: [ i686-linux, x86_64-darwin, x86_64-linux ] + blakesum-demo: [ i686-linux, x86_64-darwin, x86_64-linux ] + blas: [ i686-linux, x86_64-darwin, x86_64-linux ] + blas-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + blaze-html-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] + blaze-html-hexpat: [ i686-linux, x86_64-darwin, x86_64-linux ] + blaze-textual-native: [ i686-linux, x86_64-darwin, x86_64-linux ] + blazeMarker: [ i686-linux, x86_64-darwin, x86_64-linux ] + blip: [ i686-linux, x86_64-darwin, x86_64-linux ] + Blobs: [ i686-linux, x86_64-darwin, x86_64-linux ] + blogination: [ i686-linux, x86_64-darwin, x86_64-linux ] + BlogLiterately-diagrams: [ x86_64-darwin ] + bloodhound: [ i686-linux, x86_64-darwin, x86_64-linux ] + bloxorz: [ x86_64-darwin ] + blubber: [ x86_64-darwin ] + Blueprint: [ i686-linux, x86_64-darwin, x86_64-linux ] + bluetile: [ i686-linux, x86_64-darwin, x86_64-linux ] + bluetileutils: [ x86_64-darwin ] + board-games: [ i686-linux, x86_64-darwin, x86_64-linux ] + bogre-banana: [ i686-linux, x86_64-darwin, x86_64-linux ] + bond: [ i686-linux, x86_64-darwin, x86_64-linux ] + bond-haskell-compiler: [ i686-linux, x86_64-darwin, x86_64-linux ] + boolean-normal-forms: [ i686-linux, x86_64-darwin, x86_64-linux ] + boolsimplifier: [ i686-linux, x86_64-darwin, x86_64-linux ] + boomslang: [ i686-linux, x86_64-darwin, x86_64-linux ] + borel: [ i686-linux, x86_64-darwin, x86_64-linux ] + bot: [ i686-linux, x86_64-darwin, x86_64-linux ] + bowntz: [ x86_64-darwin ] + Bravo: [ i686-linux, x86_64-darwin, x86_64-linux ] + breakout: [ i686-linux, x86_64-darwin, x86_64-linux ] + breve: [ x86_64-darwin ] + brians-brain: [ i686-linux, x86_64-darwin, x86_64-linux ] + brillig: [ i686-linux, x86_64-darwin, x86_64-linux ] + broker-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + bsd-sysctl: [ i686-linux, x86_64-darwin, x86_64-linux ] + bson-generics: [ i686-linux, x86_64-darwin, x86_64-linux ] + bson-mapping: [ i686-linux, x86_64-darwin, x86_64-linux ] + btree-concurrent: [ i686-linux, x86_64-darwin, x86_64-linux ] + btrfs: [ x86_64-darwin ] + buffer-builder: [ i686-linux ] + buffer-builder-aeson: [ i686-linux, x86_64-darwin, x86_64-linux ] + buffon: [ i686-linux, x86_64-darwin, x86_64-linux ] + buildbox-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + buildwrapper: [ i686-linux, x86_64-darwin, x86_64-linux ] + bullet: [ i686-linux, x86_64-darwin, x86_64-linux ] + Buster: [ i686-linux, x86_64-darwin, x86_64-linux ] + buster: [ i686-linux, x86_64-darwin, x86_64-linux ] + buster-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + buster-network: [ i686-linux, x86_64-darwin, x86_64-linux ] + bustle: [ x86_64-darwin ] + butterflies: [ i686-linux, x86_64-darwin, x86_64-linux ] + bytable: [ i686-linux, x86_64-darwin, x86_64-linux ] + bytestring-class: [ i686-linux, x86_64-darwin, x86_64-linux ] + bytestring-csv: [ i686-linux, x86_64-darwin, x86_64-linux ] + bytestring-rematch: [ i686-linux, x86_64-darwin, x86_64-linux ] + bytestringparser: [ i686-linux, x86_64-darwin, x86_64-linux ] + bytestringreadp: [ i686-linux, x86_64-darwin, x86_64-linux ] + c-io: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-constraints: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-dev: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-ghci: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-graphdeps: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-install-bundle: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-install-ghc72: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-install-ghc74: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-query: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-setup: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-test: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-upload: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal2arch: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal2doap: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal2spec: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabalgraph: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabalmdvrpm: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabalrpmdeps: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabocha: [ i686-linux, x86_64-darwin, x86_64-linux ] + cairo-appbase: [ x86_64-darwin ] + cake3: [ i686-linux, x86_64-darwin, x86_64-linux ] + cakyrespa: [ i686-linux, x86_64-darwin, x86_64-linux ] + cal3d: [ i686-linux, x86_64-darwin, x86_64-linux ] + cal3d-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + cal3d-opengl: [ i686-linux, x86_64-darwin, x86_64-linux ] + calc: [ i686-linux, x86_64-darwin, x86_64-linux ] + calculator: [ x86_64-darwin ] + caldims: [ i686-linux, x86_64-darwin, x86_64-linux ] + caledon: [ i686-linux, x86_64-darwin, x86_64-linux ] + call: [ i686-linux, x86_64-darwin, x86_64-linux ] + call-haskell-from-anything: [ i686-linux, x86_64-darwin, x86_64-linux ] + campfire: [ i686-linux, x86_64-darwin, x86_64-linux ] + cantor: [ i686-linux, x86_64-darwin, x86_64-linux ] + cao: [ i686-linux, x86_64-darwin, x86_64-linux ] + cap: [ i686-linux, x86_64-darwin, x86_64-linux ] + Capabilities: [ i686-linux, x86_64-darwin, x86_64-linux ] + capri: [ i686-linux, x86_64-darwin, x86_64-linux ] + caramia: [ x86_64-darwin ] + carboncopy: [ i686-linux, x86_64-darwin, x86_64-linux ] + carettah: [ i686-linux, x86_64-linux ] + casadi-bindings: [ i686-linux, x86_64-darwin, x86_64-linux ] + casadi-bindings-control: [ i686-linux, x86_64-darwin, x86_64-linux ] + casadi-bindings-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + casadi-bindings-internal: [ i686-linux, x86_64-darwin, x86_64-linux ] + casadi-bindings-ipopt-interface: [ i686-linux, x86_64-darwin, x86_64-linux ] + casadi-bindings-snopt-interface: [ i686-linux, x86_64-darwin, x86_64-linux ] + Cascade: [ i686-linux, x86_64-darwin, x86_64-linux ] + cascading: [ i686-linux, x86_64-darwin, x86_64-linux ] + cash: [ i686-linux, x86_64-darwin, x86_64-linux ] + cassandra-thrift: [ i686-linux, x86_64-darwin, x86_64-linux ] + cassava-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + cassy: [ i686-linux, x86_64-darwin, x86_64-linux ] + casui: [ i686-linux, x86_64-darwin, x86_64-linux ] + Catana: [ i686-linux, x86_64-darwin, x86_64-linux ] + catch-fd: [ i686-linux, x86_64-darwin, x86_64-linux ] + categorical-algebra: [ i686-linux, x86_64-darwin, x86_64-linux ] + category-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + cblrepo: [ i686-linux, x86_64-darwin, x86_64-linux ] + CBOR: [ i686-linux, x86_64-darwin, x86_64-linux ] + CC-delcont: [ i686-linux, x86_64-darwin, x86_64-linux ] + CC-delcont-alt: [ i686-linux, x86_64-darwin, x86_64-linux ] + CC-delcont-cxe: [ i686-linux, x86_64-darwin, x86_64-linux ] + CC-delcont-exc: [ i686-linux, x86_64-darwin, x86_64-linux ] + CC-delcont-ref: [ i686-linux, x86_64-darwin, x86_64-linux ] + CC-delcont-ref-tf: [ i686-linux, x86_64-darwin, x86_64-linux ] + cci: [ i686-linux, x86_64-darwin, x86_64-linux ] + cctools-workqueue: [ i686-linux, x86_64-darwin, x86_64-linux ] + cedict: [ i686-linux, x86_64-darwin, x86_64-linux ] + ceilometer-common: [ i686-linux, x86_64-darwin, x86_64-linux ] + cellrenderer-cairo: [ x86_64-darwin ] + cereal-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + cereal-ieee754: [ i686-linux, x86_64-darwin, x86_64-linux ] + cereal-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] + certificate: [ i686-linux, x86_64-darwin, x86_64-linux ] + cf: [ i686-linux, x86_64-darwin, x86_64-linux ] + cfipu: [ i686-linux, x86_64-darwin, x86_64-linux ] + cflp: [ i686-linux, x86_64-darwin, x86_64-linux ] + cfopu: [ i686-linux, x86_64-darwin, x86_64-linux ] + cgen: [ i686-linux, x86_64-darwin, x86_64-linux ] + cgi-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + chalkboard: [ i686-linux, x86_64-darwin, x86_64-linux ] + chalkboard-viewer: [ i686-linux, x86_64-darwin, x86_64-linux ] + charade: [ i686-linux, x86_64-darwin, x86_64-linux ] + charsetdetect: [ x86_64-darwin ] + charsetdetect-ae: [ x86_64-darwin ] + Chart-gtk: [ x86_64-darwin ] + Chart-simple: [ x86_64-darwin ] + chatter: [ i686-linux, x86_64-darwin, x86_64-linux ] + check-pvp: [ i686-linux, x86_64-darwin, x86_64-linux ] + checked: [ i686-linux, x86_64-darwin, x86_64-linux ] + chell-hunit: [ i686-linux, x86_64-darwin, x86_64-linux ] + chevalier-common: [ i686-linux, x86_64-darwin, x86_64-linux ] + Chitra: [ i686-linux, x86_64-darwin, x86_64-linux ] + chp: [ i686-linux, x86_64-darwin, x86_64-linux ] + chp-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] + chp-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] + chp-spec: [ i686-linux, x86_64-darwin, x86_64-linux ] + chp-transformers: [ i686-linux, x86_64-darwin, x86_64-linux ] + ChristmasTree: [ i686-linux, x86_64-darwin, x86_64-linux ] + chuchu: [ i686-linux, x86_64-darwin, x86_64-linux ] + chunks: [ i686-linux, x86_64-darwin, x86_64-linux ] + cil: [ i686-linux, x86_64-darwin, x86_64-linux ] + cinvoke: [ i686-linux, x86_64-darwin, x86_64-linux ] + cio: [ i686-linux, x86_64-darwin, x86_64-linux ] + citation-resolve: [ i686-linux, x86_64-darwin, x86_64-linux ] + citeproc-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + citeproc-hs-pandoc-filter: [ i686-linux, x86_64-darwin, x86_64-linux ] + cityhash: [ x86_64-darwin ] + cjk: [ i686-linux, x86_64-darwin, x86_64-linux ] + clafer: [ i686-linux, x86_64-darwin, x86_64-linux ] + claferIG: [ i686-linux, x86_64-darwin, x86_64-linux ] + claferwiki: [ i686-linux, x86_64-darwin, x86_64-linux ] + clang-pure: [ x86_64-darwin ] + CLASE: [ i686-linux, x86_64-darwin, x86_64-linux ] + clash: [ i686-linux, x86_64-darwin, x86_64-linux ] + clash-prelude-quickcheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + ClassLaws: [ i686-linux, x86_64-darwin, x86_64-linux ] + ClassyPrelude: [ i686-linux, x86_64-darwin, x86_64-linux ] + clckwrks-plugin-bugs: [ i686-linux, x86_64-darwin, x86_64-linux ] + clckwrks-theme-geo-bootstrap: [ i686-linux, x86_64-darwin, x86_64-linux ] + cld2: [ x86_64-darwin ] + Clean: [ i686-linux, x86_64-darwin, x86_64-linux ] + clevercss: [ i686-linux, x86_64-darwin, x86_64-linux ] + click-clack: [ i686-linux, x86_64-darwin, x86_64-linux ] + clifford: [ i686-linux, x86_64-darwin, x86_64-linux ] + clipper: [ i686-linux, x86_64-darwin, x86_64-linux ] + clippings: [ i686-linux, x86_64-darwin, x86_64-linux ] + clocked: [ i686-linux, x86_64-darwin, x86_64-linux ] + clogparse: [ i686-linux, x86_64-darwin, x86_64-linux ] + clone-all: [ i686-linux, x86_64-darwin, x86_64-linux ] + cloudfront-signer: [ i686-linux, x86_64-darwin, x86_64-linux ] + cloudyfs: [ i686-linux, x86_64-linux ] + clua: [ i686-linux, x86_64-darwin, x86_64-linux ] + cluss: [ i686-linux, x86_64-darwin, x86_64-linux ] + clustertools: [ i686-linux, x86_64-darwin, x86_64-linux ] + clutterhs: [ i686-linux, x86_64-darwin, x86_64-linux ] + cmath: [ i686-linux, x86_64-darwin, x86_64-linux ] + cmathml3: [ i686-linux, x86_64-darwin, x86_64-linux ] + CMCompare: [ i686-linux, x86_64-darwin, x86_64-linux ] + cmdargs-browser: [ i686-linux, x86_64-darwin, x86_64-linux ] + cmdtheline: [ i686-linux, x86_64-darwin, x86_64-linux ] + cmonad: [ i686-linux, x86_64-darwin, x86_64-linux ] + cnc-spec-compiler: [ i686-linux, x86_64-darwin, x86_64-linux ] + cndict: [ i686-linux, x86_64-darwin, x86_64-linux ] + Coadjute: [ i686-linux, x86_64-darwin, x86_64-linux ] + Codec-Image-DevIL: [ i686-linux, x86_64-darwin, x86_64-linux ] + codec-libevent: [ i686-linux, x86_64-darwin, x86_64-linux ] + codecov-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + codemonitor: [ i686-linux, x86_64-darwin, x86_64-linux ] + codepad: [ i686-linux, x86_64-darwin, x86_64-linux ] + cognimeta-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + coinbase-exchange: [ i686-linux, x86_64-darwin, x86_64-linux ] + colada: [ i686-linux, x86_64-darwin, x86_64-linux ] + collada-output: [ i686-linux, x86_64-darwin, x86_64-linux ] + collada-types: [ i686-linux, x86_64-darwin, x86_64-linux ] + collections: [ i686-linux, x86_64-darwin, x86_64-linux ] + collections-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + collections-base-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] + coltrane: [ i686-linux, x86_64-darwin, x86_64-linux ] + com: [ i686-linux, x86_64-darwin, x86_64-linux ] + combinat: [ i686-linux, x86_64-darwin, x86_64-linux ] + combinat-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] + combinator-interactive: [ i686-linux, x86_64-darwin, x86_64-linux ] + combinatorial-problems: [ i686-linux, x86_64-darwin, x86_64-linux ] + Combinatorrent: [ i686-linux, x86_64-darwin, x86_64-linux ] + Commando: [ i686-linux, x86_64-darwin, x86_64-linux ] + commodities: [ i686-linux, x86_64-darwin, x86_64-linux ] + commsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + commsec-keyexchange: [ i686-linux, x86_64-darwin, x86_64-linux ] + comonad-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + comonad-random: [ i686-linux, x86_64-darwin, x86_64-linux ] + compact-map: [ i686-linux, x86_64-darwin, x86_64-linux ] + compact-string: [ i686-linux, x86_64-darwin, x86_64-linux ] + compilation: [ i686-linux, x86_64-darwin, x86_64-linux ] + complexity: [ i686-linux, x86_64-darwin, x86_64-linux ] + compose-trans: [ i686-linux, x86_64-darwin, x86_64-linux ] + compression: [ i686-linux, x86_64-darwin, x86_64-linux ] + compstrat: [ i686-linux, x86_64-darwin, x86_64-linux ] + comptrans: [ i686-linux, x86_64-darwin, x86_64-linux ] + computational-algebra: [ i686-linux, x86_64-darwin, x86_64-linux ] + concraft: [ i686-linux, x86_64-darwin, x86_64-linux ] + concraft-hr: [ i686-linux, x86_64-darwin, x86_64-linux ] + concraft-pl: [ i686-linux, x86_64-darwin, x86_64-linux ] + concrete-typerep: [ i686-linux, x86_64-darwin, x86_64-linux ] + concurrent-state: [ i686-linux, x86_64-darwin, x86_64-linux ] + ConcurrentUtils: [ i686-linux, x86_64-darwin, x86_64-linux ] + condor: [ i686-linux, x86_64-darwin, x86_64-linux ] + Condor: [ i686-linux, x86_64-darwin, x86_64-linux ] + condorcet: [ i686-linux, x86_64-darwin, x86_64-linux ] + conductive-hsc3: [ i686-linux, x86_64-darwin, x86_64-linux ] + conduit-audio-lame: [ i686-linux, x86_64-darwin, x86_64-linux ] + conduit-audio-samplerate: [ i686-linux, x86_64-darwin, x86_64-linux ] + conduit-audio-sndfile: [ x86_64-darwin ] + conduit-network-stream: [ i686-linux, x86_64-darwin, x86_64-linux ] + conduit-resumablesink: [ i686-linux, x86_64-darwin, x86_64-linux ] + config-select: [ i686-linux, x86_64-darwin, x86_64-linux ] + Configger: [ i686-linux, x86_64-darwin, x86_64-linux ] + conjure: [ i686-linux, x86_64-darwin, x86_64-linux ] + consistent: [ i686-linux, x86_64-darwin, x86_64-linux ] + const-math-ghc-plugin: [ i686-linux, x86_64-darwin, x86_64-linux ] + ConstraintKinds: [ i686-linux, x86_64-darwin, x86_64-linux ] + constructible: [ i686-linux ] + constructive-algebra: [ i686-linux, x86_64-darwin, x86_64-linux ] + Consumer: [ i686-linux, x86_64-darwin, x86_64-linux ] + consumers: [ x86_64-darwin ] + container: [ i686-linux, x86_64-darwin, x86_64-linux ] + context-stack: [ i686-linux, x86_64-darwin, x86_64-linux ] + continue: [ i686-linux, x86_64-darwin, x86_64-linux ] + continuum: [ i686-linux, x86_64-darwin, x86_64-linux ] + Contract: [ i686-linux, x86_64-darwin, x86_64-linux ] + control-event: [ i686-linux, x86_64-darwin, x86_64-linux ] + control-monad-attempt: [ i686-linux, x86_64-darwin, x86_64-linux ] + control-monad-failure: [ i686-linux, x86_64-darwin, x86_64-linux ] + control-monad-failure-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] + Control-Monad-MultiPass: [ i686-linux, x86_64-darwin, x86_64-linux ] + Control-Monad-ST2: [ i686-linux, x86_64-darwin, x86_64-linux ] + contstuff-monads-tf: [ i686-linux, x86_64-darwin, x86_64-linux ] + contstuff-transformers: [ i686-linux, x86_64-darwin, x86_64-linux ] + convert: [ i686-linux, x86_64-darwin, x86_64-linux ] + convertible-ascii: [ i686-linux, x86_64-darwin, x86_64-linux ] + convertible-text: [ i686-linux, x86_64-darwin, x86_64-linux ] + copilot: [ i686-linux, x86_64-darwin, x86_64-linux ] + copilot-cbmc: [ i686-linux, x86_64-darwin, x86_64-linux ] + COrdering: [ i686-linux, x86_64-darwin, x86_64-linux ] + core: [ i686-linux, x86_64-darwin, x86_64-linux ] + core-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + corebot-bliki: [ i686-linux, x86_64-darwin, x86_64-linux ] + CoreFoundation: [ i686-linux, x86_64-darwin, x86_64-linux ] + Coroutine: [ i686-linux, x86_64-darwin, x86_64-linux ] + coroutine-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] + couch-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + couch-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + CouchDB: [ i686-linux, x86_64-darwin, x86_64-linux ] + couchdb-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + couchdb-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + court: [ i686-linux, x86_64-darwin, x86_64-linux ] + CPBrainfuck: [ i686-linux, x86_64-darwin, x86_64-linux ] + cpio-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + cplusplus-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + cpuperf: [ i686-linux, x86_64-darwin, x86_64-linux ] + cpython: [ i686-linux, x86_64-darwin, x86_64-linux ] + cqrs-postgresql: [ i686-linux, x86_64-darwin, x86_64-linux ] + cqrs-sqlite3: [ i686-linux, x86_64-darwin, x86_64-linux ] + cqrs-test: [ i686-linux, x86_64-darwin, x86_64-linux ] + cr: [ i686-linux, x86_64-darwin, x86_64-linux ] + crack: [ i686-linux, x86_64-darwin, x86_64-linux ] + Craft3e: [ i686-linux, x86_64-darwin, x86_64-linux ] + craftwerk: [ i686-linux, x86_64-darwin, x86_64-linux ] + craftwerk-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] + craftwerk-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + crc16: [ i686-linux, x86_64-darwin, x86_64-linux ] + crf-chain1: [ i686-linux, x86_64-darwin, x86_64-linux ] + crf-chain1-constrained: [ i686-linux, x86_64-darwin, x86_64-linux ] + crf-chain2-generic: [ i686-linux, x86_64-darwin, x86_64-linux ] + crf-chain2-tiers: [ i686-linux, x86_64-darwin, x86_64-linux ] + criterion-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] + crocodile: [ i686-linux, x86_64-darwin, x86_64-linux ] + cron-compat: [ i686-linux, x86_64-darwin, x86_64-linux ] + cruncher-types: [ i686-linux, x86_64-darwin, x86_64-linux ] + crunghc: [ i686-linux, x86_64-darwin, x86_64-linux ] + crypto-cipher-benchmarks: [ i686-linux, x86_64-darwin, x86_64-linux ] + crypto-enigma: [ i686-linux, x86_64-darwin, x86_64-linux ] + cryptsy-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + crystalfontz: [ i686-linux, x86_64-darwin, x86_64-linux ] + cse-ghc-plugin: [ i686-linux, x86_64-darwin, x86_64-linux ] + csound-catalog: [ i686-linux, x86_64-linux ] + csp: [ i686-linux, x86_64-darwin, x86_64-linux ] + CSPM-cspm: [ i686-linux, x86_64-darwin, x86_64-linux ] + CSPM-FiringRules: [ i686-linux, x86_64-darwin, x86_64-linux ] + cspmchecker: [ i686-linux, x86_64-darwin, x86_64-linux ] + css: [ i686-linux, x86_64-darwin, x86_64-linux ] + ctemplate: [ i686-linux, x86_64-darwin, x86_64-linux ] + ctkl: [ i686-linux, x86_64-darwin, x86_64-linux ] + ctpl: [ i686-linux, x86_64-darwin, x86_64-linux ] + cubicbezier: [ i686-linux, x86_64-darwin, x86_64-linux ] + cuboid: [ i686-linux, x86_64-darwin ] + cudd: [ i686-linux, x86_64-linux ] + curry-base: [ i686-linux, x86_64-darwin, x86_64-linux ] + curry-frontend: [ i686-linux, x86_64-darwin, x86_64-linux ] + CurryDB: [ i686-linux, x86_64-darwin, x86_64-linux ] + curves: [ i686-linux, x86_64-darwin, x86_64-linux ] + CV: [ i686-linux, x86_64-darwin, x86_64-linux ] + cyclotomic: [ i686-linux ] + cypher: [ i686-linux, x86_64-darwin, x86_64-linux ] + DAG-Tournament: [ i686-linux, x86_64-darwin, x86_64-linux ] + Dangerous: [ i686-linux, x86_64-darwin, x86_64-linux ] + Dao: [ i686-linux, x86_64-darwin, x86_64-linux ] + dao: [ i686-linux, x86_64-darwin, x86_64-linux ] + dapi: [ i686-linux, x86_64-darwin, x86_64-linux ] + darcs-benchmark: [ i686-linux, x86_64-darwin, x86_64-linux ] + darcs-beta: [ i686-linux, x86_64-darwin, x86_64-linux ] + darcs-buildpackage: [ i686-linux, x86_64-darwin, x86_64-linux ] + darcs-cabalized: [ i686-linux, x86_64-darwin, x86_64-linux ] + darcs-fastconvert: [ i686-linux, x86_64-darwin, x86_64-linux ] + darcs-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] + darcs-monitor: [ i686-linux, x86_64-darwin, x86_64-linux ] + darcs2dot: [ i686-linux, x86_64-darwin, x86_64-linux ] + darcsden: [ i686-linux, x86_64-darwin, x86_64-linux ] + DarcsHelpers: [ i686-linux, x86_64-darwin, x86_64-linux ] + darcswatch: [ i686-linux, x86_64-darwin, x86_64-linux ] + darkplaces-demo: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-cycle: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-dispersal: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-easy: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-ivar: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-layer: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-lens-ixset: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-named: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-nat: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-object-json: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-object-yaml: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-quotientref: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-result: [ i686-linux, x86_64-darwin, x86_64-linux ] + Data-Rope: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-rope: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-rtuple: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-store: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-type: [ i686-linux, x86_64-darwin, x86_64-linux ] + datadog: [ i686-linux ] + datalog: [ i686-linux, x86_64-darwin, x86_64-linux ] + DataTreeView: [ i686-linux, x86_64-darwin, x86_64-linux ] + dbjava: [ i686-linux, x86_64-darwin, x86_64-linux ] + DBus: [ i686-linux, x86_64-darwin, x86_64-linux ] + dbus-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + dbus-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + dclabel: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-build: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-core-eval: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-core-flow: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-core-llvm: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-core-salt: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-core-simpl: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-core-tetra: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-driver: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-source-tetra: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddci-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + dead-simple-json: [ i686-linux, x86_64-darwin, x86_64-linux ] + decepticons: [ i686-linux, x86_64-darwin, x86_64-linux ] + DecisionTree: [ i686-linux, x86_64-darwin, x86_64-linux ] + decoder-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + dedukti: [ i686-linux, x86_64-darwin, x86_64-linux ] + deeplearning-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + deepseq-bounded: [ i686-linux, x86_64-darwin, x86_64-linux ] + deepseq-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + deepzoom: [ i686-linux, x86_64-darwin, x86_64-linux ] + defargs: [ i686-linux, x86_64-darwin, x86_64-linux ] + DefendTheKing: [ i686-linux, x86_64-darwin, x86_64-linux ] + definitive-base: [ i686-linux, x86_64-darwin, x86_64-linux ] + definitive-filesystem: [ i686-linux, x86_64-darwin, x86_64-linux ] + definitive-graphics: [ i686-linux, x86_64-darwin, x86_64-linux ] + definitive-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] + definitive-reactive: [ i686-linux, x86_64-darwin, x86_64-linux ] + definitive-sound: [ i686-linux, x86_64-linux ] + deka: [ i686-linux, x86_64-darwin, x86_64-linux ] + deka-tests: [ i686-linux, x86_64-darwin, x86_64-linux ] + delicious: [ i686-linux, x86_64-darwin, x86_64-linux ] + delta: [ x86_64-darwin ] + delta-h: [ i686-linux, x86_64-darwin, x86_64-linux ] + demarcate: [ i686-linux, x86_64-darwin, x86_64-linux ] + denominate: [ i686-linux, x86_64-darwin, x86_64-linux ] + dependent-state: [ i686-linux, x86_64-darwin, x86_64-linux ] + depends: [ i686-linux, x86_64-darwin, x86_64-linux ] + dephd: [ i686-linux, x86_64-darwin, x86_64-linux ] + dequeue: [ i686-linux, x86_64-darwin, x86_64-linux ] + derangement: [ i686-linux, x86_64-darwin, x86_64-linux ] + derivation-trees: [ i686-linux, x86_64-darwin, x86_64-linux ] + derive-gadt: [ i686-linux, x86_64-darwin, x86_64-linux ] + derive-IG: [ i686-linux, x86_64-darwin, x86_64-linux ] + derive-topdown: [ i686-linux, x86_64-darwin, x86_64-linux ] + derive-trie: [ i686-linux, x86_64-darwin, x86_64-linux ] + derp-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + devil: [ x86_64-darwin ] + dewdrop: [ i686-linux, x86_64-darwin, x86_64-linux ] + Dflow: [ i686-linux, x86_64-darwin, x86_64-linux ] + dfsbuild: [ i686-linux, x86_64-darwin, x86_64-linux ] + dgim: [ i686-linux, x86_64-darwin, x86_64-linux ] + dgs: [ i686-linux, x86_64-darwin, x86_64-linux ] + diagrams-builder: [ x86_64-darwin ] + diagrams-cairo: [ x86_64-darwin ] + diagrams-gtk: [ x86_64-darwin ] + diagrams-haddock: [ x86_64-darwin ] + diagrams-pandoc: [ x86_64-darwin ] + diagrams-pdf: [ i686-linux, x86_64-darwin, x86_64-linux ] + diagrams-pgf: [ i686-linux, x86_64-darwin, x86_64-linux ] + diagrams-reflex: [ i686-linux, x86_64-linux ] + diagrams-tikz: [ i686-linux, x86_64-darwin, x86_64-linux ] + dice-entropy-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + dictparser: [ i686-linux, x86_64-darwin, x86_64-linux ] + diffcabal: [ i686-linux, x86_64-darwin, x86_64-linux ] + DifferenceLogic: [ i686-linux, x86_64-darwin, x86_64-linux ] + DifferentialEvolution: [ i686-linux, x86_64-darwin, x86_64-linux ] + digestive-functors-hsp: [ i686-linux, x86_64-darwin, x86_64-linux ] + DimensionalHash: [ i686-linux, x86_64-darwin, x86_64-linux ] + dingo-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + dingo-example: [ i686-linux, x86_64-darwin, x86_64-linux ] + dingo-widgets: [ i686-linux, x86_64-darwin, x86_64-linux ] + diophantine: [ i686-linux, x86_64-darwin, x86_64-linux ] + diplomacy-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + direct-binary-files: [ i686-linux, x86_64-darwin, x86_64-linux ] + direct-fastcgi: [ i686-linux, x86_64-darwin, x86_64-linux ] + direct-http: [ i686-linux, x86_64-darwin, x86_64-linux ] + direct-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + directed-cubical: [ i686-linux, x86_64-darwin, x86_64-linux ] + dirfiles: [ i686-linux, x86_64-darwin, x86_64-linux ] + discount: [ i686-linux, x86_64-darwin, x86_64-linux ] + disjoint-set: [ i686-linux, x86_64-darwin, x86_64-linux ] + DisTract: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-process-azure: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-process-lifted: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-process-platform: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-process-registry: [ x86_64-linux ] + distributed-process-zookeeper: [ i686-linux, x86_64-darwin, x86_64-linux ] + distribution: [ i686-linux, x86_64-darwin, x86_64-linux ] + distribution-plot: [ i686-linux, x86_64-darwin, x86_64-linux ] + djembe: [ x86_64-darwin ] + djinn-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + DnaProteinAlignment: [ i686-linux, x86_64-darwin, x86_64-linux ] + dnscache: [ i686-linux, x86_64-darwin, x86_64-linux ] + dnssd: [ i686-linux, x86_64-darwin, x86_64-linux ] + doc-review: [ i686-linux, x86_64-darwin, x86_64-linux ] + doccheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + docidx: [ i686-linux, x86_64-darwin, x86_64-linux ] + dockercook: [ i686-linux, x86_64-darwin, x86_64-linux ] + DocTest: [ i686-linux, x86_64-darwin, x86_64-linux ] + doctest-discover: [ i686-linux, x86_64-darwin, x86_64-linux ] + doctest-discover-configurator: [ i686-linux, x86_64-darwin, x86_64-linux ] + DOM: [ i686-linux, x86_64-darwin, x86_64-linux ] + dow: [ x86_64-darwin ] + download: [ i686-linux, x86_64-darwin, x86_64-linux ] + download-media-content: [ i686-linux, x86_64-darwin, x86_64-linux ] + DP: [ i686-linux, x86_64-darwin, x86_64-linux ] + dph-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + dph-lifted-base: [ i686-linux, x86_64-darwin, x86_64-linux ] + dph-lifted-copy: [ i686-linux, x86_64-darwin, x86_64-linux ] + dph-lifted-vseg: [ i686-linux, x86_64-darwin, x86_64-linux ] + dph-prim-par: [ i686-linux, x86_64-darwin, x86_64-linux ] + dph-prim-seq: [ i686-linux, x86_64-darwin, x86_64-linux ] + dpkg: [ i686-linux, x86_64-linux ] + DPM: [ i686-linux, x86_64-darwin, x86_64-linux ] + drClickOn: [ i686-linux, x86_64-darwin, x86_64-linux ] + dresdner-verkehrsbetriebe: [ i686-linux, x86_64-darwin, x86_64-linux ] + DrHylo: [ i686-linux, x86_64-darwin, x86_64-linux ] + DrIFT: [ i686-linux, x86_64-darwin, x86_64-linux ] + DrIFT-cabalized: [ i686-linux, x86_64-darwin, x86_64-linux ] + dropbox-sdk: [ i686-linux, x86_64-darwin, x86_64-linux ] + dropsolve: [ i686-linux, x86_64-darwin, x86_64-linux ] + ds-kanren: [ i686-linux, x86_64-darwin, x86_64-linux ] + dsmc: [ i686-linux, x86_64-darwin, x86_64-linux ] + dsmc-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + DSTM: [ i686-linux, x86_64-darwin, x86_64-linux ] + dstring: [ i686-linux, x86_64-darwin, x86_64-linux ] + DTC: [ i686-linux, x86_64-darwin, x86_64-linux ] + dtd: [ i686-linux, x86_64-darwin, x86_64-linux ] + dtd-text: [ i686-linux, x86_64-darwin, x86_64-linux ] + dtd-types: [ i686-linux, x86_64-darwin, x86_64-linux ] + duplo: [ i686-linux, x86_64-darwin, x86_64-linux ] + Dust: [ i686-linux, x86_64-darwin, x86_64-linux ] + Dust-crypto: [ i686-linux, x86_64-darwin, x86_64-linux ] + Dust-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + Dust-tools-pcap: [ i686-linux, x86_64-darwin, x86_64-linux ] + dvda: [ i686-linux, x86_64-darwin, x86_64-linux ] + dvdread: [ i686-linux, x86_64-darwin, x86_64-linux ] + dynamic-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] + dynamic-object: [ i686-linux, x86_64-darwin, x86_64-linux ] + dynamic-plot: [ i686-linux, x86_64-darwin, x86_64-linux ] + dynamic-pp: [ i686-linux, x86_64-darwin, x86_64-linux ] + DynamicTimeWarp: [ i686-linux, x86_64-darwin, x86_64-linux ] + dynobud: [ i686-linux, x86_64-darwin, x86_64-linux ] + DysFRP-Cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] + DysFRP-Craftwerk: [ i686-linux, x86_64-darwin, x86_64-linux ] + easy-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + easyjson: [ i686-linux, x86_64-darwin, x86_64-linux ] + easyplot: [ i686-linux, x86_64-darwin, x86_64-linux ] + easyrender: [ i686-linux, x86_64-darwin, x86_64-linux ] + ebnf-bff: [ i686-linux, x86_64-darwin, x86_64-linux ] + ecdsa: [ i686-linux, x86_64-darwin, x86_64-linux ] + ecma262: [ i686-linux, x86_64-darwin, x86_64-linux ] + ecu: [ i686-linux, x86_64-darwin, x86_64-linux ] + ed25519: [ i686-linux, x86_64-darwin, x86_64-linux ] + edenmodules: [ i686-linux, x86_64-darwin, x86_64-linux ] + edenskel: [ i686-linux, x86_64-darwin, x86_64-linux ] + edentv: [ i686-linux, x86_64-darwin, x86_64-linux ] + edge: [ i686-linux, x86_64-darwin, x86_64-linux ] + edit-lenses: [ i686-linux, x86_64-darwin, x86_64-linux ] + editline: [ i686-linux, x86_64-darwin, x86_64-linux ] + EditTimeReport: [ i686-linux, x86_64-darwin, x86_64-linux ] + EEConfig: [ i686-linux, x86_64-darwin, x86_64-linux ] + effect-monad: [ i686-linux, x86_64-darwin, x86_64-linux ] + effective-aspects: [ i686-linux, x86_64-darwin, x86_64-linux ] + effective-aspects-mzv: [ i686-linux, x86_64-darwin, x86_64-linux ] + egison-quote: [ i686-linux, x86_64-darwin, x86_64-linux ] + ehaskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + ehs: [ i686-linux, x86_64-darwin, x86_64-linux ] + eibd-client-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + eigen: [ x86_64-darwin ] + EitherT: [ i686-linux, x86_64-darwin, x86_64-linux ] + ekg-rrd: [ i686-linux ] + electrum-mnemonic: [ i686-linux ] + elerea-examples: [ x86_64-darwin ] + elerea-sdl: [ x86_64-darwin ] + elision: [ i686-linux, x86_64-darwin, x86_64-linux ] + emacs-keys: [ i686-linux, x86_64-darwin, x86_64-linux ] + email: [ i686-linux, x86_64-darwin, x86_64-linux ] + email-header: [ i686-linux, x86_64-darwin, x86_64-linux ] + email-postmark: [ i686-linux, x86_64-darwin, x86_64-linux ] + embeddock: [ i686-linux, x86_64-darwin, x86_64-linux ] + embeddock-example: [ i686-linux, x86_64-darwin, x86_64-linux ] + embroidery: [ i686-linux, x86_64-darwin, x86_64-linux ] + emgm: [ i686-linux, x86_64-darwin, x86_64-linux ] + Emping: [ i686-linux, x86_64-darwin, x86_64-linux ] + Encode: [ i686-linux, x86_64-darwin, x86_64-linux ] + enumerate: [ i686-linux, x86_64-darwin, x86_64-linux ] + enumeration: [ i686-linux, x86_64-darwin, x86_64-linux ] + enumfun: [ i686-linux, x86_64-darwin, x86_64-linux ] + EnumMap: [ i686-linux, x86_64-darwin, x86_64-linux ] + enummapmap: [ i686-linux, x86_64-darwin, x86_64-linux ] + env-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] + epanet-haskell: [ x86_64-darwin ] + epic: [ x86_64-darwin ] + epoll: [ i686-linux, x86_64-darwin, x86_64-linux ] + epub-metadata: [ x86_64-darwin ] + epub-tools: [ x86_64-darwin ] + epubname: [ i686-linux, x86_64-darwin, x86_64-linux ] + Eq: [ i686-linux, x86_64-darwin, x86_64-linux ] + eros-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + error-message: [ i686-linux, x86_64-darwin, x86_64-linux ] + ersatz: [ i686-linux, x86_64-darwin, x86_64-linux ] + ersatz-toysat: [ i686-linux, x86_64-darwin, x86_64-linux ] + esotericbot: [ i686-linux, x86_64-darwin, x86_64-linux ] + EsounD: [ i686-linux, x86_64-darwin, x86_64-linux ] + estimators: [ i686-linux, x86_64-darwin, x86_64-linux ] + estreps: [ i686-linux, x86_64-darwin, x86_64-linux ] + Etage: [ i686-linux, x86_64-darwin, x86_64-linux ] + Etage-Graph: [ i686-linux, x86_64-darwin, x86_64-linux ] + EtaMOO: [ x86_64-darwin ] + eternal: [ i686-linux, x86_64-darwin, x86_64-linux ] + Eternal10Seconds: [ i686-linux, x86_64-linux ] + Etherbunny: [ i686-linux, x86_64-darwin, x86_64-linux ] + ethereum-client-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + ethereum-merkle-patricia-db: [ i686-linux, x86_64-darwin, x86_64-linux ] + euphoria: [ i686-linux, x86_64-darwin, x86_64-linux ] + eurofxref: [ i686-linux, x86_64-darwin, x86_64-linux ] + Euterpea: [ i686-linux, x86_64-linux ] + event-driven: [ i686-linux, x86_64-darwin, x86_64-linux ] + event-monad: [ i686-linux, x86_64-darwin, x86_64-linux ] + eventloop: [ i686-linux, x86_64-darwin, x86_64-linux ] + EventSocket: [ i686-linux, x86_64-darwin, x86_64-linux ] + every-bit-counts: [ i686-linux, x86_64-darwin, x86_64-linux ] + ewe: [ i686-linux, x86_64-darwin, x86_64-linux ] + exif: [ i686-linux, x86_64-darwin, x86_64-linux ] + exists: [ i686-linux, x86_64-darwin, x86_64-linux ] + exp-pairs: [ i686-linux, x86_64-darwin, x86_64-linux ] + expand: [ i686-linux, x86_64-darwin, x86_64-linux ] + expat-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + explain: [ i686-linux, x86_64-darwin, x86_64-linux ] + explicit-sharing: [ i686-linux, x86_64-darwin, x86_64-linux ] + explore: [ i686-linux, x86_64-darwin, x86_64-linux ] + exposed-containers: [ i686-linux, x86_64-darwin, x86_64-linux ] + extcore: [ i686-linux, x86_64-darwin, x86_64-linux ] + extemp: [ i686-linux, x86_64-darwin, x86_64-linux ] + extended-categories: [ i686-linux, x86_64-darwin, x86_64-linux ] + ez-couch: [ i686-linux, x86_64-darwin, x86_64-linux ] + faceted: [ i686-linux, x86_64-darwin, x86_64-linux ] + factory: [ i686-linux, x86_64-darwin, x86_64-linux ] + factual-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + FailureT: [ i686-linux, x86_64-darwin, x86_64-linux ] + falling-turnip: [ x86_64-darwin, x86_64-linux ] + fallingblocks: [ i686-linux, x86_64-linux ] + family-tree: [ i686-linux, x86_64-darwin, x86_64-linux ] + farmhash: [ x86_64-darwin ] + fast-digits: [ i686-linux ] + fast-tags: [ i686-linux, x86_64-darwin, x86_64-linux ] + fastbayes: [ i686-linux, x86_64-darwin, x86_64-linux ] + fastirc: [ i686-linux, x86_64-darwin, x86_64-linux ] + fault-tree: [ i686-linux, x86_64-darwin, x86_64-linux ] + fay-hsx: [ i686-linux, x86_64-darwin, x86_64-linux ] + fcd: [ i686-linux, x86_64-darwin, x86_64-linux ] + fckeditor: [ i686-linux, x86_64-darwin, x86_64-linux ] + FComp: [ i686-linux, x86_64-darwin, x86_64-linux ] + fdo-trash: [ i686-linux, x86_64-darwin, x86_64-linux ] + feed-cli: [ i686-linux, x86_64-darwin, x86_64-linux ] + feed-translator: [ i686-linux, x86_64-darwin, x86_64-linux ] + feed2lj: [ i686-linux, x86_64-darwin, x86_64-linux ] + feed2twitter: [ i686-linux, x86_64-darwin, x86_64-linux ] + feldspar-compiler: [ i686-linux, x86_64-darwin, x86_64-linux ] + feldspar-language: [ i686-linux, x86_64-darwin, x86_64-linux ] + fenfire: [ i686-linux, x86_64-darwin, x86_64-linux ] + FermatsLastMargin: [ i686-linux, x86_64-darwin, x86_64-linux ] + FerryCore: [ i686-linux, x86_64-darwin, x86_64-linux ] + ffeed: [ i686-linux, x86_64-darwin, x86_64-linux ] + ffmpeg-tutorials: [ i686-linux, x86_64-darwin, x86_64-linux ] + fibon: [ i686-linux, x86_64-darwin, x86_64-linux ] + fields: [ i686-linux, x86_64-darwin, x86_64-linux ] + FieldTrip: [ i686-linux, x86_64-darwin, x86_64-linux ] + fieldwise: [ i686-linux, x86_64-darwin, x86_64-linux ] + file-location: [ x86_64-darwin ] + filecache: [ x86_64-darwin ] + FileManip: [ i686-linux, x86_64-darwin, x86_64-linux ] + FileManipCompat: [ i686-linux, x86_64-darwin, x86_64-linux ] + FileSystem: [ i686-linux, x86_64-darwin, x86_64-linux ] + filesystem-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + filesystem-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + Finance-Quote-Yahoo: [ i686-linux, x86_64-darwin, x86_64-linux ] + Finance-Treasury: [ i686-linux, x86_64-darwin, x86_64-linux ] + find-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + FiniteMap: [ i686-linux, x86_64-darwin, x86_64-linux ] + firstify: [ i686-linux, x86_64-darwin, x86_64-linux ] + FirstOrderTheory: [ i686-linux, x86_64-darwin, x86_64-linux ] + fishfood: [ i686-linux, x86_64-darwin, x86_64-linux ] + fit: [ i686-linux, x86_64-darwin, x86_64-linux ] + fitsio: [ i686-linux, x86_64-darwin, x86_64-linux ] + fix-parser-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + fix-symbols-gitit: [ i686-linux, x86_64-darwin, x86_64-linux ] + fixed-point: [ i686-linux, x86_64-darwin, x86_64-linux ] + fixed-point-vector: [ i686-linux, x86_64-darwin, x86_64-linux ] + fixed-point-vector-space: [ i686-linux, x86_64-darwin, x86_64-linux ] + fixed-precision: [ i686-linux, x86_64-darwin, x86_64-linux ] + fixed-storable-array: [ i686-linux, x86_64-darwin, x86_64-linux ] + fixfile: [ i686-linux, x86_64-darwin, x86_64-linux ] + flexiwrap: [ i686-linux, x86_64-darwin, x86_64-linux ] + flexiwrap-smallcheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + flickr: [ i686-linux, x86_64-darwin, x86_64-linux ] + Flippi: [ i686-linux, x86_64-darwin, x86_64-linux ] + flite: [ i686-linux, x86_64-darwin, x86_64-linux ] + floating-bits: [ i686-linux, x86_64-darwin, x86_64-linux ] + flow2dot: [ i686-linux, x86_64-darwin, x86_64-linux ] + flowdock-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + flowdock-rest: [ i686-linux, x86_64-darwin, x86_64-linux ] + flower: [ i686-linux, x86_64-darwin, x86_64-linux ] + flowlocks-framework: [ i686-linux, x86_64-darwin, x86_64-linux ] + flowsim: [ i686-linux, x86_64-darwin, x86_64-linux ] + fluidsynth: [ x86_64-darwin ] + FM-SBLEX: [ i686-linux, x86_64-darwin, x86_64-linux ] + FModExRaw: [ i686-linux, x86_64-darwin, x86_64-linux ] + fold-debounce: [ x86_64-darwin ] + fold-debounce-conduit: [ x86_64-darwin ] + foldl-incremental: [ i686-linux, x86_64-darwin, x86_64-linux ] + folds: [ i686-linux, x86_64-linux ] + folds-common: [ i686-linux, x86_64-darwin, x86_64-linux ] + follower: [ i686-linux, x86_64-darwin, x86_64-linux ] + foma: [ i686-linux, x86_64-darwin, x86_64-linux ] + font-opengl-basic4x6: [ i686-linux, x86_64-darwin, x86_64-linux ] + foo: [ i686-linux, x86_64-darwin, x86_64-linux ] + for-free: [ i686-linux, x86_64-darwin, x86_64-linux ] + forbidden-fruit: [ i686-linux, x86_64-darwin, x86_64-linux ] + fordo: [ i686-linux, x86_64-darwin, x86_64-linux ] + formal: [ i686-linux, x86_64-darwin, x86_64-linux ] + FormalGrammars: [ i686-linux, x86_64-darwin, x86_64-linux ] + format: [ i686-linux, x86_64-darwin, x86_64-linux ] + format-status: [ i686-linux, x86_64-darwin, x86_64-linux ] + forml: [ i686-linux, x86_64-darwin, x86_64-linux ] + formlets: [ i686-linux, x86_64-darwin, x86_64-linux ] + formlets-hsp: [ i686-linux, x86_64-darwin, x86_64-linux ] + ForSyDe: [ i686-linux, x86_64-darwin, x86_64-linux ] + forth-hll: [ i686-linux, x86_64-darwin, x86_64-linux ] + foscam-sort: [ i686-linux, x86_64-darwin, x86_64-linux ] + Foster: [ i686-linux, x86_64-darwin, x86_64-linux ] + fpco-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + fpnla-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + FractalArt: [ i686-linux, x86_64-darwin, x86_64-linux ] + Fractaler: [ i686-linux, x86_64-linux ] + frag: [ i686-linux, x86_64-darwin, x86_64-linux ] + franchise: [ i686-linux, x86_64-darwin, x86_64-linux ] + Frank: [ i686-linux, x86_64-darwin, x86_64-linux ] + free-game: [ i686-linux, x86_64-darwin, x86_64-linux ] + free-operational: [ i686-linux, x86_64-darwin, x86_64-linux ] + free-theorems: [ i686-linux, x86_64-darwin, x86_64-linux ] + free-theorems-counterexamples: [ i686-linux, x86_64-darwin, x86_64-linux ] + free-theorems-seq: [ i686-linux, x86_64-darwin, x86_64-linux ] + free-theorems-seq-webui: [ i686-linux, x86_64-darwin, x86_64-linux ] + free-theorems-webui: [ i686-linux, x86_64-darwin, x86_64-linux ] + freekick2: [ i686-linux, x86_64-linux ] + freer: [ i686-linux ] + freesect: [ i686-linux, x86_64-darwin, x86_64-linux ] + freesound: [ i686-linux, x86_64-darwin, x86_64-linux ] + FreeTypeGL: [ i686-linux, x86_64-darwin, x86_64-linux ] + friday-juicypixels: [ i686-linux, x86_64-darwin, x86_64-linux ] + frp-arduino: [ i686-linux, x86_64-darwin, x86_64-linux ] + frpnow-gloss: [ x86_64-darwin ] + frpnow-gtk: [ x86_64-darwin ] + fs-events: [ i686-linux, x86_64-darwin, x86_64-linux ] + fsmActions: [ i686-linux, x86_64-darwin, x86_64-linux ] + ftdi: [ i686-linux, x86_64-darwin, x86_64-linux ] + ftp-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + ftshell: [ i686-linux, x86_64-darwin, x86_64-linux ] + full-sessions: [ i686-linux, x86_64-darwin, x86_64-linux ] + full-text-search: [ i686-linux, x86_64-darwin, x86_64-linux ] + fullstop: [ i686-linux, x86_64-darwin, x86_64-linux ] + funbot: [ i686-linux, x86_64-darwin, x86_64-linux ] + funbot-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + funbot-git-hook: [ i686-linux, x86_64-darwin, x86_64-linux ] + function-combine: [ i686-linux, x86_64-darwin, x86_64-linux ] + functional-arrow: [ i686-linux, x86_64-darwin, x86_64-linux ] + functorm: [ i686-linux, x86_64-darwin, x86_64-linux ] + FunGEn: [ x86_64-darwin ] + funion: [ i686-linux, x86_64-linux ] + funsat: [ i686-linux, x86_64-darwin, x86_64-linux ] + future: [ i686-linux, x86_64-darwin, x86_64-linux ] + fuzzytime: [ i686-linux, x86_64-darwin, x86_64-linux ] + fwgl: [ i686-linux ] + fwgl-glfw: [ i686-linux, x86_64-darwin ] + g-npm: [ i686-linux, x86_64-darwin, x86_64-linux ] + gact: [ i686-linux, x86_64-darwin, x86_64-linux ] + gameclock: [ i686-linux, x86_64-darwin, x86_64-linux ] + Gamgine: [ i686-linux, x86_64-darwin, x86_64-linux ] + Ganymede: [ i686-linux, x86_64-darwin, x86_64-linux ] + gbu: [ i686-linux, x86_64-darwin, x86_64-linux ] + gc-monitoring-wai: [ i686-linux, x86_64-darwin, x86_64-linux ] + gdiff-ig: [ i686-linux, x86_64-darwin, x86_64-linux ] + gdiff-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + gearbox: [ i686-linux, x86_64-darwin, x86_64-linux ] + GeBoP: [ x86_64-darwin ] + geek: [ i686-linux, x86_64-darwin, x86_64-linux ] + geek-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + gelatin: [ i686-linux, x86_64-darwin, x86_64-linux ] + gemstone: [ i686-linux, x86_64-linux ] + gencheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + gender: [ i686-linux, x86_64-darwin, x86_64-linux ] + genders: [ i686-linux, x86_64-darwin, x86_64-linux ] + general-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] + GeneralTicTacToe: [ i686-linux, x86_64-darwin, x86_64-linux ] + generators: [ i686-linux, x86_64-darwin, x86_64-linux ] + generic-church: [ i686-linux, x86_64-darwin, x86_64-linux ] + generic-storable: [ i686-linux, x86_64-darwin, x86_64-linux ] + generic-xml: [ i686-linux, x86_64-darwin, x86_64-linux ] + genericserialize: [ i686-linux, x86_64-darwin, x86_64-linux ] + genetics: [ i686-linux, x86_64-darwin, x86_64-linux ] + GenI: [ i686-linux, x86_64-darwin, x86_64-linux ] + geni-gui: [ i686-linux, x86_64-darwin, x86_64-linux ] + geni-util: [ i686-linux, x86_64-darwin, x86_64-linux ] + geniconvert: [ i686-linux, x86_64-darwin, x86_64-linux ] + geniserver: [ i686-linux, x86_64-darwin, x86_64-linux ] + GenSmsPdu: [ i686-linux, x86_64-darwin, x86_64-linux ] + GenussFold: [ i686-linux, x86_64-darwin, x86_64-linux ] + geo-resolver: [ i686-linux, x86_64-linux ] + GeocoderOpenCage: [ i686-linux, x86_64-darwin, x86_64-linux ] + GeoIp: [ i686-linux, x86_64-darwin, x86_64-linux ] + geoip2: [ i686-linux ] + geojson: [ x86_64-darwin ] + geom2d: [ i686-linux, x86_64-darwin ] + GeomPredicates-SSE: [ i686-linux, x86_64-darwin, x86_64-linux ] + getemx: [ i686-linux, x86_64-darwin, x86_64-linux ] + getflag: [ i686-linux, x86_64-darwin, x86_64-linux ] + ggtsTC: [ i686-linux, x86_64-darwin, x86_64-linux ] + ghc-dup: [ i686-linux, x86_64-darwin, x86_64-linux ] + ghc-events-parallel: [ i686-linux, x86_64-darwin, x86_64-linux ] + ghc-exactprint: [ x86_64-darwin ] + ghc-pkg-autofix: [ i686-linux, x86_64-darwin, x86_64-linux ] + ghc-syb: [ i686-linux, x86_64-darwin, x86_64-linux ] + ghc-vis: [ x86_64-darwin ] + ghci-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] + ghci-haskeline: [ i686-linux, x86_64-darwin, x86_64-linux ] + ghclive: [ i686-linux, x86_64-darwin, x86_64-linux ] + ght: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-atk: [ i686-linux, x86_64-darwin ] + gi-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-gdk: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-gdkpixbuf: [ i686-linux, x86_64-darwin ] + gi-gio: [ i686-linux ] + gi-girepository: [ i686-linux, x86_64-darwin ] + gi-glib: [ i686-linux ] + gi-gobject: [ i686-linux ] + gi-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-javascriptcore: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-notify: [ i686-linux, x86_64-darwin ] + gi-pango: [ i686-linux, x86_64-darwin ] + gi-poppler: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-soup: [ i686-linux, x86_64-darwin ] + gi-vte: [ i686-linux, x86_64-linux ] + gi-webkit: [ i686-linux, x86_64-linux ] + gi-webkit2: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-webkit2webextension: [ i686-linux, x86_64-darwin, x86_64-linux ] + Gifcurry: [ x86_64-darwin ] + gist: [ i686-linux, x86_64-darwin, x86_64-linux ] + git-all: [ i686-linux, x86_64-darwin, x86_64-linux ] + git-checklist: [ i686-linux, x86_64-darwin, x86_64-linux ] + git-date: [ i686-linux, x86_64-darwin, x86_64-linux ] + git-gpush: [ i686-linux, x86_64-darwin, x86_64-linux ] + git-repair: [ i686-linux, x86_64-darwin, x86_64-linux ] + gitdo: [ i686-linux, x86_64-darwin, x86_64-linux ] + github-backup: [ i686-linux, x86_64-darwin, x86_64-linux ] + github-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + gitlib-cross: [ i686-linux, x86_64-darwin, x86_64-linux ] + gitlib-s3: [ i686-linux, x86_64-darwin, x86_64-linux ] + gitlib-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + gl: [ x86_64-darwin ] + gl-capture: [ x86_64-darwin ] + glade: [ i686-linux, x86_64-darwin, x86_64-linux ] + gladexml-accessor: [ i686-linux, x86_64-darwin, x86_64-linux ] + glapp: [ x86_64-darwin ] + GLFW: [ x86_64-darwin ] + GLFW-b: [ x86_64-darwin ] + GLFW-b-demo: [ x86_64-darwin ] + GLFW-OGL: [ i686-linux, x86_64-darwin, x86_64-linux ] + GLFW-task: [ x86_64-darwin ] + GLHUI: [ x86_64-darwin ] + glicko: [ i686-linux, x86_64-darwin, x86_64-linux ] + glider-nlp: [ i686-linux, x86_64-darwin, x86_64-linux ] + GLMatrix: [ i686-linux, x86_64-darwin, x86_64-linux ] + global: [ i686-linux, x86_64-darwin, x86_64-linux ] + glome-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + GlomeTrace: [ i686-linux, x86_64-darwin, x86_64-linux ] + GlomeView: [ i686-linux, x86_64-darwin, x86_64-linux ] + gloss: [ x86_64-darwin ] + gloss-accelerate: [ x86_64-darwin ] + gloss-algorithms: [ x86_64-darwin ] + gloss-banana: [ i686-linux, x86_64-darwin, x86_64-linux ] + gloss-devil: [ i686-linux, x86_64-darwin, x86_64-linux ] + gloss-examples: [ x86_64-darwin ] + gloss-game: [ x86_64-darwin ] + gloss-juicy: [ x86_64-darwin ] + gloss-raster: [ x86_64-darwin ] + gloss-rendering: [ x86_64-darwin ] + gloss-sodium: [ x86_64-darwin ] + GLURaw: [ x86_64-darwin ] + GLUT: [ x86_64-darwin ] + GLUtil: [ i686-linux, x86_64-darwin, x86_64-linux ] + gluturtle: [ x86_64-darwin ] + gmap: [ i686-linux, x86_64-darwin, x86_64-linux ] + gmndl: [ i686-linux, x86_64-linux ] + gnome-desktop: [ i686-linux, x86_64-darwin, x86_64-linux ] + gnome-keyring: [ i686-linux, x86_64-linux ] + gnomevfs: [ i686-linux, x86_64-linux ] + gnss-converters: [ i686-linux, x86_64-darwin, x86_64-linux ] + goa: [ i686-linux, x86_64-darwin, x86_64-linux ] + goal-core: [ x86_64-darwin ] + goal-geometry: [ x86_64-darwin ] + goal-probability: [ x86_64-darwin ] + goal-simulation: [ i686-linux, x86_64-darwin, x86_64-linux ] + gofer-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] + gooey: [ i686-linux, x86_64-darwin, x86_64-linux ] + google-html5-slide: [ i686-linux, x86_64-darwin, x86_64-linux ] + google-mail-filters: [ i686-linux, x86_64-darwin, x86_64-linux ] + google-search: [ i686-linux, x86_64-darwin, x86_64-linux ] + GoogleDirections: [ i686-linux, x86_64-darwin, x86_64-linux ] + googleplus: [ i686-linux, x86_64-darwin, x86_64-linux ] + GoogleSB: [ i686-linux, x86_64-darwin, x86_64-linux ] + GoogleTranslate: [ i686-linux, x86_64-darwin, x86_64-linux ] + gopherbot: [ i686-linux, x86_64-darwin, x86_64-linux ] + gore-and-ash-demo: [ i686-linux, x86_64-darwin, x86_64-linux ] + gore-and-ash-glfw: [ x86_64-darwin ] + gpah: [ i686-linux, x86_64-darwin, x86_64-linux ] + GPipe: [ x86_64-darwin ] + GPipe-Collada: [ i686-linux, x86_64-darwin, x86_64-linux ] + GPipe-Examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + GPipe-GLFW: [ x86_64-darwin ] + GPipe-TextureLoad: [ i686-linux, x86_64-darwin, x86_64-linux ] + gps: [ i686-linux, x86_64-darwin, x86_64-linux ] + gps2htmlReport: [ i686-linux, x86_64-darwin, x86_64-linux ] + GPX: [ i686-linux, x86_64-darwin, x86_64-linux ] + gpx-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + grammar-combinators: [ i686-linux, x86_64-darwin, x86_64-linux ] + GrammarProducts: [ i686-linux, x86_64-darwin, x86_64-linux ] + grapefruit-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + grapefruit-frp: [ i686-linux, x86_64-darwin, x86_64-linux ] + grapefruit-records: [ i686-linux, x86_64-darwin, x86_64-linux ] + grapefruit-ui: [ i686-linux, x86_64-darwin, x86_64-linux ] + grapefruit-ui-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + graph-rewriting-cl: [ i686-linux, x86_64-darwin, x86_64-linux ] + graph-rewriting-gl: [ x86_64-darwin ] + graph-rewriting-lambdascope: [ x86_64-darwin ] + graph-rewriting-ski: [ x86_64-darwin ] + graph-rewriting-trs: [ x86_64-darwin ] + graph-rewriting-ww: [ x86_64-darwin ] + graph-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + Graph500: [ i686-linux, x86_64-darwin, x86_64-linux ] + Graphalyze: [ i686-linux, x86_64-darwin, x86_64-linux ] + graphbuilder: [ i686-linux, x86_64-darwin, x86_64-linux ] + GraphHammer: [ i686-linux, x86_64-darwin, x86_64-linux ] + GraphHammer-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + graphics-formats-collada: [ i686-linux, x86_64-darwin, x86_64-linux ] + graphicsFormats: [ i686-linux, x86_64-darwin, x86_64-linux ] + graphicstools: [ i686-linux, x86_64-darwin, x86_64-linux ] + graphtype: [ i686-linux, x86_64-darwin, x86_64-linux ] + graylog: [ i686-linux, x86_64-darwin, x86_64-linux ] + greencard: [ i686-linux, x86_64-darwin, x86_64-linux ] + greencard-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + greg-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + gremlin-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + Grempa: [ i686-linux, x86_64-darwin, x86_64-linux ] + gridfs: [ i686-linux, x86_64-darwin, x86_64-linux ] + grm: [ i686-linux, x86_64-darwin, x86_64-linux ] + Grow: [ i686-linux, x86_64-darwin, x86_64-linux ] + GrowlNotify: [ i686-linux, x86_64-darwin, x86_64-linux ] + gruff: [ i686-linux, x86_64-linux ] + gruff-examples: [ i686-linux, x86_64-linux ] + gsl-random: [ i686-linux, x86_64-darwin, x86_64-linux ] + gsl-random-fu: [ i686-linux, x86_64-darwin, x86_64-linux ] + gsmenu: [ i686-linux, x86_64-darwin, x86_64-linux ] + gstreamer: [ i686-linux, x86_64-darwin, x86_64-linux ] + GTALib: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtfs: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk: [ x86_64-darwin ] + gtk-helpers: [ x86_64-darwin ] + gtk-jsinput: [ x86_64-darwin ] + gtk-largeTreeStore: [ x86_64-darwin ] + gtk-mac-integration: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk-serialized-event: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk-simple-list-view: [ x86_64-darwin ] + gtk-toggle-button-list: [ x86_64-darwin ] + gtk-toy: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk-traymanager: [ x86_64-darwin ] + gtk2hs-cast-glade: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk2hs-cast-gnomevfs: [ i686-linux, x86_64-linux ] + gtk2hs-cast-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk2hs-cast-gtkglext: [ i686-linux, x86_64-linux ] + gtk2hs-cast-gtksourceview2: [ x86_64-darwin ] + gtk2hs-hello: [ x86_64-darwin ] + gtk2hs-rpn: [ i686-linux, x86_64-darwin, x86_64-linux ] + Gtk2hsGenerics: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk3: [ x86_64-darwin ] + gtk3-mac-integration: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtkglext: [ i686-linux, x86_64-linux ] + GtkGLTV: [ i686-linux, x86_64-linux ] + gtkimageview: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtkrsync: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtksourceview2: [ x86_64-darwin ] + GtkTV: [ x86_64-darwin ] + guess-combinator: [ i686-linux, x86_64-darwin, x86_64-linux ] + GuiHaskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + GuiTV: [ i686-linux, x86_64-darwin, x86_64-linux ] + gulcii: [ x86_64-darwin ] + H: [ i686-linux, x86_64-darwin ] + h-booru: [ i686-linux, x86_64-darwin, x86_64-linux ] + h-gpgme: [ i686-linux, x86_64-darwin, x86_64-linux ] + haar: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hach: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-contrib-press: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-frontend-happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-handler-epoll: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-handler-evhttp: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-handler-fastcgi: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-handler-happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-handler-hyena: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-handler-kibro: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-handler-simpleserver: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-middleware-cleanpath: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-middleware-clientsession: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-middleware-jsonp: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack2-handler-happstack-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack2-handler-mongrel2-http: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack2-handler-warp: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack2-interface-wai: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackage-proxy: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackage-repo-tool: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackage-security: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackage-security-HTTP: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackage-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackage-sparks: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackage2hwn: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackage2twitter: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackernews: [ i686-linux, x86_64-darwin, x86_64-linux ] + HackMail: [ i686-linux, x86_64-darwin, x86_64-linux ] + hactor: [ i686-linux, x86_64-darwin, x86_64-linux ] + haddock-leksah: [ i686-linux, x86_64-darwin, x86_64-linux ] + haggis: [ i686-linux, x86_64-darwin, x86_64-linux ] + Haggressive: [ i686-linux, x86_64-darwin, x86_64-linux ] + haiji: [ i686-linux, x86_64-darwin, x86_64-linux ] + hairy: [ i686-linux, x86_64-darwin, x86_64-linux ] + hakaru: [ i686-linux, x86_64-darwin, x86_64-linux ] + hakismet: [ i686-linux, x86_64-darwin, x86_64-linux ] + hakyll-agda: [ i686-linux, x86_64-darwin, x86_64-linux ] + hakyll-blaze-templates: [ i686-linux, x86_64-darwin, x86_64-linux ] + hakyll-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] + hakyll-contrib-links: [ i686-linux, x86_64-darwin, x86_64-linux ] + hakyll-convert: [ i686-linux, x86_64-darwin, x86_64-linux ] + hakyll-R: [ i686-linux, x86_64-darwin, x86_64-linux ] + halberd: [ i686-linux, x86_64-darwin, x86_64-linux ] + HaLeX: [ i686-linux, x86_64-darwin, x86_64-linux ] + halfs: [ i686-linux, x86_64-linux ] + halipeto: [ i686-linux, x86_64-darwin, x86_64-linux ] + halma: [ x86_64-darwin ] + hamid: [ x86_64-darwin ] + hampp: [ i686-linux, x86_64-darwin, x86_64-linux ] + hamtmap: [ i686-linux, x86_64-darwin, x86_64-linux ] + hamusic: [ i686-linux, x86_64-darwin, x86_64-linux ] + handa-opengl: [ x86_64-darwin ] + handsy: [ i686-linux, x86_64-darwin, x86_64-linux ] + hannahci: [ i686-linux, x86_64-darwin, x86_64-linux ] + haphviz: [ i686-linux, x86_64-darwin, x86_64-linux ] + happindicator: [ i686-linux, x86_64-darwin, x86_64-linux ] + happindicator3: [ i686-linux, x86_64-darwin, x86_64-linux ] + happraise: [ i686-linux, x86_64-darwin, x86_64-linux ] + HAppS-Data: [ i686-linux, x86_64-darwin, x86_64-linux ] + happs-hsp: [ i686-linux, x86_64-darwin, x86_64-linux ] + happs-hsp-template: [ i686-linux, x86_64-darwin, x86_64-linux ] + HAppS-IxSet: [ i686-linux, x86_64-darwin, x86_64-linux ] + HAppS-Server: [ i686-linux, x86_64-darwin, x86_64-linux ] + HAppS-State: [ i686-linux, x86_64-darwin, x86_64-linux ] + happs-tutorial: [ i686-linux, x86_64-darwin, x86_64-linux ] + HAppS-Util: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-auth: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-data: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-dlg: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-facebook: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-fay: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-heist: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-helpers: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-ixset: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-monad-peel: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-state: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-static-routing: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-util: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-yui: [ i686-linux, x86_64-darwin, x86_64-linux ] + happybara: [ i686-linux, x86_64-darwin, x86_64-linux ] + happybara-webkit: [ i686-linux, x86_64-darwin, x86_64-linux ] + happybara-webkit-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + harchive: [ i686-linux, x86_64-darwin, x86_64-linux ] + hardware-edsl: [ i686-linux, x86_64-darwin, x86_64-linux ] + HaRe: [ x86_64-darwin ] + hark: [ i686-linux, x86_64-darwin, x86_64-linux ] + HARM: [ i686-linux, x86_64-darwin, x86_64-linux ] + harmony: [ i686-linux, x86_64-darwin, x86_64-linux ] + HarmTrace: [ i686-linux, x86_64-darwin, x86_64-linux ] + HarmTrace-Base: [ i686-linux, x86_64-darwin, x86_64-linux ] + haroonga: [ i686-linux, x86_64-darwin, x86_64-linux ] + haroonga-httpd: [ i686-linux, x86_64-darwin, x86_64-linux ] + has: [ i686-linux, x86_64-darwin, x86_64-linux ] + has-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + hascal: [ i686-linux, x86_64-darwin, x86_64-linux ] + hascat: [ i686-linux, x86_64-darwin, x86_64-linux ] + hascat-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + hascat-setup: [ i686-linux, x86_64-darwin, x86_64-linux ] + hascat-system: [ i686-linux, x86_64-darwin, x86_64-linux ] + Haschoo: [ i686-linux, x86_64-darwin, x86_64-linux ] + HasGP: [ i686-linux, x86_64-darwin, x86_64-linux ] + hash: [ i686-linux, x86_64-darwin, x86_64-linux ] + hashable-generics: [ i686-linux, x86_64-darwin, x86_64-linux ] + hashed-storage: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hashell: [ i686-linux, x86_64-darwin, x86_64-linux ] + hashids: [ i686-linux, x86_64-darwin, x86_64-linux ] + hasim: [ i686-linux, x86_64-darwin, x86_64-linux ] + hask: [ i686-linux, x86_64-darwin, x86_64-linux ] + hask-home: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskanoid: [ i686-linux ] + haskarrow: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskeem: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskeline-class: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-aliyun: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-awk: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-brainfuck: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-cnc: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-course-preludes: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-formatter: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-ftp: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-gi: [ i686-linux, x86_64-darwin ] + haskell-gi-base: [ i686-linux ] + haskell-mpfr: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-names: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-openflow: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-pdf-presenter: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-platform-test: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-plot: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-reflect: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-rules: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-src-meta-mwotton: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-token-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-tor: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-type-exts: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-tyrant: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-xmpp: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell2010: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell98: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-connect-hdbc: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-connect-hdbc-catchio-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-connect-hdbc-catchio-tf: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-connect-hdbc-catchio-transformers: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-connect-hdbc-lifted: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-dynamic: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-hdbc-mysql: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-hsql: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-hsql-mysql: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-hsql-odbc: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-hsql-postgresql: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-hsql-sqlite3: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-wx: [ i686-linux, x86_64-darwin, x86_64-linux ] + HaskellLM: [ i686-linux, x86_64-darwin, x86_64-linux ] + HaskellNN: [ i686-linux, x86_64-darwin, x86_64-linux ] + Haskelloids: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskellscrabble: [ i686-linux, x86_64-darwin, x86_64-linux ] + HaskellTorrent: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskgame: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskheap: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskhol-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoin: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoin-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoin-crypto: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoin-node: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoin-protocol: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoin-script: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoin-util: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoin-wallet: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoon: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoon-httpspec: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoon-salvia: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskore: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskore-realtime: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskore-supercollider: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskore-synthesizer: [ i686-linux, x86_64-darwin, x86_64-linux ] + haslo: [ i686-linux, x86_64-darwin, x86_64-linux ] + hasloGUI: [ i686-linux, x86_64-darwin, x86_64-linux ] + hasparql-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + hasql-postgres: [ i686-linux, x86_64-darwin, x86_64-linux ] + hasql-postgres-options: [ i686-linux, x86_64-darwin, x86_64-linux ] + haste-perch: [ i686-linux, x86_64-darwin, x86_64-linux ] + hat: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hate: [ i686-linux, x86_64-darwin, x86_64-linux ] + hatex-guide: [ i686-linux, x86_64-darwin, x86_64-linux ] + HaTeX-meta: [ i686-linux, x86_64-darwin, x86_64-linux ] + haverer: [ i686-linux, x86_64-darwin, x86_64-linux ] + HaVSA: [ i686-linux, x86_64-darwin, x86_64-linux ] + hawitter: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hawk: [ i686-linux, x86_64-darwin, x86_64-linux ] + haxparse: [ i686-linux, x86_64-darwin, x86_64-linux ] + hayland: [ i686-linux, x86_64-linux ] + Hayoo: [ i686-linux, x86_64-darwin, x86_64-linux ] + hayoo-cli: [ i686-linux, x86_64-darwin, x86_64-linux ] + hback: [ i686-linux, x86_64-darwin, x86_64-linux ] + hbayes: [ i686-linux, x86_64-darwin, x86_64-linux ] + hbb: [ i686-linux, x86_64-darwin, x86_64-linux ] + hBDD-CMUBDD: [ i686-linux, x86_64-darwin, x86_64-linux ] + hBDD-CUDD: [ i686-linux, x86_64-linux ] + hbeat: [ i686-linux, x86_64-linux ] + hblas: [ i686-linux, x86_64-linux ] + hblock: [ i686-linux, x86_64-darwin, x86_64-linux ] + hbro: [ i686-linux, x86_64-linux ] + hburg: [ i686-linux, x86_64-darwin, x86_64-linux ] + HCard: [ i686-linux, x86_64-darwin, x86_64-linux ] + hcheat: [ i686-linux, x86_64-darwin, x86_64-linux ] + hchesslib: [ i686-linux, x86_64-darwin, x86_64-linux ] + HCL: [ i686-linux, x86_64-darwin, x86_64-linux ] + hcron: [ i686-linux, x86_64-darwin, x86_64-linux ] + hCsound: [ i686-linux, x86_64-darwin, x86_64-linux ] + hcube: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdaemonize-buildfix: [ i686-linux, x86_64-darwin, x86_64-linux ] + HDBC-mysql: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdbi: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdbi-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdbi-postgresql: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdbi-sqlite: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdbi-tests: [ i686-linux, x86_64-darwin, x86_64-linux ] + hDFA: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdigest: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdirect: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdis86: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdiscount: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdm: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdph: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdph-closure: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdr-histogram: [ i686-linux ] + HDRUtils: [ i686-linux, x86_64-darwin, x86_64-linux ] + hecc: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hedi: [ i686-linux, x86_64-darwin, x86_64-linux ] + hedn: [ i686-linux, x86_64-darwin, x86_64-linux ] + heist-aeson: [ i686-linux, x86_64-darwin, x86_64-linux ] + helics: [ i686-linux, x86_64-linux ] + helics-wai: [ i686-linux, x86_64-linux ] + helium: [ i686-linux, x86_64-darwin, x86_64-linux ] + hell: [ i686-linux, x86_64-darwin, x86_64-linux ] + hellage: [ i686-linux, x86_64-darwin, x86_64-linux ] + hellnet: [ i686-linux, x86_64-darwin, x86_64-linux ] + helm: [ i686-linux, x86_64-darwin, x86_64-linux ] + hemkay: [ i686-linux, x86_64-darwin, x86_64-linux ] + hen: [ i686-linux, x86_64-darwin, x86_64-linux ] + henet: [ i686-linux, x86_64-darwin, x86_64-linux ] + hepevt: [ i686-linux, x86_64-darwin, x86_64-linux ] + her-lexer: [ i686-linux, x86_64-darwin, x86_64-linux ] + her-lexer-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + HERA: [ i686-linux, x86_64-darwin, x86_64-linux ] + herbalizer: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hermes: [ i686-linux, x86_64-darwin, x86_64-linux ] + hermit: [ i686-linux, x86_64-darwin, x86_64-linux ] + hermit-syb: [ i686-linux, x86_64-darwin, x86_64-linux ] + herringbone: [ i686-linux, x86_64-darwin, x86_64-linux ] + herringbone-embed: [ i686-linux, x86_64-darwin, x86_64-linux ] + herringbone-wai: [ i686-linux, x86_64-darwin, x86_64-linux ] + hesh: [ i686-linux, x86_64-darwin, x86_64-linux ] + hesql: [ i686-linux, x86_64-darwin, x86_64-linux ] + hetris: [ i686-linux, x86_64-darwin, x86_64-linux ] + heukarya: [ i686-linux, x86_64-darwin, x86_64-linux ] + hevolisa: [ i686-linux, x86_64-darwin, x86_64-linux ] + hevolisa-dph: [ i686-linux, x86_64-darwin, x86_64-linux ] + hexpat-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] + hexpat-pickle-generic: [ i686-linux, x86_64-darwin, x86_64-linux ] + hexquote: [ i686-linux, x86_64-darwin, x86_64-linux ] + hF2: [ i686-linux, x86_64-darwin, x86_64-linux ] + hfann: [ i686-linux, x86_64-darwin, x86_64-linux ] + hfd: [ i686-linux, x86_64-darwin, x86_64-linux ] + hfiar: [ i686-linux, x86_64-darwin, x86_64-linux ] + hfmt: [ i686-linux, x86_64-darwin, x86_64-linux ] + hfoil: [ i686-linux, x86_64-darwin, x86_64-linux ] + hfractal: [ i686-linux, x86_64-darwin, x86_64-linux ] + HFrequencyQueue: [ i686-linux, x86_64-darwin, x86_64-linux ] + hfusion: [ i686-linux, x86_64-darwin, x86_64-linux ] + hg-buildpackage: [ i686-linux, x86_64-darwin, x86_64-linux ] + hgalib: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-API: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-Audio: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-Bullet-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-CAudio-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-CEGUI-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-Common: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-Data: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-Enet-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-Graphics3D: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-GUI: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-InputSystem: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-Network: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-Ogre-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-OIS-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-SDL2-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-SFML-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-WinEvent: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-Wire: [ i686-linux, x86_64-darwin, x86_64-linux ] + hgen: [ i686-linux, x86_64-darwin, x86_64-linux ] + hgeometric: [ i686-linux, x86_64-darwin, x86_64-linux ] + hgeometry: [ i686-linux, x86_64-darwin, x86_64-linux ] + hgithub: [ i686-linux, x86_64-darwin, x86_64-linux ] + hgom: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGraphStorage: [ i686-linux, x86_64-darwin, x86_64-linux ] + hgrib: [ i686-linux, x86_64-darwin, x86_64-linux ] + hharp: [ i686-linux, x86_64-darwin, x86_64-linux ] + HHDL: [ i686-linux, x86_64-darwin, x86_64-linux ] + hiccup: [ i686-linux, x86_64-darwin, x86_64-linux ] + hichi: [ i686-linux, x86_64-darwin, x86_64-linux ] + hieraclus: [ i686-linux, x86_64-darwin, x86_64-linux ] + hierarchical-clustering-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] + hiernotify: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hieroglyph: [ i686-linux, x86_64-linux ] + HiggsSet: [ i686-linux, x86_64-darwin, x86_64-linux ] + higher-leveldb: [ x86_64-darwin ] + higherorder: [ i686-linux, x86_64-darwin, x86_64-linux ] + highjson: [ i686-linux ] + highWaterMark: [ i686-linux, x86_64-darwin, x86_64-linux ] + himg: [ i686-linux, x86_64-darwin, x86_64-linux ] + himpy: [ i686-linux, x86_64-darwin, x86_64-linux ] + hinduce-classifier: [ i686-linux, x86_64-darwin, x86_64-linux ] + hinduce-classifier-decisiontree: [ i686-linux, x86_64-darwin, x86_64-linux ] + hinduce-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + hinvaders: [ i686-linux, x86_64-darwin, x86_64-linux ] + hinze-streams: [ i686-linux, x86_64-darwin, x86_64-linux ] + hip: [ i686-linux, x86_64-darwin, x86_64-linux ] + hipchat-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + hipe: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hipmunk: [ x86_64-darwin ] + HipmunkPlayground: [ x86_64-darwin ] + hircules: [ i686-linux, x86_64-darwin, x86_64-linux ] + hirt: [ i686-linux, x86_64-darwin, x86_64-linux ] + hissmetrics: [ i686-linux, x86_64-darwin, x86_64-linux ] + hist-pl: [ i686-linux, x86_64-darwin, x86_64-linux ] + hist-pl-fusion: [ i686-linux, x86_64-darwin, x86_64-linux ] + hist-pl-lmf: [ i686-linux, x86_64-darwin, x86_64-linux ] + historian: [ i686-linux, x86_64-darwin, x86_64-linux ] + hjs: [ i686-linux, x86_64-darwin, x86_64-linux ] + hjsonschema: [ i686-linux, x86_64-darwin, x86_64-linux ] + HJVM: [ i686-linux, x86_64-darwin, x86_64-linux ] + hlbfgsb: [ i686-linux, x86_64-darwin, x86_64-linux ] + hlcm: [ i686-linux, x86_64-darwin, x86_64-linux ] + HLearn-algebra: [ i686-linux, x86_64-darwin, x86_64-linux ] + HLearn-approximation: [ i686-linux, x86_64-darwin, x86_64-linux ] + HLearn-classification: [ i686-linux, x86_64-darwin, x86_64-linux ] + HLearn-datastructures: [ i686-linux, x86_64-darwin, x86_64-linux ] + HLearn-distributions: [ i686-linux, x86_64-darwin, x86_64-linux ] + hledger-chart: [ i686-linux, x86_64-darwin, x86_64-linux ] + hledger-vty: [ i686-linux, x86_64-darwin, x86_64-linux ] + hlibev: [ i686-linux, x86_64-darwin, x86_64-linux ] + hlibfam: [ i686-linux, x86_64-linux ] + HLogger: [ i686-linux, x86_64-darwin, x86_64-linux ] + hlogger: [ i686-linux, x86_64-darwin, x86_64-linux ] + hly: [ i686-linux, x86_64-darwin, x86_64-linux ] + HMap: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmark: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmarkup: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmatrix-banded: [ i686-linux, x86_64-linux ] + hmatrix-mmap: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmatrix-nipals: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmatrix-quadprogpp: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmatrix-repa: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmatrix-special: [ i686-linux, x86_64-linux ] + hmatrix-static: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmatrix-svdlibc: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmatrix-syntax: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmeap: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmeap-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmenu: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmidi: [ x86_64-darwin ] + hmk: [ i686-linux, x86_64-darwin, x86_64-linux ] + HMM: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmm: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmm-hmatrix: [ i686-linux, x86_64-darwin, x86_64-linux ] + hMollom: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmp3: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hmpf: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmpfr: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmumps: [ i686-linux, x86_64-darwin, x86_64-linux ] + hnetcdf: [ i686-linux, x86_64-darwin, x86_64-linux ] + HNM: [ i686-linux, x86_64-darwin, x86_64-linux ] + hnn: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoauth: [ i686-linux, x86_64-darwin, x86_64-linux ] + hob: [ i686-linux, x86_64-linux ] + hobbes: [ i686-linux, x86_64-darwin, x86_64-linux ] + hobbits: [ i686-linux, x86_64-darwin, x86_64-linux ] + HODE: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hoed: [ i686-linux, x86_64-darwin, x86_64-linux ] + hofix-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] + hog: [ i686-linux, x86_64-darwin, x86_64-linux ] + hogg: [ i686-linux, x86_64-darwin, x86_64-linux ] + hogre: [ i686-linux, x86_64-darwin, x86_64-linux ] + hogre-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + hois: [ i686-linux, x86_64-darwin, x86_64-linux ] + hole: [ i686-linux, x86_64-darwin, x86_64-linux ] + Holumbus-Distribution: [ i686-linux, x86_64-darwin, x86_64-linux ] + Holumbus-MapReduce: [ i686-linux, x86_64-darwin, x86_64-linux ] + Holumbus-Searchengine: [ i686-linux, x86_64-darwin, x86_64-linux ] + Holumbus-Storage: [ i686-linux, x86_64-darwin, x86_64-linux ] + homeomorphic: [ i686-linux, x86_64-darwin, x86_64-linux ] + hommage: [ i686-linux, x86_64-darwin, x86_64-linux ] + homplexity: [ i686-linux, x86_64-darwin, x86_64-linux ] + HongoDB: [ i686-linux, x86_64-darwin, x86_64-linux ] + honi: [ i686-linux, x86_64-linux ] + honk: [ x86_64-darwin ] + hood-off: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoodie: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoodle: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoodle-builder: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoodle-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoodle-extra: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoodle-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoodle-publish: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoodle-render: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoodle-types: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoovie: [ i686-linux, x86_64-darwin, x86_64-linux ] + hopencc: [ i686-linux, x86_64-darwin, x86_64-linux ] + hopencl: [ i686-linux, x86_64-darwin, x86_64-linux ] + hopfield: [ i686-linux, x86_64-darwin, x86_64-linux ] + hops: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoq: [ i686-linux, x86_64-darwin, x86_64-linux ] + hosts-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + hothasktags: [ i686-linux, x86_64-darwin, x86_64-linux ] + hourglass-fuzzy-parsing: [ i686-linux, x86_64-darwin, x86_64-linux ] + hp2any-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + hp2any-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] + hp2any-manager: [ i686-linux, x86_64-linux ] + hpage: [ i686-linux, x86_64-darwin, x86_64-linux ] + hpapi: [ i686-linux, x86_64-darwin, x86_64-linux ] + hpaste: [ i686-linux, x86_64-darwin, x86_64-linux ] + hpasteit: [ i686-linux, x86_64-darwin, x86_64-linux ] + HPath: [ i686-linux, x86_64-darwin, x86_64-linux ] + hpc-tracer: [ i686-linux, x86_64-darwin, x86_64-linux ] + hPDB-examples: [ x86_64-darwin ] + HPi: [ i686-linux, x86_64-darwin, x86_64-linux ] + hplayground: [ i686-linux, x86_64-darwin, x86_64-linux ] + hplaylist: [ i686-linux, x86_64-darwin, x86_64-linux ] + HPlot: [ i686-linux, x86_64-darwin, x86_64-linux ] + hpodder: [ i686-linux, x86_64-darwin, x86_64-linux ] + HPong: [ i686-linux, x86_64-darwin, x86_64-linux ] + hpqtypes: [ x86_64-darwin ] + hprotoc-fork: [ i686-linux, x86_64-darwin, x86_64-linux ] + hps-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] + hpylos: [ i686-linux, x86_64-darwin, x86_64-linux ] + hquantlib: [ i686-linux, x86_64-linux ] + hR: [ i686-linux, x86_64-darwin, x86_64-linux ] + hranker: [ i686-linux, x86_64-darwin, x86_64-linux ] + HRay: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hricket: [ i686-linux, x86_64-darwin, x86_64-linux ] + HROOT: [ i686-linux, x86_64-darwin, x86_64-linux ] + HROOT-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + HROOT-graf: [ i686-linux, x86_64-darwin, x86_64-linux ] + HROOT-hist: [ i686-linux, x86_64-darwin, x86_64-linux ] + HROOT-io: [ i686-linux, x86_64-darwin, x86_64-linux ] + HROOT-math: [ i686-linux, x86_64-darwin, x86_64-linux ] + hruby: [ i686-linux ] + hs-carbon-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-cdb: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-dotnet: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-duktape: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-ffmpeg: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-fltk: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-gchart: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-gen-iface: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-GeoIP: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-java: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-json-rpc: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-logo: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-mesos: [ i686-linux, x86_64-linux ] + hs-nombre-generator: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-pgms: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-pkpass: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-twitter: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-twitterarchiver: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-vcard: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs2bf: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs2dot: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hs2lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsbackup: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsbencher-fusion: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc2hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc3-auditor: [ x86_64-darwin ] + hsc3-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc3-data: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc3-forth: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc3-graphs: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc3-lang: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc3-lisp: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc3-plot: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc3-rec: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc3-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc3-sf-hsndfile: [ x86_64-darwin ] + hsc3-unsafe: [ i686-linux, x86_64-darwin, x86_64-linux ] + hscamwire: [ i686-linux, x86_64-darwin, x86_64-linux ] + hscassandra: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsclock: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsdip: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsdns-cache: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hsed: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsfacter: [ i686-linux, x86_64-darwin, x86_64-linux ] + HSFFIG: [ i686-linux, x86_64-darwin, x86_64-linux ] + HSGEP: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsgnutls: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsgnutls-yj: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsgsom: [ i686-linux, x86_64-darwin, x86_64-linux ] + HsHaruPDF: [ i686-linux, x86_64-darwin, x86_64-linux ] + HSHHelpers: [ i686-linux, x86_64-darwin, x86_64-linux ] + HsHyperEstraier: [ i686-linux, x86_64-darwin, x86_64-linux ] + hSimpleDB: [ i686-linux, x86_64-darwin, x86_64-linux ] + HsJudy: [ i686-linux, x86_64-darwin, x86_64-linux ] + hskeleton: [ i686-linux, x86_64-darwin, x86_64-linux ] + hslackbuilder: [ i686-linux, x86_64-darwin, x86_64-linux ] + hslibsvm: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsmagick: [ i686-linux, x86_64-darwin, x86_64-linux ] + HSmarty: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hsmtlib: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsmtpclient: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsndfile: [ x86_64-darwin ] + hsndfile-storablevector: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsndfile-vector: [ x86_64-darwin ] + hsnock: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsns: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsntp: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsoptions: [ i686-linux, x86_64-darwin, x86_64-linux ] + HSoundFile: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsp-cgi: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsparql: [ i686-linux, x86_64-darwin, x86_64-linux ] + hspear: [ i686-linux, x86_64-darwin, x86_64-linux ] + hspec-experimental: [ i686-linux, x86_64-darwin, x86_64-linux ] + hspec-shouldbe: [ i686-linux, x86_64-darwin, x86_64-linux ] + HsPerl5: [ i686-linux, x86_64-darwin, x86_64-linux ] + hspread: [ i686-linux, x86_64-darwin, x86_64-linux ] + hspresent: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsprocess: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsql-mysql: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsqml-datamodel: [ i686-linux, x86_64-linux ] + hsqml-datamodel-vinyl: [ i686-linux, x86_64-linux ] + hsqml-demo-morris: [ i686-linux ] + hsqml-demo-samples: [ i686-linux, x86_64-linux ] + hsqml-morris: [ i686-linux, x86_64-linux ] + hsseccomp: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsshellscript: [ x86_64-darwin ] + hssourceinfo: [ x86_64-darwin ] + hsSqlite3: [ i686-linux, x86_64-darwin, x86_64-linux ] + HsSVN: [ i686-linux, x86_64-darwin, x86_64-linux ] + hstest: [ i686-linux, x86_64-darwin, x86_64-linux ] + hstidy: [ i686-linux, x86_64-darwin, x86_64-linux ] + hstorchat: [ i686-linux, x86_64-linux ] + hstradeking: [ i686-linux, x86_64-darwin, x86_64-linux ] + HStringTemplateHelpers: [ i686-linux, x86_64-darwin, x86_64-linux ] + hstyle: [ i686-linux, x86_64-darwin, x86_64-linux ] + hstzaar: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsubconvert: [ i686-linux, x86_64-darwin, x86_64-linux ] + HSvm: [ i686-linux, x86_64-darwin, x86_64-linux ] + hswip: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsx: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsx-xhtml: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsXenCtrl: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsyscall: [ i686-linux, x86_64-darwin, x86_64-linux ] + hszephyr: [ i686-linux, x86_64-darwin, x86_64-linux ] + HTab: [ i686-linux, x86_64-darwin, x86_64-linux ] + hTalos: [ i686-linux, x86_64-darwin, x86_64-linux ] + HTicTacToe: [ i686-linux, x86_64-darwin, x86_64-linux ] + html-entities: [ i686-linux, x86_64-darwin, x86_64-linux ] + html-rules: [ i686-linux, x86_64-darwin, x86_64-linux ] + htoml: [ i686-linux, x86_64-darwin, x86_64-linux ] + htsn-import: [ i686-linux, x86_64-darwin, x86_64-linux ] + http-client-request-modifiers: [ i686-linux, x86_64-darwin, x86_64-linux ] + http-conduit-browser: [ i686-linux, x86_64-darwin, x86_64-linux ] + http-conduit-downloader: [ i686-linux, x86_64-darwin, x86_64-linux ] + http-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + http-monad: [ i686-linux, x86_64-darwin, x86_64-linux ] + http-proxy: [ i686-linux, x86_64-darwin, x86_64-linux ] + http-shed: [ i686-linux, x86_64-darwin, x86_64-linux ] + https-everywhere-rules: [ i686-linux, x86_64-darwin, x86_64-linux ] + httpspec: [ i686-linux, x86_64-darwin, x86_64-linux ] + htune: [ i686-linux, x86_64-linux ] + htzaar: [ x86_64-darwin ] + hubris: [ i686-linux, x86_64-darwin, x86_64-linux ] + hugs2yc: [ i686-linux, x86_64-darwin, x86_64-linux ] + hulk: [ i686-linux, x86_64-darwin, x86_64-linux ] + HulkImport: [ i686-linux, x86_64-darwin, x86_64-linux ] + hums: [ i686-linux, x86_64-darwin, x86_64-linux ] + HUnit-Diff: [ i686-linux, x86_64-darwin, x86_64-linux ] + hunit-gui: [ i686-linux, x86_64-darwin, x86_64-linux ] + HUnit-Plus: [ i686-linux, x86_64-darwin, x86_64-linux ] + hunit-rematch: [ i686-linux, x86_64-darwin, x86_64-linux ] + hunt-searchengine: [ i686-linux, x86_64-darwin, x86_64-linux ] + hunt-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + hurdle: [ i686-linux, x86_64-darwin, x86_64-linux ] + husky: [ i686-linux, x86_64-darwin, x86_64-linux ] + hutton: [ i686-linux, x86_64-darwin, x86_64-linux ] + huzzy: [ i686-linux, x86_64-darwin, x86_64-linux ] + hVOIDP: [ i686-linux, x86_64-linux ] + hws: [ i686-linux, x86_64-darwin, x86_64-linux ] + hXmixer: [ x86_64-darwin ] + HXMPP: [ i686-linux, x86_64-darwin, x86_64-linux ] + hxmppc: [ i686-linux, x86_64-darwin, x86_64-linux ] + hxournal: [ i686-linux, x86_64-darwin, x86_64-linux ] + hxt-binary: [ i686-linux, x86_64-darwin, x86_64-linux ] + hxt-filter: [ i686-linux, x86_64-darwin, x86_64-linux ] + hxthelper: [ i686-linux, x86_64-darwin, x86_64-linux ] + hxweb: [ i686-linux, x86_64-darwin, x86_64-linux ] + hybrid: [ i686-linux, x86_64-darwin, x86_64-linux ] + hydra-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + hydrogen-cli: [ i686-linux, x86_64-darwin, x86_64-linux ] + hydrogen-cli-args: [ i686-linux, x86_64-darwin, x86_64-linux ] + hydrogen-data: [ i686-linux, x86_64-darwin, x86_64-linux ] + hydrogen-parsing: [ i686-linux, x86_64-darwin, x86_64-linux ] + hydrogen-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] + hydrogen-prelude-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + hydrogen-syntax: [ i686-linux, x86_64-darwin, x86_64-linux ] + hydrogen-util: [ i686-linux, x86_64-darwin, x86_64-linux ] + hyena: [ i686-linux, x86_64-darwin, x86_64-linux ] + hylolib: [ i686-linux, x86_64-darwin, x86_64-linux ] + hylotab: [ i686-linux, x86_64-darwin, x86_64-linux ] + hyloutils: [ i686-linux, x86_64-darwin, x86_64-linux ] + hyperdrive: [ i686-linux, x86_64-darwin, x86_64-linux ] + hyperpublic: [ i686-linux, x86_64-darwin, x86_64-linux ] + hypher: [ i686-linux, x86_64-darwin, x86_64-linux ] + i18n: [ i686-linux, x86_64-darwin, x86_64-linux ] + ideas: [ i686-linux, x86_64-darwin, x86_64-linux ] + ideas-math: [ i686-linux, x86_64-darwin, x86_64-linux ] + idiii: [ i686-linux, x86_64-darwin, x86_64-linux ] + idna2008: [ i686-linux, x86_64-darwin, x86_64-linux ] + idris: [ i686-linux, x86_64-darwin, x86_64-linux ] + IDynamic: [ i686-linux, x86_64-darwin, x86_64-linux ] + ieee-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + iException: [ i686-linux, x86_64-darwin, x86_64-linux ] + IFS: [ i686-linux, x86_64-darwin, x86_64-linux ] + ige-mac-integration: [ i686-linux, x86_64-darwin, x86_64-linux ] + igraph: [ i686-linux, x86_64-darwin, x86_64-linux ] + ihaskell-diagrams: [ x86_64-darwin ] + ihaskell-inline-r: [ i686-linux, x86_64-darwin, x86_64-linux ] + ihaskell-plot: [ x86_64-darwin ] + ihaskell-widgets: [ i686-linux, x86_64-darwin, x86_64-linux ] + ihttp: [ i686-linux, x86_64-darwin, x86_64-linux ] + illuminate: [ i686-linux, x86_64-darwin, x86_64-linux ] + imagemagick: [ i686-linux, x86_64-darwin ] + imagepaste: [ i686-linux, x86_64-darwin, x86_64-linux ] + imap: [ i686-linux, x86_64-darwin, x86_64-linux ] + imbib: [ i686-linux, x86_64-linux ] + imgurder: [ i686-linux, x86_64-darwin, x86_64-linux ] + imm: [ i686-linux, x86_64-darwin, x86_64-linux ] + imparse: [ i686-linux, x86_64-darwin, x86_64-linux ] + imperative-edsl: [ i686-linux, x86_64-darwin ] + imperative-edsl-vhdl: [ i686-linux, x86_64-darwin, x86_64-linux ] + ImperativeHaskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + improve: [ i686-linux, x86_64-darwin, x86_64-linux ] + INblobs: [ i686-linux, x86_64-darwin, x86_64-linux ] + inch: [ i686-linux, x86_64-darwin, x86_64-linux ] + incremental-computing: [ i686-linux, x86_64-darwin, x86_64-linux ] + incremental-sat-solver: [ i686-linux, x86_64-darwin, x86_64-linux ] + increments: [ i686-linux, x86_64-darwin, x86_64-linux ] + index-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + indian-language-font-converter: [ x86_64-darwin ] + indices: [ i686-linux, x86_64-darwin, x86_64-linux ] + indieweb-algorithms: [ i686-linux, x86_64-darwin, x86_64-linux ] + inf-interval: [ i686-linux, x86_64-darwin, x86_64-linux ] + infer-upstream: [ i686-linux, x86_64-darwin, x86_64-linux ] + infinity: [ i686-linux, x86_64-darwin, x86_64-linux ] + infix: [ i686-linux, x86_64-darwin, x86_64-linux ] + InfixApplicative: [ i686-linux, x86_64-darwin, x86_64-linux ] + inflist: [ i686-linux, x86_64-darwin, x86_64-linux ] + influxdb: [ i686-linux, x86_64-darwin, x86_64-linux ] + informative: [ i686-linux, x86_64-darwin, x86_64-linux ] + inilist: [ i686-linux, x86_64-darwin, x86_64-linux ] + inline-c-cpp: [ x86_64-darwin ] + inline-r: [ i686-linux, x86_64-darwin ] + instant-zipper: [ i686-linux, x86_64-darwin, x86_64-linux ] + integer-pure: [ i686-linux, x86_64-darwin, x86_64-linux ] + intel-aes: [ i686-linux, x86_64-darwin, x86_64-linux ] + interleavableGen: [ i686-linux, x86_64-darwin, x86_64-linux ] + interleavableIO: [ i686-linux, x86_64-darwin, x86_64-linux ] + internetmarke: [ i686-linux, x86_64-darwin, x86_64-linux ] + interpolatedstring-qq: [ i686-linux, x86_64-darwin, x86_64-linux ] + interpolatedstring-qq-mwotton: [ i686-linux, x86_64-darwin, x86_64-linux ] + intset: [ i686-linux, x86_64-darwin, x86_64-linux ] + io-reactive: [ i686-linux, x86_64-darwin, x86_64-linux ] + IOR: [ i686-linux, x86_64-darwin, x86_64-linux ] + IORefCAS: [ i686-linux, x86_64-darwin, x86_64-linux ] + iotransaction: [ i686-linux, x86_64-darwin, x86_64-linux ] + ipatch: [ i686-linux, x86_64-darwin, x86_64-linux ] + ipc: [ i686-linux, x86_64-darwin, x86_64-linux ] + ipopt-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + iptables-helpers: [ i686-linux, x86_64-darwin, x86_64-linux ] + iptadmin: [ i686-linux, x86_64-linux ] + Irc: [ i686-linux, x86_64-darwin, x86_64-linux ] + isevaluated: [ i686-linux, x86_64-darwin, x86_64-linux ] + isiz: [ x86_64-darwin ] + ismtp: [ i686-linux, x86_64-darwin, x86_64-linux ] + iter-stats: [ i686-linux, x86_64-darwin, x86_64-linux ] + iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] + iteratee-compress: [ i686-linux, x86_64-darwin, x86_64-linux ] + iteratee-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + iteratee-stm: [ i686-linux, x86_64-darwin, x86_64-linux ] + iterIO: [ i686-linux, x86_64-darwin, x86_64-linux ] + iterio-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + ivor: [ i686-linux, x86_64-darwin, x86_64-linux ] + ivory: [ i686-linux, x86_64-darwin, x86_64-linux ] + ivory-backend-c: [ i686-linux, x86_64-darwin, x86_64-linux ] + ivory-bitdata: [ i686-linux, x86_64-darwin, x86_64-linux ] + ivory-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + ivory-hw: [ i686-linux, x86_64-darwin, x86_64-linux ] + ivory-opts: [ i686-linux, x86_64-darwin, x86_64-linux ] + ivory-quickcheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + ivory-stdlib: [ i686-linux, x86_64-darwin, x86_64-linux ] + ivy-web: [ i686-linux, x86_64-darwin, x86_64-linux ] + ixdopp: [ i686-linux, x86_64-darwin, x86_64-linux ] + iyql: [ i686-linux, x86_64-darwin, x86_64-linux ] + j2hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + jack: [ x86_64-darwin ] + jack-bindings: [ i686-linux, x86_64-darwin, x86_64-linux ] + JackMiniMix: [ i686-linux, x86_64-darwin, x86_64-linux ] + jackminimix: [ i686-linux, x86_64-darwin, x86_64-linux ] + jacobi-roots: [ i686-linux, x86_64-darwin, x86_64-linux ] + jalla: [ i686-linux, x86_64-darwin, x86_64-linux ] + jarfind: [ i686-linux, x86_64-darwin, x86_64-linux ] + java-bridge: [ i686-linux, x86_64-darwin, x86_64-linux ] + java-bridge-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + java-reflect: [ i686-linux, x86_64-darwin, x86_64-linux ] + javasf: [ i686-linux, x86_64-darwin, x86_64-linux ] + Javasf: [ i686-linux, x86_64-darwin, x86_64-linux ] + javav: [ i686-linux, x86_64-darwin, x86_64-linux ] + Javav: [ i686-linux, x86_64-darwin, x86_64-linux ] + jespresso: [ i686-linux, x86_64-linux ] + join: [ i686-linux, x86_64-darwin, x86_64-linux ] + joinlist: [ i686-linux, x86_64-darwin, x86_64-linux ] + jonathanscard: [ i686-linux, x86_64-darwin, x86_64-linux ] + jort: [ i686-linux, x86_64-darwin, x86_64-linux ] + js-good-parts: [ i686-linux, x86_64-darwin, x86_64-linux ] + jsaddle: [ i686-linux, x86_64-linux ] + jsaddle-hello: [ i686-linux, x86_64-linux ] + jsc: [ i686-linux, x86_64-linux ] + JsContracts: [ i686-linux, x86_64-darwin, x86_64-linux ] + jsmw: [ i686-linux, x86_64-darwin, x86_64-linux ] + json-b: [ i686-linux, x86_64-darwin, x86_64-linux ] + JSON-Combinator: [ i686-linux, x86_64-darwin, x86_64-linux ] + JSON-Combinator-Examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + json-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + json-pointer-hasql: [ i686-linux, x86_64-darwin, x86_64-linux ] + json-qq: [ i686-linux, x86_64-darwin, x86_64-linux ] + json-stream: [ i686-linux ] + json-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + json2: [ i686-linux, x86_64-darwin, x86_64-linux ] + json2-hdbc: [ i686-linux, x86_64-darwin, x86_64-linux ] + JSONb: [ i686-linux, x86_64-darwin, x86_64-linux ] + JsonGrammar: [ i686-linux, x86_64-darwin, x86_64-linux ] + jsonresume: [ i686-linux, x86_64-darwin, x86_64-linux ] + jspath: [ i686-linux, x86_64-darwin, x86_64-linux ] + judy: [ i686-linux, x86_64-darwin, x86_64-linux ] + jukebox: [ x86_64-darwin ] + JunkDB-driver-gdbm: [ i686-linux, x86_64-darwin, x86_64-linux ] + JYU-Utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + kafka-client: [ x86_64-darwin ] + kangaroo: [ i686-linux, x86_64-darwin, x86_64-linux ] + kansas-lava: [ i686-linux, x86_64-darwin, x86_64-linux ] + kansas-lava-cores: [ i686-linux, x86_64-darwin, x86_64-linux ] + kansas-lava-papilio: [ i686-linux, x86_64-darwin, x86_64-linux ] + kansas-lava-shake: [ i686-linux, x86_64-darwin, x86_64-linux ] + karakuri: [ i686-linux, x86_64-darwin, x86_64-linux ] + katt: [ i686-linux, x86_64-darwin, x86_64-linux ] + kazura-queue: [ x86_64-linux ] + keera-hails-mvc-environment-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-mvc-model-lightmodel: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-mvc-model-protectedmodel: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-mvc-solutions-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-mvc-view-gtk: [ x86_64-darwin ] + keera-hails-reactive-fs: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-reactive-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-reactive-network: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-reactive-polling: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-reactive-wx: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-reactive-yampa: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-reactivelenses: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-reactivevalues: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-posture: [ i686-linux, x86_64-linux ] + keiretsu: [ i686-linux, x86_64-darwin, x86_64-linux ] + Ketchup: [ i686-linux, x86_64-darwin, x86_64-linux ] + kevin: [ i686-linux, x86_64-darwin, x86_64-linux ] + keyring: [ i686-linux, x86_64-darwin, x86_64-linux ] + keystore: [ i686-linux, x86_64-darwin, x86_64-linux ] + kicad-data: [ i686-linux, x86_64-darwin, x86_64-linux ] + kickass-torrents-dump-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] + KiCS: [ i686-linux, x86_64-darwin, x86_64-linux ] + KiCS-debugger: [ i686-linux, x86_64-darwin, x86_64-linux ] + KiCS-prophecy: [ i686-linux, x86_64-darwin, x86_64-linux ] + kif-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] + kit: [ i686-linux, x86_64-darwin, x86_64-linux ] + kmeans-par: [ i686-linux, x86_64-darwin, x86_64-linux ] + koellner-phonetic: [ i686-linux, x86_64-darwin, x86_64-linux ] + Konf: [ i686-linux, x86_64-darwin, x86_64-linux ] + korfu: [ i686-linux, x86_64-darwin, x86_64-linux ] + kqueue: [ i686-linux, x86_64-darwin, x86_64-linux ] + ktx: [ x86_64-darwin ] + kure-your-boilerplate: [ i686-linux, x86_64-darwin, x86_64-linux ] + KyotoCabinet: [ i686-linux, x86_64-darwin, x86_64-linux ] + kyotocabinet: [ x86_64-darwin ] + l-bfgs-b: [ i686-linux, x86_64-darwin, x86_64-linux ] + L-seed: [ i686-linux, x86_64-darwin, x86_64-linux ] + labeled-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] + laborantin-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + labyrinth: [ i686-linux, x86_64-darwin, x86_64-linux ] + labyrinth-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + lagrangian: [ i686-linux, x86_64-darwin, x86_64-linux ] + laika: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambda-bridge: [ i686-linux, x86_64-linux ] + lambda-canvas: [ x86_64-darwin ] + lambda-devs: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambda-toolbox: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdaBase: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-haskell-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-irc-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-misc-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-novelty-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-reference-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-social-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + LambdaCalculator: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdacat: [ i686-linux, x86_64-linux ] + lambdacube: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdacube-bullet: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdacube-engine: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdacube-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdacube-gl: [ x86_64-darwin ] + lambdacube-samples: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdaFeed: [ i686-linux, x86_64-darwin, x86_64-linux ] + LambdaHack: [ i686-linux, x86_64-darwin, x86_64-linux ] + LambdaINet: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdaLit: [ i686-linux, x86_64-darwin, x86_64-linux ] + LambdaNet: [ i686-linux, x86_64-darwin, x86_64-linux ] + LambdaPrettyQuote: [ i686-linux, x86_64-darwin, x86_64-linux ] + LambdaShell: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdatwit: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdiff: [ i686-linux, x86_64-darwin, x86_64-linux ] + lame-tester: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-bash: [ i686-linux, x86_64-linux ] + language-boogie: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-c-comments: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-c-inline: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-eiffel: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-go: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-java-classfile: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-mixal: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-objc: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-puppet: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-python-colour: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-qux: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-sh: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-spelling: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-sqlite: [ i686-linux, x86_64-darwin, x86_64-linux ] + Lastik: [ i686-linux, x86_64-darwin, x86_64-linux ] + lat: [ i686-linux, x86_64-darwin, x86_64-linux ] + latest-npm-version: [ i686-linux, x86_64-darwin, x86_64-linux ] + launchpad-control: [ i686-linux, x86_64-darwin, x86_64-linux ] + layers: [ i686-linux, x86_64-darwin, x86_64-linux ] + layers-game: [ i686-linux, x86_64-darwin, x86_64-linux ] + layout: [ i686-linux, x86_64-darwin, x86_64-linux ] + layout-bootstrap: [ i686-linux, x86_64-darwin, x86_64-linux ] + Lazy-Pbkdf2: [ i686-linux ] + lazyarray: [ i686-linux, x86_64-darwin, x86_64-linux ] + lazysplines: [ i686-linux, x86_64-darwin, x86_64-linux ] + lcs: [ i686-linux, x86_64-darwin, x86_64-linux ] + ldif: [ i686-linux, x86_64-darwin, x86_64-linux ] + leaf: [ i686-linux, x86_64-darwin, x86_64-linux ] + leaky: [ i686-linux, x86_64-darwin, x86_64-linux ] + learn-physics: [ i686-linux, x86_64-darwin, x86_64-linux ] + learn-physics-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + leksah: [ i686-linux, x86_64-linux ] + leksah-server: [ x86_64-darwin ] + Level0: [ x86_64-darwin ] + leveldb-haskell: [ x86_64-darwin ] + leveldb-haskell-fork: [ i686-linux, x86_64-darwin, x86_64-linux ] + levmar: [ i686-linux, x86_64-linux ] + levmar-chart: [ i686-linux, x86_64-linux ] + lgtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + lha: [ i686-linux, x86_64-darwin, x86_64-linux ] + lhae: [ i686-linux, x86_64-darwin, x86_64-linux ] + lhe: [ i686-linux, x86_64-darwin, x86_64-linux ] + LibClang: [ i686-linux, x86_64-darwin, x86_64-linux ] + libconfig: [ i686-linux, x86_64-linux ] + libcspm: [ i686-linux, x86_64-darwin, x86_64-linux ] + libexpect: [ i686-linux, x86_64-darwin, x86_64-linux ] + libGenI: [ i686-linux, x86_64-darwin, x86_64-linux ] + libgraph: [ i686-linux, x86_64-darwin, x86_64-linux ] + libhbb: [ i686-linux, x86_64-darwin, x86_64-linux ] + libjenkins: [ i686-linux, x86_64-linux ] + liblinear-enumerator: [ x86_64-darwin ] + libltdl: [ i686-linux, x86_64-darwin, x86_64-linux ] + libnotify: [ x86_64-darwin ] + liboleg: [ i686-linux, x86_64-darwin, x86_64-linux ] + libpafe: [ i686-linux, x86_64-darwin, x86_64-linux ] + libpq: [ i686-linux, x86_64-darwin, x86_64-linux ] + libssh2-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + libsystemd-daemon: [ i686-linux, x86_64-darwin, x86_64-linux ] + libvirt-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + libxls: [ i686-linux, x86_64-darwin, x86_64-linux ] + libxml: [ i686-linux, x86_64-darwin, x86_64-linux ] + libxslt: [ i686-linux, x86_64-darwin, x86_64-linux ] + LibZip: [ i686-linux, x86_64-darwin, x86_64-linux ] + life: [ x86_64-darwin ] + lifter: [ i686-linux, x86_64-darwin, x86_64-linux ] + lighttpd-conf: [ i686-linux, x86_64-darwin, x86_64-linux ] + lighttpd-conf-qq: [ i686-linux, x86_64-darwin, x86_64-linux ] + lilypond: [ i686-linux, x86_64-darwin, x86_64-linux ] + Limit: [ i686-linux, x86_64-darwin, x86_64-linux ] + limp-cbc: [ i686-linux, x86_64-darwin, x86_64-linux ] + lin-alg: [ i686-linux, x86_64-darwin, x86_64-linux ] + linda: [ i686-linux, x86_64-darwin, x86_64-linux ] + linear-algebra-cblas: [ i686-linux, x86_64-darwin, x86_64-linux ] + linear-circuit: [ i686-linux, x86_64-darwin, x86_64-linux ] + linear-maps: [ i686-linux, x86_64-darwin, x86_64-linux ] + linear-opengl: [ i686-linux, x86_64-darwin, x86_64-linux ] + linearscan-hoopl: [ i686-linux, x86_64-darwin, x86_64-linux ] + LinearSplit: [ i686-linux, x86_64-darwin, x86_64-linux ] + LinguisticsTypes: [ i686-linux, x86_64-darwin, x86_64-linux ] + LinkChecker: [ i686-linux, x86_64-darwin, x86_64-linux ] + linkchk: [ i686-linux, x86_64-darwin, x86_64-linux ] + linkcore: [ i686-linux, x86_64-darwin, x86_64-linux ] + linode: [ i686-linux, x86_64-darwin, x86_64-linux ] + linux-blkid: [ i686-linux, x86_64-darwin, x86_64-linux ] + linux-evdev: [ x86_64-darwin ] + linux-file-extents: [ x86_64-darwin ] + linux-inotify: [ x86_64-darwin ] + linux-kmod: [ i686-linux, x86_64-darwin, x86_64-linux ] + linux-mount: [ x86_64-darwin ] + linux-namespaces: [ x86_64-darwin ] + linux-perf: [ i686-linux, x86_64-darwin, x86_64-linux ] + linux-ptrace: [ i686-linux, x86_64-darwin, x86_64-linux ] + lio-eci11: [ i686-linux, x86_64-darwin, x86_64-linux ] + lio-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + list-t-html-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] + listlike-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] + literals: [ i686-linux, x86_64-darwin, x86_64-linux ] + live-sequencer: [ i686-linux, x86_64-linux ] + ll-picosat: [ i686-linux, x86_64-darwin, x86_64-linux ] + llsd: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-analysis: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-base: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-base-types: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-base-util: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-data-interop: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-extra: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-ffi: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-general: [ x86_64-darwin ] + llvm-general-quote: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-ht: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-tf: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + lmdb: [ x86_64-darwin ] + lmonad: [ i686-linux, x86_64-darwin, x86_64-linux ] + lmonad-yesod: [ i686-linux, x86_64-darwin, x86_64-linux ] + local-search: [ i686-linux, x86_64-darwin, x86_64-linux ] + loch: [ i686-linux, x86_64-darwin, x86_64-linux ] + locked-poll: [ i686-linux, x86_64-darwin, x86_64-linux ] + log: [ x86_64-darwin ] + log-effect: [ i686-linux, x86_64-darwin, x86_64-linux ] + log2json: [ i686-linux, x86_64-darwin, x86_64-linux ] + logic-classes: [ i686-linux, x86_64-darwin, x86_64-linux ] + LogicGrowsOnTrees: [ i686-linux, x86_64-darwin, x86_64-linux ] + LogicGrowsOnTrees-MPI: [ i686-linux, x86_64-darwin, x86_64-linux ] + LogicGrowsOnTrees-network: [ i686-linux, x86_64-darwin, x86_64-linux ] + LogicGrowsOnTrees-processes: [ i686-linux, x86_64-darwin, x86_64-linux ] + lojban: [ i686-linux, x86_64-darwin, x86_64-linux ] + lojbanParser: [ i686-linux, x86_64-darwin, x86_64-linux ] + lojbanXiragan: [ i686-linux, x86_64-darwin, x86_64-linux ] + lojysamban: [ i686-linux, x86_64-darwin, x86_64-linux ] + lol: [ i686-linux, x86_64-darwin ] + lol-apps: [ i686-linux, x86_64-darwin, x86_64-linux ] + loli: [ i686-linux, x86_64-darwin, x86_64-linux ] + loop-effin: [ i686-linux, x86_64-darwin, x86_64-linux ] + loopy: [ i686-linux, x86_64-darwin, x86_64-linux ] + lord: [ i686-linux, x86_64-darwin, x86_64-linux ] + loris: [ i686-linux, x86_64-darwin, x86_64-linux ] + lostcities: [ i686-linux, x86_64-darwin, x86_64-linux ] + lowgl: [ x86_64-darwin ] + ls-usb: [ i686-linux, x86_64-darwin, x86_64-linux ] + lscabal: [ i686-linux, x86_64-darwin, x86_64-linux ] + LslPlus: [ i686-linux, x86_64-darwin, x86_64-linux ] + lsystem: [ i686-linux, x86_64-darwin, x86_64-linux ] + ltk: [ x86_64-darwin ] + luachunk: [ i686-linux, x86_64-darwin, x86_64-linux ] + lucienne: [ i686-linux, x86_64-darwin, x86_64-linux ] + Lucu: [ i686-linux, x86_64-darwin, x86_64-linux ] + lui: [ i686-linux, x86_64-darwin, x86_64-linux ] + luka: [ i686-linux, x86_64-darwin, x86_64-linux ] + luminance: [ x86_64-darwin ] + luminance-samples: [ x86_64-darwin ] + lushtags: [ i686-linux, x86_64-darwin, x86_64-linux ] + luthor: [ i686-linux, x86_64-darwin, x86_64-linux ] + lvish: [ i686-linux, x86_64-darwin, x86_64-linux ] + lvmlib: [ i686-linux, x86_64-darwin, x86_64-linux ] + lye: [ i686-linux, x86_64-darwin, x86_64-linux ] + lzma: [ i686-linux ] + lzma-streams: [ i686-linux ] + mage: [ i686-linux, x86_64-darwin, x86_64-linux ] + MagicHaskeller: [ i686-linux, x86_64-darwin, x86_64-linux ] + magico: [ i686-linux, x86_64-darwin, x86_64-linux ] + mahoro: [ i686-linux, x86_64-darwin, x86_64-linux ] + majordomo: [ i686-linux, x86_64-darwin, x86_64-linux ] + majority: [ i686-linux, x86_64-darwin, x86_64-linux ] + make-package: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-all: [ i686-linux, x86_64-linux ] + manatee-anything: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-browser: [ i686-linux, x86_64-linux ] + manatee-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-curl: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-editor: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-filemanager: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-imageviewer: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-ircclient: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-mplayer: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-pdfviewer: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-processmanager: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-reader: [ i686-linux, x86_64-linux ] + manatee-template: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-terminal: [ i686-linux, x86_64-linux ] + manatee-welcome: [ i686-linux, x86_64-darwin, x86_64-linux ] + mandulia: [ i686-linux, x86_64-darwin, x86_64-linux ] + manifold-random: [ x86_64-darwin ] + manifolds: [ x86_64-darwin ] + mappy: [ i686-linux, x86_64-darwin, x86_64-linux ] + marionetta: [ i686-linux, x86_64-darwin, x86_64-linux ] + markdown-kate: [ i686-linux, x86_64-darwin, x86_64-linux ] + markdown-pap: [ i686-linux, x86_64-darwin, x86_64-linux ] + markdown2svg: [ i686-linux, x86_64-darwin, x86_64-linux ] + markov-processes: [ i686-linux, x86_64-darwin, x86_64-linux ] + markup-preview: [ i686-linux, x86_64-linux ] + marmalade-upload: [ i686-linux, x86_64-darwin, x86_64-linux ] + marquise: [ i686-linux, x86_64-darwin, x86_64-linux ] + marxup: [ i686-linux, x86_64-darwin, x86_64-linux ] + masakazu-bot: [ i686-linux, x86_64-darwin, x86_64-linux ] + matchers: [ i686-linux, x86_64-darwin, x86_64-linux ] + mathblog: [ i686-linux, x86_64-darwin, x86_64-linux ] + mathlink: [ i686-linux, x86_64-darwin, x86_64-linux ] + matlab: [ i686-linux, x86_64-darwin, x86_64-linux ] + matsuri: [ i686-linux, x86_64-darwin, x86_64-linux ] + maude: [ i686-linux, x86_64-darwin, x86_64-linux ] + maxent: [ i686-linux, x86_64-darwin, x86_64-linux ] + maxsharing: [ i686-linux, x86_64-darwin, x86_64-linux ] + maybench: [ i686-linux, x86_64-darwin, x86_64-linux ] + MaybeT: [ i686-linux, x86_64-darwin, x86_64-linux ] + MaybeT-monads-tf: [ i686-linux, x86_64-darwin, x86_64-linux ] + MaybeT-transformers: [ i686-linux, x86_64-darwin, x86_64-linux ] + MazesOfMonad: [ i686-linux, x86_64-darwin, x86_64-linux ] + mbox-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + MC-Fold-DP: [ i686-linux, x86_64-darwin, x86_64-linux ] + mcmaster-gloss-examples: [ x86_64-darwin ] + mcmc-samplers: [ i686-linux, x86_64-darwin, x86_64-linux ] + mdcat: [ i686-linux, x86_64-darwin, x86_64-linux ] + Measure: [ i686-linux, x86_64-darwin, x86_64-linux ] + mecab: [ i686-linux, x86_64-darwin, x86_64-linux ] + mediawiki: [ i686-linux, x86_64-darwin, x86_64-linux ] + mediawiki2latex: [ i686-linux, x86_64-darwin, x86_64-linux ] + medium-sdk-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + meep: [ i686-linux, x86_64-darwin, x86_64-linux ] + mega-sdist: [ i686-linux, x86_64-darwin, x86_64-linux ] + melody: [ i686-linux, x86_64-darwin, x86_64-linux ] + memo-sqlite: [ i686-linux, x86_64-darwin, x86_64-linux ] + meta-par-accelerate: [ i686-linux, x86_64-darwin, x86_64-linux ] + metadata: [ x86_64-linux ] + metaplug: [ i686-linux, x86_64-darwin, x86_64-linux ] + metric: [ i686-linux, x86_64-darwin, x86_64-linux ] + Metrics: [ i686-linux, x86_64-darwin, x86_64-linux ] + metronome: [ i686-linux, x86_64-darwin, x86_64-linux ] + Mhailist: [ i686-linux, x86_64-darwin, x86_64-linux ] + MHask: [ i686-linux, x86_64-darwin, x86_64-linux ] + Michelangelo: [ i686-linux, x86_64-darwin, x86_64-linux ] + microlens-aeson: [ i686-linux ] + midisurface: [ i686-linux, x86_64-linux ] + mighttpd: [ i686-linux, x86_64-darwin, x86_64-linux ] + mikmod: [ x86_64-darwin ] + mime-string: [ i686-linux, x86_64-darwin, x86_64-linux ] + minesweeper: [ i686-linux, x86_64-darwin, x86_64-linux ] + MiniAgda: [ i686-linux, x86_64-darwin, x86_64-linux ] + miniball: [ x86_64-darwin ] + miniforth: [ i686-linux, x86_64-darwin, x86_64-linux ] + minimung: [ i686-linux, x86_64-darwin, x86_64-linux ] + minioperational: [ i686-linux, x86_64-darwin, x86_64-linux ] + miniplex: [ i686-linux, x86_64-darwin, x86_64-linux ] + minirotate: [ i686-linux, x86_64-darwin, x86_64-linux ] + minisat: [ x86_64-darwin ] + ministg: [ i686-linux, x86_64-darwin, x86_64-linux ] + mirror-tweet: [ i686-linux, x86_64-darwin, x86_64-linux ] + missing-py2: [ i686-linux, x86_64-darwin, x86_64-linux ] + MissingPy: [ i686-linux, x86_64-darwin, x86_64-linux ] + mix-arrows: [ i686-linux, x86_64-darwin, x86_64-linux ] + mkbndl: [ i686-linux, x86_64-darwin, x86_64-linux ] + ml-w: [ i686-linux, x86_64-darwin, x86_64-linux ] + mlist: [ i686-linux, x86_64-darwin, x86_64-linux ] + mmtl: [ i686-linux, x86_64-darwin, x86_64-linux ] + mmtl-base: [ i686-linux, x86_64-darwin, x86_64-linux ] + moan: [ i686-linux, x86_64-darwin, x86_64-linux ] + modelicaparser: [ i686-linux, x86_64-darwin, x86_64-linux ] + modsplit: [ i686-linux, x86_64-darwin, x86_64-linux ] + modular-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] + modular-prelude-classy: [ i686-linux, x86_64-darwin, x86_64-linux ] + module-management: [ i686-linux, x86_64-darwin, x86_64-linux ] + Moe: [ x86_64-darwin ] + mohws: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-abort-fd: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-atom: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-atom-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-exception: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-interleave: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-levels: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-lrs: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-memo: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-mersenne-random: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-ran: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-stlike-io: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-stlike-stm: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-tx: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-unify: [ i686-linux, x86_64-darwin, x86_64-linux ] + monadacme: [ i686-linux, x86_64-darwin, x86_64-linux ] + MonadCatchIO-mtl-foreign: [ i686-linux, x86_64-darwin, x86_64-linux ] + MonadCatchIO-transformers-foreign: [ i686-linux, x86_64-darwin, x86_64-linux ] + monadiccp: [ i686-linux, x86_64-darwin, x86_64-linux ] + monadiccp-gecode: [ i686-linux, x86_64-darwin, x86_64-linux ] + Monadius: [ i686-linux, x86_64-darwin, x86_64-linux ] + MonadLab: [ i686-linux, x86_64-darwin, x86_64-linux ] + monarch: [ i686-linux, x86_64-darwin, x86_64-linux ] + Monaris: [ i686-linux, x86_64-darwin, x86_64-linux ] + Monatron: [ i686-linux, x86_64-darwin, x86_64-linux ] + Monatron-IO: [ i686-linux, x86_64-darwin, x86_64-linux ] + mongodb-queue: [ i686-linux, x86_64-darwin, x86_64-linux ] + mongrel2-handler: [ i686-linux, x86_64-darwin, x86_64-linux ] + monitor: [ x86_64-darwin ] + mono-foldable: [ i686-linux, x86_64-darwin, x86_64-linux ] + Monocle: [ i686-linux, x86_64-darwin, x86_64-linux ] + monoid-owns: [ i686-linux, x86_64-darwin, x86_64-linux ] + monoidplus: [ i686-linux, x86_64-darwin, x86_64-linux ] + monoids: [ i686-linux, x86_64-darwin, x86_64-linux ] + monte-carlo: [ i686-linux, x86_64-darwin, x86_64-linux ] + moo: [ i686-linux, x86_64-darwin, x86_64-linux ] + morfette: [ i686-linux, x86_64-darwin, x86_64-linux ] + morfeusz: [ i686-linux, x86_64-darwin, x86_64-linux ] + mosaico-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + mount: [ i686-linux, x86_64-darwin, x86_64-linux ] + mp: [ i686-linux, x86_64-darwin, x86_64-linux ] + mp3decoder: [ i686-linux, x86_64-darwin, x86_64-linux ] + mpdmate: [ i686-linux, x86_64-darwin, x86_64-linux ] + mpppc: [ i686-linux, x86_64-darwin, x86_64-linux ] + mpretty: [ i686-linux, x86_64-darwin, x86_64-linux ] + mprover: [ i686-linux, x86_64-darwin, x86_64-linux ] + mps: [ i686-linux, x86_64-darwin, x86_64-linux ] + mpvguihs: [ i686-linux, x86_64-darwin, x86_64-linux ] + msgpack-idl: [ i686-linux, x86_64-darwin, x86_64-linux ] + msh: [ i686-linux, x86_64-darwin, x86_64-linux ] + mtgoxapi: [ i686-linux, x86_64-darwin, x86_64-linux ] + mtl-tf: [ i686-linux, x86_64-darwin, x86_64-linux ] + mtlx: [ i686-linux, x86_64-darwin, x86_64-linux ] + mtp: [ i686-linux, x86_64-darwin, x86_64-linux ] + mudbath: [ i686-linux, x86_64-darwin, x86_64-linux ] + mulang: [ i686-linux, x86_64-darwin, x86_64-linux ] + multi-cabal: [ i686-linux, x86_64-darwin, x86_64-linux ] + multifocal: [ i686-linux, x86_64-darwin, x86_64-linux ] + multipass: [ i686-linux, x86_64-darwin, x86_64-linux ] + multiplate-simplified: [ i686-linux, x86_64-darwin, x86_64-linux ] + multirec-alt-deriver: [ i686-linux, x86_64-darwin, x86_64-linux ] + multirec-binary: [ i686-linux, x86_64-darwin, x86_64-linux ] + multisetrewrite: [ i686-linux, x86_64-darwin, x86_64-linux ] + murder: [ i686-linux, x86_64-darwin, x86_64-linux ] + murmurhash3: [ i686-linux, x86_64-darwin, x86_64-linux ] + music-graphics: [ i686-linux, x86_64-darwin, x86_64-linux ] + music-parts: [ i686-linux, x86_64-darwin, x86_64-linux ] + music-preludes: [ i686-linux, x86_64-darwin, x86_64-linux ] + music-score: [ i686-linux, x86_64-darwin, x86_64-linux ] + music-sibelius: [ i686-linux, x86_64-darwin, x86_64-linux ] + music-suite: [ i686-linux, x86_64-darwin, x86_64-linux ] + music-util: [ i686-linux, x86_64-darwin, x86_64-linux ] + musicbrainz-email: [ i686-linux, x86_64-darwin, x86_64-linux ] + musicxml: [ i686-linux, x86_64-darwin, x86_64-linux ] + mustache2hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + mutable-iter: [ i686-linux, x86_64-darwin, x86_64-linux ] + mvc-updates: [ i686-linux, x86_64-darwin, x86_64-linux ] + mvclient: [ i686-linux, x86_64-darwin, x86_64-linux ] + myo: [ i686-linux, x86_64-darwin, x86_64-linux ] + mysnapsession: [ i686-linux, x86_64-darwin, x86_64-linux ] + mysnapsession-example: [ i686-linux, x86_64-darwin, x86_64-linux ] + mysql-simple-quasi: [ i686-linux, x86_64-darwin, x86_64-linux ] + mysql-simple-typed: [ i686-linux, x86_64-darwin, x86_64-linux ] + myTestlll: [ i686-linux, x86_64-linux ] + mzv: [ i686-linux, x86_64-darwin, x86_64-linux ] + nagios-plugin-ekg: [ i686-linux, x86_64-darwin, x86_64-linux ] + named-lock: [ i686-linux, x86_64-darwin, x86_64-linux ] + nano-cryptr: [ i686-linux, x86_64-darwin, x86_64-linux ] + nano-hmac: [ i686-linux, x86_64-darwin, x86_64-linux ] + nano-md5: [ i686-linux, x86_64-darwin, x86_64-linux ] + nanoAgda: [ i686-linux, x86_64-darwin, x86_64-linux ] + nanocurses: [ i686-linux, x86_64-darwin, x86_64-linux ] + nanq: [ i686-linux ] + narc: [ i686-linux, x86_64-darwin, x86_64-linux ] + nats-queue: [ i686-linux, x86_64-darwin, x86_64-linux ] + natural-number: [ i686-linux, x86_64-darwin, x86_64-linux ] + NaturalLanguageAlphabets: [ i686-linux, x86_64-darwin, x86_64-linux ] + nc-indicators: [ x86_64-darwin ] + neat: [ i686-linux, x86_64-darwin, x86_64-linux ] + needle: [ i686-linux, x86_64-darwin, x86_64-linux ] + nehe-tuts: [ i686-linux, x86_64-darwin, x86_64-linux ] + nerf: [ i686-linux, x86_64-darwin, x86_64-linux ] + nero: [ i686-linux, x86_64-darwin, x86_64-linux ] + nero-wai: [ i686-linux, x86_64-darwin, x86_64-linux ] + nero-warp: [ i686-linux, x86_64-darwin, x86_64-linux ] + netcore: [ i686-linux, x86_64-darwin, x86_64-linux ] + netlines: [ i686-linux, x86_64-darwin, x86_64-linux ] + netlink: [ x86_64-darwin ] + NetSNMP: [ i686-linux, x86_64-darwin, x86_64-linux ] + netspec: [ i686-linux, x86_64-darwin, x86_64-linux ] + nettle-frp: [ i686-linux, x86_64-darwin, x86_64-linux ] + nettle-netkit: [ i686-linux, x86_64-darwin, x86_64-linux ] + nettle-openflow: [ i686-linux, x86_64-darwin, x86_64-linux ] + netwire-input-glfw: [ x86_64-darwin ] + network-address: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-anonymous-i2p: [ i686-linux ] + network-anonymous-tor: [ i686-linux ] + network-attoparsec: [ i686-linux ] + network-builder: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-bytestring: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-connection: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-interfacerequest: [ x86_64-darwin ] + network-minihttp: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-netpacket: [ x86_64-darwin ] + network-rpca: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-simple-tls: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-topic-models: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-transport-amqp: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-websocket: [ i686-linux, x86_64-darwin, x86_64-linux ] + newports: [ i686-linux, x86_64-darwin, x86_64-linux ] + newsynth: [ i686-linux, x86_64-darwin, x86_64-linux ] + newt: [ i686-linux, x86_64-darwin, x86_64-linux ] + newtype-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + NGrams: [ i686-linux, x86_64-darwin, x86_64-linux ] + niagra: [ i686-linux, x86_64-darwin, x86_64-linux ] + nibblestring: [ i686-linux, x86_64-darwin, x86_64-linux ] + nikepub: [ i686-linux, x86_64-darwin, x86_64-linux ] + nimber: [ i686-linux ] + Ninjas: [ i686-linux, x86_64-darwin, x86_64-linux ] + nitro: [ i686-linux, x86_64-darwin, x86_64-linux ] + nixfromnpm: [ i686-linux, x86_64-darwin, x86_64-linux ] + nkjp: [ i686-linux, x86_64-darwin, x86_64-linux ] + nm: [ i686-linux, x86_64-darwin, x86_64-linux ] + nme: [ i686-linux, x86_64-darwin, x86_64-linux ] + nntp: [ i686-linux, x86_64-darwin, x86_64-linux ] + noise: [ i686-linux, x86_64-darwin, x86_64-linux ] + Nomyx: [ i686-linux, x86_64-darwin, x86_64-linux ] + Nomyx-Core: [ i686-linux, x86_64-darwin, x86_64-linux ] + Nomyx-Language: [ i686-linux, x86_64-darwin, x86_64-linux ] + Nomyx-Rules: [ i686-linux, x86_64-darwin, x86_64-linux ] + Nomyx-Web: [ i686-linux, x86_64-darwin, x86_64-linux ] + NonEmptyList: [ i686-linux, x86_64-darwin, x86_64-linux ] + noodle: [ i686-linux, x86_64-darwin, x86_64-linux ] + NoSlow: [ i686-linux, x86_64-darwin, x86_64-linux ] + not-gloss: [ i686-linux, x86_64-darwin, x86_64-linux ] + not-gloss-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + notmuch-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + notmuch-web: [ i686-linux, x86_64-darwin, x86_64-linux ] + np-linear: [ i686-linux, x86_64-darwin, x86_64-linux ] + nptools: [ i686-linux, x86_64-darwin, x86_64-linux ] + nthable: [ i686-linux, x86_64-darwin, x86_64-linux ] + NTRU: [ i686-linux ] + null-canvas: [ i686-linux, x86_64-darwin, x86_64-linux ] + NumberSieves: [ i686-linux, x86_64-darwin, x86_64-linux ] + numerals: [ i686-linux, x86_64-darwin, x86_64-linux ] + numerals-base: [ i686-linux, x86_64-darwin, x86_64-linux ] + Nussinov78: [ i686-linux, x86_64-darwin, x86_64-linux ] + nvim-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + nvim-hs-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] + NXT: [ i686-linux, x86_64-darwin, x86_64-linux ] + NXTDSL: [ i686-linux, x86_64-darwin, x86_64-linux ] + nymphaea: [ i686-linux, x86_64-darwin, x86_64-linux ] + oberon0: [ i686-linux, x86_64-darwin, x86_64-linux ] + obj: [ i686-linux, x86_64-darwin, x86_64-linux ] + Object: [ i686-linux, x86_64-darwin, x86_64-linux ] + ObjectIO: [ i686-linux, x86_64-darwin, x86_64-linux ] + octopus: [ i686-linux, x86_64-darwin, x86_64-linux ] + oculus: [ i686-linux, x86_64-linux ] + OddWord: [ i686-linux ] + oden-go-packages: [ i686-linux, x86_64-darwin, x86_64-linux ] + OGL: [ i686-linux, x86_64-darwin, x86_64-linux ] + ohloh-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + oidc-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + ois-input-manager: [ i686-linux, x86_64-darwin, x86_64-linux ] + omaketex: [ i686-linux, x86_64-darwin, x86_64-linux ] + Omega: [ i686-linux, x86_64-darwin, x86_64-linux ] + omega: [ i686-linux, x86_64-darwin, x86_64-linux ] + omnicodec: [ i686-linux, x86_64-darwin, x86_64-linux ] + on-a-horse: [ i686-linux, x86_64-darwin, x86_64-linux ] + one-liner: [ i686-linux, x86_64-darwin, x86_64-linux ] + oneormore: [ i686-linux, x86_64-darwin, x86_64-linux ] + onu-course: [ i686-linux, x86_64-darwin, x86_64-linux ] + open-pandoc: [ i686-linux, x86_64-darwin, x86_64-linux ] + open-typerep: [ i686-linux, x86_64-darwin ] + open-union: [ x86_64-darwin, x86_64-linux ] + open-witness: [ i686-linux, x86_64-darwin, x86_64-linux ] + OpenAFP: [ i686-linux, x86_64-darwin, x86_64-linux ] + OpenAFP-Utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + OpenAL: [ x86_64-darwin ] + OpenCL: [ i686-linux, x86_64-darwin, x86_64-linux ] + OpenCLRaw: [ i686-linux, x86_64-darwin, x86_64-linux ] + opencog-atomspace: [ i686-linux, x86_64-darwin, x86_64-linux ] + opencv-raw: [ i686-linux, x86_64-linux ] + openexchangerates: [ i686-linux, x86_64-darwin, x86_64-linux ] + openflow: [ i686-linux, x86_64-darwin, x86_64-linux ] + OpenGL: [ x86_64-darwin ] + opengl-dlp-stereo: [ x86_64-darwin ] + opengl-spacenavigator: [ x86_64-darwin ] + OpenGLCheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + opengles: [ i686-linux, x86_64-darwin, x86_64-linux ] + OpenGLRaw: [ x86_64-darwin ] + OpenGLRaw21: [ i686-linux, x86_64-darwin, x86_64-linux ] + openid: [ i686-linux, x86_64-darwin, x86_64-linux ] + openpgp-Crypto: [ i686-linux, x86_64-darwin, x86_64-linux ] + openpgp-crypto-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + OpenSCAD: [ i686-linux, x86_64-darwin, x86_64-linux ] + openssh-github-keys: [ i686-linux, x86_64-darwin, x86_64-linux ] + opentheory-char: [ i686-linux, x86_64-darwin, x86_64-linux ] + OpenVG: [ i686-linux, x86_64-darwin, x86_64-linux ] + OpenVGRaw: [ i686-linux, x86_64-darwin, x86_64-linux ] + Operads: [ i686-linux, x86_64-darwin, x86_64-linux ] + optimal-blocks: [ i686-linux, x86_64-darwin, x86_64-linux ] + optimusprime: [ i686-linux, x86_64-darwin, x86_64-linux ] + orchestrate: [ i686-linux, x86_64-darwin, x86_64-linux ] + OrchestrateDB: [ i686-linux, x86_64-darwin, x86_64-linux ] + orchid: [ i686-linux, x86_64-darwin, x86_64-linux ] + orchid-demo: [ i686-linux, x86_64-darwin, x86_64-linux ] + order-maintenance: [ i686-linux, x86_64-darwin, x86_64-linux ] + orgmode-parse: [ i686-linux, x86_64-darwin, x86_64-linux ] + origami: [ i686-linux, x86_64-darwin, x86_64-linux ] + osdkeys: [ x86_64-darwin ] + OSM: [ i686-linux, x86_64-darwin, x86_64-linux ] + osm-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + osm-download: [ i686-linux, x86_64-darwin, x86_64-linux ] + ot: [ i686-linux, x86_64-darwin, x86_64-linux ] + pack: [ x86_64-darwin ] + package-vt: [ i686-linux, x86_64-darwin, x86_64-linux ] + packedstring: [ i686-linux, x86_64-darwin, x86_64-linux ] + packman: [ i686-linux, x86_64-darwin, x86_64-linux ] + padKONTROL: [ i686-linux, x86_64-darwin, x86_64-linux ] + PageIO: [ i686-linux, x86_64-darwin, x86_64-linux ] + Paillier: [ x86_64-darwin ] + panda: [ i686-linux, x86_64-darwin, x86_64-linux ] + pandoc-japanese-filters: [ i686-linux, x86_64-darwin, x86_64-linux ] + pandoc-lens: [ i686-linux, x86_64-darwin, x86_64-linux ] + pandoc-plantuml-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] + pandoc-unlit: [ i686-linux, x86_64-darwin, x86_64-linux ] + PandocAgda: [ i686-linux, x86_64-darwin, x86_64-linux ] + pango: [ x86_64-darwin ] + papillon: [ i686-linux, x86_64-darwin, x86_64-linux ] + pappy: [ i686-linux, x86_64-darwin, x86_64-linux ] + paragon: [ i686-linux, x86_64-darwin, x86_64-linux ] + Paraiso: [ i686-linux, x86_64-darwin, x86_64-linux ] + parallel-tasks: [ i686-linux, x86_64-darwin, x86_64-linux ] + parameterized-data: [ i686-linux, x86_64-darwin, x86_64-linux ] + parco: [ i686-linux, x86_64-darwin, x86_64-linux ] + parco-attoparsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + parco-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + parconc-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + parport: [ x86_64-darwin ] + Parry: [ i686-linux, x86_64-darwin, x86_64-linux ] + parse-help: [ i686-linux, x86_64-darwin, x86_64-linux ] + parsely: [ i686-linux, x86_64-darwin, x86_64-linux ] + parser-helper: [ i686-linux, x86_64-darwin, x86_64-linux ] + parser241: [ i686-linux, x86_64-darwin, x86_64-linux ] + parsestar: [ i686-linux, x86_64-darwin, x86_64-linux ] + partial-lens: [ i686-linux, x86_64-darwin, x86_64-linux ] + partly: [ i686-linux, x86_64-darwin, x86_64-linux ] + passage: [ i686-linux, x86_64-darwin, x86_64-linux ] + pastis: [ i686-linux, x86_64-darwin, x86_64-linux ] + pasty: [ i686-linux, x86_64-darwin, x86_64-linux ] + Pathfinder: [ i686-linux, x86_64-darwin, x86_64-linux ] + pathfindingcore: [ i686-linux, x86_64-darwin, x86_64-linux ] + patterns: [ i686-linux, x86_64-darwin, x86_64-linux ] + paypal-adaptive-hoops: [ i686-linux, x86_64-darwin, x86_64-linux ] + paypal-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + pb: [ i686-linux, x86_64-darwin, x86_64-linux ] + PCLT: [ i686-linux, x86_64-darwin, x86_64-linux ] + PCLT-DB: [ i686-linux, x86_64-darwin, x86_64-linux ] + pdf-toolbox-viewer: [ x86_64-darwin ] + pdynload: [ i686-linux, x86_64-darwin, x86_64-linux ] + peakachu: [ i686-linux, x86_64-darwin, x86_64-linux ] + pec: [ i686-linux, x86_64-darwin, x86_64-linux ] + peg: [ i686-linux, x86_64-darwin, x86_64-linux ] + pell: [ i686-linux, x86_64-darwin, x86_64-linux ] + penny: [ i686-linux, x86_64-darwin, x86_64-linux ] + penny-bin: [ i686-linux, x86_64-darwin, x86_64-linux ] + penny-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + peparser: [ i686-linux, x86_64-darwin, x86_64-linux ] + perdure: [ i686-linux, x86_64-darwin, x86_64-linux ] + PerfectHash: [ i686-linux, x86_64-darwin, x86_64-linux ] + perm: [ i686-linux, x86_64-darwin, x86_64-linux ] + permute: [ i686-linux, x86_64-darwin, x86_64-linux ] + PermuteEffects: [ i686-linux, x86_64-darwin, x86_64-linux ] + persistent-hssqlppp: [ i686-linux, x86_64-darwin, x86_64-linux ] + persistent-map: [ i686-linux, x86_64-darwin, x86_64-linux ] + persistent-protobuf: [ i686-linux, x86_64-darwin, x86_64-linux ] + pesca: [ i686-linux, x86_64-darwin, x86_64-linux ] + peyotls: [ i686-linux, x86_64-darwin, x86_64-linux ] + peyotls-codec: [ i686-linux, x86_64-darwin, x86_64-linux ] + pez: [ i686-linux, x86_64-darwin, x86_64-linux ] + pg-harness: [ i686-linux, x86_64-darwin, x86_64-linux ] + pg-harness-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + pgsql-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + pgstream: [ i686-linux, x86_64-darwin, x86_64-linux ] + phasechange: [ i686-linux, x86_64-darwin, x86_64-linux ] + phoityne: [ x86_64-darwin ] + phone-numbers: [ i686-linux, x86_64-darwin, x86_64-linux ] + phone-push: [ i686-linux, x86_64-darwin, x86_64-linux ] + phooey: [ i686-linux, x86_64-darwin, x86_64-linux ] + photoname: [ i686-linux, x86_64-darwin, x86_64-linux ] + phraskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + Phsu: [ i686-linux, x86_64-darwin, x86_64-linux ] + phybin: [ i686-linux, x86_64-darwin, x86_64-linux ] + pi-calculus: [ i686-linux, x86_64-darwin, x86_64-linux ] + pianola: [ i686-linux, x86_64-darwin, x86_64-linux ] + piet: [ i686-linux, x86_64-darwin, x86_64-linux ] + piki: [ i686-linux, x86_64-darwin, x86_64-linux ] + pinch: [ i686-linux ] + Pipe: [ i686-linux, x86_64-darwin, x86_64-linux ] + pipes-cereal-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] + pipes-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + pipes-courier: [ i686-linux, x86_64-darwin, x86_64-linux ] + pipes-files: [ i686-linux ] + pipes-key-value-csv: [ i686-linux, x86_64-darwin, x86_64-linux ] + pipes-network-tls: [ i686-linux, x86_64-darwin, x86_64-linux ] + pipes-p2p-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + pisigma: [ i686-linux, x86_64-darwin, x86_64-linux ] + pit: [ i686-linux, x86_64-darwin, x86_64-linux ] + pkggraph: [ i686-linux, x86_64-darwin, x86_64-linux ] + planar-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] + plat: [ i686-linux, x86_64-darwin, x86_64-linux ] + plist-buddy: [ i686-linux, x86_64-linux ] + plivo: [ i686-linux, x86_64-darwin, x86_64-linux ] + plot: [ x86_64-darwin ] + plot-gtk: [ x86_64-darwin ] + plot-gtk-ui: [ x86_64-darwin ] + plot-gtk3: [ x86_64-darwin ] + Plot-ho-matic: [ x86_64-darwin ] + plot-lab: [ x86_64-darwin ] + PlslTools: [ i686-linux, x86_64-darwin, x86_64-linux ] + plugins-auto: [ i686-linux, x86_64-darwin, x86_64-linux ] + plugins-multistage: [ i686-linux, x86_64-darwin, x86_64-linux ] + plumbers: [ i686-linux, x86_64-darwin, x86_64-linux ] + ply-loader: [ i686-linux, x86_64-darwin, x86_64-linux ] + pngload: [ i686-linux, x86_64-darwin, x86_64-linux ] + pngload-fixed: [ i686-linux, x86_64-darwin, x86_64-linux ] + pocket-dns: [ i686-linux, x86_64-darwin, x86_64-linux ] + pointless-lenses: [ i686-linux, x86_64-darwin, x86_64-linux ] + pointless-rewrite: [ i686-linux, x86_64-darwin, x86_64-linux ] + polar-configfile: [ i686-linux, x86_64-darwin, x86_64-linux ] + polh-lexicon: [ i686-linux, x86_64-darwin, x86_64-linux ] + Pollutocracy: [ i686-linux, x86_64-darwin, x86_64-linux ] + polynom: [ i686-linux, x86_64-darwin, x86_64-linux ] + polyseq: [ i686-linux, x86_64-darwin, x86_64-linux ] + polytypeable: [ i686-linux, x86_64-darwin, x86_64-linux ] + polytypeable-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + pong-server: [ i686-linux, x86_64-linux ] + pontarius-mediaserver: [ i686-linux, x86_64-darwin, x86_64-linux ] + pontarius-xmpp: [ i686-linux, x86_64-darwin, x86_64-linux ] + pontarius-xpmn: [ i686-linux, x86_64-darwin, x86_64-linux ] + pool: [ i686-linux, x86_64-darwin, x86_64-linux ] + pool-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + popenhs: [ i686-linux, x86_64-darwin, x86_64-linux ] + poppler: [ i686-linux, x86_64-darwin, x86_64-linux ] + portaudio: [ x86_64-darwin ] + porte: [ i686-linux, x86_64-darwin, x86_64-linux ] + porter: [ i686-linux, x86_64-darwin, x86_64-linux ] + ports: [ i686-linux, x86_64-darwin, x86_64-linux ] + posix-acl: [ i686-linux, x86_64-linux ] + posix-realtime: [ x86_64-darwin ] + posix-timer: [ x86_64-darwin ] + posix-waitpid: [ i686-linux, x86_64-darwin, x86_64-linux ] + PostgreSQL: [ i686-linux, x86_64-darwin, x86_64-linux ] + postgresql-simple-typed: [ i686-linux, x86_64-darwin, x86_64-linux ] + postgresql-typed: [ i686-linux, x86_64-darwin, x86_64-linux ] + postgrest: [ i686-linux, x86_64-darwin, x86_64-linux ] + postie: [ i686-linux, x86_64-darwin, x86_64-linux ] + postmaster: [ i686-linux, x86_64-darwin, x86_64-linux ] + powermate: [ i686-linux, x86_64-darwin, x86_64-linux ] + powerpc: [ i686-linux, x86_64-darwin, x86_64-linux ] + pqc: [ i686-linux, x86_64-darwin, x86_64-linux ] + pqueue-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] + practice-room: [ i686-linux, x86_64-darwin, x86_64-linux ] + precis: [ i686-linux, x86_64-darwin, x86_64-linux ] + prednote-test: [ i686-linux, x86_64-darwin, x86_64-linux ] + prefork: [ i686-linux, x86_64-darwin, x86_64-linux ] + pregame: [ i686-linux, x86_64-darwin, x86_64-linux ] + prelude-generalize: [ i686-linux, x86_64-darwin, x86_64-linux ] + prelude-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] + preprocess-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + press: [ i686-linux, x86_64-darwin, x86_64-linux ] + primitive-simd: [ i686-linux, x86_64-darwin, x86_64-linux ] + PrimitiveArray: [ i686-linux, x86_64-darwin, x86_64-linux ] + primula-board: [ i686-linux, x86_64-darwin, x86_64-linux ] + primula-bot: [ i686-linux, x86_64-darwin, x86_64-linux ] + print-debugger: [ i686-linux, x86_64-darwin, x86_64-linux ] + printf-mauke: [ i686-linux, x86_64-darwin, x86_64-linux ] + Printf-TH: [ i686-linux, x86_64-darwin, x86_64-linux ] + priority-queue: [ i686-linux, x86_64-darwin, x86_64-linux ] + PriorityChansConverger: [ i686-linux, x86_64-darwin, x86_64-linux ] + ProbabilityMonads: [ i686-linux, x86_64-darwin, x86_64-linux ] + proc: [ i686-linux, x86_64-darwin, x86_64-linux ] + process-iterio: [ i686-linux, x86_64-darwin, x86_64-linux ] + process-leksah: [ i686-linux, x86_64-darwin, x86_64-linux ] + process-listlike: [ i686-linux, x86_64-darwin, x86_64-linux ] + process-progress: [ i686-linux, x86_64-darwin, x86_64-linux ] + process-qq: [ i686-linux, x86_64-darwin, x86_64-linux ] + processing: [ i686-linux, x86_64-darwin, x86_64-linux ] + procrastinating-structure: [ i686-linux, x86_64-darwin, x86_64-linux ] + procrastinating-variable: [ i686-linux, x86_64-darwin, x86_64-linux ] + procstat: [ i686-linux, x86_64-darwin, x86_64-linux ] + prof2dot: [ i686-linux, x86_64-darwin, x86_64-linux ] + progress: [ i686-linux, x86_64-darwin, x86_64-linux ] + progressbar: [ i686-linux, x86_64-darwin, x86_64-linux ] + progression: [ i686-linux, x86_64-darwin, x86_64-linux ] + progressive: [ i686-linux, x86_64-darwin, x86_64-linux ] + proj4-hs-bindings: [ i686-linux, x86_64-darwin, x86_64-linux ] + prolog: [ i686-linux, x86_64-darwin, x86_64-linux ] + prolog-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] + prolog-graph-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + prologue: [ i686-linux, x86_64-darwin, x86_64-linux ] + propane: [ i686-linux, x86_64-darwin, x86_64-linux ] + Proper: [ i686-linux, x86_64-darwin, x86_64-linux ] + proplang: [ i686-linux, x86_64-darwin, x86_64-linux ] + protobuf-native: [ i686-linux, x86_64-darwin, x86_64-linux ] + protocol-buffers-descriptor-fork: [ i686-linux, x86_64-darwin, x86_64-linux ] + protocol-buffers-fork: [ i686-linux, x86_64-darwin, x86_64-linux ] + prove-everywhere-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + proxy-kindness: [ i686-linux, x86_64-darwin, x86_64-linux ] + pub: [ i686-linux, x86_64-darwin, x86_64-linux ] + publicsuffixlistcreate: [ i686-linux, x86_64-darwin, x86_64-linux ] + pubnub: [ i686-linux, x86_64-darwin, x86_64-linux ] + pubsub: [ i686-linux, x86_64-darwin, x86_64-linux ] + puffytools: [ i686-linux, x86_64-darwin, x86_64-linux ] + pugixml: [ x86_64-darwin ] + Pugs: [ i686-linux, x86_64-darwin, x86_64-linux ] + pugs-hsregex: [ i686-linux, x86_64-darwin, x86_64-linux ] + pugs-HsSyck: [ i686-linux, x86_64-darwin, x86_64-linux ] + PUH-Project: [ i686-linux, x86_64-darwin, x86_64-linux ] + pulse-simple: [ x86_64-darwin ] + punkt: [ i686-linux, x86_64-darwin, x86_64-linux ] + Pup-Events-Demo: [ i686-linux, x86_64-darwin, x86_64-linux ] + puppetresources: [ i686-linux, x86_64-darwin, x86_64-linux ] + push-notify: [ i686-linux, x86_64-darwin, x86_64-linux ] + push-notify-ccs: [ i686-linux, x86_64-darwin, x86_64-linux ] + push-notify-general: [ i686-linux, x86_64-darwin, x86_64-linux ] + pushme: [ i686-linux, x86_64-darwin, x86_64-linux ] + putlenses: [ i686-linux, x86_64-darwin, x86_64-linux ] + puzzle-draw: [ i686-linux, x86_64-darwin, x86_64-linux ] + puzzle-draw-cmdline: [ i686-linux, x86_64-darwin, x86_64-linux ] + pvd: [ i686-linux, x86_64-darwin, x86_64-linux ] + python-pickle: [ i686-linux, x86_64-darwin, x86_64-linux ] + qd: [ i686-linux, x86_64-darwin, x86_64-linux ] + qd-vec: [ i686-linux, x86_64-darwin, x86_64-linux ] + qed: [ i686-linux, x86_64-darwin, x86_64-linux ] + qhull-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + QIO: [ i686-linux, x86_64-darwin, x86_64-linux ] + qt: [ i686-linux, x86_64-darwin, x86_64-linux ] + QuadEdge: [ i686-linux, x86_64-darwin, x86_64-linux ] + quadratic-irrational: [ i686-linux, x86_64-darwin, x86_64-linux ] + quantum-arrow: [ i686-linux, x86_64-darwin, x86_64-linux ] + qudb: [ i686-linux, x86_64-darwin, x86_64-linux ] + Quelea: [ x86_64-darwin ] + quenya-verb: [ i686-linux, x86_64-darwin, x86_64-linux ] + querystring-pickle: [ i686-linux, x86_64-darwin, x86_64-linux ] + queuelike: [ i686-linux, x86_64-darwin, x86_64-linux ] + QuickAnnotate: [ i686-linux, x86_64-darwin, x86_64-linux ] + QuickCheck-GenT: [ i686-linux, x86_64-darwin, x86_64-linux ] + quickcheck-poly: [ i686-linux, x86_64-darwin, x86_64-linux ] + quickcheck-rematch: [ i686-linux, x86_64-darwin, x86_64-linux ] + quickpull: [ i686-linux, x86_64-darwin, x86_64-linux ] + quickset: [ i686-linux, x86_64-darwin, x86_64-linux ] + Quickson: [ i686-linux, x86_64-darwin, x86_64-linux ] + quicktest: [ i686-linux, x86_64-darwin, x86_64-linux ] + quoridor-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + qux: [ i686-linux, x86_64-darwin, x86_64-linux ] + R-pandoc: [ i686-linux, x86_64-darwin, x86_64-linux ] + rabocsv2qif: [ i686-linux, x86_64-darwin, x86_64-linux ] + rad: [ i686-linux, x86_64-darwin, x86_64-linux ] + radium: [ i686-linux, x86_64-darwin, x86_64-linux ] + radium-formula-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] + rados-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + rail-compiler-editor: [ i686-linux, x86_64-darwin, x86_64-linux ] + rainbow-tests: [ i686-linux, x86_64-darwin, x86_64-linux ] + rakhana: [ i686-linux, x86_64-darwin, x86_64-linux ] + ralist: [ i686-linux, x86_64-darwin, x86_64-linux ] + rallod: [ i686-linux, x86_64-darwin, x86_64-linux ] + rand-vars: [ i686-linux, x86_64-darwin, x86_64-linux ] + randfile: [ i686-linux, x86_64-darwin, x86_64-linux ] + random-access-list: [ i686-linux, x86_64-darwin, x86_64-linux ] + random-eff: [ i686-linux, x86_64-darwin, x86_64-linux ] + random-effin: [ i686-linux, x86_64-darwin, x86_64-linux ] + random-hypergeometric: [ i686-linux, x86_64-darwin, x86_64-linux ] + random-stream: [ i686-linux, x86_64-darwin, x86_64-linux ] + random-variates: [ i686-linux ] + RandomDotOrg: [ i686-linux, x86_64-darwin, x86_64-linux ] + rangemin: [ i686-linux, x86_64-darwin, x86_64-linux ] + Ranka: [ i686-linux, x86_64-darwin, x86_64-linux ] + Rasenschach: [ i686-linux, x86_64-darwin, x86_64-linux ] + raven-haskell-scotty: [ i686-linux, x86_64-darwin, x86_64-linux ] + rbr: [ i686-linux, x86_64-darwin, x86_64-linux ] + rcu: [ i686-linux, x86_64-darwin, x86_64-linux ] + rdf4h: [ i686-linux, x86_64-darwin, x86_64-linux ] + rdioh: [ i686-linux, x86_64-darwin, x86_64-linux ] + re2: [ x86_64-darwin ] + reaction-logic: [ i686-linux, x86_64-darwin, x86_64-linux ] + reactive: [ i686-linux, x86_64-darwin, x86_64-linux ] + reactive-bacon: [ i686-linux, x86_64-darwin, x86_64-linux ] + reactive-balsa: [ i686-linux, x86_64-linux ] + reactive-banana-sdl: [ i686-linux, x86_64-darwin, x86_64-linux ] + reactive-banana-sdl2: [ x86_64-darwin ] + reactive-banana-threepenny: [ i686-linux, x86_64-darwin, x86_64-linux ] + reactive-banana-wx: [ x86_64-darwin ] + reactive-fieldtrip: [ i686-linux, x86_64-darwin, x86_64-linux ] + reactive-glut: [ i686-linux, x86_64-darwin, x86_64-linux ] + reactive-thread: [ i686-linux, x86_64-darwin, x86_64-linux ] + reactor: [ i686-linux, x86_64-darwin, x86_64-linux ] + really-simple-xml-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] + reasonable-lens: [ i686-linux, x86_64-darwin, x86_64-linux ] + record-aeson: [ i686-linux, x86_64-darwin, x86_64-linux ] + record-gl: [ i686-linux, x86_64-darwin, x86_64-linux ] + record-preprocessor: [ i686-linux, x86_64-darwin, x86_64-linux ] + record-syntax: [ i686-linux, x86_64-darwin, x86_64-linux ] + records: [ i686-linux, x86_64-darwin, x86_64-linux ] + records-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + recursive-line-count: [ x86_64-darwin ] + redHandlers: [ i686-linux, x86_64-darwin, x86_64-linux ] + Redmine: [ i686-linux, x86_64-darwin, x86_64-linux ] + reedsolomon: [ i686-linux, x86_64-darwin, x86_64-linux ] + reenact: [ x86_64-darwin ] + ref: [ i686-linux, x86_64-darwin, x86_64-linux ] + Ref: [ i686-linux, x86_64-darwin, x86_64-linux ] + Referees: [ i686-linux, x86_64-darwin, x86_64-linux ] + refh: [ i686-linux, x86_64-darwin, x86_64-linux ] + reflection-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + reflex-dom-contrib: [ i686-linux, x86_64-linux ] + reflex-gloss: [ x86_64-darwin ] + reflex-gloss-scene: [ x86_64-darwin ] + reflex-orphans: [ i686-linux, x86_64-darwin, x86_64-linux ] + regex-deriv: [ i686-linux, x86_64-darwin, x86_64-linux ] + regex-dfa: [ i686-linux, x86_64-darwin, x86_64-linux ] + regex-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + regex-pderiv: [ i686-linux, x86_64-darwin, x86_64-linux ] + regex-tdfa-utf8: [ i686-linux, x86_64-darwin, x86_64-linux ] + regex-tre: [ i686-linux, x86_64-darwin, x86_64-linux ] + regex-xmlschema: [ i686-linux, x86_64-darwin, x86_64-linux ] + regexchar: [ i686-linux, x86_64-darwin, x86_64-linux ] + regexdot: [ i686-linux, x86_64-darwin, x86_64-linux ] + regexp-tries: [ i686-linux, x86_64-darwin, x86_64-linux ] + regexqq: [ i686-linux, x86_64-darwin, x86_64-linux ] + regional-pointers: [ i686-linux, x86_64-darwin, x86_64-linux ] + regions: [ i686-linux, x86_64-darwin, x86_64-linux ] + regions-monadsfd: [ i686-linux, x86_64-darwin, x86_64-linux ] + regions-monadstf: [ i686-linux, x86_64-darwin, x86_64-linux ] + regions-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] + regular-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + regular-web: [ i686-linux, x86_64-darwin, x86_64-linux ] + reheat: [ i686-linux, x86_64-darwin, x86_64-linux ] + rei: [ i686-linux, x86_64-darwin, x86_64-linux ] + reified-records: [ i686-linux, x86_64-darwin, x86_64-linux ] + reify: [ i686-linux, x86_64-darwin, x86_64-linux ] + reinterpret-cast: [ i686-linux ] + remote: [ i686-linux, x86_64-darwin, x86_64-linux ] + remote-json: [ i686-linux, x86_64-darwin, x86_64-linux ] + remote-json-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + remote-json-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + remotion: [ i686-linux, x86_64-darwin, x86_64-linux ] + reorderable: [ i686-linux, x86_64-darwin, x86_64-linux ] + repa-array: [ i686-linux, x86_64-darwin, x86_64-linux ] + repa-flow: [ i686-linux, x86_64-darwin, x86_64-linux ] + repa-plugin: [ i686-linux, x86_64-darwin, x86_64-linux ] + repa-series: [ i686-linux, x86_64-darwin, x86_64-linux ] + repa-sndfile: [ x86_64-darwin ] + repa-stream: [ i686-linux, x86_64-darwin, x86_64-linux ] + repa-v4l2: [ i686-linux, x86_64-darwin, x86_64-linux ] + repl: [ i686-linux, x86_64-darwin, x86_64-linux ] + repo-based-blog: [ i686-linux, x86_64-darwin, x86_64-linux ] + repr: [ i686-linux, x86_64-darwin, x86_64-linux ] + representable-functors: [ i686-linux, x86_64-darwin, x86_64-linux ] + representable-tries: [ i686-linux, x86_64-darwin, x86_64-linux ] + resistor-cube: [ i686-linux, x86_64-darwin, x86_64-linux ] + resource-embed: [ i686-linux, x86_64-darwin, x86_64-linux ] + resource-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + respond: [ i686-linux, x86_64-darwin, x86_64-linux ] + restful-snap: [ i686-linux, x86_64-darwin, x86_64-linux ] + RESTng: [ i686-linux, x86_64-darwin, x86_64-linux ] + restricted-workers: [ i686-linux, x86_64-darwin, x86_64-linux ] + restyle: [ i686-linux, x86_64-darwin, x86_64-linux ] + resumable-exceptions: [ i686-linux, x86_64-darwin, x86_64-linux ] + rethinkdb-model: [ i686-linux, x86_64-darwin, x86_64-linux ] + ReviewBoard: [ i686-linux, x86_64-darwin, x86_64-linux ] + rewrite: [ i686-linux, x86_64-darwin, x86_64-linux ] + rewriting: [ i686-linux, x86_64-darwin, x86_64-linux ] + rezoom: [ i686-linux, x86_64-darwin, x86_64-linux ] + rhythm-game-tutorial: [ i686-linux, x86_64-darwin, x86_64-linux ] + riot: [ i686-linux, x86_64-darwin, x86_64-linux ] + ripple: [ i686-linux, x86_64-darwin, x86_64-linux ] + ripple-federation: [ i686-linux, x86_64-darwin, x86_64-linux ] + risc386: [ i686-linux, x86_64-darwin, x86_64-linux ] + rivers: [ i686-linux, x86_64-darwin, x86_64-linux ] + RJson: [ i686-linux, x86_64-darwin, x86_64-linux ] + rmonad: [ i686-linux, x86_64-darwin, x86_64-linux ] + RMP: [ i686-linux, x86_64-linux ] + RNAdesign: [ i686-linux, x86_64-darwin, x86_64-linux ] + RNAdraw: [ i686-linux, x86_64-darwin, x86_64-linux ] + RNAFold: [ i686-linux, x86_64-darwin, x86_64-linux ] + RNAFoldProgs: [ i686-linux, x86_64-darwin, x86_64-linux ] + RNAwolf: [ i686-linux, x86_64-darwin, x86_64-linux ] + roguestar: [ i686-linux, x86_64-darwin, x86_64-linux ] + roguestar-engine: [ i686-linux, x86_64-darwin, x86_64-linux ] + roguestar-gl: [ i686-linux, x86_64-darwin, x86_64-linux ] + roguestar-glut: [ i686-linux, x86_64-darwin, x86_64-linux ] + RollingDirectory: [ i686-linux, x86_64-darwin, x86_64-linux ] + rope: [ i686-linux, x86_64-darwin, x86_64-linux ] + rosa: [ i686-linux, x86_64-darwin, x86_64-linux ] + roshask: [ i686-linux, x86_64-darwin, x86_64-linux ] + rosso: [ i686-linux, x86_64-darwin, x86_64-linux ] + rounding: [ i686-linux, x86_64-darwin, x86_64-linux ] + roundtrip: [ i686-linux, x86_64-darwin, x86_64-linux ] + roundtrip-aeson: [ i686-linux, x86_64-darwin, x86_64-linux ] + roundtrip-string: [ i686-linux, x86_64-darwin, x86_64-linux ] + roundtrip-xml: [ i686-linux, x86_64-darwin, x86_64-linux ] + route-generator: [ i686-linux, x86_64-darwin, x86_64-linux ] + route-planning: [ i686-linux, x86_64-darwin, x86_64-linux ] + rowrecord: [ i686-linux, x86_64-darwin, x86_64-linux ] + rpc: [ i686-linux, x86_64-darwin, x86_64-linux ] + rpc-framework: [ i686-linux, x86_64-darwin, x86_64-linux ] + rpm: [ i686-linux, x86_64-darwin, x86_64-linux ] + rsagl: [ i686-linux, x86_64-darwin, x86_64-linux ] + rsagl-frp: [ i686-linux, x86_64-darwin, x86_64-linux ] + rsagl-math: [ i686-linux, x86_64-darwin, x86_64-linux ] + rss2irc: [ i686-linux, x86_64-darwin, x86_64-linux ] + rtcm: [ i686-linux, x86_64-darwin, x86_64-linux ] + rtorrent-rpc: [ i686-linux, x86_64-darwin, x86_64-linux ] + ruff: [ i686-linux, x86_64-darwin, x86_64-linux ] + ruler-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + rungekutta: [ i686-linux, x86_64-darwin, x86_64-linux ] + RxHaskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + safe-freeze: [ i686-linux, x86_64-darwin, x86_64-linux ] + safe-globals: [ i686-linux, x86_64-darwin, x86_64-linux ] + safe-lazy-io: [ i686-linux, x86_64-darwin, x86_64-linux ] + safe-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + safer-file-handles: [ i686-linux, x86_64-darwin, x86_64-linux ] + safer-file-handles-bytestring: [ i686-linux, x86_64-darwin, x86_64-linux ] + safer-file-handles-text: [ i686-linux, x86_64-darwin, x86_64-linux ] + sai-shape-syb: [ i686-linux, x86_64-darwin, x86_64-linux ] + Salsa: [ i686-linux, x86_64-darwin, x86_64-linux ] + salvia: [ i686-linux, x86_64-darwin, x86_64-linux ] + salvia-demo: [ i686-linux, x86_64-darwin, x86_64-linux ] + salvia-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + salvia-protocol: [ i686-linux, x86_64-darwin, x86_64-linux ] + salvia-sessions: [ i686-linux, x86_64-darwin, x86_64-linux ] + salvia-websocket: [ i686-linux, x86_64-darwin, x86_64-linux ] + samtools-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] + sarasvati: [ x86_64-darwin ] + sasl: [ i686-linux, x86_64-darwin, x86_64-linux ] + sat: [ i686-linux, x86_64-darwin, x86_64-linux ] + sat-micro-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + satchmo: [ x86_64-darwin ] + satchmo-backends: [ i686-linux, x86_64-darwin, x86_64-linux ] + satchmo-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + satchmo-funsat: [ i686-linux, x86_64-darwin, x86_64-linux ] + satchmo-minisat: [ i686-linux, x86_64-darwin, x86_64-linux ] + satchmo-toysat: [ i686-linux, x86_64-darwin, x86_64-linux ] + SBench: [ i686-linux, x86_64-darwin, x86_64-linux ] + sbp: [ i686-linux, x86_64-darwin, x86_64-linux ] + scaleimage: [ i686-linux, x86_64-darwin, x86_64-linux ] + scalp-webhooks: [ i686-linux, x86_64-darwin, x86_64-linux ] + scan-vector-machine: [ i686-linux, x86_64-darwin, x86_64-linux ] + scenegraph: [ i686-linux, x86_64-darwin, x86_64-linux ] + schedevr: [ i686-linux, x86_64-darwin, x86_64-linux ] + scholdoc: [ i686-linux, x86_64-darwin, x86_64-linux ] + scholdoc-citeproc: [ i686-linux, x86_64-darwin, x86_64-linux ] + science-constants-dimensional: [ i686-linux, x86_64-darwin, x86_64-linux ] + scion: [ i686-linux, x86_64-darwin, x86_64-linux ] + scion-browser: [ i686-linux, x86_64-darwin, x86_64-linux ] + scope: [ i686-linux, x86_64-darwin, x86_64-linux ] + scope-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] + scottish: [ i686-linux, x86_64-darwin, x86_64-linux ] + scotty-blaze: [ i686-linux, x86_64-darwin, x86_64-linux ] + scotty-fay: [ i686-linux, x86_64-darwin, x86_64-linux ] + scotty-hastache: [ i686-linux, x86_64-darwin, x86_64-linux ] + scotty-session: [ i686-linux, x86_64-darwin, x86_64-linux ] + scrabble-bot: [ i686-linux, x86_64-darwin, x86_64-linux ] + ScratchFs: [ i686-linux, x86_64-linux ] + scrobble: [ i686-linux, x86_64-darwin, x86_64-linux ] + scrz: [ i686-linux, x86_64-darwin, x86_64-linux ] + Scurry: [ i686-linux, x86_64-darwin, x86_64-linux ] + SDL-gfx: [ x86_64-darwin ] + SDL-image: [ x86_64-darwin ] + SDL-mpeg: [ x86_64-darwin ] + SDL-ttf: [ x86_64-darwin ] + sdl2-compositor: [ x86_64-darwin ] + sdl2-image: [ i686-linux, x86_64-darwin, x86_64-linux ] + sdl2-ttf: [ x86_64-darwin ] + sdr: [ x86_64-linux ] + seacat: [ i686-linux, x86_64-darwin, x86_64-linux ] + search: [ i686-linux, x86_64-darwin, x86_64-linux ] + secdh: [ i686-linux, x86_64-darwin, x86_64-linux ] + second-transfer: [ i686-linux, x86_64-darwin, x86_64-linux ] + secp256k1: [ i686-linux, x86_64-darwin, x86_64-linux ] + secret-santa: [ i686-linux, x86_64-darwin, x86_64-linux ] + secret-sharing: [ i686-linux, x86_64-darwin, x86_64-linux ] + secrm: [ i686-linux, x86_64-darwin, x86_64-linux ] + sednaDBXML: [ i686-linux, x86_64-darwin, x86_64-linux ] + select: [ x86_64-darwin ] + selectors: [ i686-linux, x86_64-darwin, x86_64-linux ] + selenium: [ i686-linux, x86_64-darwin, x86_64-linux ] + selenium-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + selinux: [ i686-linux, x86_64-darwin, x86_64-linux ] + Semantique: [ i686-linux, x86_64-darwin, x86_64-linux ] + semi-iso: [ i686-linux, x86_64-darwin, x86_64-linux ] + semigroups-actions: [ i686-linux, x86_64-darwin, x86_64-linux ] + semiring: [ i686-linux, x86_64-darwin, x86_64-linux ] + semver-range: [ i686-linux, x86_64-darwin, x86_64-linux ] + sensenet: [ i686-linux, x86_64-darwin, x86_64-linux ] + sentry: [ i686-linux, x86_64-darwin, x86_64-linux ] + seqaid: [ i686-linux, x86_64-darwin, x86_64-linux ] + seqalign: [ i686-linux ] + SeqAlign: [ i686-linux, x86_64-darwin, x86_64-linux ] + seqloc-datafiles: [ i686-linux, x86_64-darwin, x86_64-linux ] + sequent-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + sequor: [ i686-linux, x86_64-darwin, x86_64-linux ] + servant-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + servant-pool: [ i686-linux, x86_64-darwin, x86_64-linux ] + servant-postgresql: [ i686-linux, x86_64-darwin, x86_64-linux ] + servant-scotty: [ i686-linux, x86_64-darwin, x86_64-linux ] + servant-swagger: [ i686-linux ] + serversession-backend-acid-state: [ x86_64-darwin ] + serversession-backend-persistent: [ x86_64-darwin ] + ses-html-snaplet: [ i686-linux, x86_64-darwin, x86_64-linux ] + SessionLogger: [ i686-linux, x86_64-darwin, x86_64-linux ] + sessions: [ i686-linux, x86_64-darwin, x86_64-linux ] + set-cover: [ i686-linux, x86_64-darwin, x86_64-linux ] + set-with: [ i686-linux, x86_64-darwin, x86_64-linux ] + sexp: [ i686-linux, x86_64-darwin, x86_64-linux ] + sexp-grammar: [ i686-linux, x86_64-darwin, x86_64-linux ] + sexpr: [ i686-linux, x86_64-darwin, x86_64-linux ] + SFML: [ i686-linux, x86_64-darwin, x86_64-linux ] + sfml-audio: [ x86_64-darwin ] + SFML-control: [ i686-linux, x86_64-darwin, x86_64-linux ] + SFont: [ i686-linux, x86_64-darwin, x86_64-linux ] + SG: [ i686-linux, x86_64-darwin, x86_64-linux ] + SGdemo: [ i686-linux, x86_64-darwin, x86_64-linux ] + sgrep: [ i686-linux, x86_64-darwin, x86_64-linux ] + shadower: [ i686-linux, x86_64-darwin, x86_64-linux ] + shady-gen: [ i686-linux, x86_64-darwin, x86_64-linux ] + shady-graphics: [ i686-linux, x86_64-darwin, x86_64-linux ] + shake-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + shaker: [ i686-linux, x86_64-darwin, x86_64-linux ] + shapely-data: [ i686-linux, x86_64-darwin, x86_64-linux ] + shared-buffer: [ i686-linux, x86_64-darwin, x86_64-linux ] + shared-memory: [ x86_64-darwin ] + she: [ i686-linux, x86_64-darwin, x86_64-linux ] + shelduck: [ x86_64-darwin ] + shell-pipe: [ i686-linux, x86_64-darwin, x86_64-linux ] + Shellac: [ i686-linux, x86_64-darwin, x86_64-linux ] + Shellac-compatline: [ i686-linux, x86_64-darwin, x86_64-linux ] + Shellac-editline: [ i686-linux, x86_64-darwin, x86_64-linux ] + Shellac-haskeline: [ i686-linux, x86_64-darwin, x86_64-linux ] + Shellac-readline: [ i686-linux, x86_64-darwin, x86_64-linux ] + shellish: [ i686-linux, x86_64-darwin, x86_64-linux ] + showdown: [ i686-linux, x86_64-darwin, x86_64-linux ] + shpider: [ i686-linux, x86_64-darwin, x86_64-linux ] + Shu-thing: [ i686-linux, x86_64-darwin, x86_64-linux ] + sifflet: [ i686-linux, x86_64-darwin, x86_64-linux ] + sifflet-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + signals: [ i686-linux, x86_64-darwin, x86_64-linux ] + simd: [ i686-linux, x86_64-darwin, x86_64-linux ] + simgi: [ i686-linux, x86_64-darwin, x86_64-linux ] + simple-bluetooth: [ i686-linux, x86_64-darwin, x86_64-linux ] + simple-c-value: [ i686-linux, x86_64-darwin, x86_64-linux ] + simple-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + simple-css: [ i686-linux, x86_64-darwin, x86_64-linux ] + simple-firewire: [ i686-linux, x86_64-darwin, x86_64-linux ] + simple-form: [ i686-linux, x86_64-darwin, x86_64-linux ] + simple-log-syslog: [ i686-linux, x86_64-darwin, x86_64-linux ] + simple-pascal: [ i686-linux, x86_64-darwin, x86_64-linux ] + simple-vec3: [ i686-linux, x86_64-darwin, x86_64-linux ] + SimpleGL: [ i686-linux, x86_64-darwin, x86_64-linux ] + SimpleH: [ i686-linux, x86_64-darwin, x86_64-linux ] + simpleirc: [ i686-linux, x86_64-darwin, x86_64-linux ] + simpleirc-lens: [ i686-linux, x86_64-darwin, x86_64-linux ] + SimpleLog: [ i686-linux, x86_64-darwin, x86_64-linux ] + simplenote: [ i686-linux, x86_64-darwin, x86_64-linux ] + simpleprelude: [ i686-linux, x86_64-darwin, x86_64-linux ] + simplessh: [ i686-linux, x86_64-darwin, x86_64-linux ] + simseq: [ i686-linux, x86_64-darwin, x86_64-linux ] + sindre: [ i686-linux, x86_64-darwin, x86_64-linux ] + sirkel: [ i686-linux, x86_64-darwin, x86_64-linux ] + sized: [ i686-linux, x86_64-darwin, x86_64-linux ] + skeleton: [ i686-linux, x86_64-darwin, x86_64-linux ] + skype4hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + slack: [ i686-linux, x86_64-darwin, x86_64-linux ] + slidemews: [ i686-linux, x86_64-darwin, x86_64-linux ] + sloth: [ i686-linux, x86_64-darwin, x86_64-linux ] + smallarray: [ i686-linux, x86_64-darwin, x86_64-linux ] + smallpt-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + smallstring: [ i686-linux, x86_64-darwin, x86_64-linux ] + smartGroup: [ i686-linux, x86_64-linux ] + smartword: [ i686-linux, x86_64-darwin, x86_64-linux ] + sme: [ i686-linux, x86_64-darwin, x86_64-linux ] + Smooth: [ i686-linux, x86_64-darwin, x86_64-linux ] + smt-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + smtp-mail-ng: [ i686-linux, x86_64-darwin, x86_64-linux ] + smtp2mta: [ i686-linux, x86_64-darwin, x86_64-linux ] + snake-game: [ i686-linux, x86_64-darwin, x86_64-linux ] + snap-accept: [ i686-linux, x86_64-darwin, x86_64-linux ] + snap-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + snap-predicates: [ i686-linux, x86_64-darwin, x86_64-linux ] + snap-testing: [ i686-linux, x86_64-darwin, x86_64-linux ] + snap-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-actionlog: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-css-min: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-environments: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-hasql: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-haxl: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-hdbc: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-i18n: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-influxdb: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-mongoDB: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-mongodb-minimalistic: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-mysql-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-oauth: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-redson: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-rest: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-sedna: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-tasks: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-typed-sessions: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-wordpress: [ i686-linux, x86_64-darwin, x86_64-linux ] + snappy: [ x86_64-darwin ] + snappy-conduit: [ x86_64-darwin ] + snappy-framing: [ x86_64-darwin ] + snappy-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] + sndfile-enumerators: [ i686-linux, x86_64-darwin, x86_64-linux ] + SNet: [ i686-linux, x86_64-darwin, x86_64-linux ] + snm: [ i686-linux, x86_64-darwin, x86_64-linux ] + snow-white: [ i686-linux, x86_64-darwin, x86_64-linux ] + snowglobe: [ i686-linux, x86_64-darwin, x86_64-linux ] + Snusmumrik: [ i686-linux, x86_64-linux ] + SoccerFun: [ i686-linux, x86_64-darwin, x86_64-linux ] + SoccerFunGL: [ i686-linux, x86_64-darwin, x86_64-linux ] + sock2stream: [ i686-linux, x86_64-darwin, x86_64-linux ] + socket-sctp: [ i686-linux, x86_64-darwin, x86_64-linux ] + socketio: [ i686-linux, x86_64-darwin, x86_64-linux ] + socketson: [ i686-linux, x86_64-darwin, x86_64-linux ] + soegtk: [ x86_64-darwin ] + sonic-visualiser: [ i686-linux, x86_64-darwin, x86_64-linux ] + SoOSiM: [ i686-linux, x86_64-darwin, x86_64-linux ] + sorted: [ i686-linux, x86_64-darwin, x86_64-linux ] + sound-collage: [ i686-linux, x86_64-darwin, x86_64-linux ] + source-code-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + SourceGraph: [ i686-linux, x86_64-darwin, x86_64-linux ] + sousit: [ i686-linux, x86_64-darwin, x86_64-linux ] + soxlib: [ i686-linux, x86_64-darwin, x86_64-linux ] + soyuz: [ i686-linux, x86_64-darwin, x86_64-linux ] + SpaceInvaders: [ i686-linux ] + SpacePrivateers: [ i686-linux, x86_64-darwin, x86_64-linux ] + spanout: [ i686-linux, x86_64-darwin, x86_64-linux ] + sparse: [ i686-linux, x86_64-darwin, x86_64-linux ] + sparsebit: [ i686-linux, x86_64-darwin, x86_64-linux ] + sparsecheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + spata: [ i686-linux, x86_64-darwin, x86_64-linux ] + special-functors: [ i686-linux, x86_64-darwin, x86_64-linux ] + specialize-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + sphero: [ i686-linux, x86_64-darwin, x86_64-linux ] + sphinx-cli: [ i686-linux, x86_64-darwin, x86_64-linux ] + spice: [ x86_64-darwin ] + spike: [ i686-linux, x86_64-linux ] + splaytree: [ i686-linux, x86_64-darwin, x86_64-linux ] + spline3: [ i686-linux ] + splines: [ i686-linux, x86_64-darwin, x86_64-linux ] + split-record: [ i686-linux, x86_64-darwin, x86_64-linux ] + Spock: [ x86_64-darwin ] + Spock-auth: [ i686-linux, x86_64-darwin, x86_64-linux ] + Spock-digestive: [ x86_64-darwin ] + Spock-worker: [ x86_64-darwin ] + spoonutil: [ i686-linux, x86_64-darwin, x86_64-linux ] + spoty: [ i686-linux, x86_64-darwin, x86_64-linux ] + Sprig: [ i686-linux, x86_64-darwin, x86_64-linux ] + spsa: [ i686-linux, x86_64-darwin, x86_64-linux ] + spy: [ i686-linux, x86_64-darwin, x86_64-linux ] + sql-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + sql-simple-mysql: [ i686-linux, x86_64-darwin, x86_64-linux ] + sql-simple-pool: [ i686-linux, x86_64-darwin, x86_64-linux ] + sql-simple-postgresql: [ i686-linux, x86_64-darwin, x86_64-linux ] + sql-simple-sqlite: [ i686-linux, x86_64-darwin, x86_64-linux ] + sqlite-simple-typed: [ i686-linux, x86_64-darwin, x86_64-linux ] + squeeze: [ i686-linux, x86_64-darwin, x86_64-linux ] + srcinst: [ i686-linux, x86_64-darwin, x86_64-linux ] + ssh: [ i686-linux, x86_64-linux ] + sssp: [ i686-linux, x86_64-darwin, x86_64-linux ] + sstable: [ i686-linux, x86_64-darwin, x86_64-linux ] + stable-tree: [ i686-linux, x86_64-darwin, x86_64-linux ] + stack-hpc-coveralls: [ i686-linux, x86_64-darwin, x86_64-linux ] + stack-prism: [ i686-linux, x86_64-darwin, x86_64-linux ] + starrover2: [ i686-linux, x86_64-linux ] + stateful-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] + statgrab: [ i686-linux, x86_64-darwin, x86_64-linux ] + statistics-dirichlet: [ i686-linux, x86_64-darwin, x86_64-linux ] + statistics-fusion: [ i686-linux, x86_64-darwin, x86_64-linux ] + stb-truetype: [ i686-linux, x86_64-darwin, x86_64-linux ] + step-function: [ i686-linux, x86_64-darwin, x86_64-linux ] + stepwise: [ i686-linux, x86_64-darwin, x86_64-linux ] + stm-chunked-queues: [ i686-linux, x86_64-darwin, x86_64-linux ] + stmcontrol: [ i686-linux, x86_64-darwin, x86_64-linux ] + Stomp: [ i686-linux, x86_64-darwin, x86_64-linux ] + stopwatch: [ x86_64-darwin ] + storable-static-array: [ i686-linux, x86_64-darwin, x86_64-linux ] + storablevector: [ i686-linux, x86_64-darwin, x86_64-linux ] + storablevector-carray: [ i686-linux, x86_64-darwin, x86_64-linux ] + storablevector-streamfusion: [ i686-linux, x86_64-darwin, x86_64-linux ] + Strafunski-Sdf2Haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + stratum-tool: [ i686-linux, x86_64-darwin, x86_64-linux ] + stream-fusion: [ i686-linux, x86_64-darwin, x86_64-linux ] + streamed: [ i686-linux, x86_64-linux ] + streaming-utils: [ i686-linux ] + strict-concurrency: [ i686-linux, x86_64-darwin, x86_64-linux ] + StrictBench: [ i686-linux, x86_64-darwin, x86_64-linux ] + stringlike: [ i686-linux, x86_64-darwin, x86_64-linux ] + structured-mongoDB: [ i686-linux, x86_64-darwin, x86_64-linux ] + structures: [ i686-linux, x86_64-darwin, x86_64-linux ] + stunts: [ i686-linux, x86_64-darwin, x86_64-linux ] + sub-state: [ i686-linux, x86_64-darwin, x86_64-linux ] + subhask: [ i686-linux, x86_64-darwin, x86_64-linux ] + subleq-toolchain: [ i686-linux, x86_64-darwin, x86_64-linux ] + SuffixStructures: [ i686-linux, x86_64-darwin, x86_64-linux ] + suitable: [ i686-linux, x86_64-darwin, x86_64-linux ] + sunlight: [ i686-linux, x86_64-darwin, x86_64-linux ] + sunroof-compiler: [ i686-linux, x86_64-darwin, x86_64-linux ] + sunroof-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + sunroof-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + super-user-spark: [ i686-linux, x86_64-darwin, x86_64-linux ] + supercollider-midi: [ i686-linux, x86_64-linux ] + superdoc: [ i686-linux, x86_64-darwin, x86_64-linux ] + supero: [ i686-linux, x86_64-darwin, x86_64-linux ] + supervisor: [ i686-linux, x86_64-darwin, x86_64-linux ] + SVG2Q: [ i686-linux, x86_64-darwin, x86_64-linux ] + svg2q: [ i686-linux, x86_64-darwin, x86_64-linux ] + svgcairo: [ x86_64-darwin ] + svm-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + svndump: [ i686-linux, x86_64-darwin, x86_64-linux ] + swagger2: [ i686-linux ] + swapper: [ i686-linux, x86_64-darwin, x86_64-linux ] + swearjure: [ i686-linux, x86_64-darwin, x86_64-linux ] + swf: [ i686-linux, x86_64-darwin, x86_64-linux ] + swift-lda: [ i686-linux, x86_64-darwin, x86_64-linux ] + sws: [ i686-linux, x86_64-darwin, x86_64-linux ] + syb-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + sylvia: [ i686-linux, x86_64-darwin, x86_64-linux ] + sym-plot: [ i686-linux, x86_64-darwin, x86_64-linux ] + symengine-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + sync: [ i686-linux, x86_64-darwin, x86_64-linux ] + sync-mht: [ i686-linux ] + syncthing-hs: [ x86_64-darwin ] + syntactic: [ i686-linux, x86_64-darwin ] + syntax: [ i686-linux, x86_64-darwin, x86_64-linux ] + syntax-attoparsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + syntax-example: [ i686-linux, x86_64-darwin, x86_64-linux ] + syntax-example-json: [ i686-linux, x86_64-darwin, x86_64-linux ] + syntax-pretty: [ i686-linux, x86_64-darwin, x86_64-linux ] + syntax-printer: [ i686-linux, x86_64-darwin, x86_64-linux ] + syntax-trees: [ i686-linux, x86_64-darwin, x86_64-linux ] + syntax-trees-fork-bairyn: [ i686-linux, x86_64-darwin, x86_64-linux ] + SyntaxMacros: [ i686-linux, x86_64-darwin, x86_64-linux ] + synthesizer: [ i686-linux, x86_64-darwin, x86_64-linux ] + synthesizer-alsa: [ i686-linux, x86_64-linux ] + synthesizer-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + synthesizer-dimensional: [ i686-linux, x86_64-darwin, x86_64-linux ] + synthesizer-filter: [ i686-linux, x86_64-darwin, x86_64-linux ] + synthesizer-llvm: [ i686-linux, x86_64-darwin, x86_64-linux ] + synthesizer-midi: [ i686-linux, x86_64-darwin, x86_64-linux ] + Sysmon: [ i686-linux, x86_64-darwin, x86_64-linux ] + system-canonicalpath: [ i686-linux, x86_64-darwin, x86_64-linux ] + system-inotify: [ x86_64-darwin ] + system-lifted: [ i686-linux, x86_64-darwin, x86_64-linux ] + system-random-effect: [ i686-linux, x86_64-darwin, x86_64-linux ] + system-time-monotonic: [ x86_64-darwin ] + ta: [ i686-linux, x86_64-darwin, x86_64-linux ] + tables: [ i686-linux, x86_64-darwin, x86_64-linux ] + Tables: [ i686-linux, x86_64-darwin, x86_64-linux ] + tablestorage: [ i686-linux, x86_64-darwin, x86_64-linux ] + tabloid: [ i686-linux, x86_64-darwin, x86_64-linux ] + taffybar: [ x86_64-darwin ] + tagged-list: [ i686-linux, x86_64-darwin, x86_64-linux ] + tagged-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + tagsoup-ht: [ i686-linux, x86_64-darwin, x86_64-linux ] + tagsoup-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + Takusen: [ i686-linux, x86_64-darwin, x86_64-linux ] + takusen-oracle: [ i686-linux, x86_64-darwin, x86_64-linux ] + tamarin-prover: [ i686-linux, x86_64-darwin, x86_64-linux ] + tamarin-prover-term: [ i686-linux, x86_64-darwin, x86_64-linux ] + tamarin-prover-theory: [ i686-linux, x86_64-darwin, x86_64-linux ] + tamarin-prover-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + task: [ i686-linux, x86_64-darwin, x86_64-linux ] + task-distribution: [ i686-linux, x86_64-darwin, x86_64-linux ] + taskpool: [ x86_64-darwin ] + tasty-integrate: [ i686-linux, x86_64-darwin, x86_64-linux ] + TBC: [ i686-linux, x86_64-darwin, x86_64-linux ] + TBit: [ i686-linux, x86_64-darwin, x86_64-linux ] + tbox: [ i686-linux, x86_64-darwin, x86_64-linux ] + tccli: [ i686-linux, x86_64-darwin, x86_64-linux ] + tcp: [ i686-linux, x86_64-darwin, x86_64-linux ] + tdd-util: [ i686-linux, x86_64-darwin, x86_64-linux ] + TeaHS: [ i686-linux, x86_64-linux ] + teams: [ i686-linux, x86_64-darwin, x86_64-linux ] + telegram: [ i686-linux, x86_64-darwin, x86_64-linux ] + template-default: [ i686-linux, x86_64-darwin, x86_64-linux ] + template-haskell-util: [ i686-linux, x86_64-darwin, x86_64-linux ] + template-hsml: [ i686-linux, x86_64-darwin, x86_64-linux ] + template-yj: [ i686-linux, x86_64-darwin, x86_64-linux ] + tempodb: [ i686-linux, x86_64-darwin, x86_64-linux ] + temporal-csound: [ i686-linux, x86_64-darwin, x86_64-linux ] + tempus: [ i686-linux, x86_64-darwin, x86_64-linux ] + tensor: [ i686-linux, x86_64-darwin, x86_64-linux ] + term-rewriting: [ i686-linux, x86_64-darwin, x86_64-linux ] + termbox-bindings: [ i686-linux, x86_64-darwin, x86_64-linux ] + terntup: [ i686-linux, x86_64-darwin, x86_64-linux ] + terrahs: [ i686-linux, x86_64-darwin, x86_64-linux ] + test-framework-doctest: [ i686-linux, x86_64-darwin, x86_64-linux ] + test-framework-quickcheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + testloop: [ i686-linux, x86_64-darwin, x86_64-linux ] + testpack: [ i686-linux, x86_64-darwin, x86_64-linux ] + testpattern: [ i686-linux, x86_64-darwin, x86_64-linux ] + testPkg: [ i686-linux, x86_64-darwin, x86_64-linux ] + testrunner: [ i686-linux, x86_64-darwin, x86_64-linux ] + tetris: [ x86_64-darwin ] + tex2txt: [ i686-linux, x86_64-darwin, x86_64-linux ] + texrunner: [ i686-linux, x86_64-darwin, x86_64-linux ] + text-json-qq: [ i686-linux, x86_64-darwin, x86_64-linux ] + text-normal: [ i686-linux, x86_64-darwin, x86_64-linux ] + text-register-machine: [ i686-linux, x86_64-darwin, x86_64-linux ] + text-show-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] + text-xml-generic: [ i686-linux, x86_64-darwin, x86_64-linux ] + text-xml-qq: [ i686-linux, x86_64-darwin, x86_64-linux ] + textmatetags: [ i686-linux, x86_64-darwin, x86_64-linux ] + tfp-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + tftp: [ x86_64-darwin ] + th-context: [ i686-linux, x86_64-darwin, x86_64-linux ] + th-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] + th-kinds: [ i686-linux, x86_64-darwin, x86_64-linux ] + Theora: [ i686-linux, x86_64-darwin, x86_64-linux ] + theoremquest-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + thih: [ i686-linux, x86_64-darwin, x86_64-linux ] + thimk: [ i686-linux, x86_64-darwin, x86_64-linux ] + Thingie: [ i686-linux, x86_64-darwin, x86_64-linux ] + threadscope: [ x86_64-darwin ] + thrift: [ i686-linux, x86_64-darwin, x86_64-linux ] + Thrift: [ i686-linux, x86_64-darwin, x86_64-linux ] + tic-tac-toe: [ i686-linux, x86_64-darwin, x86_64-linux ] + tickle: [ i686-linux ] + TicTacToe: [ i686-linux, x86_64-darwin, x86_64-linux ] + tidal-midi: [ i686-linux, x86_64-linux ] + tiger: [ i686-linux, x86_64-darwin, x86_64-linux ] + tighttp: [ i686-linux, x86_64-darwin, x86_64-linux ] + timberc: [ i686-linux, x86_64-darwin, x86_64-linux ] + time-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + time-exts: [ i686-linux ] + time-http: [ i686-linux, x86_64-darwin, x86_64-linux ] + time-qq: [ i686-linux ] + time-recurrence: [ i686-linux, x86_64-darwin, x86_64-linux ] + time-series: [ i686-linux, x86_64-darwin, x86_64-linux ] + time-w3c: [ i686-linux, x86_64-darwin, x86_64-linux ] + timecalc: [ i686-linux, x86_64-darwin, x86_64-linux ] + timeout: [ i686-linux, x86_64-darwin, x86_64-linux ] + timeparsers: [ i686-linux, x86_64-darwin, x86_64-linux ] + TimePiece: [ i686-linux, x86_64-darwin, x86_64-linux ] + timestamp-subprocess-lines: [ i686-linux, x86_64-darwin, x86_64-linux ] + TinyLaunchbury: [ i686-linux, x86_64-darwin, x86_64-linux ] + TinyURL: [ i686-linux, x86_64-darwin, x86_64-linux ] + tip-haskell-frontend: [ i686-linux, x86_64-darwin, x86_64-linux ] + Titim: [ i686-linux, x86_64-darwin, x86_64-linux ] + tkhs: [ i686-linux, x86_64-darwin, x86_64-linux ] + tkyprof: [ i686-linux, x86_64-darwin, x86_64-linux ] + tls-extra: [ i686-linux, x86_64-darwin, x86_64-linux ] + to-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + to-string-class: [ i686-linux, x86_64-darwin, x86_64-linux ] + to-string-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] + todos: [ i686-linux, x86_64-darwin, x86_64-linux ] + toilet: [ i686-linux, x86_64-darwin, x86_64-linux ] + toktok: [ i686-linux, x86_64-darwin, x86_64-linux ] + tokyocabinet-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + tomato-rubato-openal: [ x86_64-darwin ] + toml: [ i686-linux, x86_64-darwin, x86_64-linux ] + toolshed: [ i686-linux, x86_64-darwin, x86_64-linux ] + Top: [ i686-linux, x86_64-darwin, x86_64-linux ] + topkata: [ i686-linux, x86_64-darwin, x86_64-linux ] + torch: [ i686-linux, x86_64-darwin, x86_64-linux ] + Tournament: [ i686-linux, x86_64-darwin, x86_64-linux ] + toysolver: [ i686-linux, x86_64-darwin, x86_64-linux ] + tracker: [ i686-linux, x86_64-darwin, x86_64-linux ] + trajectory: [ i686-linux, x86_64-darwin, x86_64-linux ] + transactional-events: [ i686-linux, x86_64-darwin, x86_64-linux ] + transformers-convert: [ i686-linux, x86_64-darwin, x86_64-linux ] + transformers-runnable: [ i686-linux, x86_64-darwin, x86_64-linux ] + transient: [ i686-linux, x86_64-darwin, x86_64-linux ] + translate: [ i686-linux, x86_64-darwin, x86_64-linux ] + traypoweroff: [ i686-linux, x86_64-darwin, x86_64-linux ] + tremulous-query: [ i686-linux, x86_64-darwin, x86_64-linux ] + TrendGraph: [ i686-linux, x86_64-darwin, x86_64-linux ] + trhsx: [ i686-linux, x86_64-darwin, x86_64-linux ] + triangulation: [ i686-linux, x86_64-darwin, x86_64-linux ] + TrieMap: [ i686-linux, x86_64-darwin, x86_64-linux ] + trimpolya: [ i686-linux, x86_64-darwin, x86_64-linux ] + tripLL: [ x86_64-darwin ] + tsession: [ i686-linux, x86_64-darwin, x86_64-linux ] + tsession-happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] + tskiplist: [ i686-linux, x86_64-darwin, x86_64-linux ] + tsp-viz: [ i686-linux, x86_64-darwin, x86_64-linux ] + tuntap: [ i686-linux, x86_64-darwin, x86_64-linux ] + tuple-gen: [ i686-linux, x86_64-darwin, x86_64-linux ] + tuple-morph: [ i686-linux, x86_64-darwin, x86_64-linux ] + tupleinstances: [ i686-linux, x86_64-darwin, x86_64-linux ] + turing-music: [ x86_64-darwin ] + twee: [ x86_64-darwin ] + twentefp: [ x86_64-darwin ] + twentefp-eventloop-trees: [ i686-linux, x86_64-darwin, x86_64-linux ] + twentefp-rosetree: [ i686-linux, x86_64-darwin, x86_64-linux ] + twhs: [ i686-linux, x86_64-darwin, x86_64-linux ] + twidge: [ i686-linux, x86_64-darwin, x86_64-linux ] + twilight-stm: [ i686-linux, x86_64-darwin, x86_64-linux ] + twilio: [ i686-linux, x86_64-darwin, x86_64-linux ] + twill: [ i686-linux, x86_64-darwin, x86_64-linux ] + twiml: [ i686-linux, x86_64-darwin, x86_64-linux ] + twine: [ i686-linux, x86_64-darwin, x86_64-linux ] + twisty: [ i686-linux, x86_64-darwin, x86_64-linux ] + twitter: [ i686-linux, x86_64-darwin, x86_64-linux ] + twitter-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + tx: [ i686-linux, x86_64-darwin, x86_64-linux ] + TYB: [ i686-linux, x86_64-darwin, x86_64-linux ] + typalyze: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-cereal: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-digits: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-equality-check: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-int: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-level: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-level-bst: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-ord: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-ord-spine-cereal: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-settheory: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-spine: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-structure: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-sub-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + typeable-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + TypeClass: [ i686-linux, x86_64-darwin, x86_64-linux ] + typed-spreadsheet: [ x86_64-darwin ] + typed-wire: [ i686-linux, x86_64-darwin, x86_64-linux ] + typedquery: [ i686-linux, x86_64-darwin, x86_64-linux ] + typehash: [ i686-linux, x86_64-darwin, x86_64-linux ] + TypeIlluminator: [ i686-linux, x86_64-darwin, x86_64-linux ] + typelevel-tensor: [ i686-linux, x86_64-darwin, x86_64-linux ] + typeparams: [ i686-linux, x86_64-darwin, x86_64-linux ] + typescript-docs: [ i686-linux, x86_64-darwin, x86_64-linux ] + tz: [ x86_64-darwin ] + uAgda: [ i686-linux, x86_64-darwin, x86_64-linux ] + uberlast: [ i686-linux, x86_64-darwin, x86_64-linux ] + uconv: [ i686-linux, x86_64-darwin, x86_64-linux ] + udbus: [ i686-linux, x86_64-darwin, x86_64-linux ] + udbus-model: [ i686-linux, x86_64-darwin, x86_64-linux ] + udev: [ i686-linux, x86_64-darwin, x86_64-linux ] + ui-command: [ i686-linux, x86_64-darwin, x86_64-linux ] + UISF: [ x86_64-darwin ] + UMM: [ i686-linux, x86_64-darwin, x86_64-linux ] + unamb-custom: [ i686-linux, x86_64-darwin, x86_64-linux ] + unbounded-delays-units: [ i686-linux, x86_64-darwin, x86_64-linux ] + unboxed-containers: [ i686-linux, x86_64-darwin, x86_64-linux ] + unbreak: [ x86_64-darwin ] + unicode-normalization: [ i686-linux, x86_64-darwin, x86_64-linux ] + unicoder: [ i686-linux, x86_64-darwin, x86_64-linux ] + uniform-io: [ i686-linux, x86_64-darwin, x86_64-linux ] + union-map: [ i686-linux, x86_64-darwin, x86_64-linux ] + uniqueid: [ i686-linux, x86_64-darwin, x86_64-linux ] + unittyped: [ i686-linux, x86_64-darwin, x86_64-linux ] + universe-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + unix-process-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + Unixutils-shadow: [ x86_64-darwin ] + unlit: [ i686-linux, x86_64-darwin, x86_64-linux ] + unordered-containers-rematch: [ i686-linux, x86_64-darwin, x86_64-linux ] + unpack-funcs: [ i686-linux, x86_64-darwin, x86_64-linux ] + unscramble: [ i686-linux, x86_64-darwin, x86_64-linux ] + up: [ i686-linux, x86_64-darwin, x86_64-linux ] + uploadcare: [ i686-linux, x86_64-darwin, x86_64-linux ] + upskirt: [ i686-linux, x86_64-darwin, x86_64-linux ] + ureader: [ i686-linux, x86_64-darwin, x86_64-linux ] + urembed: [ i686-linux, x86_64-darwin, x86_64-linux ] + uri-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + uri-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + uri-enumerator-file: [ i686-linux, x86_64-darwin, x86_64-linux ] + url-generic: [ i686-linux, x86_64-darwin, x86_64-linux ] + urlcheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + urldecode: [ i686-linux, x86_64-darwin, x86_64-linux ] + UrlDisp: [ i686-linux, x86_64-darwin, x86_64-linux ] + urldisp-happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] + URLT: [ i686-linux, x86_64-darwin, x86_64-linux ] + urxml: [ i686-linux, x86_64-darwin, x86_64-linux ] + usb-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + usb-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] + usb-safe: [ i686-linux, x86_64-darwin, x86_64-linux ] + utf8-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] + UTFTConverter: [ i686-linux, x86_64-darwin, x86_64-linux ] + uuagc-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] + uvector: [ i686-linux, x86_64-darwin, x86_64-linux ] + uvector-algorithms: [ i686-linux, x86_64-darwin, x86_64-linux ] + v4l2: [ i686-linux, x86_64-darwin, x86_64-linux ] + v4l2-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + vacuum: [ i686-linux, x86_64-darwin, x86_64-linux ] + vacuum-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] + vacuum-graphviz: [ i686-linux, x86_64-darwin, x86_64-linux ] + vacuum-opengl: [ i686-linux, x86_64-darwin, x86_64-linux ] + vacuum-ubigraph: [ i686-linux, x86_64-darwin, x86_64-linux ] + vampire: [ i686-linux, x86_64-darwin, x86_64-linux ] + var: [ i686-linux, x86_64-darwin, x86_64-linux ] + vaultaire-common: [ i686-linux, x86_64-darwin, x86_64-linux ] + vcache: [ x86_64-darwin ] + vcache-trie: [ x86_64-darwin ] + vcsgui: [ x86_64-darwin ] + Vec-Boolean: [ i686-linux, x86_64-darwin, x86_64-linux ] + Vec-OpenGLRaw: [ i686-linux, x86_64-darwin, x86_64-linux ] + Vec-Transform: [ i686-linux, x86_64-darwin, x86_64-linux ] + vect-opengl: [ i686-linux, x86_64-darwin, x86_64-linux ] + vector-bytestring: [ i686-linux, x86_64-darwin, x86_64-linux ] + vector-clock: [ i686-linux, x86_64-darwin, x86_64-linux ] + vector-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + vector-functorlazy: [ i686-linux, x86_64-darwin, x86_64-linux ] + vector-instances-collections: [ i686-linux, x86_64-darwin, x86_64-linux ] + vector-random: [ i686-linux, x86_64-darwin, x86_64-linux ] + vector-read-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] + vector-space-opengl: [ i686-linux, x86_64-darwin, x86_64-linux ] + vector-static: [ i686-linux, x86_64-darwin, x86_64-linux ] + verilog: [ i686-linux, x86_64-darwin, x86_64-linux ] + versions: [ i686-linux, x86_64-darwin, x86_64-linux ] + vigilance: [ i686-linux, x86_64-darwin, x86_64-linux ] + vintage-basic: [ i686-linux, x86_64-darwin, x86_64-linux ] + vinyl-gl: [ i686-linux, x86_64-darwin, x86_64-linux ] + vinyl-json: [ i686-linux, x86_64-darwin, x86_64-linux ] + vinyl-vectors: [ i686-linux, x86_64-darwin, x86_64-linux ] + virthualenv: [ i686-linux, x86_64-darwin, x86_64-linux ] + vision: [ i686-linux, x86_64-darwin, x86_64-linux ] + visual-graphrewrite: [ i686-linux, x86_64-darwin, x86_64-linux ] + visual-prof: [ i686-linux, x86_64-darwin, x86_64-linux ] + vivid: [ i686-linux, x86_64-darwin, x86_64-linux ] + vk-aws-route53: [ i686-linux, x86_64-darwin, x86_64-linux ] + vowpal-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + voyeur: [ i686-linux, x86_64-linux ] + vrpn: [ x86_64-darwin ] + vte: [ i686-linux, x86_64-linux ] + vtegtk3: [ i686-linux, x86_64-linux ] + vty-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + vty-menu: [ i686-linux, x86_64-darwin, x86_64-linux ] + vty-ui-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + vulkan: [ i686-linux, x86_64-darwin, x86_64-linux ] + wacom-daemon: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-graceful: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-handler-devel: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-handler-snap: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-handler-webkit: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-hastache: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-lite: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-logger-prefork: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-middleware-cache: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-middleware-cache-redis: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-middleware-catch: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-middleware-crowd: [ i686-linux ] + wai-middleware-headers: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-middleware-hmac-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-middleware-preprocessor: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-middleware-route: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-middleware-static-caching: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-session-tokyocabinet: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-static-cache: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-thrift: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-throttler: [ i686-linux, x86_64-darwin, x86_64-linux ] + warp-dynamic: [ i686-linux, x86_64-darwin, x86_64-linux ] + warp-static: [ i686-linux, x86_64-darwin, x86_64-linux ] + warp-tls-uid: [ i686-linux, x86_64-darwin, x86_64-linux ] + WashNGo: [ i686-linux, x86_64-darwin, x86_64-linux ] + watchdog: [ i686-linux, x86_64-darwin, x86_64-linux ] + watcher: [ i686-linux, x86_64-darwin, x86_64-linux ] + watchit: [ i686-linux, x86_64-darwin, x86_64-linux ] + WaveFront: [ i686-linux, x86_64-darwin, x86_64-linux ] + wavesurfer: [ i686-linux, x86_64-darwin, x86_64-linux ] + weather-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + web-browser-in-haskell: [ i686-linux, x86_64-linux ] + web-encodings: [ i686-linux, x86_64-darwin, x86_64-linux ] + web-mongrel2: [ i686-linux, x86_64-darwin, x86_64-linux ] + web-routes-quasi: [ i686-linux, x86_64-darwin, x86_64-linux ] + web-routes-transformers: [ i686-linux, x86_64-darwin, x86_64-linux ] + webapi: [ i686-linux, x86_64-darwin, x86_64-linux ] + webapp: [ i686-linux, x86_64-darwin, x86_64-linux ] + WebBits-Html: [ i686-linux, x86_64-darwin, x86_64-linux ] + WebBits-multiplate: [ i686-linux, x86_64-darwin, x86_64-linux ] + WebCont: [ i686-linux, x86_64-darwin, x86_64-linux ] + webdriver-snoy: [ i686-linux, x86_64-darwin, x86_64-linux ] + webify: [ i686-linux, x86_64-darwin, x86_64-linux ] + webkit-javascriptcore: [ i686-linux, x86_64-linux ] + Webrexp: [ i686-linux, x86_64-darwin, x86_64-linux ] + webserver: [ i686-linux, x86_64-darwin, x86_64-linux ] + websnap: [ i686-linux, x86_64-linux ] + webwire: [ i686-linux, x86_64-darwin, x86_64-linux ] + wedged: [ i686-linux, x86_64-darwin, x86_64-linux ] + weighted-regexp: [ i686-linux, x86_64-darwin, x86_64-linux ] + welshy: [ i686-linux, x86_64-darwin, x86_64-linux ] + Wheb: [ i686-linux, x86_64-darwin, x86_64-linux ] + wheb-mongo: [ i686-linux, x86_64-darwin, x86_64-linux ] + wheb-redis: [ i686-linux, x86_64-darwin, x86_64-linux ] + wheb-strapped: [ i686-linux, x86_64-darwin, x86_64-linux ] + whim: [ i686-linux, x86_64-darwin, x86_64-linux ] + whitespace: [ i686-linux, x86_64-darwin, x86_64-linux ] + WikimediaParser: [ i686-linux, x86_64-darwin, x86_64-linux ] + wikipedia4epub: [ i686-linux, x86_64-darwin, x86_64-linux ] + windowslive: [ i686-linux, x86_64-darwin, x86_64-linux ] + winerror: [ i686-linux, x86_64-darwin, x86_64-linux ] + winio: [ i686-linux, x86_64-darwin, x86_64-linux ] + Wired: [ x86_64-darwin ] + WL500gPControl: [ i686-linux, x86_64-darwin, x86_64-linux ] + wlc-hs: [ i686-linux, x86_64-linux ] + WMSigner: [ i686-linux ] + wobsurv: [ i686-linux, x86_64-darwin, x86_64-linux ] + woffex: [ i686-linux, x86_64-darwin, x86_64-linux ] + wolf: [ i686-linux, x86_64-darwin, x86_64-linux ] + word24: [ i686-linux, x86_64-darwin, x86_64-linux ] + WordAlignment: [ i686-linux, x86_64-darwin, x86_64-linux ] + Wordlint: [ i686-linux, x86_64-darwin, x86_64-linux ] + WordNet: [ i686-linux, x86_64-darwin, x86_64-linux ] + WordNet-ghc74: [ i686-linux, x86_64-darwin, x86_64-linux ] + wordsearch: [ i686-linux, x86_64-darwin, x86_64-linux ] + workflow-osx: [ i686-linux, x86_64-darwin, x86_64-linux ] + wp-archivebot: [ i686-linux, x86_64-darwin, x86_64-linux ] + wraxml: [ i686-linux, x86_64-darwin, x86_64-linux ] + wright: [ i686-linux, x86_64-darwin, x86_64-linux ] + wtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + wtk-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + wumpus-basic: [ i686-linux, x86_64-darwin, x86_64-linux ] + wumpus-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + wumpus-drawing: [ i686-linux, x86_64-darwin, x86_64-linux ] + wumpus-microprint: [ i686-linux, x86_64-darwin, x86_64-linux ] + wumpus-tree: [ i686-linux, x86_64-darwin, x86_64-linux ] + WURFL: [ i686-linux, x86_64-darwin, x86_64-linux ] + wx: [ x86_64-darwin ] + wxAsteroids: [ x86_64-darwin ] + wxc: [ x86_64-darwin ] + wxcore: [ x86_64-darwin ] + WXDiffCtrl: [ i686-linux, x86_64-darwin, x86_64-linux ] + wxFruit: [ i686-linux, x86_64-darwin, x86_64-linux ] + WxGeneric: [ x86_64-darwin ] + wxhnotepad: [ i686-linux, x86_64-darwin, x86_64-linux ] + wxturtle: [ i686-linux, x86_64-darwin, x86_64-linux ] + wyvern: [ i686-linux, x86_64-darwin, x86_64-linux ] + x-dsp: [ i686-linux, x86_64-darwin, x86_64-linux ] + X11-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + X11-rm: [ i686-linux, x86_64-darwin, x86_64-linux ] + X11-xdamage: [ i686-linux, x86_64-darwin, x86_64-linux ] + X11-xfixes: [ i686-linux, x86_64-darwin, x86_64-linux ] + x11-xinput: [ i686-linux, x86_64-darwin, x86_64-linux ] + xbattbar: [ x86_64-darwin ] + xchat-plugin: [ x86_64-darwin, x86_64-linux ] + xdot: [ x86_64-darwin ] + Xec: [ i686-linux, x86_64-darwin, x86_64-linux ] + xfconf: [ i686-linux, x86_64-darwin, x86_64-linux ] + xhaskell-library: [ i686-linux, x86_64-darwin, x86_64-linux ] + xhb-ewmh: [ i686-linux, x86_64-darwin, x86_64-linux ] + xine: [ i686-linux, x86_64-darwin, x86_64-linux ] + xing-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + xkbcommon: [ i686-linux, x86_64-darwin, x86_64-linux ] + xkcd: [ i686-linux, x86_64-darwin, x86_64-linux ] + xlsx-templater: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml-catalog: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml-enumerator-combinators: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml-pipe: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml-prettify: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml-push: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml-query-xml-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml-query-xml-types: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml2json: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml2x: [ i686-linux, x86_64-darwin, x86_64-linux ] + XmlHtmlWriter: [ i686-linux, x86_64-darwin, x86_64-linux ] + xmltv: [ i686-linux, x86_64-darwin, x86_64-linux ] + XMMS: [ i686-linux, x86_64-darwin, x86_64-linux ] + xmms2-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + xmms2-client-glib: [ i686-linux, x86_64-darwin, x86_64-linux ] + xmonad-bluetilebranch: [ i686-linux, x86_64-darwin, x86_64-linux ] + xmonad-contrib-bluetilebranch: [ i686-linux, x86_64-darwin, x86_64-linux ] + xmonad-eval: [ i686-linux, x86_64-darwin, x86_64-linux ] + xmonad-screenshot: [ x86_64-darwin ] + xmonad-utils: [ x86_64-darwin ] + xmpipe: [ i686-linux, x86_64-darwin, x86_64-linux ] + XMPP: [ i686-linux, x86_64-darwin, x86_64-linux ] + xournal-convert: [ i686-linux, x86_64-darwin, x86_64-linux ] + xournal-render: [ i686-linux, x86_64-darwin, x86_64-linux ] + xsact: [ i686-linux, x86_64-darwin, x86_64-linux ] + XSaiga: [ i686-linux, x86_64-darwin, x86_64-linux ] + xslt: [ i686-linux, x86_64-darwin, x86_64-linux ] + xtc: [ x86_64-darwin ] + y0l0bot: [ i686-linux, x86_64-darwin, x86_64-linux ] + Yablog: [ i686-linux, x86_64-darwin, x86_64-linux ] + YACPong: [ i686-linux, x86_64-linux ] + yahoo-web-search: [ i686-linux, x86_64-darwin, x86_64-linux ] + yajl: [ i686-linux, x86_64-darwin, x86_64-linux ] + yajl-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + yaml-rpc: [ i686-linux, x86_64-darwin, x86_64-linux ] + yaml-rpc-scotty: [ i686-linux, x86_64-darwin, x86_64-linux ] + yaml-rpc-snap: [ i686-linux, x86_64-darwin, x86_64-linux ] + yaml-union: [ i686-linux, x86_64-darwin, x86_64-linux ] + yaml2owl: [ i686-linux, x86_64-darwin, x86_64-linux ] + YamlReference: [ x86_64-darwin ] + Yampa: [ i686-linux ] + yampa-canvas: [ i686-linux ] + yampa-glfw: [ i686-linux, x86_64-darwin, x86_64-linux ] + yampa-glut: [ i686-linux, x86_64-darwin, x86_64-linux ] + yampa2048: [ i686-linux, x86_64-darwin ] + YampaSynth: [ i686-linux ] + yaop: [ i686-linux, x86_64-darwin, x86_64-linux ] + yarr: [ i686-linux, x86_64-darwin, x86_64-linux ] + yarr-image-io: [ i686-linux, x86_64-darwin, x86_64-linux ] + yate: [ i686-linux, x86_64-darwin, x86_64-linux ] + yavie: [ i686-linux, x86_64-darwin, x86_64-linux ] + ycextra: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-angular-ui: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-auth-ldap: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-auth-pam: [ i686-linux, x86_64-linux ] + yesod-auth-smbclient: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-comments: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-content-pdf: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-continuations: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-datatables: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-goodies: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-links: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-media-simple: [ x86_64-darwin ] + yesod-paginate: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-pagination: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-pure: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-purescript: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-raml-bin: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-raml-mock: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-routes-typescript: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-rst: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-s3: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-session-redis: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-tableview: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-test-json: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-tls: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-vend: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-worker: [ i686-linux, x86_64-darwin, x86_64-linux ] + yet-another-logger: [ i686-linux ] + YFrob: [ i686-linux, x86_64-darwin, x86_64-linux ] + yhccore: [ i686-linux, x86_64-darwin, x86_64-linux ] + yi: [ x86_64-darwin ] + yi-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] + yi-fuzzy-open: [ x86_64-darwin ] + yi-monokai: [ x86_64-darwin ] + yi-rope: [ x86_64-darwin ] + yi-snippet: [ x86_64-darwin ] + yi-solarized: [ x86_64-darwin ] + yi-spolsky: [ x86_64-darwin ] + yices: [ i686-linux, x86_64-darwin, x86_64-linux ] + yjftp: [ i686-linux, x86_64-darwin, x86_64-linux ] + Yogurt: [ i686-linux, x86_64-darwin, x86_64-linux ] + Yogurt-Standalone: [ i686-linux, x86_64-darwin, x86_64-linux ] + yoko: [ i686-linux, x86_64-darwin, x86_64-linux ] + york-lava: [ i686-linux, x86_64-darwin, x86_64-linux ] + yql: [ i686-linux, x86_64-darwin, x86_64-linux ] + yuiGrid: [ i686-linux, x86_64-darwin, x86_64-linux ] + yuuko: [ i686-linux, x86_64-darwin, x86_64-linux ] + yxdb-utils: [ i686-linux ] + z3: [ x86_64-darwin ] + zampolit: [ i686-linux, x86_64-darwin, x86_64-linux ] + zasni-gerna: [ i686-linux, x86_64-darwin, x86_64-linux ] + zendesk-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + zeno: [ i686-linux, x86_64-darwin, x86_64-linux ] + zerobin: [ i686-linux, x86_64-darwin, x86_64-linux ] + zeromq-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + zeromq3-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + zeromq3-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + zeroth: [ i686-linux, x86_64-darwin, x86_64-linux ] + ZFS: [ i686-linux, x86_64-darwin, x86_64-linux ] + zip: [ i686-linux, x86_64-darwin, x86_64-linux ] + zipedit: [ i686-linux, x86_64-darwin, x86_64-linux ] + ZMachine: [ i686-linux, x86_64-darwin, x86_64-linux ] + zmcat: [ i686-linux, x86_64-darwin, x86_64-linux ] + zmqat: [ i686-linux, x86_64-darwin, x86_64-linux ] + zoneinfo: [ i686-linux, x86_64-darwin, x86_64-linux ] + zoom: [ i686-linux, x86_64-darwin, x86_64-linux ] + zoom-cache: [ i686-linux, x86_64-darwin, x86_64-linux ] + zoom-cache-pcm: [ i686-linux, x86_64-darwin, x86_64-linux ] + zoom-cache-sndfile: [ i686-linux, x86_64-darwin, x86_64-linux ] + zot: [ i686-linux, x86_64-darwin, x86_64-linux ] + zsh-battery: [ i686-linux, x86_64-darwin, x86_64-linux ] + ztail: [ i686-linux, x86_64-darwin, x86_64-linux ] + Zwaluw: [ i686-linux, x86_64-darwin, x86_64-linux ] diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index af7ea54082f..a3a5bb413d0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -333,6 +334,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = dontDistribute super."FontyFruity"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -620,6 +622,7 @@ self: super: { "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"; @@ -804,6 +807,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1773,6 +1777,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1783,6 +1788,7 @@ self: super: { "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"; @@ -1954,6 +1960,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2058,6 +2065,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2191,6 +2199,7 @@ self: super: { "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"; @@ -2280,6 +2289,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2352,6 +2362,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_6"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2810,6 +2821,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4761,6 +4773,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4941,6 +4954,7 @@ self: super: { "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"; @@ -4981,6 +4995,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5050,6 +5065,7 @@ self: super: { "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"; @@ -5106,6 +5122,7 @@ self: super: { "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"; @@ -5167,6 +5184,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5182,6 +5200,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5394,6 +5414,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5739,6 +5760,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5769,6 +5791,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5933,6 +5956,7 @@ self: super: { "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"; @@ -6180,6 +6204,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6728,6 +6753,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6972,6 +6998,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7179,6 +7206,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7376,6 +7404,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8305,6 +8334,7 @@ self: super: { "torrent" = dontDistribute super."torrent"; "tostring" = doDistribute super."tostring_0_2_1"; "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"; @@ -8865,6 +8895,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8950,6 +8981,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index 6c5c25b8938..0940c4dce5e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -333,6 +334,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = dontDistribute super."FontyFruity"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -620,6 +622,7 @@ self: super: { "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"; @@ -804,6 +807,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1773,6 +1777,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1783,6 +1788,7 @@ self: super: { "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"; @@ -1954,6 +1960,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2058,6 +2065,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2191,6 +2199,7 @@ self: super: { "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"; @@ -2280,6 +2289,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2352,6 +2362,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_6"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2810,6 +2821,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4761,6 +4773,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4941,6 +4954,7 @@ self: super: { "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"; @@ -4981,6 +4995,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5050,6 +5065,7 @@ self: super: { "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"; @@ -5106,6 +5122,7 @@ self: super: { "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"; @@ -5167,6 +5184,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5182,6 +5200,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5394,6 +5414,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5739,6 +5760,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5769,6 +5791,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5933,6 +5956,7 @@ self: super: { "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"; @@ -6180,6 +6204,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6728,6 +6753,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6972,6 +6998,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7179,6 +7206,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7376,6 +7404,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8305,6 +8334,7 @@ self: super: { "torrent" = dontDistribute super."torrent"; "tostring" = doDistribute super."tostring_0_2_1"; "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"; @@ -8865,6 +8895,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8950,6 +8981,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index eb1af4c83e7..4954fee9d40 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -333,6 +334,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = dontDistribute super."FontyFruity"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -620,6 +622,7 @@ self: super: { "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"; @@ -804,6 +807,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1773,6 +1777,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1783,6 +1788,7 @@ self: super: { "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"; @@ -1954,6 +1960,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2058,6 +2065,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2191,6 +2199,7 @@ self: super: { "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"; @@ -2280,6 +2289,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2352,6 +2362,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_6"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2810,6 +2821,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4761,6 +4773,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4941,6 +4954,7 @@ self: super: { "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"; @@ -4981,6 +4995,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5050,6 +5065,7 @@ self: super: { "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"; @@ -5106,6 +5122,7 @@ self: super: { "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"; @@ -5167,6 +5184,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5182,6 +5200,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5394,6 +5414,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5739,6 +5760,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5769,6 +5791,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5933,6 +5956,7 @@ self: super: { "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"; @@ -6180,6 +6204,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6728,6 +6753,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6972,6 +6998,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7179,6 +7206,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7376,6 +7404,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8305,6 +8334,7 @@ self: super: { "torrent" = dontDistribute super."torrent"; "tostring" = doDistribute super."tostring_0_2_1"; "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"; @@ -8865,6 +8895,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8950,6 +8981,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index e4d33f2efe5..dcf8b9e6dc0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -333,6 +334,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = dontDistribute super."FontyFruity"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -620,6 +622,7 @@ self: super: { "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"; @@ -804,6 +807,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1773,6 +1777,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1783,6 +1788,7 @@ self: super: { "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"; @@ -1954,6 +1960,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2058,6 +2065,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2191,6 +2199,7 @@ self: super: { "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"; @@ -2280,6 +2289,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2352,6 +2362,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_6"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2810,6 +2821,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4761,6 +4773,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4941,6 +4954,7 @@ self: super: { "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"; @@ -4981,6 +4995,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5050,6 +5065,7 @@ self: super: { "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"; @@ -5106,6 +5122,7 @@ self: super: { "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"; @@ -5167,6 +5184,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5182,6 +5200,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5394,6 +5414,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5739,6 +5760,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5769,6 +5791,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5933,6 +5956,7 @@ self: super: { "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"; @@ -6180,6 +6204,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6728,6 +6753,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6972,6 +6998,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7179,6 +7206,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7376,6 +7404,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8305,6 +8334,7 @@ self: super: { "torrent" = dontDistribute super."torrent"; "tostring" = doDistribute super."tostring_0_2_1"; "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"; @@ -8865,6 +8895,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8950,6 +8981,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index 43ffde620d2..c4d4e960951 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -333,6 +334,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = dontDistribute super."FontyFruity"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -620,6 +622,7 @@ self: super: { "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"; @@ -804,6 +807,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1773,6 +1777,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1783,6 +1788,7 @@ self: super: { "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"; @@ -1954,6 +1960,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2058,6 +2065,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2191,6 +2199,7 @@ self: super: { "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"; @@ -2280,6 +2289,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_1"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2352,6 +2362,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_6"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2809,6 +2820,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4758,6 +4770,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4938,6 +4951,7 @@ self: super: { "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"; @@ -4978,6 +4992,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5047,6 +5062,7 @@ self: super: { "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"; @@ -5103,6 +5119,7 @@ self: super: { "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"; @@ -5164,6 +5181,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5179,6 +5197,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5391,6 +5411,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5736,6 +5757,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5766,6 +5788,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5930,6 +5953,7 @@ self: super: { "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"; @@ -6177,6 +6201,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6725,6 +6750,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6969,6 +6995,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7175,6 +7202,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7372,6 +7400,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8301,6 +8330,7 @@ self: super: { "torrent" = dontDistribute super."torrent"; "tostring" = doDistribute super."tostring_0_2_1"; "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"; @@ -8861,6 +8891,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8946,6 +8977,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 85d80b93352..401a3ed03d7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -333,6 +334,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = dontDistribute super."FontyFruity"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -620,6 +622,7 @@ self: super: { "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"; @@ -804,6 +807,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1773,6 +1777,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1783,6 +1788,7 @@ self: super: { "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"; @@ -1954,6 +1960,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2058,6 +2065,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2191,6 +2199,7 @@ self: super: { "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"; @@ -2280,6 +2289,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_1"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2352,6 +2362,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_6"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2809,6 +2820,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4758,6 +4770,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4938,6 +4951,7 @@ self: super: { "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"; @@ -4978,6 +4992,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5047,6 +5062,7 @@ self: super: { "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"; @@ -5103,6 +5119,7 @@ self: super: { "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"; @@ -5164,6 +5181,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5179,6 +5197,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5391,6 +5411,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5736,6 +5757,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5766,6 +5788,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5930,6 +5953,7 @@ self: super: { "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"; @@ -6177,6 +6201,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6725,6 +6750,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6969,6 +6995,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7175,6 +7202,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7372,6 +7400,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8301,6 +8330,7 @@ self: super: { "torrent" = dontDistribute super."torrent"; "tostring" = doDistribute super."tostring_0_2_1"; "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"; @@ -8861,6 +8891,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8946,6 +8977,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index a0567225d9c..3c5f8dd5cd1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -333,6 +334,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = dontDistribute super."FontyFruity"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -620,6 +622,7 @@ self: super: { "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"; @@ -803,6 +806,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1772,6 +1776,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1782,6 +1787,7 @@ self: super: { "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"; @@ -1953,6 +1959,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2057,6 +2064,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2190,6 +2198,7 @@ self: super: { "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"; @@ -2279,6 +2288,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_1"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2351,6 +2361,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_6"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2808,6 +2819,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4756,6 +4768,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4936,6 +4949,7 @@ self: super: { "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"; @@ -4976,6 +4990,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5045,6 +5060,7 @@ self: super: { "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"; @@ -5101,6 +5117,7 @@ self: super: { "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"; @@ -5162,6 +5179,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5177,6 +5195,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5389,6 +5409,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5734,6 +5755,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5764,6 +5786,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5928,6 +5951,7 @@ self: super: { "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"; @@ -6175,6 +6199,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6723,6 +6748,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6967,6 +6993,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7172,6 +7199,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7369,6 +7397,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8298,6 +8327,7 @@ self: super: { "torrent" = dontDistribute super."torrent"; "tostring" = doDistribute super."tostring_0_2_1"; "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"; @@ -8858,6 +8888,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8943,6 +8974,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index 30e31c1e084..91051bcc499 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -333,6 +334,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = dontDistribute super."FontyFruity"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -620,6 +622,7 @@ self: super: { "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"; @@ -803,6 +806,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1772,6 +1776,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1782,6 +1787,7 @@ self: super: { "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"; @@ -1953,6 +1959,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2057,6 +2064,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2190,6 +2198,7 @@ self: super: { "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"; @@ -2279,6 +2288,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_1"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2351,6 +2361,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_6"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2808,6 +2819,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4756,6 +4768,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4936,6 +4949,7 @@ self: super: { "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"; @@ -4976,6 +4990,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5045,6 +5060,7 @@ self: super: { "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"; @@ -5101,6 +5117,7 @@ self: super: { "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"; @@ -5162,6 +5179,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5177,6 +5195,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5389,6 +5409,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5734,6 +5755,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5764,6 +5786,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5928,6 +5951,7 @@ self: super: { "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"; @@ -6175,6 +6199,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6723,6 +6748,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6967,6 +6993,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7172,6 +7199,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7369,6 +7397,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8298,6 +8327,7 @@ self: super: { "torrent" = dontDistribute super."torrent"; "tostring" = doDistribute super."tostring_0_2_1"; "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"; @@ -8858,6 +8888,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8943,6 +8974,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index 0f0c488d2e5..bcf01cad486 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -332,6 +333,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_4"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -617,6 +619,7 @@ self: super: { "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"; @@ -799,6 +802,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1768,6 +1772,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1778,6 +1783,7 @@ self: super: { "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"; @@ -1947,6 +1953,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2051,6 +2058,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2184,6 +2192,7 @@ self: super: { "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"; @@ -2273,6 +2282,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_2"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2345,6 +2355,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_6"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2801,6 +2812,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4278,6 +4290,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4746,6 +4759,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4926,6 +4940,7 @@ self: super: { "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"; @@ -4966,6 +4981,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5035,6 +5051,7 @@ self: super: { "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"; @@ -5091,6 +5108,7 @@ self: super: { "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"; @@ -5152,6 +5170,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5167,6 +5186,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5379,6 +5400,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5724,6 +5746,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5754,6 +5777,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5918,6 +5942,7 @@ self: super: { "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"; @@ -6165,6 +6190,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6713,6 +6739,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6957,6 +6984,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7161,6 +7189,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7358,6 +7387,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8286,6 +8316,7 @@ self: super: { "torrent" = dontDistribute super."torrent"; "tostring" = doDistribute super."tostring_0_2_1"; "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"; @@ -8845,6 +8876,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8930,6 +8962,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index c1b4d8e6112..10405fe0270 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -332,6 +333,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_4_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -617,6 +619,7 @@ self: super: { "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"; @@ -799,6 +802,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1768,6 +1772,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1778,6 +1783,7 @@ self: super: { "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"; @@ -1946,6 +1952,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2050,6 +2057,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2183,6 +2191,7 @@ self: super: { "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"; @@ -2272,6 +2281,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2344,6 +2354,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_6"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2798,6 +2809,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4274,6 +4286,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4740,6 +4753,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4920,6 +4934,7 @@ self: super: { "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"; @@ -4960,6 +4975,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5029,6 +5045,7 @@ self: super: { "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"; @@ -5085,6 +5102,7 @@ self: super: { "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"; @@ -5146,6 +5164,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5161,6 +5180,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5373,6 +5394,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5718,6 +5740,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5748,6 +5771,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5911,6 +5935,7 @@ self: super: { "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"; @@ -6158,6 +6183,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6706,6 +6732,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6950,6 +6977,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7154,6 +7182,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7351,6 +7380,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8274,6 +8304,7 @@ self: super: { "torrent" = dontDistribute super."torrent"; "tostring" = doDistribute super."tostring_0_2_1"; "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"; @@ -8832,6 +8863,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8917,6 +8949,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 7da0500abde..4f21f97cae1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -332,6 +333,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_4_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -616,6 +618,7 @@ self: super: { "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"; @@ -798,6 +801,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1767,6 +1771,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1777,6 +1782,7 @@ self: super: { "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"; @@ -1944,6 +1950,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2047,6 +2054,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2180,6 +2188,7 @@ self: super: { "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"; @@ -2269,6 +2278,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2341,6 +2351,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_9"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2794,6 +2805,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4263,6 +4275,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4729,6 +4742,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4904,6 +4918,7 @@ self: super: { "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"; @@ -4944,6 +4959,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5013,6 +5029,7 @@ self: super: { "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"; @@ -5069,6 +5086,7 @@ self: super: { "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"; @@ -5130,6 +5148,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5145,6 +5164,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5357,6 +5378,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5701,6 +5723,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5731,6 +5754,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5894,6 +5918,7 @@ self: super: { "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"; @@ -6139,6 +6164,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6686,6 +6712,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6929,6 +6956,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7133,6 +7161,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7330,6 +7359,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8248,6 +8278,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8804,6 +8835,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8888,6 +8920,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index 437962990c3..56f40a1f551 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -332,6 +333,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_4_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -616,6 +618,7 @@ self: super: { "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"; @@ -798,6 +801,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1767,6 +1771,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1777,6 +1782,7 @@ self: super: { "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"; @@ -1944,6 +1950,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2047,6 +2054,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2180,6 +2188,7 @@ self: super: { "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"; @@ -2269,6 +2278,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2341,6 +2351,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_9"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2794,6 +2805,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4262,6 +4274,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4728,6 +4741,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4902,6 +4916,7 @@ self: super: { "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"; @@ -4942,6 +4957,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5010,6 +5026,7 @@ self: super: { "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"; @@ -5066,6 +5083,7 @@ self: super: { "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"; @@ -5127,6 +5145,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5142,6 +5161,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5353,6 +5374,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5697,6 +5719,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5727,6 +5750,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5890,6 +5914,7 @@ self: super: { "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"; @@ -6135,6 +6160,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6682,6 +6708,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6925,6 +6952,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7129,6 +7157,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7326,6 +7355,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8244,6 +8274,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8800,6 +8831,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8884,6 +8916,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index 4b22bce4ac1..142d080f038 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -332,6 +333,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_4_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -616,6 +618,7 @@ self: super: { "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"; @@ -798,6 +801,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1767,6 +1771,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1777,6 +1782,7 @@ self: super: { "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"; @@ -1944,6 +1950,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2047,6 +2054,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2180,6 +2188,7 @@ self: super: { "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"; @@ -2269,6 +2278,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2341,6 +2351,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_9"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2794,6 +2805,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4261,6 +4273,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4727,6 +4740,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4901,6 +4915,7 @@ self: super: { "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"; @@ -4941,6 +4956,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5009,6 +5025,7 @@ self: super: { "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"; @@ -5065,6 +5082,7 @@ self: super: { "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"; @@ -5126,6 +5144,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5141,6 +5160,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5352,6 +5373,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5696,6 +5718,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5726,6 +5749,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5889,6 +5913,7 @@ self: super: { "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"; @@ -6134,6 +6159,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6681,6 +6707,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6924,6 +6951,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7128,6 +7156,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7325,6 +7354,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8242,6 +8272,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8798,6 +8829,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8882,6 +8914,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 191c04f8984..721eacb7a5a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -332,6 +333,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_4_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -616,6 +618,7 @@ self: super: { "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"; @@ -798,6 +801,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1767,6 +1771,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1777,6 +1782,7 @@ self: super: { "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"; @@ -1944,6 +1950,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2047,6 +2054,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2180,6 +2188,7 @@ self: super: { "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"; @@ -2269,6 +2278,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2341,6 +2351,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_9"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2794,6 +2805,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4260,6 +4272,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4726,6 +4739,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4900,6 +4914,7 @@ self: super: { "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"; @@ -4940,6 +4955,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5008,6 +5024,7 @@ self: super: { "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"; @@ -5064,6 +5081,7 @@ self: super: { "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"; @@ -5125,6 +5143,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5140,6 +5159,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5351,6 +5372,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5695,6 +5717,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5725,6 +5748,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5888,6 +5912,7 @@ self: super: { "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"; @@ -6133,6 +6158,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6680,6 +6706,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6923,6 +6950,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7127,6 +7155,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7324,6 +7353,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8240,6 +8270,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8796,6 +8827,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8880,6 +8912,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 6ba78851f21..4803f7453a8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -331,6 +332,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_4_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -615,6 +617,7 @@ self: super: { "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"; @@ -797,6 +800,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1765,6 +1769,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1775,6 +1780,7 @@ self: super: { "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"; @@ -1942,6 +1948,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2045,6 +2052,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2178,6 +2186,7 @@ self: super: { "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"; @@ -2267,6 +2276,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2339,6 +2349,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_9"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2791,6 +2802,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4257,6 +4269,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4723,6 +4736,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4897,6 +4911,7 @@ self: super: { "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"; @@ -4937,6 +4952,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5005,6 +5021,7 @@ self: super: { "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"; @@ -5061,6 +5078,7 @@ self: super: { "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"; @@ -5122,6 +5140,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5137,6 +5156,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5347,6 +5368,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5691,6 +5713,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5721,6 +5744,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5883,6 +5907,7 @@ self: super: { "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"; @@ -6128,6 +6153,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6675,6 +6701,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6917,6 +6944,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7121,6 +7149,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7318,6 +7347,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8234,6 +8264,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8790,6 +8821,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8874,6 +8906,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index 710db92a7e5..2ef8b12c9c2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -331,6 +332,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_4_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -615,6 +617,7 @@ self: super: { "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"; @@ -797,6 +800,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1764,6 +1768,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1774,6 +1779,7 @@ self: super: { "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"; @@ -1941,6 +1947,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2043,6 +2050,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2176,6 +2184,7 @@ self: super: { "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"; @@ -2265,6 +2274,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2337,6 +2347,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_9"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2788,6 +2799,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4253,6 +4265,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4719,6 +4732,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4893,6 +4907,7 @@ self: super: { "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"; @@ -4933,6 +4948,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5001,6 +5017,7 @@ self: super: { "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"; @@ -5057,6 +5074,7 @@ self: super: { "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"; @@ -5118,6 +5136,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5133,6 +5152,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5343,6 +5364,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5687,6 +5709,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5717,6 +5740,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5879,6 +5903,7 @@ self: super: { "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"; @@ -6122,6 +6147,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6669,6 +6695,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6910,6 +6937,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7114,6 +7142,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7311,6 +7340,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8225,6 +8255,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8781,6 +8812,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8864,6 +8896,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index ca6f51c7e0f..28af1ea36f5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -332,6 +333,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_4_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -617,6 +619,7 @@ self: super: { "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"; @@ -799,6 +802,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1768,6 +1772,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1778,6 +1783,7 @@ self: super: { "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"; @@ -1946,6 +1952,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2049,6 +2056,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2182,6 +2190,7 @@ self: super: { "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"; @@ -2271,6 +2280,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2343,6 +2353,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_7"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2796,6 +2807,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4271,6 +4283,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4737,6 +4750,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4917,6 +4931,7 @@ self: super: { "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"; @@ -4957,6 +4972,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5026,6 +5042,7 @@ self: super: { "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"; @@ -5082,6 +5099,7 @@ self: super: { "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"; @@ -5143,6 +5161,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5158,6 +5177,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5370,6 +5391,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5715,6 +5737,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5745,6 +5768,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5908,6 +5932,7 @@ self: super: { "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"; @@ -6155,6 +6180,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6702,6 +6728,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6945,6 +6972,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7149,6 +7177,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7346,6 +7375,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8268,6 +8298,7 @@ self: super: { "torrent" = dontDistribute super."torrent"; "tostring" = doDistribute super."tostring_0_2_1"; "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"; @@ -8826,6 +8857,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8911,6 +8943,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 10f704082f5..c2a0f837c80 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -332,6 +333,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_4_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -616,6 +618,7 @@ self: super: { "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"; @@ -798,6 +801,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1767,6 +1771,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1777,6 +1782,7 @@ self: super: { "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"; @@ -1945,6 +1951,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2048,6 +2055,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2181,6 +2189,7 @@ self: super: { "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"; @@ -2270,6 +2279,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2342,6 +2352,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_8"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2795,6 +2806,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4268,6 +4280,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4734,6 +4747,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4914,6 +4928,7 @@ self: super: { "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"; @@ -4954,6 +4969,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5023,6 +5039,7 @@ self: super: { "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"; @@ -5079,6 +5096,7 @@ self: super: { "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"; @@ -5140,6 +5158,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5155,6 +5174,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5367,6 +5388,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5712,6 +5734,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5742,6 +5765,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5905,6 +5929,7 @@ self: super: { "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"; @@ -6151,6 +6176,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6698,6 +6724,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6941,6 +6968,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7145,6 +7173,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7342,6 +7371,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8263,6 +8293,7 @@ self: super: { "torrent" = dontDistribute super."torrent"; "tostring" = doDistribute super."tostring_0_2_1"; "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"; @@ -8821,6 +8852,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8906,6 +8938,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index 540aa779d7e..dee30960bd5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -332,6 +333,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_4_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -616,6 +618,7 @@ self: super: { "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"; @@ -798,6 +801,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1767,6 +1771,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1777,6 +1782,7 @@ self: super: { "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"; @@ -1944,6 +1950,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2047,6 +2054,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2180,6 +2188,7 @@ self: super: { "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"; @@ -2269,6 +2278,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2341,6 +2351,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_8"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2794,6 +2805,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4267,6 +4279,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4733,6 +4746,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4913,6 +4927,7 @@ self: super: { "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"; @@ -4953,6 +4968,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5022,6 +5038,7 @@ self: super: { "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"; @@ -5078,6 +5095,7 @@ self: super: { "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"; @@ -5139,6 +5157,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5154,6 +5173,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5366,6 +5387,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5711,6 +5733,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5741,6 +5764,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5904,6 +5928,7 @@ self: super: { "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"; @@ -6150,6 +6175,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6697,6 +6723,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6940,6 +6967,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7144,6 +7172,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7341,6 +7370,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8261,6 +8291,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8818,6 +8849,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8903,6 +8935,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index b9b74b37329..2b055efdde7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -332,6 +333,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_4_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -616,6 +618,7 @@ self: super: { "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"; @@ -798,6 +801,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1767,6 +1771,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1777,6 +1782,7 @@ self: super: { "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"; @@ -1944,6 +1950,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2047,6 +2054,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2180,6 +2188,7 @@ self: super: { "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"; @@ -2269,6 +2278,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2341,6 +2351,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_8"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2794,6 +2805,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4267,6 +4279,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4733,6 +4746,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4908,6 +4922,7 @@ self: super: { "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"; @@ -4948,6 +4963,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5017,6 +5033,7 @@ self: super: { "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"; @@ -5073,6 +5090,7 @@ self: super: { "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"; @@ -5134,6 +5152,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5149,6 +5168,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5361,6 +5382,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5706,6 +5728,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5736,6 +5759,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5899,6 +5923,7 @@ self: super: { "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"; @@ -6145,6 +6170,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6692,6 +6718,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6935,6 +6962,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7139,6 +7167,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7336,6 +7365,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8256,6 +8286,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8813,6 +8844,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8898,6 +8930,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index 6831e5a994d..108f6583d66 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -332,6 +333,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_4_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -616,6 +618,7 @@ self: super: { "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"; @@ -798,6 +801,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1767,6 +1771,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1777,6 +1782,7 @@ self: super: { "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"; @@ -1944,6 +1950,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2047,6 +2054,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2180,6 +2188,7 @@ self: super: { "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"; @@ -2269,6 +2278,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2341,6 +2351,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_8"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2794,6 +2805,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4264,6 +4276,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4730,6 +4743,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4905,6 +4919,7 @@ self: super: { "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"; @@ -4945,6 +4960,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5014,6 +5030,7 @@ self: super: { "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"; @@ -5070,6 +5087,7 @@ self: super: { "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"; @@ -5131,6 +5149,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5146,6 +5165,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5358,6 +5379,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5702,6 +5724,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5732,6 +5755,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5895,6 +5919,7 @@ self: super: { "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"; @@ -6141,6 +6166,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6688,6 +6714,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6931,6 +6958,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7135,6 +7163,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7332,6 +7361,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8252,6 +8282,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8808,6 +8839,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8893,6 +8925,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index fadfe04c4f6..d4f8810cedf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -332,6 +333,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_4_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -616,6 +618,7 @@ self: super: { "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"; @@ -798,6 +801,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1767,6 +1771,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1777,6 +1782,7 @@ self: super: { "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"; @@ -1944,6 +1950,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2047,6 +2054,7 @@ self: super: { "chell-quickcheck" = doDistribute super."chell-quickcheck_0_2_4"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2180,6 +2188,7 @@ self: super: { "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"; @@ -2269,6 +2278,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2341,6 +2351,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_18_9"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2794,6 +2805,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4263,6 +4275,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4729,6 +4742,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4904,6 +4918,7 @@ self: super: { "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"; @@ -4944,6 +4959,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -5013,6 +5029,7 @@ self: super: { "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"; @@ -5069,6 +5086,7 @@ self: super: { "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"; @@ -5130,6 +5148,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5145,6 +5164,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5357,6 +5378,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5701,6 +5723,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5731,6 +5754,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5894,6 +5918,7 @@ self: super: { "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"; @@ -6140,6 +6165,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6687,6 +6713,7 @@ self: super: { "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6930,6 +6957,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7134,6 +7162,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7331,6 +7360,7 @@ self: super: { "semver" = dontDistribute super."semver"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8251,6 +8281,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8807,6 +8838,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8892,6 +8924,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml" = doDistribute super."xml_1_3_13"; "xml-basic" = dontDistribute super."xml-basic"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index b3b5b567740..963cfdccb51 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -330,6 +331,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -612,6 +614,7 @@ self: super: { "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"; @@ -792,6 +795,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1754,6 +1758,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1764,6 +1769,7 @@ self: super: { "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"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; @@ -1931,6 +1937,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2033,6 +2040,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2165,6 +2173,7 @@ self: super: { "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"; @@ -2254,6 +2263,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2325,6 +2335,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2775,6 +2786,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4235,6 +4247,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4699,6 +4712,7 @@ self: super: { "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4868,6 +4882,7 @@ self: super: { "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"; @@ -4908,6 +4923,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4976,6 +4992,7 @@ self: super: { "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"; @@ -5032,6 +5049,7 @@ self: super: { "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"; @@ -5091,6 +5109,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5106,6 +5125,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5312,6 +5333,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5653,6 +5675,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5683,6 +5706,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5841,6 +5865,7 @@ self: super: { "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"; @@ -6080,6 +6105,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6623,6 +6649,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6865,6 +6892,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7069,6 +7097,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7265,6 +7294,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8173,6 +8203,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8726,6 +8757,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8808,6 +8840,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index eb82bb1cece..9ade4844422 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -330,6 +331,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -612,6 +614,7 @@ self: super: { "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"; @@ -792,6 +795,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1754,6 +1758,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1764,6 +1769,7 @@ self: super: { "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"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; @@ -1930,6 +1936,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2032,6 +2039,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2164,6 +2172,7 @@ self: super: { "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"; @@ -2253,6 +2262,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2324,6 +2334,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2774,6 +2785,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4234,6 +4246,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4698,6 +4711,7 @@ self: super: { "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4867,6 +4881,7 @@ self: super: { "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"; @@ -4907,6 +4922,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4975,6 +4991,7 @@ self: super: { "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"; @@ -5031,6 +5048,7 @@ self: super: { "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"; @@ -5090,6 +5108,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5105,6 +5124,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5311,6 +5332,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5652,6 +5674,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5682,6 +5705,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5840,6 +5864,7 @@ self: super: { "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"; @@ -6079,6 +6104,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6622,6 +6648,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6864,6 +6891,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7068,6 +7096,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7264,6 +7293,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8172,6 +8202,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8724,6 +8755,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8806,6 +8838,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index 453c0b845e6..8a251c54f35 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "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"; @@ -790,6 +793,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1745,6 +1749,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1755,6 +1760,7 @@ self: super: { "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"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; @@ -1919,6 +1925,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2021,6 +2028,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2153,6 +2161,7 @@ self: super: { "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"; @@ -2242,6 +2251,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2312,6 +2322,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2761,6 +2772,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4215,6 +4227,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4271,6 +4284,7 @@ self: super: { "hinotify" = doDistribute super."hinotify_0_3_7"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4677,6 +4691,7 @@ self: super: { "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4844,6 +4859,7 @@ self: super: { "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"; @@ -4884,6 +4900,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4952,6 +4969,7 @@ self: super: { "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"; @@ -5008,6 +5026,7 @@ self: super: { "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"; @@ -5065,6 +5084,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5080,6 +5100,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5286,6 +5308,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5622,6 +5645,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5652,6 +5676,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5810,6 +5835,7 @@ self: super: { "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"; @@ -6048,6 +6074,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6588,6 +6615,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6829,6 +6857,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7032,6 +7061,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7227,6 +7257,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8125,6 +8156,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8677,6 +8709,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8758,6 +8791,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 0b26c8a2da0..0c399ac6fac 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "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"; @@ -790,6 +793,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1744,6 +1748,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1754,6 +1759,7 @@ self: super: { "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"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; @@ -1918,6 +1924,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2020,6 +2027,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2152,6 +2160,7 @@ self: super: { "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"; @@ -2241,6 +2250,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2311,6 +2321,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2760,6 +2771,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4212,6 +4224,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4268,6 +4281,7 @@ self: super: { "hinotify" = doDistribute super."hinotify_0_3_7"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4674,6 +4688,7 @@ self: super: { "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4841,6 +4856,7 @@ self: super: { "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"; @@ -4881,6 +4897,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4949,6 +4966,7 @@ self: super: { "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"; @@ -5005,6 +5023,7 @@ self: super: { "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"; @@ -5061,6 +5080,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5076,6 +5096,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5282,6 +5304,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5618,6 +5641,7 @@ self: super: { "memory" = doDistribute super."memory_0_6"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5648,6 +5672,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5805,6 +5830,7 @@ self: super: { "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"; @@ -6043,6 +6069,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6582,6 +6609,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6823,6 +6851,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7025,6 +7054,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7220,6 +7250,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8116,6 +8147,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8668,6 +8700,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8749,6 +8782,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index a23586c4557..000b50ac332 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "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"; @@ -790,6 +793,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1744,6 +1748,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1754,6 +1759,7 @@ self: super: { "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"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; @@ -1918,6 +1924,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2020,6 +2027,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2152,6 +2160,7 @@ self: super: { "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"; @@ -2241,6 +2250,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2311,6 +2321,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2760,6 +2771,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4212,6 +4224,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4268,6 +4281,7 @@ self: super: { "hinotify" = doDistribute super."hinotify_0_3_7"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4674,6 +4688,7 @@ self: super: { "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4841,6 +4856,7 @@ self: super: { "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"; @@ -4881,6 +4897,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4949,6 +4966,7 @@ self: super: { "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"; @@ -5005,6 +5023,7 @@ self: super: { "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"; @@ -5061,6 +5080,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5076,6 +5096,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5282,6 +5304,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5618,6 +5641,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5648,6 +5672,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5805,6 +5830,7 @@ self: super: { "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"; @@ -6043,6 +6069,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6582,6 +6609,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6823,6 +6851,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7025,6 +7054,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7219,6 +7249,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8115,6 +8146,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8667,6 +8699,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8748,6 +8781,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 53688afb8ec..7e6d4fb0799 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "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"; @@ -790,6 +793,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1744,6 +1748,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1754,6 +1759,7 @@ self: super: { "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"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; @@ -1918,6 +1924,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2020,6 +2027,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2152,6 +2160,7 @@ self: super: { "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"; @@ -2241,6 +2250,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2311,6 +2321,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2760,6 +2771,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4211,6 +4223,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4267,6 +4280,7 @@ self: super: { "hinotify" = doDistribute super."hinotify_0_3_7"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4673,6 +4687,7 @@ self: super: { "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4839,6 +4854,7 @@ self: super: { "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"; @@ -4879,6 +4895,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4947,6 +4964,7 @@ self: super: { "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"; @@ -5003,6 +5021,7 @@ self: super: { "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"; @@ -5059,6 +5078,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5074,6 +5094,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5280,6 +5302,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5616,6 +5639,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5646,6 +5670,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5803,6 +5828,7 @@ self: super: { "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"; @@ -6041,6 +6067,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6580,6 +6607,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6821,6 +6849,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7023,6 +7052,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7217,6 +7247,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8113,6 +8144,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8665,6 +8697,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8746,6 +8779,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index ec039632190..e78d07486d3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "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"; @@ -790,6 +793,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1743,6 +1747,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1753,6 +1758,7 @@ self: super: { "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"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; @@ -1917,6 +1923,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2019,6 +2026,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2151,6 +2159,7 @@ self: super: { "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"; @@ -2240,6 +2249,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2310,6 +2320,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2759,6 +2770,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4209,6 +4221,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4265,6 +4278,7 @@ self: super: { "hinotify" = doDistribute super."hinotify_0_3_7"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4670,6 +4684,7 @@ self: super: { "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4836,6 +4851,7 @@ self: super: { "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"; @@ -4876,6 +4892,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4944,6 +4961,7 @@ self: super: { "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"; @@ -5000,6 +5018,7 @@ self: super: { "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"; @@ -5056,6 +5075,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5071,6 +5091,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5277,6 +5299,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5613,6 +5636,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5643,6 +5667,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5800,6 +5825,7 @@ self: super: { "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"; @@ -6038,6 +6064,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6577,6 +6604,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6818,6 +6846,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7020,6 +7049,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7214,6 +7244,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8109,6 +8140,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8661,6 +8693,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8741,6 +8774,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index a3d80430355..2e58fa92057 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "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"; @@ -790,6 +793,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1743,6 +1747,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1753,6 +1758,7 @@ self: super: { "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"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; @@ -1917,6 +1923,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2019,6 +2026,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2151,6 +2159,7 @@ self: super: { "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"; @@ -2240,6 +2249,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2310,6 +2320,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2759,6 +2770,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4208,6 +4220,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4264,6 +4277,7 @@ self: super: { "hinotify" = doDistribute super."hinotify_0_3_7"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4669,6 +4683,7 @@ self: super: { "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4835,6 +4850,7 @@ self: super: { "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"; @@ -4875,6 +4891,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4943,6 +4960,7 @@ self: super: { "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"; @@ -4999,6 +5017,7 @@ self: super: { "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"; @@ -5055,6 +5074,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5070,6 +5090,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5276,6 +5298,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5612,6 +5635,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5642,6 +5666,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5798,6 +5823,7 @@ self: super: { "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"; @@ -6036,6 +6062,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6575,6 +6602,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6816,6 +6844,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7018,6 +7047,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7212,6 +7242,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8106,6 +8137,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8658,6 +8690,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8738,6 +8771,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index aa482072e72..df159fadb30 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "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"; @@ -790,6 +793,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1743,6 +1747,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1753,6 +1758,7 @@ self: super: { "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"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; @@ -1917,6 +1923,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2019,6 +2026,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2150,6 +2158,7 @@ self: super: { "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"; @@ -2239,6 +2248,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2308,6 +2318,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2756,6 +2767,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4204,6 +4216,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4260,6 +4273,7 @@ self: super: { "hinotify" = doDistribute super."hinotify_0_3_7"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4665,6 +4679,7 @@ self: super: { "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4831,6 +4846,7 @@ self: super: { "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"; @@ -4871,6 +4887,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4939,6 +4956,7 @@ self: super: { "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"; @@ -4995,6 +5013,7 @@ self: super: { "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"; @@ -5051,6 +5070,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5066,6 +5086,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5271,6 +5293,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5607,6 +5630,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5637,6 +5661,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5793,6 +5818,7 @@ self: super: { "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"; @@ -6031,6 +6057,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6570,6 +6597,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6811,6 +6839,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7013,6 +7042,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7207,6 +7237,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8101,6 +8132,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8653,6 +8685,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8733,6 +8766,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index 8f78f48e28b..e4f5dcda404 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "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"; @@ -790,6 +793,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1741,6 +1745,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1751,6 +1756,7 @@ self: super: { "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"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; @@ -1915,6 +1921,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2017,6 +2024,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2148,6 +2156,7 @@ self: super: { "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"; @@ -2237,6 +2246,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2306,6 +2316,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2754,6 +2765,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4200,6 +4212,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4256,6 +4269,7 @@ self: super: { "hinotify" = doDistribute super."hinotify_0_3_7"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4661,6 +4675,7 @@ self: super: { "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5_1"; @@ -4827,6 +4842,7 @@ self: super: { "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"; @@ -4867,6 +4883,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4935,6 +4952,7 @@ self: super: { "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"; @@ -4991,6 +5009,7 @@ self: super: { "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"; @@ -5047,6 +5066,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5062,6 +5082,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5267,6 +5289,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5603,6 +5626,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5633,6 +5657,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5789,6 +5814,7 @@ self: super: { "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"; @@ -6026,6 +6052,7 @@ self: super: { "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"; @@ -6565,6 +6592,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6806,6 +6834,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7008,6 +7037,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7202,6 +7232,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8096,6 +8127,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8648,6 +8680,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8728,6 +8761,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index b73043843f5..90852bb432f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "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"; @@ -790,6 +793,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1741,6 +1745,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1751,6 +1756,7 @@ self: super: { "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"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; @@ -1914,6 +1920,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2016,6 +2023,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2147,6 +2155,7 @@ self: super: { "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"; @@ -2236,6 +2245,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2305,6 +2315,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2753,6 +2764,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4144,6 +4156,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4197,6 +4210,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4253,6 +4267,7 @@ self: super: { "hinotify" = doDistribute super."hinotify_0_3_7"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4658,6 +4673,7 @@ self: super: { "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5_1"; @@ -4824,6 +4840,7 @@ self: super: { "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"; @@ -4864,6 +4881,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4932,6 +4950,7 @@ self: super: { "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"; @@ -4988,6 +5007,7 @@ self: super: { "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"; @@ -5044,6 +5064,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5059,6 +5080,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5264,6 +5287,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5600,6 +5624,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5630,6 +5655,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5786,6 +5812,7 @@ self: super: { "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"; @@ -6022,6 +6049,7 @@ self: super: { "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"; @@ -6561,6 +6589,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6802,6 +6831,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7004,6 +7034,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7198,6 +7229,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8091,6 +8123,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8643,6 +8676,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8723,6 +8757,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index 44086d11797..86cdd24aff0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "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"; @@ -790,6 +793,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1741,6 +1745,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1751,6 +1756,7 @@ self: super: { "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"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; @@ -1914,6 +1920,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2016,6 +2023,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2147,6 +2155,7 @@ self: super: { "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"; @@ -2236,6 +2245,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2305,6 +2315,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2753,6 +2764,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4143,6 +4155,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4196,6 +4209,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4252,6 +4266,7 @@ self: super: { "hinotify" = doDistribute super."hinotify_0_3_7"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4657,6 +4672,7 @@ self: super: { "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5_1"; @@ -4823,6 +4839,7 @@ self: super: { "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"; @@ -4863,6 +4880,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4931,6 +4949,7 @@ self: super: { "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"; @@ -4987,6 +5006,7 @@ self: super: { "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"; @@ -5043,6 +5063,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5058,6 +5079,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5263,6 +5286,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5598,6 +5622,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5628,6 +5653,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5784,6 +5810,7 @@ self: super: { "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"; @@ -6020,6 +6047,7 @@ self: super: { "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"; @@ -6559,6 +6587,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6800,6 +6829,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7002,6 +7032,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7196,6 +7227,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8087,6 +8119,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8639,6 +8672,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8718,6 +8752,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index 082dd709074..2ab25604cf3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -330,6 +331,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -612,6 +614,7 @@ self: super: { "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"; @@ -792,6 +795,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1753,6 +1757,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1763,6 +1768,7 @@ self: super: { "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"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; @@ -1927,6 +1933,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2029,6 +2036,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2161,6 +2169,7 @@ self: super: { "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"; @@ -2250,6 +2259,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2321,6 +2331,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2771,6 +2782,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4231,6 +4243,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4695,6 +4708,7 @@ self: super: { "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4864,6 +4878,7 @@ self: super: { "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"; @@ -4904,6 +4919,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4972,6 +4988,7 @@ self: super: { "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"; @@ -5028,6 +5045,7 @@ self: super: { "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"; @@ -5087,6 +5105,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5102,6 +5121,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5308,6 +5329,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5649,6 +5671,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5679,6 +5702,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5837,6 +5861,7 @@ self: super: { "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"; @@ -6076,6 +6101,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6619,6 +6645,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6861,6 +6888,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7065,6 +7093,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7261,6 +7290,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8169,6 +8199,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8721,6 +8752,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8802,6 +8834,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index e4088e83fda..309af43ca8e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "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"; @@ -790,6 +793,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1741,6 +1745,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1751,6 +1756,7 @@ self: super: { "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"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; @@ -1914,6 +1920,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2016,6 +2023,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2147,6 +2155,7 @@ self: super: { "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"; @@ -2235,6 +2244,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2304,6 +2314,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2752,6 +2763,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4142,6 +4154,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4195,6 +4208,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4251,6 +4265,7 @@ self: super: { "hinotify" = doDistribute super."hinotify_0_3_7"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4656,6 +4671,7 @@ self: super: { "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_7_1"; @@ -4822,6 +4838,7 @@ self: super: { "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"; @@ -4862,6 +4879,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4930,6 +4948,7 @@ self: super: { "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"; @@ -4986,6 +5005,7 @@ self: super: { "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"; @@ -5042,6 +5062,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5057,6 +5078,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5262,6 +5285,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5597,6 +5621,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5627,6 +5652,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5783,6 +5809,7 @@ self: super: { "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"; @@ -6019,6 +6046,7 @@ self: super: { "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"; @@ -6557,6 +6585,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6798,6 +6827,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7000,6 +7030,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7194,6 +7225,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8084,6 +8116,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8636,6 +8669,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8715,6 +8749,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index a5feb068167..cdd08f1ebef 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "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"; @@ -790,6 +793,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1741,6 +1745,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1751,6 +1756,7 @@ self: super: { "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"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; @@ -1914,6 +1920,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2016,6 +2023,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2147,6 +2155,7 @@ self: super: { "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"; @@ -2235,6 +2244,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2304,6 +2314,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_2"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2752,6 +2763,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4142,6 +4154,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4195,6 +4208,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4251,6 +4265,7 @@ self: super: { "hinotify" = doDistribute super."hinotify_0_3_7"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4656,6 +4671,7 @@ self: super: { "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_7_2"; @@ -4822,6 +4838,7 @@ self: super: { "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"; @@ -4862,6 +4879,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4930,6 +4948,7 @@ self: super: { "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"; @@ -4986,6 +5005,7 @@ self: super: { "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"; @@ -5042,6 +5062,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5057,6 +5078,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5261,6 +5284,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5596,6 +5620,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5626,6 +5651,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5782,6 +5808,7 @@ self: super: { "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"; @@ -6018,6 +6045,7 @@ self: super: { "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"; @@ -6555,6 +6583,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6796,6 +6825,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6998,6 +7028,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7192,6 +7223,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8082,6 +8114,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8632,6 +8665,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8711,6 +8745,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index 0cc8eb33e20..fa0471894cf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "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"; @@ -790,6 +793,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1741,6 +1745,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1751,6 +1756,7 @@ self: super: { "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"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; @@ -1914,6 +1920,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2016,6 +2023,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2147,6 +2155,7 @@ self: super: { "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"; @@ -2235,6 +2244,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2304,6 +2314,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_2"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2752,6 +2763,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4142,6 +4154,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4195,6 +4208,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4250,6 +4264,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4655,6 +4670,7 @@ self: super: { "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_7_2"; @@ -4821,6 +4837,7 @@ self: super: { "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"; @@ -4861,6 +4878,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4929,6 +4947,7 @@ self: super: { "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"; @@ -4985,6 +5004,7 @@ self: super: { "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"; @@ -5041,6 +5061,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5056,6 +5077,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5260,6 +5283,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5595,6 +5619,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5625,6 +5650,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5780,6 +5806,7 @@ self: super: { "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"; @@ -6016,6 +6043,7 @@ self: super: { "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"; @@ -6553,6 +6581,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6794,6 +6823,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6996,6 +7026,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7190,6 +7221,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8080,6 +8112,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8630,6 +8663,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8709,6 +8743,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index 9d44f450ac3..91bbfa37d9a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -330,6 +331,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -612,6 +614,7 @@ self: super: { "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"; @@ -792,6 +795,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1753,6 +1757,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1763,6 +1768,7 @@ self: super: { "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"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; @@ -1927,6 +1933,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2029,6 +2036,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2161,6 +2169,7 @@ self: super: { "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"; @@ -2250,6 +2259,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2321,6 +2331,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2771,6 +2782,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4230,6 +4242,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4694,6 +4707,7 @@ self: super: { "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4862,6 +4876,7 @@ self: super: { "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"; @@ -4902,6 +4917,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4970,6 +4986,7 @@ self: super: { "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"; @@ -5026,6 +5043,7 @@ self: super: { "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"; @@ -5085,6 +5103,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5100,6 +5119,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5306,6 +5327,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5647,6 +5669,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5677,6 +5700,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5835,6 +5859,7 @@ self: super: { "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"; @@ -6074,6 +6099,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6617,6 +6643,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6859,6 +6886,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7063,6 +7091,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7259,6 +7288,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8167,6 +8197,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8719,6 +8750,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8800,6 +8832,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index 8a2b3b4deac..2de9244d173 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -330,6 +331,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -612,6 +614,7 @@ self: super: { "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"; @@ -792,6 +795,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1752,6 +1756,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1762,6 +1767,7 @@ self: super: { "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"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; @@ -1926,6 +1932,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2028,6 +2035,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2160,6 +2168,7 @@ self: super: { "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"; @@ -2249,6 +2258,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2320,6 +2330,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2770,6 +2781,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4229,6 +4241,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4693,6 +4706,7 @@ self: super: { "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4861,6 +4875,7 @@ self: super: { "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"; @@ -4901,6 +4916,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4969,6 +4985,7 @@ self: super: { "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"; @@ -5025,6 +5042,7 @@ self: super: { "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"; @@ -5084,6 +5102,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5099,6 +5118,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5305,6 +5326,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5645,6 +5667,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5675,6 +5698,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5833,6 +5857,7 @@ self: super: { "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"; @@ -6072,6 +6097,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6614,6 +6640,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6856,6 +6883,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7059,6 +7087,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7255,6 +7284,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8163,6 +8193,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8715,6 +8746,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8796,6 +8828,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index 67671cfa058..159a5fffc07 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -330,6 +331,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -612,6 +614,7 @@ self: super: { "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"; @@ -792,6 +795,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1752,6 +1756,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1762,6 +1767,7 @@ self: super: { "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"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; @@ -1926,6 +1932,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2028,6 +2035,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2160,6 +2168,7 @@ self: super: { "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"; @@ -2249,6 +2258,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2319,6 +2329,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2769,6 +2780,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4228,6 +4240,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4692,6 +4705,7 @@ self: super: { "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4860,6 +4874,7 @@ self: super: { "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"; @@ -4900,6 +4915,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4968,6 +4984,7 @@ self: super: { "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"; @@ -5024,6 +5041,7 @@ self: super: { "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"; @@ -5083,6 +5101,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5098,6 +5117,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5304,6 +5325,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5644,6 +5666,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5674,6 +5697,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5832,6 +5856,7 @@ self: super: { "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"; @@ -6071,6 +6096,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6613,6 +6639,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6855,6 +6882,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7058,6 +7086,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7254,6 +7283,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8162,6 +8192,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8714,6 +8745,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8795,6 +8827,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index 395eed7a466..fbd038b45a3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -330,6 +331,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -612,6 +614,7 @@ self: super: { "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"; @@ -792,6 +795,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1749,6 +1753,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1759,6 +1764,7 @@ self: super: { "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"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; @@ -1923,6 +1929,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2025,6 +2032,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2157,6 +2165,7 @@ self: super: { "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"; @@ -2246,6 +2255,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2316,6 +2326,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2766,6 +2777,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4223,6 +4235,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4687,6 +4700,7 @@ self: super: { "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4855,6 +4869,7 @@ self: super: { "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"; @@ -4895,6 +4910,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4963,6 +4979,7 @@ self: super: { "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"; @@ -5019,6 +5036,7 @@ self: super: { "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"; @@ -5078,6 +5096,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5093,6 +5112,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5299,6 +5320,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5639,6 +5661,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5669,6 +5692,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5827,6 +5851,7 @@ self: super: { "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"; @@ -6065,6 +6090,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6607,6 +6633,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6849,6 +6876,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7052,6 +7080,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7248,6 +7277,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8154,6 +8184,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8706,6 +8737,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8787,6 +8819,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index 56b294f3a0d..e9b4bf7bb2f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "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"; @@ -791,6 +794,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1748,6 +1752,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1758,6 +1763,7 @@ self: super: { "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"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; @@ -1922,6 +1928,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2024,6 +2031,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2156,6 +2164,7 @@ self: super: { "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"; @@ -2245,6 +2254,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2315,6 +2325,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2765,6 +2776,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4222,6 +4234,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4686,6 +4699,7 @@ self: super: { "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4854,6 +4868,7 @@ self: super: { "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"; @@ -4894,6 +4909,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4962,6 +4978,7 @@ self: super: { "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"; @@ -5018,6 +5035,7 @@ self: super: { "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"; @@ -5077,6 +5095,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5092,6 +5111,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5298,6 +5319,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5638,6 +5660,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5668,6 +5691,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5826,6 +5850,7 @@ self: super: { "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"; @@ -6064,6 +6089,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6606,6 +6632,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6848,6 +6875,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7051,6 +7079,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7247,6 +7276,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8153,6 +8183,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8705,6 +8736,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8786,6 +8818,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index ed5076569f0..1a1c7533750 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "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"; @@ -790,6 +793,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1747,6 +1751,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1757,6 +1762,7 @@ self: super: { "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"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; @@ -1921,6 +1927,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2023,6 +2030,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2155,6 +2163,7 @@ self: super: { "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"; @@ -2244,6 +2253,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2314,6 +2324,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2764,6 +2775,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4220,6 +4232,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4684,6 +4697,7 @@ self: super: { "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4852,6 +4866,7 @@ self: super: { "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"; @@ -4892,6 +4907,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4960,6 +4976,7 @@ self: super: { "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"; @@ -5016,6 +5033,7 @@ self: super: { "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"; @@ -5075,6 +5093,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5090,6 +5109,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5296,6 +5317,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5636,6 +5658,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5666,6 +5689,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5824,6 +5848,7 @@ self: super: { "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"; @@ -6062,6 +6087,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6604,6 +6630,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6846,6 +6873,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7049,6 +7077,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7244,6 +7273,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8147,6 +8177,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8699,6 +8730,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8780,6 +8812,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index 154ac6f5c76..0b77b9d2bcb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -121,6 +121,7 @@ self: super: { "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"; @@ -329,6 +330,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -611,6 +613,7 @@ self: super: { "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"; @@ -790,6 +793,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1745,6 +1749,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; @@ -1755,6 +1760,7 @@ self: super: { "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"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; @@ -1919,6 +1925,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -2021,6 +2028,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2153,6 +2161,7 @@ self: super: { "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"; @@ -2242,6 +2251,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2312,6 +2322,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2762,6 +2773,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4216,6 +4228,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4679,6 +4692,7 @@ self: super: { "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-common" = dontDistribute super."http-common"; "http-conduit" = doDistribute super."http-conduit_2_1_5"; @@ -4846,6 +4860,7 @@ self: super: { "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"; @@ -4886,6 +4901,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4954,6 +4970,7 @@ self: super: { "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"; @@ -5010,6 +5027,7 @@ self: super: { "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"; @@ -5069,6 +5087,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; "jwt" = dontDistribute super."jwt"; @@ -5084,6 +5103,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5290,6 +5311,7 @@ self: super: { "levmar" = dontDistribute super."levmar"; "levmar-chart" = dontDistribute super."levmar-chart"; "lexer-applicative" = dontDistribute super."lexer-applicative"; + "lfst" = dontDistribute super."lfst"; "lgtk" = dontDistribute super."lgtk"; "lha" = dontDistribute super."lha"; "lhae" = dontDistribute super."lhae"; @@ -5628,6 +5650,7 @@ self: super: { "memory" = dontDistribute super."memory"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_3_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_1_0_3"; "messente" = dontDistribute super."messente"; @@ -5658,6 +5681,7 @@ self: super: { "microlens-th" = dontDistribute super."microlens-th"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5816,6 +5840,7 @@ self: super: { "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"; @@ -6054,6 +6079,7 @@ self: super: { "non-negative" = dontDistribute super."non-negative"; "nonce" = dontDistribute super."nonce"; "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"; @@ -6595,6 +6621,7 @@ self: super: { "prelude-safeenum" = dontDistribute super."prelude-safeenum"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = doDistribute super."present_2_2"; "press" = dontDistribute super."press"; "presto-hdbc" = dontDistribute super."presto-hdbc"; "prettify" = dontDistribute super."prettify"; @@ -6837,6 +6864,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -7040,6 +7068,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7235,6 +7264,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -8134,6 +8164,7 @@ self: super: { "torch" = dontDistribute super."torch"; "torrent" = dontDistribute super."torrent"; "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"; @@ -8686,6 +8717,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = dontDistribute super."witherable"; "witness" = dontDistribute super."witness"; @@ -8767,6 +8799,7 @@ self: super: { "xkcd" = dontDistribute super."xkcd"; "xlsior" = dontDistribute super."xlsior"; "xlsx" = dontDistribute super."xlsx"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index 26901fe517d..cee44c1f392 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -114,6 +114,7 @@ self: super: { "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"; @@ -320,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -599,6 +601,7 @@ self: super: { "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"; @@ -778,6 +781,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1505,6 +1509,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1693,6 +1698,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1702,6 +1708,7 @@ self: super: { "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"; @@ -1860,6 +1867,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1961,6 +1969,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2089,6 +2098,7 @@ self: super: { "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"; @@ -2175,6 +2185,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2243,6 +2254,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_2"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2680,6 +2692,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4046,6 +4059,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4097,6 +4111,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4151,6 +4166,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4553,6 +4569,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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"; @@ -4708,6 +4725,7 @@ self: super: { "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"; @@ -4747,6 +4765,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4813,6 +4832,7 @@ self: super: { "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"; @@ -4866,6 +4886,7 @@ self: super: { "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"; @@ -4921,6 +4942,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4935,6 +4957,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5124,6 +5148,7 @@ self: super: { "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"; @@ -5450,6 +5475,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5479,6 +5505,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_0"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5630,6 +5657,7 @@ self: super: { "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"; @@ -5857,6 +5885,7 @@ self: super: { "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"; @@ -6163,6 +6192,7 @@ self: super: { "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"; "persistent-template" = doDistribute super."persistent-template_2_1_3_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6616,6 +6646,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6818,6 +6849,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7012,6 +7044,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7877,6 +7910,7 @@ self: super: { "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"; @@ -8415,6 +8449,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3"; "witness" = dontDistribute super."witness"; @@ -8492,6 +8527,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_0_5"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 22bf6130b77..d8c5af88e37 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -114,6 +114,7 @@ self: super: { "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"; @@ -320,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_1_1"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -599,6 +601,7 @@ self: super: { "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"; @@ -778,6 +781,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1504,6 +1508,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1692,6 +1697,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1701,6 +1707,7 @@ self: super: { "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"; @@ -1859,6 +1866,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1960,6 +1968,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2088,6 +2097,7 @@ self: super: { "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"; @@ -2174,6 +2184,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2242,6 +2253,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_2"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2679,6 +2691,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4043,6 +4056,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4094,6 +4108,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4148,6 +4163,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4550,6 +4566,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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"; @@ -4705,6 +4722,7 @@ self: super: { "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"; @@ -4744,6 +4762,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4810,6 +4829,7 @@ self: super: { "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"; @@ -4863,6 +4883,7 @@ self: super: { "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"; @@ -4918,6 +4939,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4932,6 +4954,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5121,6 +5145,7 @@ self: super: { "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"; @@ -5446,6 +5471,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5475,6 +5501,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5626,6 +5653,7 @@ self: super: { "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"; @@ -5852,6 +5880,7 @@ self: super: { "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"; @@ -6158,6 +6187,7 @@ self: super: { "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"; "persistent-template" = doDistribute super."persistent-template_2_1_3_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6610,6 +6640,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6811,6 +6842,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -7005,6 +7037,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7870,6 +7903,7 @@ self: super: { "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"; @@ -8407,6 +8441,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3"; "witness" = dontDistribute super."witness"; @@ -8484,6 +8519,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_0_5"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index 7b6a5fc116d..270cb16da41 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -114,6 +114,7 @@ self: super: { "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"; @@ -320,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -597,6 +599,7 @@ self: super: { "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"; @@ -775,6 +778,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1496,6 +1500,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1681,6 +1686,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1690,6 +1696,7 @@ self: super: { "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"; @@ -1848,6 +1855,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1948,6 +1956,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2076,6 +2085,7 @@ self: super: { "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"; @@ -2162,6 +2172,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2229,6 +2240,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2660,6 +2672,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4015,6 +4028,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4066,6 +4080,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4119,6 +4134,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4519,6 +4535,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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"; @@ -4672,6 +4689,7 @@ self: super: { "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"; @@ -4711,6 +4729,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4777,6 +4796,7 @@ self: super: { "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"; @@ -4830,6 +4850,7 @@ self: super: { "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"; @@ -4885,6 +4906,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4898,6 +4920,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5083,6 +5107,7 @@ self: super: { "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"; @@ -5407,6 +5432,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5436,6 +5462,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5585,6 +5612,7 @@ self: super: { "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"; @@ -5808,6 +5836,7 @@ self: super: { "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"; @@ -6112,6 +6141,7 @@ self: super: { "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"; "persistent-template" = doDistribute super."persistent-template_2_1_3_7"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6557,6 +6587,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6757,6 +6788,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6951,6 +6983,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7805,6 +7838,7 @@ self: super: { "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"; @@ -8335,6 +8369,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; @@ -8409,6 +8444,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_1_1"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index 6d667e44406..cdab904c002 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -114,6 +114,7 @@ self: super: { "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"; @@ -320,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -597,6 +599,7 @@ self: super: { "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"; @@ -775,6 +778,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1496,6 +1500,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1681,6 +1686,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1690,6 +1696,7 @@ self: super: { "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"; @@ -1847,6 +1854,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1947,6 +1955,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2075,6 +2084,7 @@ self: super: { "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"; @@ -2161,6 +2171,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2228,6 +2239,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2659,6 +2671,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4013,6 +4026,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4064,6 +4078,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4117,6 +4132,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4517,6 +4533,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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"; @@ -4670,6 +4687,7 @@ self: super: { "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"; @@ -4709,6 +4727,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4775,6 +4794,7 @@ self: super: { "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"; @@ -4828,6 +4848,7 @@ self: super: { "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"; @@ -4883,6 +4904,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4896,6 +4918,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5081,6 +5105,7 @@ self: super: { "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"; @@ -5405,6 +5430,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5434,6 +5460,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5583,6 +5610,7 @@ self: super: { "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"; @@ -5806,6 +5834,7 @@ self: super: { "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"; @@ -6109,6 +6138,7 @@ self: super: { "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"; "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6554,6 +6584,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6754,6 +6785,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6948,6 +6980,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7801,6 +7834,7 @@ self: super: { "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"; @@ -8331,6 +8365,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; @@ -8405,6 +8440,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_1_1"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index e57cb676ac9..585c031b223 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -114,6 +114,7 @@ self: super: { "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"; @@ -320,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -597,6 +599,7 @@ self: super: { "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"; @@ -775,6 +778,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1496,6 +1500,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1681,6 +1686,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1690,6 +1696,7 @@ self: super: { "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"; @@ -1847,6 +1854,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1946,6 +1954,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2074,6 +2083,7 @@ self: super: { "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"; @@ -2160,6 +2170,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2227,6 +2238,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2658,6 +2670,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4011,6 +4024,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4062,6 +4076,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4115,6 +4130,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4515,6 +4531,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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"; @@ -4668,6 +4685,7 @@ self: super: { "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"; @@ -4707,6 +4725,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4773,6 +4792,7 @@ self: super: { "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"; @@ -4826,6 +4846,7 @@ self: super: { "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"; @@ -4881,6 +4902,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4894,6 +4916,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5079,6 +5103,7 @@ self: super: { "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"; @@ -5403,6 +5428,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5432,6 +5458,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5581,6 +5608,7 @@ self: super: { "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"; @@ -5804,6 +5832,7 @@ self: super: { "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"; @@ -6106,6 +6135,7 @@ self: super: { "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"; "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6551,6 +6581,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6751,6 +6782,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6945,6 +6977,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7796,6 +7829,7 @@ self: super: { "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"; @@ -8326,6 +8360,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; @@ -8400,6 +8435,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_1_1"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index b9cb47decb0..8d97aa0d603 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -114,6 +114,7 @@ self: super: { "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"; @@ -320,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -597,6 +599,7 @@ self: super: { "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"; @@ -775,6 +778,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1496,6 +1500,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1681,6 +1686,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1690,6 +1696,7 @@ self: super: { "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"; @@ -1847,6 +1854,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1946,6 +1954,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2074,6 +2083,7 @@ self: super: { "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"; @@ -2160,6 +2170,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2227,6 +2238,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2658,6 +2670,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4011,6 +4024,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4062,6 +4076,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4114,6 +4129,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4514,6 +4530,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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"; @@ -4667,6 +4684,7 @@ self: super: { "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"; @@ -4706,6 +4724,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4772,6 +4791,7 @@ self: super: { "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"; @@ -4825,6 +4845,7 @@ self: super: { "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"; @@ -4880,6 +4901,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4893,6 +4915,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5077,6 +5101,7 @@ self: super: { "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"; @@ -5401,6 +5426,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5430,6 +5456,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5579,6 +5606,7 @@ self: super: { "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"; @@ -5802,6 +5830,7 @@ self: super: { "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"; @@ -6103,6 +6132,7 @@ self: super: { "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"; "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6548,6 +6578,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6748,6 +6779,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6942,6 +6974,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7793,6 +7826,7 @@ self: super: { "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"; @@ -8322,6 +8356,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; @@ -8396,6 +8431,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_1_1"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index e587a7ad38a..766ffbd78fe 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -114,6 +114,7 @@ self: super: { "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"; @@ -320,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -597,6 +599,7 @@ self: super: { "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"; @@ -775,6 +778,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1494,6 +1498,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1679,6 +1684,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1688,6 +1694,7 @@ self: super: { "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"; @@ -1844,6 +1851,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1943,6 +1951,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2071,6 +2080,7 @@ self: super: { "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"; @@ -2157,6 +2167,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2224,6 +2235,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2652,6 +2664,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4005,6 +4018,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4056,6 +4070,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4108,6 +4123,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4507,6 +4523,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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"; @@ -4660,6 +4677,7 @@ self: super: { "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"; @@ -4699,6 +4717,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4765,6 +4784,7 @@ self: super: { "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"; @@ -4818,6 +4838,7 @@ self: super: { "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"; @@ -4873,6 +4894,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4886,6 +4908,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5070,6 +5094,7 @@ self: super: { "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"; @@ -5263,6 +5288,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; @@ -5393,6 +5419,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5422,6 +5449,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5571,6 +5599,7 @@ self: super: { "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"; @@ -5794,6 +5823,7 @@ self: super: { "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"; @@ -6095,6 +6125,7 @@ self: super: { "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"; "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6540,6 +6571,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6740,6 +6772,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6934,6 +6967,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7785,6 +7819,7 @@ self: super: { "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"; @@ -8313,6 +8348,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; @@ -8387,6 +8423,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_1_1"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index 2be3799d16d..5458b91358a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -114,6 +114,7 @@ self: super: { "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"; @@ -320,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -597,6 +599,7 @@ self: super: { "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"; @@ -775,6 +778,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1494,6 +1498,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1679,6 +1684,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1688,6 +1694,7 @@ self: super: { "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"; @@ -1844,6 +1851,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1943,6 +1951,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2071,6 +2080,7 @@ self: super: { "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"; @@ -2157,6 +2167,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2224,6 +2235,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2652,6 +2664,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4004,6 +4017,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4055,6 +4069,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4107,6 +4122,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4505,6 +4521,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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"; @@ -4657,6 +4674,7 @@ self: super: { "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"; @@ -4696,6 +4714,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4762,6 +4781,7 @@ self: super: { "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"; @@ -4815,6 +4835,7 @@ self: super: { "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"; @@ -4870,6 +4891,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4883,6 +4905,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5067,6 +5091,7 @@ self: super: { "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"; @@ -5260,6 +5285,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; @@ -5390,6 +5416,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5419,6 +5446,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5568,6 +5596,7 @@ self: super: { "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"; @@ -5791,6 +5820,7 @@ self: super: { "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"; @@ -6092,6 +6122,7 @@ self: super: { "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"; "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6537,6 +6568,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6737,6 +6769,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6931,6 +6964,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7781,6 +7815,7 @@ self: super: { "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"; @@ -8309,6 +8344,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; @@ -8383,6 +8419,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_1_1"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index efd1b082339..218b21f6feb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -114,6 +114,7 @@ self: super: { "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"; @@ -320,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -597,6 +599,7 @@ self: super: { "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"; @@ -774,6 +777,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1493,6 +1497,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1678,6 +1683,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1687,6 +1693,7 @@ self: super: { "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"; @@ -1843,6 +1850,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1942,6 +1950,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2070,6 +2079,7 @@ self: super: { "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"; @@ -2156,6 +2166,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2223,6 +2234,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2651,6 +2663,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4001,6 +4014,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4052,6 +4066,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4104,6 +4119,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4502,6 +4518,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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"; @@ -4654,6 +4671,7 @@ self: super: { "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"; @@ -4693,6 +4711,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4759,6 +4778,7 @@ self: super: { "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"; @@ -4812,6 +4832,7 @@ self: super: { "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"; @@ -4867,6 +4888,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4880,6 +4902,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5063,6 +5087,7 @@ self: super: { "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"; @@ -5256,6 +5281,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; @@ -5385,6 +5411,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5414,6 +5441,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5563,6 +5591,7 @@ self: super: { "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"; @@ -5786,6 +5815,7 @@ self: super: { "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"; @@ -6087,6 +6117,7 @@ self: super: { "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"; "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6531,6 +6562,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6730,6 +6762,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6861,6 +6894,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_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6923,6 +6957,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7770,6 +7805,7 @@ self: super: { "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"; @@ -8298,6 +8334,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; @@ -8372,6 +8409,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_2"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index b2af59ffb82..4b95c61e186 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -114,6 +114,7 @@ self: super: { "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"; @@ -320,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -597,6 +599,7 @@ self: super: { "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"; @@ -774,6 +777,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1492,6 +1496,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1677,6 +1682,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1686,6 +1692,7 @@ self: super: { "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"; @@ -1842,6 +1849,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1901,6 +1909,7 @@ self: super: { "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_1"; + "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1940,6 +1949,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2068,6 +2078,7 @@ self: super: { "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"; @@ -2154,6 +2165,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2221,6 +2233,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2649,6 +2662,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3998,6 +4012,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4049,6 +4064,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4101,6 +4117,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4499,6 +4516,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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"; @@ -4651,6 +4669,7 @@ self: super: { "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"; @@ -4689,6 +4708,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4755,6 +4775,7 @@ self: super: { "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"; @@ -4808,6 +4829,7 @@ self: super: { "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"; @@ -4863,6 +4885,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4876,6 +4899,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5059,6 +5084,7 @@ self: super: { "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"; @@ -5251,6 +5277,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; @@ -5380,6 +5407,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5409,6 +5437,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5557,6 +5586,7 @@ self: super: { "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"; @@ -5780,6 +5810,7 @@ self: super: { "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"; @@ -6081,6 +6112,7 @@ self: super: { "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"; "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6525,6 +6557,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6724,6 +6757,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6855,6 +6889,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_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6917,6 +6952,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7764,6 +7800,7 @@ self: super: { "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"; @@ -8292,6 +8329,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; @@ -8366,6 +8404,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_2"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index 2668b094d9d..0fb99ad9b6d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -114,6 +114,7 @@ self: super: { "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"; @@ -320,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -597,6 +599,7 @@ self: super: { "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"; @@ -774,6 +777,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1492,6 +1496,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1677,6 +1682,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1686,6 +1692,7 @@ self: super: { "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"; @@ -1841,6 +1848,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1900,6 +1908,7 @@ self: super: { "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_1"; + "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1939,6 +1948,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2067,6 +2077,7 @@ self: super: { "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"; @@ -2153,6 +2164,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2220,6 +2232,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2648,6 +2661,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3993,6 +4007,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4044,6 +4059,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4095,6 +4111,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4420,6 +4437,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4490,6 +4508,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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"; @@ -4642,6 +4661,7 @@ self: super: { "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"; @@ -4680,6 +4700,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4746,6 +4767,7 @@ self: super: { "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"; @@ -4799,6 +4821,7 @@ self: super: { "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"; @@ -4854,6 +4877,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4867,6 +4891,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5050,6 +5076,7 @@ self: super: { "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"; @@ -5242,6 +5269,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; @@ -5371,6 +5399,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5400,6 +5429,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5548,6 +5578,7 @@ self: super: { "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"; @@ -5771,6 +5802,7 @@ self: super: { "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"; @@ -6071,6 +6103,7 @@ self: super: { "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"; "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6513,6 +6546,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6712,6 +6746,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6843,6 +6878,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_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6905,6 +6941,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7751,6 +7788,7 @@ self: super: { "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"; @@ -8279,6 +8317,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; @@ -8353,6 +8392,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_2"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix index fc230510d8d..b9b5fd08ab3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -113,6 +113,7 @@ self: super: { "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"; @@ -319,6 +320,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -596,6 +598,7 @@ self: super: { "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"; @@ -773,6 +776,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1489,6 +1493,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1674,6 +1679,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1683,6 +1689,7 @@ self: super: { "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"; @@ -1836,6 +1843,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1895,6 +1903,7 @@ self: super: { "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_1"; + "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1934,6 +1943,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2062,6 +2072,7 @@ self: super: { "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"; @@ -2147,6 +2158,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2214,6 +2226,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2642,6 +2655,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3987,6 +4001,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4038,6 +4053,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4089,6 +4105,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4411,6 +4428,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4481,6 +4499,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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"; @@ -4633,6 +4652,7 @@ self: super: { "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"; @@ -4671,6 +4691,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4737,6 +4758,7 @@ self: super: { "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"; @@ -4790,6 +4812,7 @@ self: super: { "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"; @@ -4844,6 +4867,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4857,6 +4881,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5040,6 +5066,7 @@ self: super: { "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"; @@ -5231,6 +5258,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; @@ -5360,6 +5388,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5389,6 +5418,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5537,6 +5567,7 @@ self: super: { "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"; @@ -5759,6 +5790,7 @@ self: super: { "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"; @@ -6046,6 +6078,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; @@ -6058,6 +6091,7 @@ self: super: { "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"; "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6500,6 +6534,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6699,6 +6734,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6830,6 +6866,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_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6892,6 +6929,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7737,6 +7775,7 @@ self: super: { "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"; @@ -8265,6 +8304,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; @@ -8338,6 +8378,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_2"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 450ccc34a9a..d7389e30ea0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -114,6 +114,7 @@ self: super: { "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"; @@ -320,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -598,6 +600,7 @@ self: super: { "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"; @@ -777,6 +780,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1502,6 +1506,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1690,6 +1695,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1699,6 +1705,7 @@ self: super: { "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"; @@ -1857,6 +1864,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1958,6 +1966,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2086,6 +2095,7 @@ self: super: { "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"; @@ -2172,6 +2182,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2240,6 +2251,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_2"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2676,6 +2688,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4039,6 +4052,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4090,6 +4104,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4144,6 +4159,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4546,6 +4562,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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"; @@ -4701,6 +4718,7 @@ self: super: { "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"; @@ -4740,6 +4758,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4806,6 +4825,7 @@ self: super: { "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"; @@ -4859,6 +4879,7 @@ self: super: { "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"; @@ -4914,6 +4935,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4928,6 +4950,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5115,6 +5139,7 @@ self: super: { "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"; @@ -5440,6 +5465,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5469,6 +5495,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5620,6 +5647,7 @@ self: super: { "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"; @@ -5846,6 +5874,7 @@ self: super: { "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"; @@ -6152,6 +6181,7 @@ self: super: { "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"; "persistent-template" = doDistribute super."persistent-template_2_1_3_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6602,6 +6632,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6803,6 +6834,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6997,6 +7029,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7860,6 +7893,7 @@ self: super: { "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"; @@ -8397,6 +8431,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3"; "witness" = dontDistribute super."witness"; @@ -8474,6 +8509,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_0_5"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix index 8bab2133709..49ffd98eaab 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -113,6 +113,7 @@ self: super: { "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"; @@ -319,6 +320,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -595,6 +597,7 @@ self: super: { "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"; @@ -772,6 +775,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1488,6 +1492,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1673,6 +1678,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1682,6 +1688,7 @@ self: super: { "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"; @@ -1835,6 +1842,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1894,6 +1902,7 @@ self: super: { "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_1"; + "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1933,6 +1942,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2061,6 +2071,7 @@ self: super: { "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"; @@ -2146,6 +2157,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2213,6 +2225,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2641,6 +2654,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3986,6 +4000,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4037,6 +4052,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4088,6 +4104,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4410,6 +4427,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4480,6 +4498,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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"; @@ -4632,6 +4651,7 @@ self: super: { "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"; @@ -4670,6 +4690,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4736,6 +4757,7 @@ self: super: { "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"; @@ -4789,6 +4811,7 @@ self: super: { "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"; @@ -4843,6 +4866,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4856,6 +4880,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5039,6 +5065,7 @@ self: super: { "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"; @@ -5230,6 +5257,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; @@ -5359,6 +5387,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5388,6 +5417,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5536,6 +5566,7 @@ self: super: { "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"; @@ -5758,6 +5789,7 @@ self: super: { "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"; @@ -6045,6 +6077,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; @@ -6057,6 +6090,8 @@ self: super: { "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"; + "persistent-template" = doDistribute super."persistent-template_2_1_5"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -6498,6 +6533,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6696,6 +6732,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6827,6 +6864,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_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6889,6 +6927,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7732,6 +7771,7 @@ self: super: { "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"; @@ -8260,6 +8300,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; @@ -8332,6 +8373,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_2"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix index 5627d7f1520..f733cdf1996 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix @@ -113,6 +113,7 @@ self: super: { "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"; @@ -319,6 +320,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -595,6 +597,7 @@ self: super: { "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"; @@ -772,6 +775,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1488,6 +1492,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1673,6 +1678,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1682,6 +1688,7 @@ self: super: { "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"; @@ -1835,6 +1842,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1894,6 +1902,7 @@ self: super: { "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_1"; + "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1933,6 +1942,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2061,6 +2071,7 @@ self: super: { "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"; @@ -2145,6 +2156,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2212,6 +2224,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2640,6 +2653,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3982,6 +3996,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4033,6 +4048,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4084,6 +4100,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4406,6 +4423,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4476,6 +4494,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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"; @@ -4626,6 +4645,7 @@ self: super: { "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"; @@ -4664,6 +4684,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4730,6 +4751,7 @@ self: super: { "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"; @@ -4783,6 +4805,7 @@ self: super: { "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"; @@ -4837,6 +4860,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4850,6 +4874,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5033,6 +5059,7 @@ self: super: { "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"; @@ -5224,6 +5251,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; @@ -5353,6 +5381,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5382,6 +5411,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5529,6 +5559,7 @@ self: super: { "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"; @@ -5751,6 +5782,7 @@ self: super: { "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"; @@ -6037,6 +6069,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; @@ -6049,6 +6082,8 @@ self: super: { "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"; + "persistent-template" = doDistribute super."persistent-template_2_1_5"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -6489,6 +6524,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6685,6 +6721,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6815,6 +6852,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_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6877,6 +6915,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7711,6 +7750,7 @@ self: super: { "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"; @@ -8233,6 +8273,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; @@ -8305,6 +8346,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_2"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix index 2d4131a2761..6bdb373e0f7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix @@ -113,6 +113,7 @@ self: super: { "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"; @@ -319,6 +320,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -595,6 +597,7 @@ self: super: { "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"; @@ -772,6 +775,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1488,6 +1492,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1673,6 +1678,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1682,6 +1688,7 @@ self: super: { "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"; @@ -1835,6 +1842,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1894,6 +1902,7 @@ self: super: { "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_1"; + "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1933,6 +1942,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2061,6 +2071,7 @@ self: super: { "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"; @@ -2145,6 +2156,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2212,6 +2224,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2640,6 +2653,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3979,6 +3993,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4030,6 +4045,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4081,6 +4097,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4403,6 +4420,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4473,6 +4491,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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"; @@ -4622,6 +4641,7 @@ self: super: { "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"; @@ -4659,6 +4679,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4724,6 +4745,7 @@ self: super: { "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"; @@ -4777,6 +4799,7 @@ self: super: { "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"; @@ -4831,6 +4854,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4844,6 +4868,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5027,6 +5053,7 @@ self: super: { "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"; @@ -5218,6 +5245,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucid-svg" = doDistribute super."lucid-svg_0_5_0_0"; "lucienne" = dontDistribute super."lucienne"; @@ -5347,6 +5375,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5376,6 +5405,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5523,6 +5553,7 @@ self: super: { "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"; @@ -5745,6 +5776,7 @@ self: super: { "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"; @@ -6031,6 +6063,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; @@ -6043,6 +6076,8 @@ self: super: { "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"; + "persistent-template" = doDistribute super."persistent-template_2_1_5"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -6483,6 +6518,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6679,6 +6715,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6809,6 +6846,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_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6871,6 +6909,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7705,6 +7744,7 @@ self: super: { "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"; @@ -8227,6 +8267,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; @@ -8299,6 +8340,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_2"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index 2c6fede1d7c..e67cf1579fa 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -114,6 +114,7 @@ self: super: { "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"; @@ -320,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -598,6 +600,7 @@ self: super: { "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"; @@ -777,6 +780,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1501,6 +1505,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1689,6 +1694,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1698,6 +1704,7 @@ self: super: { "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"; @@ -1856,6 +1863,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1957,6 +1965,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2085,6 +2094,7 @@ self: super: { "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"; @@ -2171,6 +2181,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2239,6 +2250,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2675,6 +2687,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4037,6 +4050,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4088,6 +4102,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4142,6 +4157,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4543,6 +4559,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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"; @@ -4698,6 +4715,7 @@ self: super: { "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"; @@ -4737,6 +4755,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4803,6 +4822,7 @@ self: super: { "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"; @@ -4856,6 +4876,7 @@ self: super: { "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"; @@ -4911,6 +4932,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4925,6 +4947,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5112,6 +5136,7 @@ self: super: { "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"; @@ -5437,6 +5462,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5466,6 +5492,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5617,6 +5644,7 @@ self: super: { "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"; @@ -5843,6 +5871,7 @@ self: super: { "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"; @@ -6149,6 +6178,7 @@ self: super: { "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"; "persistent-template" = doDistribute super."persistent-template_2_1_3_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6599,6 +6629,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6799,6 +6830,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6993,6 +7025,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7854,6 +7887,7 @@ self: super: { "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"; @@ -8390,6 +8424,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3"; "witness" = dontDistribute super."witness"; @@ -8467,6 +8502,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_0_5"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index c6050740cf6..16e4b163d9f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -114,6 +114,7 @@ self: super: { "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"; @@ -320,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -598,6 +600,7 @@ self: super: { "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"; @@ -777,6 +780,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1501,6 +1505,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1689,6 +1694,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1698,6 +1704,7 @@ self: super: { "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"; @@ -1856,6 +1863,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1957,6 +1965,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2085,6 +2094,7 @@ self: super: { "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"; @@ -2171,6 +2181,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2239,6 +2250,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2675,6 +2687,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4037,6 +4050,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4088,6 +4102,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4142,6 +4157,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4543,6 +4559,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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"; @@ -4698,6 +4715,7 @@ self: super: { "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"; @@ -4737,6 +4755,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4803,6 +4822,7 @@ self: super: { "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"; @@ -4856,6 +4876,7 @@ self: super: { "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"; @@ -4911,6 +4932,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4925,6 +4947,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5112,6 +5136,7 @@ self: super: { "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"; @@ -5437,6 +5462,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5466,6 +5492,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5617,6 +5644,7 @@ self: super: { "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"; @@ -5843,6 +5871,7 @@ self: super: { "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"; @@ -6149,6 +6178,7 @@ self: super: { "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"; "persistent-template" = doDistribute super."persistent-template_2_1_3_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6599,6 +6629,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6799,6 +6830,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6993,6 +7025,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7853,6 +7886,7 @@ self: super: { "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"; @@ -8388,6 +8422,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3"; "witness" = dontDistribute super."witness"; @@ -8465,6 +8500,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_0_5"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index 3ae2f390006..43a743159a3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -114,6 +114,7 @@ self: super: { "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"; @@ -320,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -598,6 +600,7 @@ self: super: { "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"; @@ -777,6 +780,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1500,6 +1504,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1688,6 +1693,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1697,6 +1703,7 @@ self: super: { "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"; @@ -1855,6 +1862,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1956,6 +1964,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2084,6 +2093,7 @@ self: super: { "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"; @@ -2170,6 +2180,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2238,6 +2249,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2674,6 +2686,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4035,6 +4048,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4086,6 +4100,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4139,6 +4154,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4539,6 +4555,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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"; @@ -4692,6 +4709,7 @@ self: super: { "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"; @@ -4731,6 +4749,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4797,6 +4816,7 @@ self: super: { "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"; @@ -4850,6 +4870,7 @@ self: super: { "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"; @@ -4905,6 +4926,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4919,6 +4941,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5106,6 +5130,7 @@ self: super: { "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"; @@ -5431,6 +5456,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5460,6 +5486,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5611,6 +5638,7 @@ self: super: { "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"; @@ -5836,6 +5864,7 @@ self: super: { "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"; @@ -6141,6 +6170,7 @@ self: super: { "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"; "persistent-template" = doDistribute super."persistent-template_2_1_3_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6590,6 +6620,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6790,6 +6821,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6984,6 +7016,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7841,6 +7874,7 @@ self: super: { "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"; @@ -8376,6 +8410,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3"; "witness" = dontDistribute super."witness"; @@ -8452,6 +8487,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_1"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index 51691d09fe5..9c0ca8de211 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -114,6 +114,7 @@ self: super: { "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"; @@ -320,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -598,6 +600,7 @@ self: super: { "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"; @@ -777,6 +780,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1500,6 +1504,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1688,6 +1693,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1697,6 +1703,7 @@ self: super: { "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"; @@ -1855,6 +1862,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1956,6 +1964,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2084,6 +2093,7 @@ self: super: { "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"; @@ -2170,6 +2180,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2238,6 +2249,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2674,6 +2686,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4032,6 +4045,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4083,6 +4097,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4136,6 +4151,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4536,6 +4552,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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"; @@ -4689,6 +4706,7 @@ self: super: { "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"; @@ -4728,6 +4746,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4794,6 +4813,7 @@ self: super: { "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"; @@ -4847,6 +4867,7 @@ self: super: { "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"; @@ -4902,6 +4923,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4915,6 +4937,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5100,6 +5124,7 @@ self: super: { "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"; @@ -5425,6 +5450,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5454,6 +5480,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5604,6 +5631,7 @@ self: super: { "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"; @@ -5829,6 +5857,7 @@ self: super: { "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"; @@ -6134,6 +6163,7 @@ self: super: { "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"; "persistent-template" = doDistribute super."persistent-template_2_1_3_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6583,6 +6613,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6783,6 +6814,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6977,6 +7009,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7834,6 +7867,7 @@ self: super: { "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"; @@ -8367,6 +8401,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3"; "witness" = dontDistribute super."witness"; @@ -8443,6 +8478,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_1_1"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index 2617995e3b3..384a5a2cb47 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -114,6 +114,7 @@ self: super: { "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"; @@ -320,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -598,6 +600,7 @@ self: super: { "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"; @@ -777,6 +780,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1498,6 +1502,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1686,6 +1691,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1695,6 +1701,7 @@ self: super: { "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"; @@ -1853,6 +1860,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1954,6 +1962,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2082,6 +2091,7 @@ self: super: { "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"; @@ -2168,6 +2178,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2235,6 +2246,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2671,6 +2683,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4028,6 +4041,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4079,6 +4093,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4132,6 +4147,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4532,6 +4548,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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"; @@ -4685,6 +4702,7 @@ self: super: { "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"; @@ -4724,6 +4742,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4790,6 +4809,7 @@ self: super: { "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"; @@ -4843,6 +4863,7 @@ self: super: { "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"; @@ -4898,6 +4919,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4911,6 +4933,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5096,6 +5120,7 @@ self: super: { "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"; @@ -5421,6 +5446,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5450,6 +5476,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5600,6 +5627,7 @@ self: super: { "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"; @@ -5825,6 +5853,7 @@ self: super: { "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"; @@ -6130,6 +6159,7 @@ self: super: { "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"; "persistent-template" = doDistribute super."persistent-template_2_1_3_6"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6577,6 +6607,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6777,6 +6808,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6971,6 +7003,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7827,6 +7860,7 @@ self: super: { "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"; @@ -8360,6 +8394,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3"; "witness" = dontDistribute super."witness"; @@ -8434,6 +8469,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_1_1"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index d3da3959e8f..1c32d2afcd9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -114,6 +114,7 @@ self: super: { "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"; @@ -320,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -598,6 +600,7 @@ self: super: { "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"; @@ -777,6 +780,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1498,6 +1502,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1684,6 +1689,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1693,6 +1699,7 @@ self: super: { "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"; @@ -1851,6 +1858,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1951,6 +1959,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2079,6 +2088,7 @@ self: super: { "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"; @@ -2165,6 +2175,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2232,6 +2243,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2664,6 +2676,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4021,6 +4034,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4072,6 +4086,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4125,6 +4140,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4525,6 +4541,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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"; @@ -4678,6 +4695,7 @@ self: super: { "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"; @@ -4717,6 +4735,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4783,6 +4802,7 @@ self: super: { "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"; @@ -4836,6 +4856,7 @@ self: super: { "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"; @@ -4891,6 +4912,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4904,6 +4926,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5089,6 +5113,7 @@ self: super: { "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"; @@ -5413,6 +5438,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5442,6 +5468,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5591,6 +5618,7 @@ self: super: { "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"; @@ -5816,6 +5844,7 @@ self: super: { "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"; @@ -6121,6 +6150,7 @@ self: super: { "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"; "persistent-template" = doDistribute super."persistent-template_2_1_3_6"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6567,6 +6597,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6767,6 +6798,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6961,6 +6993,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7816,6 +7849,7 @@ self: super: { "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"; @@ -8349,6 +8383,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3"; "witness" = dontDistribute super."witness"; @@ -8423,6 +8458,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_1_1"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index f76aae3bf7a..0643d3eea9c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -114,6 +114,7 @@ self: super: { "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"; @@ -320,6 +321,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -597,6 +599,7 @@ self: super: { "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"; @@ -775,6 +778,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1496,6 +1500,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1681,6 +1686,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1690,6 +1696,7 @@ self: super: { "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"; @@ -1848,6 +1855,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1948,6 +1956,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -2076,6 +2085,7 @@ self: super: { "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"; @@ -2162,6 +2172,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_4_1_3"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2229,6 +2240,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2661,6 +2673,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -4016,6 +4029,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -4067,6 +4081,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4120,6 +4135,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4520,6 +4536,7 @@ self: super: { "http-client-multipart" = dontDistribute super."http-client-multipart"; "http-client-openssl" = dontDistribute super."http-client-openssl"; "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"; @@ -4673,6 +4690,7 @@ self: super: { "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"; @@ -4712,6 +4730,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4778,6 +4797,7 @@ self: super: { "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"; @@ -4831,6 +4851,7 @@ self: super: { "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"; @@ -4886,6 +4907,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4899,6 +4921,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5084,6 +5108,7 @@ self: super: { "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"; @@ -5408,6 +5433,7 @@ self: super: { "memory" = doDistribute super."memory_0_7"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5437,6 +5463,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5586,6 +5613,7 @@ self: super: { "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"; @@ -5811,6 +5839,7 @@ self: super: { "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"; @@ -6115,6 +6144,7 @@ self: super: { "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"; "persistent-template" = doDistribute super."persistent-template_2_1_3_7"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6561,6 +6591,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = dontDistribute super."read-editor"; @@ -6761,6 +6792,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6955,6 +6987,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7810,6 +7843,7 @@ self: super: { "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"; @@ -8343,6 +8377,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "withdependencies" = dontDistribute super."withdependencies"; "witherable" = doDistribute super."witherable_0_1_3"; "witness" = dontDistribute super."witness"; @@ -8417,6 +8452,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_1_1_1"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix index ae2745ddee8..830a8d2baff 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix @@ -113,6 +113,7 @@ self: super: { "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"; @@ -314,6 +315,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -579,6 +581,7 @@ self: super: { "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"; @@ -754,6 +757,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1392,6 +1396,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1568,6 +1573,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_10_0_0"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1577,6 +1583,7 @@ self: super: { "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"; @@ -1725,6 +1732,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1783,6 +1791,7 @@ self: super: { "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_1"; + "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1820,6 +1829,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -1944,6 +1954,7 @@ self: super: { "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"; @@ -1981,6 +1992,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2022,6 +2034,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_6"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2088,6 +2101,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2500,6 +2514,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3808,6 +3823,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -3859,6 +3875,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -3906,6 +3923,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4158,6 +4176,7 @@ self: super: { "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; "hset" = dontDistribute super."hset"; + "hsexif" = doDistribute super."hsexif_0_6_0_7"; "hsfacter" = dontDistribute super."hsfacter"; "hsfcsh" = dontDistribute super."hsfcsh"; "hsfilt" = dontDistribute super."hsfilt"; @@ -4209,6 +4228,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; "hspread" = dontDistribute super."hspread"; @@ -4273,6 +4293,7 @@ self: super: { "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"; @@ -4413,6 +4434,7 @@ self: super: { "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"; @@ -4450,6 +4472,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4509,6 +4532,7 @@ self: super: { "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"; @@ -4558,6 +4582,7 @@ self: super: { "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"; @@ -4611,6 +4636,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4624,6 +4650,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -4809,6 +4837,7 @@ self: super: { "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"; @@ -4996,6 +5025,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; @@ -5120,6 +5150,7 @@ self: super: { "memory" = doDistribute super."memory_0_10"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5148,6 +5179,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_2_0"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5288,6 +5320,7 @@ self: super: { "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"; @@ -5502,6 +5535,7 @@ self: super: { "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"; @@ -5775,6 +5809,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; @@ -5786,6 +5821,8 @@ self: super: { "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"; + "persistent-template" = doDistribute super."persistent-template_2_1_5"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -6208,6 +6245,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = doDistribute super."read-editor_0_1_0_1"; @@ -6373,6 +6411,8 @@ self: super: { "rezoom" = dontDistribute super."rezoom"; "rfc3339" = dontDistribute super."rfc3339"; "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; "richreports" = dontDistribute super."richreports"; "riemann" = dontDistribute super."riemann"; "riff" = dontDistribute super."riff"; @@ -6387,6 +6427,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6514,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_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6575,6 +6617,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7368,6 +7411,7 @@ self: super: { "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"; @@ -7769,6 +7813,7 @@ self: super: { "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-metrics" = doDistribute super."wai-middleware-metrics_0_2_2"; "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"; @@ -7855,6 +7900,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; @@ -7924,6 +7970,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_2_0"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix index 0e765572ffe..01b1869e81c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix @@ -113,6 +113,7 @@ self: super: { "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"; @@ -314,6 +315,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -579,6 +581,7 @@ self: super: { "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"; @@ -754,6 +757,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1390,6 +1394,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1566,6 +1571,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_10_0_0"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1575,6 +1581,7 @@ self: super: { "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"; @@ -1723,6 +1730,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1781,6 +1789,7 @@ self: super: { "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_1"; + "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1818,6 +1827,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -1942,6 +1952,7 @@ self: super: { "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"; @@ -1979,6 +1990,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2020,6 +2032,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_6"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2086,6 +2099,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2498,6 +2512,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3801,6 +3816,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -3852,6 +3868,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -3899,6 +3916,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4151,6 +4169,7 @@ self: super: { "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; "hset" = dontDistribute super."hset"; + "hsexif" = doDistribute super."hsexif_0_6_0_7"; "hsfacter" = dontDistribute super."hsfacter"; "hsfcsh" = dontDistribute super."hsfcsh"; "hsfilt" = dontDistribute super."hsfilt"; @@ -4202,6 +4221,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; "hspread" = dontDistribute super."hspread"; @@ -4266,6 +4286,7 @@ self: super: { "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"; @@ -4403,6 +4424,7 @@ self: super: { "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"; @@ -4439,6 +4461,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4497,6 +4520,7 @@ self: super: { "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"; @@ -4546,6 +4570,7 @@ self: super: { "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"; @@ -4599,6 +4624,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4612,6 +4638,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -4794,6 +4822,7 @@ self: super: { "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"; @@ -4981,6 +5010,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; @@ -5105,6 +5135,7 @@ self: super: { "memory" = doDistribute super."memory_0_10"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5133,6 +5164,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_2_0"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5273,6 +5305,7 @@ self: super: { "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"; @@ -5487,6 +5520,7 @@ self: super: { "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"; @@ -5759,6 +5793,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; @@ -5770,6 +5805,8 @@ self: super: { "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"; + "persistent-template" = doDistribute super."persistent-template_2_1_5"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -6191,6 +6228,7 @@ self: super: { "reactive-haskell" = dontDistribute super."reactive-haskell"; "reactive-io" = dontDistribute super."reactive-io"; "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; "read-editor" = doDistribute super."read-editor_0_1_0_1"; @@ -6356,6 +6394,8 @@ self: super: { "rezoom" = dontDistribute super."rezoom"; "rfc3339" = dontDistribute super."rfc3339"; "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; "richreports" = dontDistribute super."richreports"; "riemann" = dontDistribute super."riemann"; "riff" = dontDistribute super."riff"; @@ -6370,6 +6410,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6497,6 +6538,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_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6558,6 +6600,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7351,6 +7394,7 @@ self: super: { "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"; @@ -7751,6 +7795,7 @@ self: super: { "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-metrics" = doDistribute super."wai-middleware-metrics_0_2_2"; "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"; @@ -7836,6 +7881,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; @@ -7905,6 +7951,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_2_0"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix index ae22300df63..a3235e0d523 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix @@ -113,6 +113,7 @@ self: super: { "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"; @@ -314,6 +315,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -577,6 +579,7 @@ self: super: { "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"; @@ -751,6 +754,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1385,6 +1389,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1561,6 +1566,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_10_0_0"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1570,6 +1576,7 @@ self: super: { "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"; @@ -1716,6 +1723,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1772,6 +1780,7 @@ self: super: { "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; "cereal" = doDistribute super."cereal_0_4_1_1"; + "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1809,6 +1818,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -1932,6 +1942,7 @@ self: super: { "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"; @@ -1969,6 +1980,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2009,6 +2021,7 @@ self: super: { "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"; "constraints" = doDistribute super."constraints_0_6"; "constructible" = dontDistribute super."constructible"; "constructive-algebra" = dontDistribute super."constructive-algebra"; @@ -2075,6 +2088,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2485,6 +2499,7 @@ self: super: { "dotenv" = dontDistribute super."dotenv"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -3775,6 +3790,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -3826,6 +3842,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -3873,6 +3890,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4124,6 +4142,7 @@ self: super: { "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; "hset" = dontDistribute super."hset"; + "hsexif" = doDistribute super."hsexif_0_6_0_7"; "hsfacter" = dontDistribute super."hsfacter"; "hsfcsh" = dontDistribute super."hsfcsh"; "hsfilt" = dontDistribute super."hsfilt"; @@ -4171,6 +4190,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; "hspread" = dontDistribute super."hspread"; @@ -4235,6 +4255,7 @@ self: super: { "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"; @@ -4371,6 +4392,7 @@ self: super: { "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"; @@ -4406,6 +4428,7 @@ self: super: { "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4462,6 +4485,7 @@ self: super: { "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"; @@ -4511,6 +4535,7 @@ self: super: { "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"; @@ -4564,6 +4589,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4577,6 +4603,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -4759,6 +4787,7 @@ self: super: { "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"; @@ -4946,6 +4975,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; @@ -5069,6 +5099,7 @@ self: super: { "memory" = doDistribute super."memory_0_10"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messagepack" = doDistribute super."messagepack_0_4_0"; "messagepack-rpc" = doDistribute super."messagepack-rpc_0_2_0_0"; "messente" = dontDistribute super."messente"; @@ -5097,6 +5128,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_2_2_0"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5235,6 +5267,7 @@ self: super: { "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"; @@ -5448,6 +5481,7 @@ self: super: { "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"; @@ -5720,6 +5754,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; @@ -5731,6 +5766,8 @@ self: super: { "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"; + "persistent-template" = doDistribute super."persistent-template_2_1_5"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -6149,6 +6186,7 @@ self: super: { "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"; "readable" = dontDistribute super."readable"; @@ -6310,6 +6348,8 @@ self: super: { "rezoom" = dontDistribute super."rezoom"; "rfc3339" = dontDistribute super."rfc3339"; "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; "richreports" = dontDistribute super."richreports"; "riemann" = dontDistribute super."riemann"; "riff" = dontDistribute super."riff"; @@ -6324,6 +6364,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6451,6 +6492,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_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6511,6 +6553,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -7296,6 +7339,7 @@ self: super: { "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"; @@ -7694,6 +7738,7 @@ self: super: { "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-metrics" = doDistribute super."wai-middleware-metrics_0_2_2"; "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"; @@ -7778,6 +7823,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; @@ -7847,6 +7893,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_2_0"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix index c299aa73e67..5b235eaa52c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix @@ -113,6 +113,7 @@ self: super: { "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"; @@ -311,6 +312,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -569,6 +571,7 @@ self: super: { "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"; @@ -740,6 +743,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1368,6 +1372,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1538,6 +1543,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1547,6 +1553,7 @@ self: super: { "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"; @@ -1688,6 +1695,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1742,6 +1750,7 @@ self: super: { "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; + "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1779,6 +1788,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -1901,6 +1911,7 @@ self: super: { "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"; @@ -1938,6 +1949,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -1977,6 +1989,7 @@ self: super: { "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"; @@ -2041,6 +2054,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2440,6 +2454,7 @@ self: super: { "dot2graphml" = dontDistribute super."dot2graphml"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -2832,6 +2847,7 @@ self: super: { "fn-extra" = doDistribute super."fn-extra_0_2_0_1"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl" = doDistribute super."foldl_1_1_5"; "foldl-incremental" = dontDistribute super."foldl-incremental"; "foldl-transduce" = dontDistribute super."foldl-transduce"; "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; @@ -3711,6 +3727,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -3762,6 +3779,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -3809,6 +3827,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4059,6 +4078,7 @@ self: super: { "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; "hset" = dontDistribute super."hset"; + "hsexif" = doDistribute super."hsexif_0_6_0_7"; "hsfacter" = dontDistribute super."hsfacter"; "hsfcsh" = dontDistribute super."hsfcsh"; "hsfilt" = dontDistribute super."hsfilt"; @@ -4106,6 +4126,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; "hspread" = dontDistribute super."hspread"; @@ -4169,6 +4190,7 @@ self: super: { "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"; @@ -4303,6 +4325,7 @@ self: super: { "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"; @@ -4337,6 +4360,7 @@ self: super: { "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4393,6 +4417,7 @@ self: super: { "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"; @@ -4442,6 +4467,7 @@ self: super: { "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"; @@ -4495,6 +4521,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4507,6 +4534,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -4688,6 +4717,7 @@ self: super: { "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"; @@ -4873,6 +4903,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; @@ -4982,6 +5013,7 @@ self: super: { "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; "meep" = dontDistribute super."meep"; "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = doDistribute super."megaparsec_4_3_0"; "meldable-heap" = dontDistribute super."meldable-heap"; "melody" = dontDistribute super."melody"; "memcache" = dontDistribute super."memcache"; @@ -4993,6 +5025,7 @@ self: super: { "memo-sqlite" = dontDistribute super."memo-sqlite"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messente" = dontDistribute super."messente"; "meta-misc" = dontDistribute super."meta-misc"; "meta-par" = dontDistribute super."meta-par"; @@ -5017,6 +5050,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_3_0_0"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5155,6 +5189,7 @@ self: super: { "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"; @@ -5365,6 +5400,7 @@ self: super: { "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"; @@ -5633,6 +5669,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; @@ -5643,6 +5680,8 @@ self: super: { "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"; + "persistent-template" = doDistribute super."persistent-template_2_1_5"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -6053,6 +6092,7 @@ self: super: { "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"; @@ -6212,6 +6252,8 @@ self: super: { "rezoom" = dontDistribute super."rezoom"; "rfc3339" = dontDistribute super."rfc3339"; "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; "richreports" = dontDistribute super."richreports"; "riemann" = dontDistribute super."riemann"; "riff" = dontDistribute super."riff"; @@ -6226,6 +6268,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6350,6 +6393,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_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6409,6 +6453,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6841,6 +6886,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = doDistribute super."stripe-core_2_0_2"; + "stripe-haskell" = doDistribute super."stripe-haskell_2_0_2"; + "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_2"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7176,6 +7224,7 @@ self: super: { "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"; @@ -7267,8 +7316,11 @@ self: super: { "twisty" = dontDistribute super."twisty"; "twitch" = dontDistribute super."twitch"; "twitter" = dontDistribute super."twitter"; + "twitter-conduit" = doDistribute super."twitter-conduit_0_1_1_1"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; "twitter-feed" = doDistribute super."twitter-feed_0_2_0_4"; + "twitter-types" = doDistribute super."twitter-types_0_7_1_1"; + "twitter-types-lens" = doDistribute super."twitter-types-lens_0_7_1"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; "txt2rtf" = dontDistribute super."txt2rtf"; @@ -7566,6 +7618,7 @@ self: super: { "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-metrics" = doDistribute super."wai-middleware-metrics_0_2_2"; "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"; @@ -7649,6 +7702,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; @@ -7718,6 +7772,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_2_0"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix index 69f2161732c..0047d4d0d95 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix @@ -113,6 +113,7 @@ self: super: { "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"; @@ -310,6 +311,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -567,6 +569,7 @@ self: super: { "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"; @@ -738,6 +741,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1362,6 +1366,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1531,6 +1536,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1540,6 +1546,7 @@ self: super: { "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"; @@ -1680,6 +1687,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1734,6 +1742,7 @@ self: super: { "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; + "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1771,6 +1780,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -1806,6 +1816,8 @@ self: super: { "clash-lib" = doDistribute super."clash-lib_0_6_9"; "clash-prelude" = doDistribute super."clash-prelude_0_10_5"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_5"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_5"; "clash-vhdl" = doDistribute super."clash-vhdl_0_6_6"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; @@ -1890,6 +1902,7 @@ self: super: { "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"; @@ -1927,6 +1940,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -1966,6 +1980,7 @@ self: super: { "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"; @@ -2030,6 +2045,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2428,6 +2444,7 @@ self: super: { "dot2graphml" = dontDistribute super."dot2graphml"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -2820,6 +2837,7 @@ self: super: { "fn-extra" = doDistribute super."fn-extra_0_2_0_1"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl" = doDistribute super."foldl_1_1_5"; "foldl-incremental" = dontDistribute super."foldl-incremental"; "foldl-transduce" = dontDistribute super."foldl-transduce"; "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; @@ -3699,6 +3717,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -3750,6 +3769,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -3797,6 +3817,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4047,6 +4068,7 @@ self: super: { "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; "hset" = dontDistribute super."hset"; + "hsexif" = doDistribute super."hsexif_0_6_0_7"; "hsfacter" = dontDistribute super."hsfacter"; "hsfcsh" = dontDistribute super."hsfcsh"; "hsfilt" = dontDistribute super."hsfilt"; @@ -4094,6 +4116,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; "hspread" = dontDistribute super."hspread"; @@ -4157,6 +4180,7 @@ self: super: { "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"; @@ -4290,6 +4314,7 @@ self: super: { "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"; @@ -4324,6 +4349,7 @@ self: super: { "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4380,6 +4406,7 @@ self: super: { "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"; @@ -4429,6 +4456,7 @@ self: super: { "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"; @@ -4482,6 +4510,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4494,6 +4523,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -4675,6 +4706,7 @@ self: super: { "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"; @@ -4860,6 +4892,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; @@ -4969,6 +5002,7 @@ self: super: { "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; "meep" = dontDistribute super."meep"; "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = doDistribute super."megaparsec_4_3_0"; "meldable-heap" = dontDistribute super."meldable-heap"; "melody" = dontDistribute super."melody"; "memcache" = dontDistribute super."memcache"; @@ -4980,6 +5014,7 @@ self: super: { "memo-sqlite" = dontDistribute super."memo-sqlite"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messente" = dontDistribute super."messente"; "meta-misc" = dontDistribute super."meta-misc"; "meta-par" = dontDistribute super."meta-par"; @@ -5004,6 +5039,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_3_0_0"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5140,6 +5176,7 @@ self: super: { "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"; @@ -5350,6 +5387,7 @@ self: super: { "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"; @@ -5618,6 +5656,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; @@ -5628,6 +5667,8 @@ self: super: { "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"; + "persistent-template" = doDistribute super."persistent-template_2_1_5"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -6038,6 +6079,7 @@ self: super: { "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"; @@ -6196,6 +6238,8 @@ self: super: { "rezoom" = dontDistribute super."rezoom"; "rfc3339" = dontDistribute super."rfc3339"; "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; "richreports" = dontDistribute super."richreports"; "riemann" = dontDistribute super."riemann"; "riff" = dontDistribute super."riff"; @@ -6210,6 +6254,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6334,6 +6379,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_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6392,6 +6438,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6824,6 +6871,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = doDistribute super."stripe-core_2_0_2"; + "stripe-haskell" = doDistribute super."stripe-haskell_2_0_2"; + "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_2"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7158,6 +7208,7 @@ self: super: { "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"; @@ -7249,8 +7300,11 @@ self: super: { "twisty" = dontDistribute super."twisty"; "twitch" = dontDistribute super."twitch"; "twitter" = dontDistribute super."twitter"; + "twitter-conduit" = doDistribute super."twitter-conduit_0_1_1_1"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; "twitter-feed" = doDistribute super."twitter-feed_0_2_0_4"; + "twitter-types" = doDistribute super."twitter-types_0_7_1_1"; + "twitter-types-lens" = doDistribute super."twitter-types-lens_0_7_1"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; "txt2rtf" = dontDistribute super."txt2rtf"; @@ -7547,6 +7601,7 @@ self: super: { "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-metrics" = doDistribute super."wai-middleware-metrics_0_2_2"; "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"; @@ -7630,6 +7685,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; @@ -7699,6 +7755,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_2_0"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix index de127967a26..06ce7fc79ff 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix @@ -113,6 +113,7 @@ self: super: { "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"; @@ -310,6 +311,7 @@ self: super: { "Folly" = dontDistribute super."Folly"; "FontyFruity" = doDistribute super."FontyFruity_0_5_2"; "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; "FormalGrammars" = dontDistribute super."FormalGrammars"; "Foster" = dontDistribute super."Foster"; @@ -566,6 +568,7 @@ self: super: { "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"; @@ -737,6 +740,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1361,6 +1365,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1530,6 +1535,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1539,6 +1545,7 @@ self: super: { "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"; @@ -1679,6 +1686,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1733,6 +1741,7 @@ self: super: { "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; + "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1770,6 +1779,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -1805,6 +1815,8 @@ self: super: { "clash-lib" = doDistribute super."clash-lib_0_6_9"; "clash-prelude" = doDistribute super."clash-prelude_0_10_5"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_5"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_5"; "clash-vhdl" = doDistribute super."clash-vhdl_0_6_6"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; @@ -1889,6 +1901,7 @@ self: super: { "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"; @@ -1926,6 +1939,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -1965,6 +1979,7 @@ self: super: { "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"; @@ -2029,6 +2044,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2426,6 +2442,7 @@ self: super: { "dot2graphml" = dontDistribute super."dot2graphml"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -2815,6 +2832,7 @@ self: super: { "fn-extra" = doDistribute super."fn-extra_0_2_0_1"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl" = doDistribute super."foldl_1_1_5"; "foldl-incremental" = dontDistribute super."foldl-incremental"; "foldl-transduce" = dontDistribute super."foldl-transduce"; "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; @@ -3692,6 +3710,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -3743,6 +3762,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -3790,6 +3810,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4040,6 +4061,7 @@ self: super: { "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; "hset" = dontDistribute super."hset"; + "hsexif" = doDistribute super."hsexif_0_6_0_7"; "hsfacter" = dontDistribute super."hsfacter"; "hsfcsh" = dontDistribute super."hsfcsh"; "hsfilt" = dontDistribute super."hsfilt"; @@ -4087,6 +4109,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; "hspread" = dontDistribute super."hspread"; @@ -4150,6 +4173,7 @@ self: super: { "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"; @@ -4282,6 +4306,7 @@ self: super: { "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"; @@ -4316,6 +4341,7 @@ self: super: { "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4371,6 +4397,7 @@ self: super: { "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"; @@ -4420,6 +4447,7 @@ self: super: { "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"; @@ -4473,6 +4501,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4485,6 +4514,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -4666,6 +4697,7 @@ self: super: { "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"; @@ -4851,6 +4883,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; @@ -4960,6 +4993,7 @@ self: super: { "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; "meep" = dontDistribute super."meep"; "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = doDistribute super."megaparsec_4_3_0"; "meldable-heap" = dontDistribute super."meldable-heap"; "melody" = dontDistribute super."melody"; "memcache" = dontDistribute super."memcache"; @@ -4971,6 +5005,7 @@ self: super: { "memo-sqlite" = dontDistribute super."memo-sqlite"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messente" = dontDistribute super."messente"; "meta-misc" = dontDistribute super."meta-misc"; "meta-par" = dontDistribute super."meta-par"; @@ -4995,6 +5030,7 @@ self: super: { "microlens-th" = doDistribute super."microlens-th_0_3_0_0"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5125,6 +5161,7 @@ self: super: { "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"; @@ -5335,6 +5372,7 @@ self: super: { "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"; @@ -5600,6 +5638,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; @@ -5610,6 +5649,8 @@ self: super: { "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"; + "persistent-template" = doDistribute super."persistent-template_2_1_5"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -6017,6 +6058,7 @@ self: super: { "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"; @@ -6174,6 +6216,8 @@ self: super: { "rezoom" = dontDistribute super."rezoom"; "rfc3339" = dontDistribute super."rfc3339"; "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; "richreports" = dontDistribute super."richreports"; "riemann" = dontDistribute super."riemann"; "riff" = dontDistribute super."riff"; @@ -6188,6 +6232,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6312,6 +6357,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_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6370,6 +6416,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6802,6 +6849,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = doDistribute super."stripe-core_2_0_2"; + "stripe-haskell" = doDistribute super."stripe-haskell_2_0_2"; + "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_2"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7135,6 +7185,7 @@ self: super: { "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"; @@ -7226,8 +7277,11 @@ self: super: { "twisty" = dontDistribute super."twisty"; "twitch" = dontDistribute super."twitch"; "twitter" = dontDistribute super."twitter"; + "twitter-conduit" = doDistribute super."twitter-conduit_0_1_1_1"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; "twitter-feed" = doDistribute super."twitter-feed_0_2_0_4"; + "twitter-types" = doDistribute super."twitter-types_0_7_1_1"; + "twitter-types-lens" = doDistribute super."twitter-types-lens_0_7_1"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; "txt2rtf" = dontDistribute super."txt2rtf"; @@ -7441,6 +7495,7 @@ self: super: { "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; "vector-binary" = dontDistribute super."vector-binary"; + "vector-binary-instances" = doDistribute super."vector-binary-instances_0_2_1_1"; "vector-bytestring" = dontDistribute super."vector-bytestring"; "vector-clock" = dontDistribute super."vector-clock"; "vector-conduit" = dontDistribute super."vector-conduit"; @@ -7523,6 +7578,7 @@ self: super: { "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-metrics" = doDistribute super."wai-middleware-metrics_0_2_2"; "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"; @@ -7606,6 +7662,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; @@ -7675,6 +7732,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_2_0"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix index 942d47f5868..34f8dbc2a90 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix @@ -113,6 +113,7 @@ self: super: { "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"; @@ -308,6 +309,7 @@ self: super: { "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"; @@ -563,6 +565,7 @@ self: super: { "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"; @@ -734,6 +737,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1355,6 +1359,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1522,6 +1527,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1531,6 +1537,7 @@ self: super: { "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"; @@ -1671,6 +1678,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1724,6 +1732,7 @@ self: super: { "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; + "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1761,6 +1770,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -1792,7 +1802,12 @@ self: super: { "clanki" = dontDistribute super."clanki"; "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_6_10"; + "clash-lib" = doDistribute super."clash-lib_0_6_10"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_5"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_5"; + "clash-vhdl" = doDistribute super."clash-vhdl_0_6_7"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5_1"; @@ -1876,6 +1891,7 @@ self: super: { "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"; @@ -1913,6 +1929,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -1951,6 +1968,7 @@ self: super: { "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"; @@ -2014,6 +2032,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2409,6 +2428,7 @@ self: super: { "dot2graphml" = dontDistribute super."dot2graphml"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -2791,6 +2811,7 @@ self: super: { "fn-extra" = doDistribute super."fn-extra_0_2_0_1"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl" = doDistribute super."foldl_1_1_5"; "foldl-incremental" = dontDistribute super."foldl-incremental"; "foldl-transduce" = dontDistribute super."foldl-transduce"; "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; @@ -3666,6 +3687,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -3717,6 +3739,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -3764,6 +3787,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -4014,6 +4038,7 @@ self: super: { "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; "hset" = dontDistribute super."hset"; + "hsexif" = doDistribute super."hsexif_0_6_0_7"; "hsfacter" = dontDistribute super."hsfacter"; "hsfcsh" = dontDistribute super."hsfcsh"; "hsfilt" = dontDistribute super."hsfilt"; @@ -4061,6 +4086,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; "hspread" = dontDistribute super."hspread"; @@ -4124,6 +4150,7 @@ self: super: { "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"; @@ -4256,6 +4283,7 @@ self: super: { "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"; @@ -4289,6 +4317,7 @@ self: super: { "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4344,6 +4373,7 @@ self: super: { "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"; @@ -4393,6 +4423,7 @@ self: super: { "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"; @@ -4446,6 +4477,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4458,6 +4490,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -4639,6 +4673,7 @@ self: super: { "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"; @@ -4823,6 +4858,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; @@ -4931,6 +4967,7 @@ self: super: { "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; "meep" = dontDistribute super."meep"; "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = doDistribute super."megaparsec_4_3_0"; "meldable-heap" = dontDistribute super."meldable-heap"; "melody" = dontDistribute super."melody"; "memcache" = dontDistribute super."memcache"; @@ -4942,6 +4979,7 @@ self: super: { "memo-sqlite" = dontDistribute super."memo-sqlite"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messente" = dontDistribute super."messente"; "meta-misc" = dontDistribute super."meta-misc"; "meta-par" = dontDistribute super."meta-par"; @@ -4964,6 +5002,7 @@ self: super: { "microlens-platform" = doDistribute super."microlens-platform_0_2_2_0"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5094,6 +5133,7 @@ self: super: { "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"; @@ -5304,6 +5344,7 @@ self: super: { "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"; @@ -5567,6 +5608,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; @@ -5577,6 +5619,8 @@ self: super: { "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"; + "persistent-template" = doDistribute super."persistent-template_2_1_5"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5982,6 +6026,7 @@ self: super: { "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"; @@ -6136,6 +6181,8 @@ self: super: { "rezoom" = dontDistribute super."rezoom"; "rfc3339" = dontDistribute super."rfc3339"; "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; "richreports" = dontDistribute super."richreports"; "riemann" = dontDistribute super."riemann"; "riff" = dontDistribute super."riff"; @@ -6150,6 +6197,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6274,6 +6322,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_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6332,6 +6381,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6759,6 +6809,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = doDistribute super."stripe-core_2_0_2"; + "stripe-haskell" = doDistribute super."stripe-haskell_2_0_2"; + "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_2"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7091,6 +7144,7 @@ self: super: { "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"; @@ -7182,8 +7236,11 @@ self: super: { "twisty" = dontDistribute super."twisty"; "twitch" = dontDistribute super."twitch"; "twitter" = dontDistribute super."twitter"; + "twitter-conduit" = doDistribute super."twitter-conduit_0_1_1_1"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; "twitter-feed" = doDistribute super."twitter-feed_0_2_0_4"; + "twitter-types" = doDistribute super."twitter-types_0_7_1_1"; + "twitter-types-lens" = doDistribute super."twitter-types-lens_0_7_1"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; "txt2rtf" = dontDistribute super."txt2rtf"; @@ -7396,6 +7453,7 @@ self: super: { "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; "vector-binary" = dontDistribute super."vector-binary"; + "vector-binary-instances" = doDistribute super."vector-binary-instances_0_2_1_1"; "vector-bytestring" = dontDistribute super."vector-bytestring"; "vector-clock" = dontDistribute super."vector-clock"; "vector-conduit" = dontDistribute super."vector-conduit"; @@ -7478,6 +7536,7 @@ self: super: { "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-metrics" = doDistribute super."wai-middleware-metrics_0_2_2"; "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"; @@ -7558,6 +7617,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; @@ -7627,6 +7687,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_2_0"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-5.4.nix b/pkgs/development/haskell-modules/configuration-lts-5.4.nix index beb5cb4ebf8..feac73f4116 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.4.nix @@ -113,6 +113,7 @@ self: super: { "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"; @@ -308,6 +309,7 @@ self: super: { "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"; @@ -562,6 +564,7 @@ self: super: { "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"; @@ -733,6 +736,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1353,6 +1357,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1520,6 +1525,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1529,6 +1535,7 @@ self: super: { "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"; @@ -1669,6 +1676,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1722,6 +1730,7 @@ self: super: { "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; + "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1759,6 +1768,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -1790,7 +1800,12 @@ self: super: { "clanki" = dontDistribute super."clanki"; "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_6_10"; + "clash-lib" = doDistribute super."clash-lib_0_6_10"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_5"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_5"; + "clash-vhdl" = doDistribute super."clash-vhdl_0_6_7"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5_1"; @@ -1873,6 +1888,7 @@ self: super: { "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"; @@ -1910,6 +1926,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -1948,6 +1965,7 @@ self: super: { "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"; @@ -2010,6 +2028,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2400,6 +2419,7 @@ self: super: { "dot2graphml" = dontDistribute super."dot2graphml"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -2779,6 +2799,7 @@ self: super: { "fn-extra" = doDistribute super."fn-extra_0_2_0_1"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl" = doDistribute super."foldl_1_1_5"; "foldl-incremental" = dontDistribute super."foldl-incremental"; "foldl-transduce" = dontDistribute super."foldl-transduce"; "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; @@ -3651,6 +3672,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -3702,6 +3724,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -3749,6 +3772,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -3997,6 +4021,7 @@ self: super: { "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; "hset" = dontDistribute super."hset"; + "hsexif" = doDistribute super."hsexif_0_6_0_7"; "hsfacter" = dontDistribute super."hsfacter"; "hsfcsh" = dontDistribute super."hsfcsh"; "hsfilt" = dontDistribute super."hsfilt"; @@ -4043,6 +4068,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; "hspread" = dontDistribute super."hspread"; @@ -4106,6 +4132,7 @@ self: super: { "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"; @@ -4238,6 +4265,7 @@ self: super: { "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"; @@ -4271,6 +4299,7 @@ self: super: { "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4326,6 +4355,7 @@ self: super: { "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"; @@ -4375,6 +4405,7 @@ self: super: { "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"; @@ -4428,6 +4459,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4440,6 +4472,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -4621,6 +4655,7 @@ self: super: { "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"; @@ -4803,6 +4838,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; @@ -4911,6 +4947,7 @@ self: super: { "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; "meep" = dontDistribute super."meep"; "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = doDistribute super."megaparsec_4_3_0"; "meldable-heap" = dontDistribute super."meldable-heap"; "melody" = dontDistribute super."melody"; "memcache" = dontDistribute super."memcache"; @@ -4922,6 +4959,7 @@ self: super: { "memo-sqlite" = dontDistribute super."memo-sqlite"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messente" = dontDistribute super."messente"; "meta-misc" = dontDistribute super."meta-misc"; "meta-par" = dontDistribute super."meta-par"; @@ -4941,6 +4979,7 @@ self: super: { "microlens-each" = dontDistribute super."microlens-each"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5069,6 +5108,7 @@ self: super: { "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"; @@ -5276,6 +5316,7 @@ self: super: { "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"; @@ -5538,6 +5579,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; @@ -5548,6 +5590,8 @@ self: super: { "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"; + "persistent-template" = doDistribute super."persistent-template_2_1_5"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5951,6 +5995,7 @@ self: super: { "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"; @@ -6105,6 +6150,8 @@ self: super: { "rezoom" = dontDistribute super."rezoom"; "rfc3339" = dontDistribute super."rfc3339"; "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; "richreports" = dontDistribute super."richreports"; "riemann" = dontDistribute super."riemann"; "riff" = dontDistribute super."riff"; @@ -6119,6 +6166,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6243,6 +6291,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_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6301,6 +6350,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6728,6 +6778,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = doDistribute super."stripe-core_2_0_2"; + "stripe-haskell" = doDistribute super."stripe-haskell_2_0_2"; + "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_2"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7059,6 +7112,7 @@ self: super: { "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"; @@ -7150,7 +7204,10 @@ self: super: { "twisty" = dontDistribute super."twisty"; "twitch" = dontDistribute super."twitch"; "twitter" = dontDistribute super."twitter"; + "twitter-conduit" = doDistribute super."twitter-conduit_0_1_1_1"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-types" = doDistribute super."twitter-types_0_7_1_1"; + "twitter-types-lens" = doDistribute super."twitter-types-lens_0_7_1"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; "txt2rtf" = dontDistribute super."txt2rtf"; @@ -7363,6 +7420,7 @@ self: super: { "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; "vector-binary" = dontDistribute super."vector-binary"; + "vector-binary-instances" = doDistribute super."vector-binary-instances_0_2_1_1"; "vector-bytestring" = dontDistribute super."vector-bytestring"; "vector-clock" = dontDistribute super."vector-clock"; "vector-conduit" = dontDistribute super."vector-conduit"; @@ -7444,6 +7502,7 @@ self: super: { "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-metrics" = doDistribute super."wai-middleware-metrics_0_2_2"; "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"; @@ -7524,6 +7583,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; @@ -7593,6 +7653,7 @@ self: super: { "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; "xlsx" = doDistribute super."xlsx_0_2_0"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "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-5.5.nix b/pkgs/development/haskell-modules/configuration-lts-5.5.nix index 516852b98a0..1604318d7be 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.5.nix @@ -113,6 +113,7 @@ self: super: { "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"; @@ -308,6 +309,7 @@ self: super: { "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"; @@ -562,6 +564,7 @@ self: super: { "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"; @@ -733,6 +736,7 @@ self: super: { "PortMidi" = dontDistribute super."PortMidi"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; "Printf-TH" = dontDistribute super."Printf-TH"; "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; @@ -1352,6 +1356,7 @@ self: super: { "basex-client" = dontDistribute super."basex-client"; "bash" = dontDistribute super."bash"; "basic-lens" = dontDistribute super."basic-lens"; + "basic-prelude" = doDistribute super."basic-prelude_0_5_0"; "basic-sop" = dontDistribute super."basic-sop"; "baskell" = dontDistribute super."baskell"; "battlenet" = dontDistribute super."battlenet"; @@ -1519,6 +1524,7 @@ self: super: { "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1528,6 +1534,7 @@ self: super: { "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"; @@ -1667,6 +1674,7 @@ self: super: { "caledon" = dontDistribute super."caledon"; "call" = dontDistribute super."call"; "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; "camh" = dontDistribute super."camh"; "campfire" = dontDistribute super."campfire"; "canonical-filepath" = dontDistribute super."canonical-filepath"; @@ -1720,6 +1728,7 @@ self: super: { "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; + "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1757,6 +1766,7 @@ self: super: { "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; "chp" = dontDistribute super."chp"; "chp-mtl" = dontDistribute super."chp-mtl"; "chp-plus" = dontDistribute super."chp-plus"; @@ -1788,7 +1798,12 @@ self: super: { "clanki" = dontDistribute super."clanki"; "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_6_10"; + "clash-lib" = doDistribute super."clash-lib_0_6_10"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_5"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_5"; + "clash-vhdl" = doDistribute super."clash-vhdl_0_6_7"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5_1"; @@ -1869,6 +1884,7 @@ self: super: { "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"; @@ -1906,6 +1922,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -1944,6 +1961,7 @@ self: super: { "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"; @@ -2006,6 +2024,7 @@ self: super: { "court" = dontDistribute super."court"; "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; "cplusplus-th" = dontDistribute super."cplusplus-th"; "cpphs" = doDistribute super."cpphs_1_19_3"; "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; @@ -2396,6 +2415,7 @@ self: super: { "dot2graphml" = dontDistribute super."dot2graphml"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; "double-metaphone" = dontDistribute super."double-metaphone"; "dove" = dontDistribute super."dove"; "dow" = dontDistribute super."dow"; @@ -2775,6 +2795,7 @@ self: super: { "fn-extra" = doDistribute super."fn-extra_0_2_0_1"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl" = doDistribute super."foldl_1_1_5"; "foldl-incremental" = dontDistribute super."foldl-incremental"; "foldl-transduce" = dontDistribute super."foldl-transduce"; "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; @@ -3646,6 +3667,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -3697,6 +3719,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -3744,6 +3767,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -3991,6 +4015,7 @@ self: super: { "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; "hset" = dontDistribute super."hset"; + "hsexif" = doDistribute super."hsexif_0_6_0_7"; "hsfacter" = dontDistribute super."hsfacter"; "hsfcsh" = dontDistribute super."hsfcsh"; "hsfilt" = dontDistribute super."hsfilt"; @@ -4037,6 +4062,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; "hspread" = dontDistribute super."hspread"; @@ -4100,6 +4126,7 @@ self: super: { "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"; @@ -4232,6 +4259,7 @@ self: super: { "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"; @@ -4265,6 +4293,7 @@ self: super: { "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; "inspection-proxy" = dontDistribute super."inspection-proxy"; "instant-aeson" = dontDistribute super."instant-aeson"; @@ -4320,6 +4349,7 @@ self: super: { "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"; @@ -4369,6 +4399,7 @@ self: super: { "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"; @@ -4421,6 +4452,7 @@ self: super: { "jspath" = dontDistribute super."jspath"; "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"; @@ -4433,6 +4465,8 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -4613,6 +4647,7 @@ self: super: { "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"; @@ -4795,6 +4830,7 @@ self: super: { "luachunk" = dontDistribute super."luachunk"; "luautils" = dontDistribute super."luautils"; "lub" = dontDistribute super."lub"; + "lucid" = doDistribute super."lucid_2_9_4"; "lucid-foundation" = dontDistribute super."lucid-foundation"; "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; @@ -4903,6 +4939,7 @@ self: super: { "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; "meep" = dontDistribute super."meep"; "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = doDistribute super."megaparsec_4_3_0"; "meldable-heap" = dontDistribute super."meldable-heap"; "melody" = dontDistribute super."melody"; "memcache" = dontDistribute super."memcache"; @@ -4914,6 +4951,7 @@ self: super: { "memo-sqlite" = dontDistribute super."memo-sqlite"; "memscript" = dontDistribute super."memscript"; "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; "messente" = dontDistribute super."messente"; "meta-misc" = dontDistribute super."meta-misc"; "meta-par" = dontDistribute super."meta-par"; @@ -4933,6 +4971,7 @@ self: super: { "microlens-each" = dontDistribute super."microlens-each"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; "midi" = dontDistribute super."midi"; "midi-alsa" = dontDistribute super."midi-alsa"; "midi-music-box" = dontDistribute super."midi-music-box"; @@ -5061,6 +5100,7 @@ self: super: { "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"; @@ -5268,6 +5308,7 @@ self: super: { "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"; @@ -5530,6 +5571,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; @@ -5540,6 +5582,8 @@ self: super: { "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"; + "persistent-template" = doDistribute super."persistent-template_2_1_5"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5943,6 +5987,7 @@ self: super: { "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"; @@ -6097,6 +6142,8 @@ self: super: { "rezoom" = dontDistribute super."rezoom"; "rfc3339" = dontDistribute super."rfc3339"; "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; "richreports" = dontDistribute super."richreports"; "riemann" = dontDistribute super."riemann"; "riff" = dontDistribute super."riff"; @@ -6111,6 +6158,7 @@ self: super: { "rivet-migration" = dontDistribute super."rivet-migration"; "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; "rmonad" = dontDistribute super."rmonad"; "rncryptor" = dontDistribute super."rncryptor"; "rng-utils" = dontDistribute super."rng-utils"; @@ -6235,6 +6283,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_4"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6293,6 +6342,7 @@ self: super: { "semiring-simple" = dontDistribute super."semiring-simple"; "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; "senza" = dontDistribute super."senza"; @@ -6720,6 +6770,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = doDistribute super."stripe-core_2_0_2"; + "stripe-haskell" = doDistribute super."stripe-haskell_2_0_2"; + "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_2"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7051,6 +7104,7 @@ self: super: { "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"; @@ -7142,7 +7196,10 @@ self: super: { "twisty" = dontDistribute super."twisty"; "twitch" = dontDistribute super."twitch"; "twitter" = dontDistribute super."twitter"; + "twitter-conduit" = doDistribute super."twitter-conduit_0_1_1_1"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-types" = doDistribute super."twitter-types_0_7_1_1"; + "twitter-types-lens" = doDistribute super."twitter-types-lens_0_7_1"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; "txt2rtf" = dontDistribute super."txt2rtf"; @@ -7354,6 +7411,7 @@ self: super: { "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; "vector-binary" = dontDistribute super."vector-binary"; + "vector-binary-instances" = doDistribute super."vector-binary-instances_0_2_1_1"; "vector-bytestring" = dontDistribute super."vector-bytestring"; "vector-clock" = dontDistribute super."vector-clock"; "vector-conduit" = dontDistribute super."vector-conduit"; @@ -7434,6 +7492,7 @@ self: super: { "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-metrics" = doDistribute super."wai-middleware-metrics_0_2_2"; "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"; @@ -7513,6 +7572,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; @@ -7581,6 +7641,7 @@ self: super: { "xinput-conduit" = dontDistribute super."xinput-conduit"; "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.6.nix b/pkgs/development/haskell-modules/configuration-lts-5.6.nix new file mode 100644 index 00000000000..61d69d6af55 --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-5.6.nix @@ -0,0 +1,7814 @@ +{ pkgs }: + +with import ./lib.nix { inherit pkgs; }; + +self: super: { + + # core libraries provided by the compiler + Cabal = null; + array = null; + base = null; + bin-package-db = null; + binary = null; + bytestring = null; + containers = null; + deepseq = null; + directory = null; + filepath = null; + ghc-prim = null; + hoopl = null; + hpc = null; + integer-gmp = null; + pretty = null; + process = null; + rts = null; + template-haskell = null; + time = null; + transformers = null; + unix = null; + + # lts-5.6 packages + "3d-graphics-examples" = dontDistribute super."3d-graphics-examples"; + "3dmodels" = dontDistribute super."3dmodels"; + "4Blocks" = dontDistribute super."4Blocks"; + "AAI" = dontDistribute super."AAI"; + "ABList" = dontDistribute super."ABList"; + "AC-Angle" = dontDistribute super."AC-Angle"; + "AC-Boolean" = dontDistribute super."AC-Boolean"; + "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform"; + "AC-Colour" = dontDistribute super."AC-Colour"; + "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK"; + "AC-HalfInteger" = dontDistribute super."AC-HalfInteger"; + "AC-MiniTest" = dontDistribute super."AC-MiniTest"; + "AC-PPM" = dontDistribute super."AC-PPM"; + "AC-Random" = dontDistribute super."AC-Random"; + "AC-Terminal" = dontDistribute super."AC-Terminal"; + "AC-VanillaArray" = dontDistribute super."AC-VanillaArray"; + "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy"; + "ACME" = dontDistribute super."ACME"; + "ADPfusion" = dontDistribute super."ADPfusion"; + "AERN-Basics" = dontDistribute super."AERN-Basics"; + "AERN-Net" = dontDistribute super."AERN-Net"; + "AERN-Real" = dontDistribute super."AERN-Real"; + "AERN-Real-Double" = dontDistribute super."AERN-Real-Double"; + "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval"; + "AERN-RnToRm" = dontDistribute super."AERN-RnToRm"; + "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot"; + "AES" = dontDistribute super."AES"; + "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-executable" = dontDistribute super."Agda-executable"; + "AhoCorasick" = dontDistribute super."AhoCorasick"; + "AlgorithmW" = dontDistribute super."AlgorithmW"; + "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms"; + "Allure" = dontDistribute super."Allure"; + "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter"; + "Animas" = dontDistribute super."Animas"; + "Annotations" = dontDistribute super."Annotations"; + "Ansi2Html" = dontDistribute super."Ansi2Html"; + "ApplePush" = dontDistribute super."ApplePush"; + "AppleScript" = dontDistribute super."AppleScript"; + "ApproxFun-hs" = dontDistribute super."ApproxFun-hs"; + "ArrayRef" = dontDistribute super."ArrayRef"; + "ArrowVHDL" = dontDistribute super."ArrowVHDL"; + "AspectAG" = dontDistribute super."AspectAG"; + "AttoBencode" = dontDistribute super."AttoBencode"; + "AttoJson" = dontDistribute super."AttoJson"; + "Attrac" = dontDistribute super."Attrac"; + "Aurochs" = dontDistribute super."Aurochs"; + "AutoForms" = dontDistribute super."AutoForms"; + "AvlTree" = dontDistribute super."AvlTree"; + "BASIC" = dontDistribute super."BASIC"; + "BCMtools" = dontDistribute super."BCMtools"; + "BNFC" = dontDistribute super."BNFC"; + "BNFC-meta" = dontDistribute super."BNFC-meta"; + "Baggins" = dontDistribute super."Baggins"; + "Bang" = dontDistribute super."Bang"; + "Barracuda" = dontDistribute super."Barracuda"; + "Befunge93" = dontDistribute super."Befunge93"; + "BenchmarkHistory" = dontDistribute super."BenchmarkHistory"; + "BerkeleyDB" = dontDistribute super."BerkeleyDB"; + "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; + "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BigPixel" = dontDistribute super."BigPixel"; + "Binpack" = dontDistribute super."Binpack"; + "Biobase" = dontDistribute super."Biobase"; + "BiobaseBlast" = dontDistribute super."BiobaseBlast"; + "BiobaseDotP" = dontDistribute super."BiobaseDotP"; + "BiobaseFR3D" = dontDistribute super."BiobaseFR3D"; + "BiobaseFasta" = dontDistribute super."BiobaseFasta"; + "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; + "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; + "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; + "BiobaseTurner" = dontDistribute super."BiobaseTurner"; + "BiobaseTypes" = dontDistribute super."BiobaseTypes"; + "BiobaseVienna" = dontDistribute super."BiobaseVienna"; + "BiobaseXNA" = dontDistribute super."BiobaseXNA"; + "BirdPP" = dontDistribute super."BirdPP"; + "BitSyntax" = dontDistribute super."BitSyntax"; + "Bitly" = dontDistribute super."Bitly"; + "Blobs" = dontDistribute super."Blobs"; + "BluePrintCSS" = dontDistribute super."BluePrintCSS"; + "Blueprint" = dontDistribute super."Blueprint"; + "Bookshelf" = dontDistribute super."Bookshelf"; + "Bravo" = dontDistribute super."Bravo"; + "BufferedSocket" = dontDistribute super."BufferedSocket"; + "Buster" = dontDistribute super."Buster"; + "CBOR" = dontDistribute super."CBOR"; + "CC-delcont" = dontDistribute super."CC-delcont"; + "CC-delcont-alt" = dontDistribute super."CC-delcont-alt"; + "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe"; + "CC-delcont-exc" = dontDistribute super."CC-delcont-exc"; + "CC-delcont-ref" = dontDistribute super."CC-delcont-ref"; + "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf"; + "CCA" = dontDistribute super."CCA"; + "CHXHtml" = dontDistribute super."CHXHtml"; + "CLASE" = dontDistribute super."CLASE"; + "CLI" = dontDistribute super."CLI"; + "CMCompare" = dontDistribute super."CMCompare"; + "CMQ" = dontDistribute super."CMQ"; + "COrdering" = dontDistribute super."COrdering"; + "CPBrainfuck" = dontDistribute super."CPBrainfuck"; + "CPL" = dontDistribute super."CPL"; + "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage"; + "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules"; + "CSPM-Frontend" = dontDistribute super."CSPM-Frontend"; + "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter"; + "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog"; + "CSPM-cspm" = dontDistribute super."CSPM-cspm"; + "CTRex" = dontDistribute super."CTRex"; + "CV" = dontDistribute super."CV"; + "CabalSearch" = dontDistribute super."CabalSearch"; + "Capabilities" = dontDistribute super."Capabilities"; + "Cardinality" = dontDistribute super."Cardinality"; + "CarneadesDSL" = dontDistribute super."CarneadesDSL"; + "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; + "Cascade" = dontDistribute super."Cascade"; + "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; + "Chart-diagrams" = dontDistribute super."Chart-diagrams"; + "Chart-gtk" = dontDistribute super."Chart-gtk"; + "Chart-simple" = dontDistribute super."Chart-simple"; + "CheatSheet" = dontDistribute super."CheatSheet"; + "Checked" = dontDistribute super."Checked"; + "Chitra" = dontDistribute super."Chitra"; + "ChristmasTree" = dontDistribute super."ChristmasTree"; + "CirruParser" = dontDistribute super."CirruParser"; + "ClassLaws" = dontDistribute super."ClassLaws"; + "ClassyPrelude" = dontDistribute super."ClassyPrelude"; + "Clean" = dontDistribute super."Clean"; + "Clipboard" = dontDistribute super."Clipboard"; + "Coadjute" = dontDistribute super."Coadjute"; + "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; + "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; + "Combinatorrent" = dontDistribute super."Combinatorrent"; + "Command" = dontDistribute super."Command"; + "Commando" = dontDistribute super."Commando"; + "ComonadSheet" = dontDistribute super."ComonadSheet"; + "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; + "Concurrential" = dontDistribute super."Concurrential"; + "Condor" = dontDistribute super."Condor"; + "ConfigFileTH" = dontDistribute super."ConfigFileTH"; + "Configger" = dontDistribute super."Configger"; + "Configurable" = dontDistribute super."Configurable"; + "ConsStream" = dontDistribute super."ConsStream"; + "Conscript" = dontDistribute super."Conscript"; + "ConstraintKinds" = dontDistribute super."ConstraintKinds"; + "Consumer" = dontDistribute super."Consumer"; + "ContArrow" = dontDistribute super."ContArrow"; + "ContextAlgebra" = dontDistribute super."ContextAlgebra"; + "Contract" = dontDistribute super."Contract"; + "Control-Engine" = dontDistribute super."Control-Engine"; + "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass"; + "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2"; + "CoreDump" = dontDistribute super."CoreDump"; + "CoreErlang" = dontDistribute super."CoreErlang"; + "CoreFoundation" = dontDistribute super."CoreFoundation"; + "Coroutine" = dontDistribute super."Coroutine"; + "CouchDB" = dontDistribute super."CouchDB"; + "Craft3e" = dontDistribute super."Craft3e"; + "Crypto" = dontDistribute super."Crypto"; + "CurryDB" = dontDistribute super."CurryDB"; + "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DBlimited" = dontDistribute super."DBlimited"; + "DBus" = dontDistribute super."DBus"; + "DCFL" = dontDistribute super."DCFL"; + "DMuCheck" = dontDistribute super."DMuCheck"; + "DOM" = dontDistribute super."DOM"; + "DP" = dontDistribute super."DP"; + "DPM" = dontDistribute super."DPM"; + "DSA" = dontDistribute super."DSA"; + "DSH" = dontDistribute super."DSH"; + "DSTM" = dontDistribute super."DSTM"; + "DTC" = dontDistribute super."DTC"; + "Dangerous" = dontDistribute super."Dangerous"; + "Dao" = dontDistribute super."Dao"; + "DarcsHelpers" = dontDistribute super."DarcsHelpers"; + "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent"; + "Data-Rope" = dontDistribute super."Data-Rope"; + "DataTreeView" = dontDistribute super."DataTreeView"; + "Deadpan-DDP" = dontDistribute super."Deadpan-DDP"; + "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers"; + "DecisionTree" = dontDistribute super."DecisionTree"; + "DeepArrow" = dontDistribute super."DeepArrow"; + "DefendTheKing" = dontDistribute super."DefendTheKing"; + "DescriptiveKeys" = dontDistribute super."DescriptiveKeys"; + "Dflow" = dontDistribute super."Dflow"; + "DifferenceLogic" = dontDistribute super."DifferenceLogic"; + "DifferentialEvolution" = dontDistribute super."DifferentialEvolution"; + "Digit" = dontDistribute super."Digit"; + "DigitalOcean" = dontDistribute super."DigitalOcean"; + "DimensionalHash" = dontDistribute super."DimensionalHash"; + "DirectSound" = dontDistribute super."DirectSound"; + "DisTract" = dontDistribute super."DisTract"; + "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem"; + "Dish" = dontDistribute super."Dish"; + "Dist" = dontDistribute super."Dist"; + "DistanceTransform" = dontDistribute super."DistanceTransform"; + "DistanceUnits" = dontDistribute super."DistanceUnits"; + "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment"; + "DocTest" = dontDistribute super."DocTest"; + "Docs" = dontDistribute super."Docs"; + "DrHylo" = dontDistribute super."DrHylo"; + "DrIFT" = dontDistribute super."DrIFT"; + "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized"; + "Dung" = dontDistribute super."Dung"; + "Dust" = dontDistribute super."Dust"; + "Dust-crypto" = dontDistribute super."Dust-crypto"; + "Dust-tools" = dontDistribute super."Dust-tools"; + "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap"; + "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp"; + "DysFRP" = dontDistribute super."DysFRP"; + "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; + "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; + "EEConfig" = dontDistribute super."EEConfig"; + "EdisonAPI" = dontDistribute super."EdisonAPI"; + "EdisonCore" = dontDistribute super."EdisonCore"; + "EditTimeReport" = dontDistribute super."EditTimeReport"; + "EitherT" = dontDistribute super."EitherT"; + "Elm" = dontDistribute super."Elm"; + "Emping" = dontDistribute super."Emping"; + "Encode" = dontDistribute super."Encode"; + "EnumContainers" = dontDistribute super."EnumContainers"; + "EnumMap" = dontDistribute super."EnumMap"; + "Eq" = dontDistribute super."Eq"; + "EqualitySolver" = dontDistribute super."EqualitySolver"; + "EsounD" = dontDistribute super."EsounD"; + "EstProgress" = dontDistribute super."EstProgress"; + "EtaMOO" = dontDistribute super."EtaMOO"; + "Etage" = dontDistribute super."Etage"; + "Etage-Graph" = dontDistribute super."Etage-Graph"; + "Eternal10Seconds" = dontDistribute super."Eternal10Seconds"; + "Etherbunny" = dontDistribute super."Etherbunny"; + "EuroIT" = dontDistribute super."EuroIT"; + "Euterpea" = dontDistribute super."Euterpea"; + "EventSocket" = dontDistribute super."EventSocket"; + "Extra" = dontDistribute super."Extra"; + "FComp" = dontDistribute super."FComp"; + "FM-SBLEX" = dontDistribute super."FM-SBLEX"; + "FModExRaw" = dontDistribute super."FModExRaw"; + "FPretty" = dontDistribute super."FPretty"; + "FTGL" = dontDistribute super."FTGL"; + "FTGL-bytestring" = dontDistribute super."FTGL-bytestring"; + "FTPLine" = dontDistribute super."FTPLine"; + "Facts" = dontDistribute super."Facts"; + "FailureT" = dontDistribute super."FailureT"; + "FastxPipe" = dontDistribute super."FastxPipe"; + "FermatsLastMargin" = dontDistribute super."FermatsLastMargin"; + "FerryCore" = dontDistribute super."FerryCore"; + "Feval" = dontDistribute super."Feval"; + "FieldTrip" = dontDistribute super."FieldTrip"; + "FileManip" = dontDistribute super."FileManip"; + "FileManipCompat" = dontDistribute super."FileManipCompat"; + "FilePather" = dontDistribute super."FilePather"; + "FileSystem" = dontDistribute super."FileSystem"; + "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo"; + "Finance-Treasury" = dontDistribute super."Finance-Treasury"; + "FiniteMap" = dontDistribute super."FiniteMap"; + "FirstOrderTheory" = dontDistribute super."FirstOrderTheory"; + "FixedPoint-simple" = dontDistribute super."FixedPoint-simple"; + "Flippi" = dontDistribute super."Flippi"; + "Focus" = dontDistribute super."Focus"; + "Folly" = dontDistribute super."Folly"; + "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; + "ForkableT" = dontDistribute super."ForkableT"; + "FormalGrammars" = dontDistribute super."FormalGrammars"; + "Foster" = dontDistribute super."Foster"; + "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; + "Fractaler" = dontDistribute super."Fractaler"; + "Frank" = dontDistribute super."Frank"; + "FreeTypeGL" = dontDistribute super."FreeTypeGL"; + "FunGEn" = dontDistribute super."FunGEn"; + "Fungi" = dontDistribute super."Fungi"; + "GA" = dontDistribute super."GA"; + "GGg" = dontDistribute super."GGg"; + "GHood" = dontDistribute super."GHood"; + "GLFW" = dontDistribute super."GLFW"; + "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; + "GLFW-task" = dontDistribute super."GLFW-task"; + "GLHUI" = dontDistribute super."GLHUI"; + "GLM" = dontDistribute super."GLM"; + "GLMatrix" = dontDistribute super."GLMatrix"; + "GLUtil" = dontDistribute super."GLUtil"; + "GPX" = dontDistribute super."GPX"; + "GPipe-Collada" = dontDistribute super."GPipe-Collada"; + "GPipe-Examples" = dontDistribute super."GPipe-Examples"; + "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad"; + "GTALib" = dontDistribute super."GTALib"; + "Gamgine" = dontDistribute super."Gamgine"; + "Ganymede" = dontDistribute super."Ganymede"; + "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration"; + "GeBoP" = dontDistribute super."GeBoP"; + "GenI" = dontDistribute super."GenI"; + "GenSmsPdu" = dontDistribute super."GenSmsPdu"; + "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe"; + "GenussFold" = dontDistribute super."GenussFold"; + "GeoIp" = dontDistribute super."GeoIp"; + "GeocoderOpenCage" = dontDistribute super."GeocoderOpenCage"; + "Geodetic" = dontDistribute super."Geodetic"; + "GeomPredicates" = dontDistribute super."GeomPredicates"; + "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE"; + "GiST" = dontDistribute super."GiST"; + "Gifcurry" = dontDistribute super."Gifcurry"; + "GiveYouAHead" = dontDistribute super."GiveYouAHead"; + "GlomeTrace" = dontDistribute super."GlomeTrace"; + "GlomeVec" = dontDistribute super."GlomeVec"; + "GlomeView" = dontDistribute super."GlomeView"; + "GoogleChart" = dontDistribute super."GoogleChart"; + "GoogleDirections" = dontDistribute super."GoogleDirections"; + "GoogleSB" = dontDistribute super."GoogleSB"; + "GoogleSuggest" = dontDistribute super."GoogleSuggest"; + "GoogleTranslate" = dontDistribute super."GoogleTranslate"; + "GotoT-transformers" = dontDistribute super."GotoT-transformers"; + "GrammarProducts" = dontDistribute super."GrammarProducts"; + "Graph500" = dontDistribute super."Graph500"; + "GraphHammer" = dontDistribute super."GraphHammer"; + "GraphHammer-examples" = dontDistribute super."GraphHammer-examples"; + "Graphalyze" = dontDistribute super."Graphalyze"; + "Grempa" = dontDistribute super."Grempa"; + "GroteTrap" = dontDistribute super."GroteTrap"; + "Grow" = dontDistribute super."Grow"; + "GrowlNotify" = dontDistribute super."GrowlNotify"; + "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics"; + "GtkGLTV" = dontDistribute super."GtkGLTV"; + "GtkTV" = dontDistribute super."GtkTV"; + "GuiHaskell" = dontDistribute super."GuiHaskell"; + "GuiTV" = dontDistribute super."GuiTV"; + "HARM" = dontDistribute super."HARM"; + "HAppS-Data" = dontDistribute super."HAppS-Data"; + "HAppS-IxSet" = dontDistribute super."HAppS-IxSet"; + "HAppS-Server" = dontDistribute super."HAppS-Server"; + "HAppS-State" = dontDistribute super."HAppS-State"; + "HAppS-Util" = dontDistribute super."HAppS-Util"; + "HAppSHelpers" = dontDistribute super."HAppSHelpers"; + "HCL" = dontDistribute super."HCL"; + "HCard" = dontDistribute super."HCard"; + "HDBC-mysql" = dontDistribute super."HDBC-mysql"; + "HDBC-odbc" = dontDistribute super."HDBC-odbc"; + "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore"; + "HDBC-session" = dontDistribute super."HDBC-session"; + "HDRUtils" = dontDistribute super."HDRUtils"; + "HERA" = dontDistribute super."HERA"; + "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; + "HFuse" = dontDistribute super."HFuse"; + "HGL" = dontDistribute super."HGL"; + "HGamer3D" = dontDistribute super."HGamer3D"; + "HGamer3D-API" = dontDistribute super."HGamer3D-API"; + "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio"; + "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding"; + "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding"; + "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding"; + "HGamer3D-Common" = dontDistribute super."HGamer3D-Common"; + "HGamer3D-Data" = dontDistribute super."HGamer3D-Data"; + "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding"; + "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI"; + "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D"; + "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem"; + "HGamer3D-Network" = dontDistribute super."HGamer3D-Network"; + "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding"; + "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding"; + "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding"; + "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding"; + "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent"; + "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire"; + "HGraphStorage" = dontDistribute super."HGraphStorage"; + "HHDL" = dontDistribute super."HHDL"; + "HJScript" = dontDistribute super."HJScript"; + "HJVM" = dontDistribute super."HJVM"; + "HJavaScript" = dontDistribute super."HJavaScript"; + "HLearn-algebra" = dontDistribute super."HLearn-algebra"; + "HLearn-approximation" = dontDistribute super."HLearn-approximation"; + "HLearn-classification" = dontDistribute super."HLearn-classification"; + "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; + "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HListPP" = dontDistribute super."HListPP"; + "HLogger" = dontDistribute super."HLogger"; + "HMM" = dontDistribute super."HMM"; + "HMap" = dontDistribute super."HMap"; + "HNM" = dontDistribute super."HNM"; + "HODE" = dontDistribute super."HODE"; + "HOpenCV" = dontDistribute super."HOpenCV"; + "HPath" = dontDistribute super."HPath"; + "HPi" = dontDistribute super."HPi"; + "HPlot" = dontDistribute super."HPlot"; + "HPong" = dontDistribute super."HPong"; + "HROOT" = dontDistribute super."HROOT"; + "HROOT-core" = dontDistribute super."HROOT-core"; + "HROOT-graf" = dontDistribute super."HROOT-graf"; + "HROOT-hist" = dontDistribute super."HROOT-hist"; + "HROOT-io" = dontDistribute super."HROOT-io"; + "HROOT-math" = dontDistribute super."HROOT-math"; + "HRay" = dontDistribute super."HRay"; + "HSFFIG" = dontDistribute super."HSFFIG"; + "HSGEP" = dontDistribute super."HSGEP"; + "HSH" = dontDistribute super."HSH"; + "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSlippyMap" = dontDistribute super."HSlippyMap"; + "HSmarty" = dontDistribute super."HSmarty"; + "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; + "HSvm" = dontDistribute super."HSvm"; + "HTTP-Simple" = dontDistribute super."HTTP-Simple"; + "HTab" = dontDistribute super."HTab"; + "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit-Diff" = dontDistribute super."HUnit-Diff"; + "HUnit-Plus" = dontDistribute super."HUnit-Plus"; + "HUnit-approx" = dontDistribute super."HUnit-approx"; + "HXMPP" = dontDistribute super."HXMPP"; + "HXQ" = dontDistribute super."HXQ"; + "HaLeX" = dontDistribute super."HaLeX"; + "HaMinitel" = dontDistribute super."HaMinitel"; + "HaPy" = dontDistribute super."HaPy"; + "HaTeX-meta" = dontDistribute super."HaTeX-meta"; + "HaTeX-qq" = dontDistribute super."HaTeX-qq"; + "HaVSA" = dontDistribute super."HaVSA"; + "Hach" = dontDistribute super."Hach"; + "HackMail" = dontDistribute super."HackMail"; + "Haggressive" = dontDistribute super."Haggressive"; + "HandlerSocketClient" = dontDistribute super."HandlerSocketClient"; + "Hangman" = dontDistribute super."Hangman"; + "HarmTrace" = dontDistribute super."HarmTrace"; + "HarmTrace-Base" = dontDistribute super."HarmTrace-Base"; + "HasGP" = dontDistribute super."HasGP"; + "Haschoo" = dontDistribute super."Haschoo"; + "Hashell" = dontDistribute super."Hashell"; + "HaskRel" = dontDistribute super."HaskRel"; + "HaskellForMaths" = dontDistribute super."HaskellForMaths"; + "HaskellLM" = dontDistribute super."HaskellLM"; + "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellTorrent" = dontDistribute super."HaskellTorrent"; + "HaskellTutorials" = dontDistribute super."HaskellTutorials"; + "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; + "Hawk" = dontDistribute super."Hawk"; + "Hayoo" = dontDistribute super."Hayoo"; + "Hclip" = dontDistribute super."Hclip"; + "Hedi" = dontDistribute super."Hedi"; + "HerbiePlugin" = dontDistribute super."HerbiePlugin"; + "Hermes" = dontDistribute super."Hermes"; + "Hieroglyph" = dontDistribute super."Hieroglyph"; + "HiggsSet" = dontDistribute super."HiggsSet"; + "Hipmunk" = dontDistribute super."Hipmunk"; + "HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; + "Hish" = dontDistribute super."Hish"; + "Histogram" = dontDistribute super."Histogram"; + "Hmpf" = dontDistribute super."Hmpf"; + "Hoed" = dontDistribute super."Hoed"; + "HoleyMonoid" = dontDistribute super."HoleyMonoid"; + "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution"; + "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce"; + "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine"; + "Holumbus-Storage" = dontDistribute super."Holumbus-Storage"; + "Homology" = dontDistribute super."Homology"; + "HongoDB" = dontDistribute super."HongoDB"; + "HostAndPort" = dontDistribute super."HostAndPort"; + "Hricket" = dontDistribute super."Hricket"; + "Hs2lib" = dontDistribute super."Hs2lib"; + "HsASA" = dontDistribute super."HsASA"; + "HsHaruPDF" = dontDistribute super."HsHaruPDF"; + "HsHyperEstraier" = dontDistribute super."HsHyperEstraier"; + "HsJudy" = dontDistribute super."HsJudy"; + "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system"; + "HsParrot" = dontDistribute super."HsParrot"; + "HsPerl5" = dontDistribute super."HsPerl5"; + "HsSVN" = dontDistribute super."HsSVN"; + "HsTools" = dontDistribute super."HsTools"; + "Hsed" = dontDistribute super."Hsed"; + "Hsmtlib" = dontDistribute super."Hsmtlib"; + "HueAPI" = dontDistribute super."HueAPI"; + "HulkImport" = dontDistribute super."HulkImport"; + "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres"; + "IDynamic" = dontDistribute super."IDynamic"; + "IFS" = dontDistribute super."IFS"; + "INblobs" = dontDistribute super."INblobs"; + "IOR" = dontDistribute super."IOR"; + "IORefCAS" = dontDistribute super."IORefCAS"; + "IOSpec" = dontDistribute super."IOSpec"; + "IcoGrid" = dontDistribute super."IcoGrid"; + "Imlib" = dontDistribute super."Imlib"; + "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; + "IndentParser" = dontDistribute super."IndentParser"; + "IndexedList" = dontDistribute super."IndexedList"; + "InfixApplicative" = dontDistribute super."InfixApplicative"; + "Interpolation" = dontDistribute super."Interpolation"; + "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "Irc" = dontDistribute super."Irc"; + "IrrHaskell" = dontDistribute super."IrrHaskell"; + "IsNull" = dontDistribute super."IsNull"; + "JSON-Combinator" = dontDistribute super."JSON-Combinator"; + "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples"; + "JSONb" = dontDistribute super."JSONb"; + "JYU-Utils" = dontDistribute super."JYU-Utils"; + "JackMiniMix" = dontDistribute super."JackMiniMix"; + "Javasf" = dontDistribute super."Javasf"; + "Javav" = dontDistribute super."Javav"; + "JsContracts" = dontDistribute super."JsContracts"; + "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JunkDB" = dontDistribute super."JunkDB"; + "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; + "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables"; + "JustParse" = dontDistribute super."JustParse"; + "KMP" = dontDistribute super."KMP"; + "KSP" = dontDistribute super."KSP"; + "Kalman" = dontDistribute super."Kalman"; + "KdTree" = dontDistribute super."KdTree"; + "Ketchup" = dontDistribute super."Ketchup"; + "KiCS" = dontDistribute super."KiCS"; + "KiCS-debugger" = dontDistribute super."KiCS-debugger"; + "KiCS-prophecy" = dontDistribute super."KiCS-prophecy"; + "Kleislify" = dontDistribute super."Kleislify"; + "Konf" = dontDistribute super."Konf"; + "Kriens" = dontDistribute super."Kriens"; + "KyotoCabinet" = dontDistribute super."KyotoCabinet"; + "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; + "LDAP" = dontDistribute super."LDAP"; + "LRU" = dontDistribute super."LRU"; + "LTree" = dontDistribute super."LTree"; + "LambdaCalculator" = dontDistribute super."LambdaCalculator"; + "LambdaHack" = dontDistribute super."LambdaHack"; + "LambdaINet" = dontDistribute super."LambdaINet"; + "LambdaNet" = dontDistribute super."LambdaNet"; + "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; + "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdajudge" = dontDistribute super."Lambdajudge"; + "Lambdaya" = dontDistribute super."Lambdaya"; + "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; + "Lastik" = dontDistribute super."Lastik"; + "Lattices" = dontDistribute super."Lattices"; + "Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2"; + "LazyVault" = dontDistribute super."LazyVault"; + "Level0" = dontDistribute super."Level0"; + "LibClang" = dontDistribute super."LibClang"; + "Limit" = dontDistribute super."Limit"; + "LinearSplit" = dontDistribute super."LinearSplit"; + "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; + "LinkChecker" = dontDistribute super."LinkChecker"; + "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; + "ListZipper" = dontDistribute super."ListZipper"; + "Logic" = dontDistribute super."Logic"; + "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; + "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI"; + "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network"; + "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes"; + "LslPlus" = dontDistribute super."LslPlus"; + "Lucu" = dontDistribute super."Lucu"; + "MASMGen" = dontDistribute super."MASMGen"; + "MC-Fold-DP" = dontDistribute super."MC-Fold-DP"; + "MHask" = dontDistribute super."MHask"; + "MSQueue" = dontDistribute super."MSQueue"; + "MTGBuilder" = dontDistribute super."MTGBuilder"; + "MagicHaskeller" = dontDistribute super."MagicHaskeller"; + "MailchimpSimple" = dontDistribute super."MailchimpSimple"; + "MaybeT" = dontDistribute super."MaybeT"; + "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf"; + "MaybeT-transformers" = dontDistribute super."MaybeT-transformers"; + "MazesOfMonad" = dontDistribute super."MazesOfMonad"; + "MeanShift" = dontDistribute super."MeanShift"; + "Measure" = dontDistribute super."Measure"; + "MetaHDBC" = dontDistribute super."MetaHDBC"; + "MetaObject" = dontDistribute super."MetaObject"; + "Metrics" = dontDistribute super."Metrics"; + "Mhailist" = dontDistribute super."Mhailist"; + "Michelangelo" = dontDistribute super."Michelangelo"; + "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator"; + "MiniAgda" = dontDistribute super."MiniAgda"; + "MissingK" = dontDistribute super."MissingK"; + "MissingM" = dontDistribute super."MissingM"; + "MissingPy" = dontDistribute super."MissingPy"; + "Modulo" = dontDistribute super."Modulo"; + "Moe" = dontDistribute super."Moe"; + "MoeDict" = dontDistribute super."MoeDict"; + "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl"; + "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign"; + "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; + "MonadCompose" = dontDistribute super."MonadCompose"; + "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; + "MonadStack" = dontDistribute super."MonadStack"; + "Monadius" = dontDistribute super."Monadius"; + "Monaris" = dontDistribute super."Monaris"; + "Monatron" = dontDistribute super."Monatron"; + "Monatron-IO" = dontDistribute super."Monatron-IO"; + "Monocle" = dontDistribute super."Monocle"; + "MorseCode" = dontDistribute super."MorseCode"; + "MuCheck" = dontDistribute super."MuCheck"; + "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit"; + "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec"; + "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck"; + "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck"; + "Munkres" = dontDistribute super."Munkres"; + "Munkres-simple" = dontDistribute super."Munkres-simple"; + "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid"; + "MyPrimes" = dontDistribute super."MyPrimes"; + "NGrams" = dontDistribute super."NGrams"; + "NTRU" = dontDistribute super."NTRU"; + "NXT" = dontDistribute super."NXT"; + "NXTDSL" = dontDistribute super."NXTDSL"; + "NanoProlog" = dontDistribute super."NanoProlog"; + "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets"; + "NaturalSort" = dontDistribute super."NaturalSort"; + "NearContextAlgebra" = dontDistribute super."NearContextAlgebra"; + "Neks" = dontDistribute super."Neks"; + "NestedFunctor" = dontDistribute super."NestedFunctor"; + "NestedSampling" = dontDistribute super."NestedSampling"; + "NetSNMP" = dontDistribute super."NetSNMP"; + "NewBinary" = dontDistribute super."NewBinary"; + "Ninjas" = dontDistribute super."Ninjas"; + "NoSlow" = dontDistribute super."NoSlow"; + "NoTrace" = dontDistribute super."NoTrace"; + "Noise" = dontDistribute super."Noise"; + "Nomyx" = dontDistribute super."Nomyx"; + "Nomyx-Core" = dontDistribute super."Nomyx-Core"; + "Nomyx-Language" = dontDistribute super."Nomyx-Language"; + "Nomyx-Rules" = dontDistribute super."Nomyx-Rules"; + "Nomyx-Web" = dontDistribute super."Nomyx-Web"; + "NonEmpty" = dontDistribute super."NonEmpty"; + "NonEmptyList" = dontDistribute super."NonEmptyList"; + "NumLazyByteString" = dontDistribute super."NumLazyByteString"; + "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; + "Numbers" = dontDistribute super."Numbers"; + "Nussinov78" = dontDistribute super."Nussinov78"; + "Nutri" = dontDistribute super."Nutri"; + "OGL" = dontDistribute super."OGL"; + "OSM" = dontDistribute super."OSM"; + "OTP" = dontDistribute super."OTP"; + "Object" = dontDistribute super."Object"; + "ObjectIO" = dontDistribute super."ObjectIO"; + "Obsidian" = dontDistribute super."Obsidian"; + "OddWord" = dontDistribute super."OddWord"; + "Omega" = dontDistribute super."Omega"; + "OneTuple" = dontDistribute super."OneTuple"; + "OpenAFP" = dontDistribute super."OpenAFP"; + "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils"; + "OpenAL" = dontDistribute super."OpenAL"; + "OpenCL" = dontDistribute super."OpenCL"; + "OpenCLRaw" = dontDistribute super."OpenCLRaw"; + "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; + "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw21" = dontDistribute super."OpenGLRaw21"; + "OpenSCAD" = dontDistribute super."OpenSCAD"; + "OpenVG" = dontDistribute super."OpenVG"; + "OpenVGRaw" = dontDistribute super."OpenVGRaw"; + "Operads" = dontDistribute super."Operads"; + "OptDir" = dontDistribute super."OptDir"; + "OrPatterns" = dontDistribute super."OrPatterns"; + "OrchestrateDB" = dontDistribute super."OrchestrateDB"; + "OrderedBits" = dontDistribute super."OrderedBits"; + "Ordinals" = dontDistribute super."Ordinals"; + "PArrows" = dontDistribute super."PArrows"; + "PBKDF2" = dontDistribute super."PBKDF2"; + "PCLT" = dontDistribute super."PCLT"; + "PCLT-DB" = dontDistribute super."PCLT-DB"; + "PDBtools" = dontDistribute super."PDBtools"; + "PTQ" = dontDistribute super."PTQ"; + "PUH-Project" = dontDistribute super."PUH-Project"; + "PageIO" = dontDistribute super."PageIO"; + "Paillier" = dontDistribute super."Paillier"; + "PandocAgda" = dontDistribute super."PandocAgda"; + "Paraiso" = dontDistribute super."Paraiso"; + "Parry" = dontDistribute super."Parry"; + "ParsecTools" = dontDistribute super."ParsecTools"; + "ParserFunction" = dontDistribute super."ParserFunction"; + "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; + "PasswordGenerator" = dontDistribute super."PasswordGenerator"; + "PastePipe" = dontDistribute super."PastePipe"; + "Pathfinder" = dontDistribute super."Pathfinder"; + "Peano" = dontDistribute super."Peano"; + "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; + "PerfectHash" = dontDistribute super."PerfectHash"; + "PermuteEffects" = dontDistribute super."PermuteEffects"; + "Phsu" = dontDistribute super."Phsu"; + "Pipe" = dontDistribute super."Pipe"; + "Piso" = dontDistribute super."Piso"; + "PlayHangmanGame" = dontDistribute super."PlayHangmanGame"; + "PlayingCards" = dontDistribute super."PlayingCards"; + "Plot-ho-matic" = dontDistribute super."Plot-ho-matic"; + "PlslTools" = dontDistribute super."PlslTools"; + "Plural" = dontDistribute super."Plural"; + "Pollutocracy" = dontDistribute super."Pollutocracy"; + "PortFusion" = dontDistribute super."PortFusion"; + "PortMidi" = dontDistribute super."PortMidi"; + "PostgreSQL" = dontDistribute super."PostgreSQL"; + "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; + "Printf-TH" = dontDistribute super."Printf-TH"; + "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; + "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; + "PropLogic" = dontDistribute super."PropLogic"; + "Proper" = dontDistribute super."Proper"; + "ProxN" = dontDistribute super."ProxN"; + "Pugs" = dontDistribute super."Pugs"; + "Pup-Events" = dontDistribute super."Pup-Events"; + "Pup-Events-Client" = dontDistribute super."Pup-Events-Client"; + "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo"; + "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; + "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; + "QIO" = dontDistribute super."QIO"; + "QuadEdge" = dontDistribute super."QuadEdge"; + "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; + "QuickAnnotate" = dontDistribute super."QuickAnnotate"; + "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; + "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; + "QuickCheck-safe" = dontDistribute super."QuickCheck-safe"; + "QuickPlot" = dontDistribute super."QuickPlot"; + "Quickson" = dontDistribute super."Quickson"; + "R-pandoc" = dontDistribute super."R-pandoc"; + "RANSAC" = dontDistribute super."RANSAC"; + "RBTree" = dontDistribute super."RBTree"; + "RESTng" = dontDistribute super."RESTng"; + "RFC1751" = dontDistribute super."RFC1751"; + "RJson" = dontDistribute super."RJson"; + "RMP" = dontDistribute super."RMP"; + "RNAFold" = dontDistribute super."RNAFold"; + "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; + "RNAdesign" = dontDistribute super."RNAdesign"; + "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = doDistribute super."RNAlien_1_0_0"; + "RNAwolf" = dontDistribute super."RNAwolf"; + "Raincat" = dontDistribute super."Raincat"; + "Random123" = dontDistribute super."Random123"; + "RandomDotOrg" = dontDistribute super."RandomDotOrg"; + "Randometer" = dontDistribute super."Randometer"; + "Range" = dontDistribute super."Range"; + "Ranged-sets" = dontDistribute super."Ranged-sets"; + "Ranka" = dontDistribute super."Ranka"; + "Rasenschach" = dontDistribute super."Rasenschach"; + "Redmine" = dontDistribute super."Redmine"; + "Ref" = dontDistribute super."Ref"; + "Referees" = dontDistribute super."Referees"; + "RepLib" = dontDistribute super."RepLib"; + "ReplicateEffects" = dontDistribute super."ReplicateEffects"; + "ReviewBoard" = dontDistribute super."ReviewBoard"; + "RichConditional" = dontDistribute super."RichConditional"; + "RollingDirectory" = dontDistribute super."RollingDirectory"; + "RoyalMonad" = dontDistribute super."RoyalMonad"; + "RxHaskell" = dontDistribute super."RxHaskell"; + "SBench" = dontDistribute super."SBench"; + "SConfig" = dontDistribute super."SConfig"; + "SDL" = dontDistribute super."SDL"; + "SDL-gfx" = dontDistribute super."SDL-gfx"; + "SDL-image" = dontDistribute super."SDL-image"; + "SDL-mixer" = dontDistribute super."SDL-mixer"; + "SDL-mpeg" = dontDistribute super."SDL-mpeg"; + "SDL-ttf" = dontDistribute super."SDL-ttf"; + "SDL2-ttf" = dontDistribute super."SDL2-ttf"; + "SFML" = dontDistribute super."SFML"; + "SFML-control" = dontDistribute super."SFML-control"; + "SFont" = dontDistribute super."SFont"; + "SG" = dontDistribute super."SG"; + "SGdemo" = dontDistribute super."SGdemo"; + "SHA2" = dontDistribute super."SHA2"; + "SMTPClient" = dontDistribute super."SMTPClient"; + "SNet" = dontDistribute super."SNet"; + "SQLDeps" = dontDistribute super."SQLDeps"; + "STL" = dontDistribute super."STL"; + "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = dontDistribute super."SVGFonts"; + "SVGPath" = dontDistribute super."SVGPath"; + "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; + "SableCC2Hs" = dontDistribute super."SableCC2Hs"; + "Safe" = dontDistribute super."Safe"; + "Salsa" = dontDistribute super."Salsa"; + "Saturnin" = dontDistribute super."Saturnin"; + "SciFlow" = dontDistribute super."SciFlow"; + "ScratchFs" = dontDistribute super."ScratchFs"; + "Scurry" = dontDistribute super."Scurry"; + "Semantique" = dontDistribute super."Semantique"; + "Semigroup" = dontDistribute super."Semigroup"; + "SeqAlign" = dontDistribute super."SeqAlign"; + "SessionLogger" = dontDistribute super."SessionLogger"; + "ShellCheck" = dontDistribute super."ShellCheck"; + "Shellac" = dontDistribute super."Shellac"; + "Shellac-compatline" = dontDistribute super."Shellac-compatline"; + "Shellac-editline" = dontDistribute super."Shellac-editline"; + "Shellac-haskeline" = dontDistribute super."Shellac-haskeline"; + "Shellac-readline" = dontDistribute super."Shellac-readline"; + "ShowF" = dontDistribute super."ShowF"; + "Shrub" = dontDistribute super."Shrub"; + "Shu-thing" = dontDistribute super."Shu-thing"; + "SimpleAES" = dontDistribute super."SimpleAES"; + "SimpleEA" = dontDistribute super."SimpleEA"; + "SimpleGL" = dontDistribute super."SimpleGL"; + "SimpleH" = dontDistribute super."SimpleH"; + "SimpleLog" = dontDistribute super."SimpleLog"; + "SimpleServer" = dontDistribute super."SimpleServer"; + "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; + "Smooth" = dontDistribute super."Smooth"; + "SmtLib" = dontDistribute super."SmtLib"; + "Snusmumrik" = dontDistribute super."Snusmumrik"; + "SoOSiM" = dontDistribute super."SoOSiM"; + "SoccerFun" = dontDistribute super."SoccerFun"; + "SoccerFunGL" = dontDistribute super."SoccerFunGL"; + "Sonnex" = dontDistribute super."Sonnex"; + "SourceGraph" = dontDistribute super."SourceGraph"; + "Southpaw" = dontDistribute super."Southpaw"; + "SpaceInvaders" = dontDistribute super."SpaceInvaders"; + "SpacePrivateers" = dontDistribute super."SpacePrivateers"; + "SpinCounter" = dontDistribute super."SpinCounter"; + "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; + "SpreadsheetML" = dontDistribute super."SpreadsheetML"; + "Sprig" = dontDistribute super."Sprig"; + "Stasis" = dontDistribute super."Stasis"; + "StateVar-transformer" = dontDistribute super."StateVar-transformer"; + "StatisticalMethods" = dontDistribute super."StatisticalMethods"; + "Stomp" = dontDistribute super."Stomp"; + "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; + "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "StrappedTemplates" = dontDistribute super."StrappedTemplates"; + "StrategyLib" = dontDistribute super."StrategyLib"; + "Stream" = dontDistribute super."Stream"; + "StrictBench" = dontDistribute super."StrictBench"; + "SuffixStructures" = dontDistribute super."SuffixStructures"; + "SybWidget" = dontDistribute super."SybWidget"; + "SyntaxMacros" = dontDistribute super."SyntaxMacros"; + "Sysmon" = dontDistribute super."Sysmon"; + "TBC" = dontDistribute super."TBC"; + "TBit" = dontDistribute super."TBit"; + "THEff" = dontDistribute super."THEff"; + "TTTAS" = dontDistribute super."TTTAS"; + "TV" = dontDistribute super."TV"; + "TYB" = dontDistribute super."TYB"; + "TableAlgebra" = dontDistribute super."TableAlgebra"; + "Tables" = dontDistribute super."Tables"; + "Tablify" = dontDistribute super."Tablify"; + "Tainted" = dontDistribute super."Tainted"; + "Takusen" = dontDistribute super."Takusen"; + "Tape" = dontDistribute super."Tape"; + "TeaHS" = dontDistribute super."TeaHS"; + "Tensor" = dontDistribute super."Tensor"; + "TernaryTrees" = dontDistribute super."TernaryTrees"; + "TestExplode" = dontDistribute super."TestExplode"; + "Theora" = dontDistribute super."Theora"; + "Thingie" = dontDistribute super."Thingie"; + "ThreadObjects" = dontDistribute super."ThreadObjects"; + "Thrift" = dontDistribute super."Thrift"; + "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe"; + "TicTacToe" = dontDistribute super."TicTacToe"; + "TigerHash" = dontDistribute super."TigerHash"; + "TimePiece" = dontDistribute super."TimePiece"; + "TinyLaunchbury" = dontDistribute super."TinyLaunchbury"; + "TinyURL" = dontDistribute super."TinyURL"; + "Titim" = dontDistribute super."Titim"; + "Top" = dontDistribute super."Top"; + "Tournament" = dontDistribute super."Tournament"; + "TraceUtils" = dontDistribute super."TraceUtils"; + "TransformersStepByStep" = dontDistribute super."TransformersStepByStep"; + "Transhare" = dontDistribute super."Transhare"; + "TreeCounter" = dontDistribute super."TreeCounter"; + "TreeStructures" = dontDistribute super."TreeStructures"; + "TreeT" = dontDistribute super."TreeT"; + "Treiber" = dontDistribute super."Treiber"; + "TrendGraph" = dontDistribute super."TrendGraph"; + "TrieMap" = dontDistribute super."TrieMap"; + "Twofish" = dontDistribute super."Twofish"; + "TypeClass" = dontDistribute super."TypeClass"; + "TypeCompose" = dontDistribute super."TypeCompose"; + "TypeIlluminator" = dontDistribute super."TypeIlluminator"; + "TypeNat" = dontDistribute super."TypeNat"; + "TypingTester" = dontDistribute super."TypingTester"; + "UISF" = dontDistribute super."UISF"; + "UMM" = dontDistribute super."UMM"; + "URLT" = dontDistribute super."URLT"; + "URLb" = dontDistribute super."URLb"; + "UTFTConverter" = dontDistribute super."UTFTConverter"; + "Unique" = dontDistribute super."Unique"; + "Unixutils-shadow" = dontDistribute super."Unixutils-shadow"; + "Updater" = dontDistribute super."Updater"; + "UrlDisp" = dontDistribute super."UrlDisp"; + "Useful" = dontDistribute super."Useful"; + "UtilityTM" = dontDistribute super."UtilityTM"; + "VKHS" = dontDistribute super."VKHS"; + "Validation" = dontDistribute super."Validation"; + "Vec" = dontDistribute super."Vec"; + "Vec-Boolean" = dontDistribute super."Vec-Boolean"; + "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw"; + "Vec-Transform" = dontDistribute super."Vec-Transform"; + "VecN" = dontDistribute super."VecN"; + "Verba" = dontDistribute super."Verba"; + "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "Vulkan" = dontDistribute super."Vulkan"; + "WAVE" = dontDistribute super."WAVE"; + "WL500gPControl" = dontDistribute super."WL500gPControl"; + "WL500gPLib" = dontDistribute super."WL500gPLib"; + "WMSigner" = dontDistribute super."WMSigner"; + "WURFL" = dontDistribute super."WURFL"; + "WXDiffCtrl" = dontDistribute super."WXDiffCtrl"; + "WashNGo" = dontDistribute super."WashNGo"; + "WaveFront" = dontDistribute super."WaveFront"; + "Weather" = dontDistribute super."Weather"; + "WebBits" = dontDistribute super."WebBits"; + "WebBits-Html" = dontDistribute super."WebBits-Html"; + "WebBits-multiplate" = dontDistribute super."WebBits-multiplate"; + "WebCont" = dontDistribute super."WebCont"; + "WeberLogic" = dontDistribute super."WeberLogic"; + "Webrexp" = dontDistribute super."Webrexp"; + "Wheb" = dontDistribute super."Wheb"; + "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; + "Win32-errors" = dontDistribute super."Win32-errors"; + "Win32-junction-point" = dontDistribute super."Win32-junction-point"; + "Win32-security" = dontDistribute super."Win32-security"; + "Win32-services" = dontDistribute super."Win32-services"; + "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper"; + "Wired" = dontDistribute super."Wired"; + "WordAlignment" = dontDistribute super."WordAlignment"; + "WordNet" = dontDistribute super."WordNet"; + "WordNet-ghc74" = dontDistribute super."WordNet-ghc74"; + "Wordlint" = dontDistribute super."Wordlint"; + "WxGeneric" = dontDistribute super."WxGeneric"; + "X11-extras" = dontDistribute super."X11-extras"; + "X11-rm" = dontDistribute super."X11-rm"; + "X11-xdamage" = dontDistribute super."X11-xdamage"; + "X11-xfixes" = dontDistribute super."X11-xfixes"; + "X11-xft" = dontDistribute super."X11-xft"; + "X11-xshape" = dontDistribute super."X11-xshape"; + "XAttr" = dontDistribute super."XAttr"; + "XInput" = dontDistribute super."XInput"; + "XMMS" = dontDistribute super."XMMS"; + "XMPP" = dontDistribute super."XMPP"; + "XSaiga" = dontDistribute super."XSaiga"; + "Xec" = dontDistribute super."Xec"; + "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter"; + "Xorshift128Plus" = dontDistribute super."Xorshift128Plus"; + "YACPong" = dontDistribute super."YACPong"; + "YFrob" = dontDistribute super."YFrob"; + "Yablog" = dontDistribute super."Yablog"; + "YamlReference" = dontDistribute super."YamlReference"; + "Yampa-core" = dontDistribute super."Yampa-core"; + "Yocto" = dontDistribute super."Yocto"; + "Yogurt" = dontDistribute super."Yogurt"; + "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone"; + "ZEBEDDE" = dontDistribute super."ZEBEDDE"; + "ZFS" = dontDistribute super."ZFS"; + "ZMachine" = dontDistribute super."ZMachine"; + "ZipFold" = dontDistribute super."ZipFold"; + "ZipperAG" = dontDistribute super."ZipperAG"; + "Zora" = dontDistribute super."Zora"; + "Zwaluw" = dontDistribute super."Zwaluw"; + "a50" = dontDistribute super."a50"; + "abacate" = dontDistribute super."abacate"; + "abc-puzzle" = dontDistribute super."abc-puzzle"; + "abcBridge" = dontDistribute super."abcBridge"; + "abcnotation" = dontDistribute super."abcnotation"; + "abeson" = dontDistribute super."abeson"; + "abstract-deque-tests" = dontDistribute super."abstract-deque-tests"; + "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate"; + "abt" = dontDistribute super."abt"; + "ac-machine" = dontDistribute super."ac-machine"; + "ac-machine-conduit" = dontDistribute super."ac-machine-conduit"; + "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic"; + "accelerate-cublas" = dontDistribute super."accelerate-cublas"; + "accelerate-cuda" = dontDistribute super."accelerate-cuda"; + "accelerate-cufft" = dontDistribute super."accelerate-cufft"; + "accelerate-examples" = dontDistribute super."accelerate-examples"; + "accelerate-fft" = dontDistribute super."accelerate-fft"; + "accelerate-fftw" = dontDistribute super."accelerate-fftw"; + "accelerate-fourier" = dontDistribute super."accelerate-fourier"; + "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; + "accelerate-io" = dontDistribute super."accelerate-io"; + "accelerate-random" = dontDistribute super."accelerate-random"; + "accelerate-utility" = dontDistribute super."accelerate-utility"; + "accentuateus" = dontDistribute super."accentuateus"; + "access-time" = dontDistribute super."access-time"; + "acid-state-dist" = dontDistribute super."acid-state-dist"; + "acid-state-tls" = dontDistribute super."acid-state-tls"; + "acl2" = dontDistribute super."acl2"; + "acme-all-monad" = dontDistribute super."acme-all-monad"; + "acme-box" = dontDistribute super."acme-box"; + "acme-cadre" = dontDistribute super."acme-cadre"; + "acme-cofunctor" = dontDistribute super."acme-cofunctor"; + "acme-colosson" = dontDistribute super."acme-colosson"; + "acme-comonad" = dontDistribute super."acme-comonad"; + "acme-cutegirl" = dontDistribute super."acme-cutegirl"; + "acme-dont" = dontDistribute super."acme-dont"; + "acme-flipping-tables" = dontDistribute super."acme-flipping-tables"; + "acme-grawlix" = dontDistribute super."acme-grawlix"; + "acme-hq9plus" = dontDistribute super."acme-hq9plus"; + "acme-http" = dontDistribute super."acme-http"; + "acme-inator" = dontDistribute super."acme-inator"; + "acme-io" = dontDistribute super."acme-io"; + "acme-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-diff" = dontDistribute super."aeson-diff"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-lens" = dontDistribute super."aeson-lens"; + "aeson-native" = dontDistribute super."aeson-native"; + "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-schema" = dontDistribute super."aeson-schema"; + "aeson-serialize" = dontDistribute super."aeson-serialize"; + "aeson-smart" = dontDistribute super."aeson-smart"; + "aeson-streams" = dontDistribute super."aeson-streams"; + "aeson-t" = dontDistribute super."aeson-t"; + "aeson-toolkit" = dontDistribute super."aeson-toolkit"; + "aeson-value-parser" = dontDistribute super."aeson-value-parser"; + "aeson-yak" = dontDistribute super."aeson-yak"; + "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc"; + "afis" = dontDistribute super."afis"; + "afv" = dontDistribute super."afv"; + "ag-pictgen" = dontDistribute super."ag-pictgen"; + "agda-server" = dontDistribute super."agda-server"; + "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; + "agum" = dontDistribute super."agum"; + "aig" = dontDistribute super."aig"; + "air" = dontDistribute super."air"; + "air-extra" = dontDistribute super."air-extra"; + "air-spec" = dontDistribute super."air-spec"; + "air-th" = dontDistribute super."air-th"; + "airbrake" = dontDistribute super."airbrake"; + "aivika" = dontDistribute super."aivika"; + "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-experiment" = dontDistribute super."aivika-experiment"; + "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; + "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; + "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams"; + "aivika-transformers" = dontDistribute super."aivika-transformers"; + "ajhc" = dontDistribute super."ajhc"; + "al" = dontDistribute super."al"; + "alea" = dontDistribute super."alea"; + "alex-meta" = dontDistribute super."alex-meta"; + "alfred" = dontDistribute super."alfred"; + "alga" = dontDistribute super."alga"; + "algebra" = dontDistribute super."algebra"; + "algebra-dag" = dontDistribute super."algebra-dag"; + "algebra-sql" = dontDistribute super."algebra-sql"; + "algebraic" = dontDistribute super."algebraic"; + "algebraic-classes" = dontDistribute super."algebraic-classes"; + "align" = dontDistribute super."align"; + "align-text" = dontDistribute super."align-text"; + "aligned-foreignptr" = dontDistribute super."aligned-foreignptr"; + "allocated-processor" = dontDistribute super."allocated-processor"; + "alloy" = dontDistribute super."alloy"; + "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd"; + "almost-fix" = dontDistribute super."almost-fix"; + "alms" = dontDistribute super."alms"; + "alpha" = dontDistribute super."alpha"; + "alpino-tools" = dontDistribute super."alpino-tools"; + "alsa" = dontDistribute super."alsa"; + "alsa-core" = dontDistribute super."alsa-core"; + "alsa-gui" = dontDistribute super."alsa-gui"; + "alsa-midi" = dontDistribute super."alsa-midi"; + "alsa-mixer" = dontDistribute super."alsa-mixer"; + "alsa-pcm" = dontDistribute super."alsa-pcm"; + "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests"; + "alsa-seq" = dontDistribute super."alsa-seq"; + "alsa-seq-tests" = dontDistribute super."alsa-seq-tests"; + "altcomposition" = dontDistribute super."altcomposition"; + "alternative-io" = dontDistribute super."alternative-io"; + "altfloat" = dontDistribute super."altfloat"; + "alure" = dontDistribute super."alure"; + "amazon-emailer" = dontDistribute super."amazon-emailer"; + "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; + "amazon-products" = dontDistribute super."amazon-products"; + "ampersand" = dontDistribute super."ampersand"; + "amqp-conduit" = dontDistribute super."amqp-conduit"; + "amrun" = dontDistribute super."amrun"; + "analyze-client" = dontDistribute super."analyze-client"; + "anansi" = dontDistribute super."anansi"; + "anansi-hscolour" = dontDistribute super."anansi-hscolour"; + "anansi-pandoc" = dontDistribute super."anansi-pandoc"; + "anatomy" = dontDistribute super."anatomy"; + "android" = dontDistribute super."android"; + "android-lint-summary" = dontDistribute super."android-lint-summary"; + "animalcase" = dontDistribute super."animalcase"; + "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-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"; + "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; + "apportionment" = dontDistribute super."apportionment"; + "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate-equality" = dontDistribute super."approximate-equality"; + "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; + "arb-fft" = dontDistribute super."arb-fft"; + "arbb-vm" = dontDistribute super."arbb-vm"; + "archive" = dontDistribute super."archive"; + "archiver" = dontDistribute super."archiver"; + "archlinux" = dontDistribute super."archlinux"; + "archlinux-web" = dontDistribute super."archlinux-web"; + "archnews" = dontDistribute super."archnews"; + "arff" = dontDistribute super."arff"; + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon2" = dontDistribute super."argon2"; + "argparser" = dontDistribute super."argparser"; + "arguedit" = dontDistribute super."arguedit"; + "ariadne" = dontDistribute super."ariadne"; + "arion" = dontDistribute super."arion"; + "arith-encode" = dontDistribute super."arith-encode"; + "arithmatic" = dontDistribute super."arithmatic"; + "arithmetic" = dontDistribute super."arithmetic"; + "arithmoi" = dontDistribute super."arithmoi"; + "armada" = dontDistribute super."armada"; + "arpa" = dontDistribute super."arpa"; + "array-forth" = dontDistribute super."array-forth"; + "array-memoize" = dontDistribute super."array-memoize"; + "array-primops" = dontDistribute super."array-primops"; + "array-utils" = dontDistribute super."array-utils"; + "arrow-improve" = dontDistribute super."arrow-improve"; + "arrowapply-utils" = dontDistribute super."arrowapply-utils"; + "arrowp" = dontDistribute super."arrowp"; + "arrows" = dontDistribute super."arrows"; + "artery" = dontDistribute super."artery"; + "arx" = dontDistribute super."arx"; + "arxiv" = dontDistribute super."arxiv"; + "ascetic" = dontDistribute super."ascetic"; + "ascii" = dontDistribute super."ascii"; + "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; + "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; + "asic" = dontDistribute super."asic"; + "asil" = dontDistribute super."asil"; + "asn1-data" = dontDistribute super."asn1-data"; + "asn1dump" = dontDistribute super."asn1dump"; + "assembler" = dontDistribute super."assembler"; + "assert" = dontDistribute super."assert"; + "assert-failure" = dontDistribute super."assert-failure"; + "assertions" = dontDistribute super."assertions"; + "assimp" = dontDistribute super."assimp"; + "astar" = dontDistribute super."astar"; + "astrds" = dontDistribute super."astrds"; + "astview" = dontDistribute super."astview"; + "astview-utils" = dontDistribute super."astview-utils"; + "async-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" = dontDistribute super."atom-conduit"; + "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; + "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; + "atomic-write" = dontDistribute super."atomic-write"; + "atomo" = dontDistribute super."atomo"; + "atp-haskell" = dontDistribute super."atp-haskell"; + "atrans" = dontDistribute super."atrans"; + "attempt" = dontDistribute super."attempt"; + "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec-arff" = dontDistribute super."attoparsec-arff"; + "attoparsec-binary" = dontDistribute super."attoparsec-binary"; + "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; + "attoparsec-csv" = dontDistribute super."attoparsec-csv"; + "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee"; + "attoparsec-parsec" = dontDistribute super."attoparsec-parsec"; + "attoparsec-text" = dontDistribute super."attoparsec-text"; + "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator"; + "attosplit" = dontDistribute super."attosplit"; + "atuin" = dontDistribute super."atuin"; + "audacity" = dontDistribute super."audacity"; + "audiovisual" = dontDistribute super."audiovisual"; + "augeas" = dontDistribute super."augeas"; + "augur" = dontDistribute super."augur"; + "aur" = dontDistribute super."aur"; + "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; + "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authinfo-hs" = dontDistribute super."authinfo-hs"; + "authoring" = dontDistribute super."authoring"; + "autoexporter" = dontDistribute super."autoexporter"; + "autonix-deps" = dontDistribute super."autonix-deps"; + "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; + "autoproc" = dontDistribute super."autoproc"; + "avahi" = dontDistribute super."avahi"; + "avatar-generator" = dontDistribute super."avatar-generator"; + "average" = dontDistribute super."average"; + "avl-static" = dontDistribute super."avl-static"; + "avr-shake" = dontDistribute super."avr-shake"; + "awesome-prelude" = dontDistribute super."awesome-prelude"; + "awesomium" = dontDistribute super."awesomium"; + "awesomium-glut" = dontDistribute super."awesomium-glut"; + "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; + "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; + "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; + "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams"; + "aws-ec2" = dontDistribute super."aws-ec2"; + "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder"; + "aws-general" = dontDistribute super."aws-general"; + "aws-kinesis" = dontDistribute super."aws-kinesis"; + "aws-kinesis-client" = dontDistribute super."aws-kinesis-client"; + "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard"; + "aws-lambda" = dontDistribute super."aws-lambda"; + "aws-performance-tests" = dontDistribute super."aws-performance-tests"; + "aws-route53" = dontDistribute super."aws-route53"; + "aws-sdk" = dontDistribute super."aws-sdk"; + "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter"; + "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered"; + "aws-sign4" = dontDistribute super."aws-sign4"; + "aws-sns" = dontDistribute super."aws-sns"; + "azure-acs" = dontDistribute super."azure-acs"; + "azure-service-api" = dontDistribute super."azure-service-api"; + "azure-servicebus" = dontDistribute super."azure-servicebus"; + "azurify" = dontDistribute super."azurify"; + "b-tree" = dontDistribute super."b-tree"; + "babylon" = dontDistribute super."babylon"; + "backdropper" = dontDistribute super."backdropper"; + "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; + "backward-state" = dontDistribute super."backward-state"; + "bacteria" = dontDistribute super."bacteria"; + "bag" = dontDistribute super."bag"; + "bamboo" = dontDistribute super."bamboo"; + "bamboo-launcher" = dontDistribute super."bamboo-launcher"; + "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight"; + "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo"; + "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint"; + "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5"; + "bamse" = dontDistribute super."bamse"; + "bamstats" = dontDistribute super."bamstats"; + "bank-holiday-usa" = dontDistribute super."bank-holiday-usa"; + "banwords" = dontDistribute super."banwords"; + "barchart" = dontDistribute super."barchart"; + "barcodes-code128" = dontDistribute super."barcodes-code128"; + "barecheck" = dontDistribute super."barecheck"; + "barley" = dontDistribute super."barley"; + "barrie" = dontDistribute super."barrie"; + "barrier-monad" = dontDistribute super."barrier-monad"; + "base-generics" = dontDistribute super."base-generics"; + "base-io-access" = dontDistribute super."base-io-access"; + "base-prelude" = doDistribute super."base-prelude_0_1_21"; + "base32-bytestring" = dontDistribute super."base32-bytestring"; + "base58-bytestring" = dontDistribute super."base58-bytestring"; + "base58address" = dontDistribute super."base58address"; + "base64-conduit" = dontDistribute super."base64-conduit"; + "base91" = dontDistribute super."base91"; + "basex-client" = dontDistribute super."basex-client"; + "bash" = dontDistribute super."bash"; + "basic-lens" = dontDistribute super."basic-lens"; + "basic-sop" = dontDistribute super."basic-sop"; + "baskell" = dontDistribute super."baskell"; + "battlenet" = dontDistribute super."battlenet"; + "battlenet-yesod" = dontDistribute super."battlenet-yesod"; + "battleships" = dontDistribute super."battleships"; + "bayes-stack" = dontDistribute super."bayes-stack"; + "bbdb" = dontDistribute super."bbdb"; + "bbi" = dontDistribute super."bbi"; + "bdd" = dontDistribute super."bdd"; + "bdelta" = dontDistribute super."bdelta"; + "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; + "beamable" = dontDistribute super."beamable"; + "beautifHOL" = dontDistribute super."beautifHOL"; + "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; + "bein" = dontDistribute super."bein"; + "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"; + "bibtex" = dontDistribute super."bibtex"; + "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; + "bidispec" = dontDistribute super."bidispec"; + "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; + "billboard-parser" = dontDistribute super."billboard-parser"; + "billeksah-forms" = dontDistribute super."billeksah-forms"; + "billeksah-main" = dontDistribute super."billeksah-main"; + "billeksah-main-static" = dontDistribute super."billeksah-main-static"; + "billeksah-pane" = dontDistribute super."billeksah-pane"; + "billeksah-services" = dontDistribute super."billeksah-services"; + "bimaps" = dontDistribute super."bimaps"; + "binary-bits" = dontDistribute super."binary-bits"; + "binary-communicator" = dontDistribute super."binary-communicator"; + "binary-derive" = dontDistribute super."binary-derive"; + "binary-enum" = dontDistribute super."binary-enum"; + "binary-file" = dontDistribute super."binary-file"; + "binary-generic" = dontDistribute super."binary-generic"; + "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-protocol" = dontDistribute super."binary-protocol"; + "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; + "binary-shared" = dontDistribute super."binary-shared"; + "binary-state" = dontDistribute super."binary-state"; + "binary-store" = dontDistribute super."binary-store"; + "binary-streams" = dontDistribute super."binary-streams"; + "binary-strict" = dontDistribute super."binary-strict"; + "binarydefer" = dontDistribute super."binarydefer"; + "bind-marshal" = dontDistribute super."bind-marshal"; + "binding-core" = dontDistribute super."binding-core"; + "binding-gtk" = dontDistribute super."binding-gtk"; + "binding-wx" = dontDistribute super."binding-wx"; + "bindings" = dontDistribute super."bindings"; + "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-K8055" = dontDistribute super."bindings-K8055"; + "bindings-apr" = dontDistribute super."bindings-apr"; + "bindings-apr-util" = dontDistribute super."bindings-apr-util"; + "bindings-audiofile" = dontDistribute super."bindings-audiofile"; + "bindings-bfd" = dontDistribute super."bindings-bfd"; + "bindings-cctools" = dontDistribute super."bindings-cctools"; + "bindings-codec2" = dontDistribute super."bindings-codec2"; + "bindings-common" = dontDistribute super."bindings-common"; + "bindings-dc1394" = dontDistribute super."bindings-dc1394"; + "bindings-directfb" = dontDistribute super."bindings-directfb"; + "bindings-eskit" = dontDistribute super."bindings-eskit"; + "bindings-fann" = dontDistribute super."bindings-fann"; + "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth"; + "bindings-friso" = dontDistribute super."bindings-friso"; + "bindings-glib" = dontDistribute super."bindings-glib"; + "bindings-gobject" = dontDistribute super."bindings-gobject"; + "bindings-gpgme" = dontDistribute super."bindings-gpgme"; + "bindings-gsl" = dontDistribute super."bindings-gsl"; + "bindings-gts" = dontDistribute super."bindings-gts"; + "bindings-hamlib" = dontDistribute super."bindings-hamlib"; + "bindings-hdf5" = dontDistribute super."bindings-hdf5"; + "bindings-levmar" = dontDistribute super."bindings-levmar"; + "bindings-libcddb" = dontDistribute super."bindings-libcddb"; + "bindings-libffi" = dontDistribute super."bindings-libffi"; + "bindings-libftdi" = dontDistribute super."bindings-libftdi"; + "bindings-librrd" = dontDistribute super."bindings-librrd"; + "bindings-libstemmer" = dontDistribute super."bindings-libstemmer"; + "bindings-libusb" = dontDistribute super."bindings-libusb"; + "bindings-libv4l2" = dontDistribute super."bindings-libv4l2"; + "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2"; + "bindings-lxc" = dontDistribute super."bindings-lxc"; + "bindings-mmap" = dontDistribute super."bindings-mmap"; + "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal"; + "bindings-nettle" = dontDistribute super."bindings-nettle"; + "bindings-parport" = dontDistribute super."bindings-parport"; + "bindings-portaudio" = dontDistribute super."bindings-portaudio"; + "bindings-potrace" = dontDistribute super."bindings-potrace"; + "bindings-ppdev" = dontDistribute super."bindings-ppdev"; + "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd"; + "bindings-sane" = dontDistribute super."bindings-sane"; + "bindings-sc3" = dontDistribute super."bindings-sc3"; + "bindings-sipc" = dontDistribute super."bindings-sipc"; + "bindings-sophia" = dontDistribute super."bindings-sophia"; + "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; + "bindings-svm" = dontDistribute super."bindings-svm"; + "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; + "binembed" = dontDistribute super."binembed"; + "binembed-example" = dontDistribute super."binembed-example"; + "bini" = dontDistribute super."bini"; + "bio" = dontDistribute super."bio"; + "biohazard" = dontDistribute super."biohazard"; + "bioinformatics-toolkit" = dontDistribute super."bioinformatics-toolkit"; + "biosff" = dontDistribute super."biosff"; + "biostockholm" = dontDistribute super."biostockholm"; + "bird" = dontDistribute super."bird"; + "bit-array" = dontDistribute super."bit-array"; + "bit-vector" = dontDistribute super."bit-vector"; + "bitarray" = dontDistribute super."bitarray"; + "bitcoin-rpc" = dontDistribute super."bitcoin-rpc"; + "bitly-cli" = dontDistribute super."bitly-cli"; + "bitmap" = dontDistribute super."bitmap"; + "bitmap-opengl" = dontDistribute super."bitmap-opengl"; + "bitmaps" = dontDistribute super."bitmaps"; + "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-conduit" = dontDistribute super."bits-conduit"; + "bits-extras" = dontDistribute super."bits-extras"; + "bitset" = dontDistribute super."bitset"; + "bitspeak" = dontDistribute super."bitspeak"; + "bitstream" = dontDistribute super."bitstream"; + "bitstring" = dontDistribute super."bitstring"; + "bittorrent" = dontDistribute super."bittorrent"; + "bitvec" = dontDistribute super."bitvec"; + "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; + "bk-tree" = dontDistribute super."bk-tree"; + "bkr" = dontDistribute super."bkr"; + "bktrees" = dontDistribute super."bktrees"; + "bla" = dontDistribute super."bla"; + "black-jewel" = dontDistribute super."black-jewel"; + "blacktip" = dontDistribute super."blacktip"; + "blakesum" = dontDistribute super."blakesum"; + "blakesum-demo" = dontDistribute super."blakesum-demo"; + "blas" = dontDistribute super."blas"; + "blas-hs" = dontDistribute super."blas-hs"; + "blatex" = dontDistribute super."blatex"; + "blaze" = dontDistribute super."blaze"; + "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; + "blaze-from-html" = dontDistribute super."blaze-from-html"; + "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; + "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat"; + "blaze-html-truncate" = dontDistribute super."blaze-html-truncate"; + "blaze-json" = dontDistribute super."blaze-json"; + "blaze-shields" = dontDistribute super."blaze-shields"; + "blaze-textual-native" = dontDistribute super."blaze-textual-native"; + "blazeMarker" = dontDistribute super."blazeMarker"; + "blink1" = dontDistribute super."blink1"; + "blip" = dontDistribute super."blip"; + "bliplib" = dontDistribute super."bliplib"; + "blocking-transactions" = dontDistribute super."blocking-transactions"; + "blogination" = dontDistribute super."blogination"; + "bloodhound" = dontDistribute super."bloodhound"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloxorz" = dontDistribute super."bloxorz"; + "blubber" = dontDistribute super."blubber"; + "blubber-server" = dontDistribute super."blubber-server"; + "bluetile" = dontDistribute super."bluetile"; + "bluetileutils" = dontDistribute super."bluetileutils"; + "blunt" = dontDistribute super."blunt"; + "board-games" = dontDistribute super."board-games"; + "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; + "boolean-list" = dontDistribute super."boolean-list"; + "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; + "boolexpr" = dontDistribute super."boolexpr"; + "bools" = dontDistribute super."bools"; + "boolsimplifier" = dontDistribute super."boolsimplifier"; + "boomange" = dontDistribute super."boomange"; + "boombox" = dontDistribute super."boombox"; + "boomslang" = dontDistribute super."boomslang"; + "borel" = dontDistribute super."borel"; + "bot" = dontDistribute super."bot"; + "botpp" = dontDistribute super."botpp"; + "bound-gen" = dontDistribute super."bound-gen"; + "bounded-tchan" = dontDistribute super."bounded-tchan"; + "boundingboxes" = dontDistribute super."boundingboxes"; + "bowntz" = dontDistribute super."bowntz"; + "bpann" = dontDistribute super."bpann"; + "braid" = dontDistribute super."braid"; + "brainfuck" = dontDistribute super."brainfuck"; + "brainfuck-monad" = dontDistribute super."brainfuck-monad"; + "brainfuck-tut" = dontDistribute super."brainfuck-tut"; + "break" = dontDistribute super."break"; + "breakout" = dontDistribute super."breakout"; + "breve" = dontDistribute super."breve"; + "brians-brain" = dontDistribute super."brians-brain"; + "brillig" = dontDistribute super."brillig"; + "broccoli" = dontDistribute super."broccoli"; + "broker-haskell" = dontDistribute super."broker-haskell"; + "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson-generic" = dontDistribute super."bson-generic"; + "bson-generics" = dontDistribute super."bson-generics"; + "bson-mapping" = dontDistribute super."bson-mapping"; + "bspack" = dontDistribute super."bspack"; + "bsparse" = dontDistribute super."bsparse"; + "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; + "buffer-pipe" = dontDistribute super."buffer-pipe"; + "buffon" = dontDistribute super."buffon"; + "bugzilla" = dontDistribute super."bugzilla"; + "buildable" = dontDistribute super."buildable"; + "buildbox" = dontDistribute super."buildbox"; + "buildbox-tools" = dontDistribute super."buildbox-tools"; + "buildwrapper" = dontDistribute super."buildwrapper"; + "bullet" = dontDistribute super."bullet"; + "burst-detection" = dontDistribute super."burst-detection"; + "bus-pirate" = dontDistribute super."bus-pirate"; + "buster" = dontDistribute super."buster"; + "buster-gtk" = dontDistribute super."buster-gtk"; + "buster-network" = dontDistribute super."buster-network"; + "butterflies" = dontDistribute super."butterflies"; + "bv" = dontDistribute super."bv"; + "byline" = dontDistribute super."byline"; + "bytable" = dontDistribute super."bytable"; + "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-class" = dontDistribute super."bytestring-class"; + "bytestring-csv" = dontDistribute super."bytestring-csv"; + "bytestring-delta" = dontDistribute super."bytestring-delta"; + "bytestring-from" = dontDistribute super."bytestring-from"; + "bytestring-nums" = dontDistribute super."bytestring-nums"; + "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-rematch" = dontDistribute super."bytestring-rematch"; + "bytestring-short" = dontDistribute super."bytestring-short"; + "bytestring-show" = dontDistribute super."bytestring-show"; + "bytestring-tree-builder" = dontDistribute super."bytestring-tree-builder"; + "bytestringparser" = dontDistribute super."bytestringparser"; + "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary"; + "bytestringreadp" = dontDistribute super."bytestringreadp"; + "c-dsl" = dontDistribute super."c-dsl"; + "c-io" = dontDistribute super."c-io"; + "c-storable-deriving" = dontDistribute super."c-storable-deriving"; + "c0check" = dontDistribute super."c0check"; + "c0parser" = dontDistribute super."c0parser"; + "c10k" = dontDistribute super."c10k"; + "c2hsc" = dontDistribute super."c2hsc"; + "cab" = dontDistribute super."cab"; + "cabal-audit" = dontDistribute super."cabal-audit"; + "cabal-bounds" = dontDistribute super."cabal-bounds"; + "cabal-cargs" = dontDistribute super."cabal-cargs"; + "cabal-constraints" = dontDistribute super."cabal-constraints"; + "cabal-db" = dontDistribute super."cabal-db"; + "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; + "cabal-dev" = dontDistribute super."cabal-dev"; + "cabal-dir" = dontDistribute super."cabal-dir"; + "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags"; + "cabal-ghci" = dontDistribute super."cabal-ghci"; + "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; + "cabal-info" = dontDistribute super."cabal-info"; + "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; + "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; + "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; + "cabal-lenses" = dontDistribute super."cabal-lenses"; + "cabal-macosx" = dontDistribute super."cabal-macosx"; + "cabal-meta" = dontDistribute super."cabal-meta"; + "cabal-mon" = dontDistribute super."cabal-mon"; + "cabal-nirvana" = dontDistribute super."cabal-nirvana"; + "cabal-progdeps" = dontDistribute super."cabal-progdeps"; + "cabal-query" = dontDistribute super."cabal-query"; + "cabal-scripts" = dontDistribute super."cabal-scripts"; + "cabal-setup" = dontDistribute super."cabal-setup"; + "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-test" = dontDistribute super."cabal-test"; + "cabal-test-bin" = dontDistribute super."cabal-test-bin"; + "cabal-test-compat" = dontDistribute super."cabal-test-compat"; + "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck"; + "cabal-uninstall" = dontDistribute super."cabal-uninstall"; + "cabal-upload" = dontDistribute super."cabal-upload"; + "cabal2arch" = dontDistribute super."cabal2arch"; + "cabal2doap" = dontDistribute super."cabal2doap"; + "cabal2ebuild" = dontDistribute super."cabal2ebuild"; + "cabal2ghci" = dontDistribute super."cabal2ghci"; + "cabal2nix" = dontDistribute super."cabal2nix"; + "cabal2spec" = dontDistribute super."cabal2spec"; + "cabalQuery" = dontDistribute super."cabalQuery"; + "cabalg" = dontDistribute super."cabalg"; + "cabalgraph" = dontDistribute super."cabalgraph"; + "cabalmdvrpm" = dontDistribute super."cabalmdvrpm"; + "cabalrpmdeps" = dontDistribute super."cabalrpmdeps"; + "cabalvchk" = dontDistribute super."cabalvchk"; + "cabin" = dontDistribute super."cabin"; + "cabocha" = dontDistribute super."cabocha"; + "cached-io" = dontDistribute super."cached-io"; + "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = doDistribute super."cacophony_0_4_0"; + "caf" = dontDistribute super."caf"; + "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; + "caffegraph" = dontDistribute super."caffegraph"; + "cairo-appbase" = dontDistribute super."cairo-appbase"; + "cake" = dontDistribute super."cake"; + "cake3" = dontDistribute super."cake3"; + "cakyrespa" = dontDistribute super."cakyrespa"; + "cal3d" = dontDistribute super."cal3d"; + "cal3d-examples" = dontDistribute super."cal3d-examples"; + "cal3d-opengl" = dontDistribute super."cal3d-opengl"; + "calc" = dontDistribute super."calc"; + "caldims" = dontDistribute super."caldims"; + "caledon" = dontDistribute super."caledon"; + "call" = dontDistribute super."call"; + "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; + "camh" = dontDistribute super."camh"; + "campfire" = dontDistribute super."campfire"; + "canonical-filepath" = dontDistribute super."canonical-filepath"; + "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; + "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; + "cantor" = dontDistribute super."cantor"; + "cao" = dontDistribute super."cao"; + "cap" = dontDistribute super."cap"; + "capped-list" = dontDistribute super."capped-list"; + "capri" = dontDistribute super."capri"; + "car-pool" = dontDistribute super."car-pool"; + "caramia" = dontDistribute super."caramia"; + "carboncopy" = dontDistribute super."carboncopy"; + "carettah" = dontDistribute super."carettah"; + "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; + "casadi-bindings" = dontDistribute super."casadi-bindings"; + "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; + "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; + "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal"; + "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface"; + "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; + "cascading" = dontDistribute super."cascading"; + "case-conversion" = dontDistribute super."case-conversion"; + "cash" = dontDistribute super."cash"; + "casing" = dontDistribute super."casing"; + "casr-logbook" = dontDistribute super."casr-logbook"; + "cassandra-cql" = dontDistribute super."cassandra-cql"; + "cassandra-thrift" = dontDistribute super."cassandra-thrift"; + "cassava-conduit" = dontDistribute super."cassava-conduit"; + "cassava-streams" = dontDistribute super."cassava-streams"; + "cassette" = dontDistribute super."cassette"; + "cassy" = dontDistribute super."cassy"; + "castle" = dontDistribute super."castle"; + "casui" = dontDistribute super."casui"; + "catamorphism" = dontDistribute super."catamorphism"; + "catch-fd" = dontDistribute super."catch-fd"; + "categorical-algebra" = dontDistribute super."categorical-algebra"; + "categories" = dontDistribute super."categories"; + "category-extras" = dontDistribute super."category-extras"; + "category-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-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; + "cereal-derive" = dontDistribute super."cereal-derive"; + "cereal-enumerator" = dontDistribute super."cereal-enumerator"; + "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-text" = dontDistribute super."cereal-text"; + "certificate" = dontDistribute super."certificate"; + "cf" = dontDistribute super."cf"; + "cfipu" = dontDistribute super."cfipu"; + "cflp" = dontDistribute super."cflp"; + "cfopu" = dontDistribute super."cfopu"; + "cg" = dontDistribute super."cg"; + "cgen" = dontDistribute super."cgen"; + "cgi" = doDistribute super."cgi_3001_2_2_3"; + "cgi-undecidable" = dontDistribute super."cgi-undecidable"; + "cgi-utils" = dontDistribute super."cgi-utils"; + "cgrep" = dontDistribute super."cgrep"; + "chain-codes" = dontDistribute super."chain-codes"; + "chalk" = dontDistribute super."chalk"; + "chalkboard" = dontDistribute super."chalkboard"; + "chalkboard-viewer" = dontDistribute super."chalkboard-viewer"; + "chalmers-lava2000" = dontDistribute super."chalmers-lava2000"; + "chan-split" = dontDistribute super."chan-split"; + "change-monger" = dontDistribute super."change-monger"; + "charade" = dontDistribute super."charade"; + "charsetdetect" = dontDistribute super."charsetdetect"; + "chart-histogram" = dontDistribute super."chart-histogram"; + "chaselev-deque" = dontDistribute super."chaselev-deque"; + "chatter" = dontDistribute super."chatter"; + "chatty" = dontDistribute super."chatty"; + "chatty-text" = dontDistribute super."chatty-text"; + "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; + "check-pvp" = dontDistribute super."check-pvp"; + "checked" = dontDistribute super."checked"; + "chell-hunit" = dontDistribute super."chell-hunit"; + "chesshs" = dontDistribute super."chesshs"; + "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; + "chp" = dontDistribute super."chp"; + "chp-mtl" = dontDistribute super."chp-mtl"; + "chp-plus" = dontDistribute super."chp-plus"; + "chp-spec" = dontDistribute super."chp-spec"; + "chp-transformers" = dontDistribute super."chp-transformers"; + "chronograph" = dontDistribute super."chronograph"; + "chu2" = dontDistribute super."chu2"; + "chuchu" = dontDistribute super."chuchu"; + "chunks" = dontDistribute super."chunks"; + "chunky" = dontDistribute super."chunky"; + "church-list" = dontDistribute super."church-list"; + "cil" = dontDistribute super."cil"; + "cinvoke" = dontDistribute super."cinvoke"; + "cio" = dontDistribute super."cio"; + "cipher-rc5" = dontDistribute super."cipher-rc5"; + "ciphersaber2" = dontDistribute super."ciphersaber2"; + "circ" = dontDistribute super."circ"; + "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-ghc" = doDistribute super."clash-ghc_0_6_10"; + "clash-lib" = doDistribute super."clash-lib_0_6_10"; + "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_6_5"; + "clash-verilog" = doDistribute super."clash-verilog_0_6_5"; + "clash-vhdl" = doDistribute super."clash-vhdl_0_6_7"; + "classify" = dontDistribute super."classify"; + "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; + "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; + "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; + "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks"; + "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap"; + "cld2" = dontDistribute super."cld2"; + "clean-home" = dontDistribute super."clean-home"; + "clean-unions" = dontDistribute super."clean-unions"; + "cless" = dontDistribute super."cless"; + "clevercss" = dontDistribute super."clevercss"; + "cli" = dontDistribute super."cli"; + "click-clack" = dontDistribute super."click-clack"; + "clifford" = dontDistribute super."clifford"; + "clippard" = dontDistribute super."clippard"; + "clipper" = dontDistribute super."clipper"; + "clippings" = dontDistribute super."clippings"; + "clist" = dontDistribute super."clist"; + "clocked" = dontDistribute super."clocked"; + "clogparse" = dontDistribute super."clogparse"; + "clone-all" = dontDistribute super."clone-all"; + "closure" = dontDistribute super."closure"; + "cloud-haskell" = dontDistribute super."cloud-haskell"; + "cloudfront-signer" = dontDistribute super."cloudfront-signer"; + "cloudyfs" = dontDistribute super."cloudyfs"; + "cltw" = dontDistribute super."cltw"; + "clua" = dontDistribute super."clua"; + "clumpiness" = dontDistribute super."clumpiness"; + "cluss" = dontDistribute super."cluss"; + "clustertools" = dontDistribute super."clustertools"; + "clutterhs" = dontDistribute super."clutterhs"; + "cmaes" = dontDistribute super."cmaes"; + "cmath" = dontDistribute super."cmath"; + "cmathml3" = dontDistribute super."cmathml3"; + "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs-browser" = dontDistribute super."cmdargs-browser"; + "cmdlib" = dontDistribute super."cmdlib"; + "cmdtheline" = dontDistribute super."cmdtheline"; + "cml" = dontDistribute super."cml"; + "cmonad" = dontDistribute super."cmonad"; + "cmu" = dontDistribute super."cmu"; + "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; + "cndict" = dontDistribute super."cndict"; + "codec" = dontDistribute super."codec"; + "codec-libevent" = dontDistribute super."codec-libevent"; + "codec-mbox" = dontDistribute super."codec-mbox"; + "codecov-haskell" = dontDistribute super."codecov-haskell"; + "codemonitor" = dontDistribute super."codemonitor"; + "codepad" = dontDistribute super."codepad"; + "codo-notation" = dontDistribute super."codo-notation"; + "cofunctor" = dontDistribute super."cofunctor"; + "cognimeta-utils" = dontDistribute super."cognimeta-utils"; + "coinbase-exchange" = dontDistribute super."coinbase-exchange"; + "colada" = dontDistribute super."colada"; + "colchis" = dontDistribute super."colchis"; + "collada-output" = dontDistribute super."collada-output"; + "collada-types" = dontDistribute super."collada-types"; + "collapse-util" = dontDistribute super."collapse-util"; + "collection-json" = dontDistribute super."collection-json"; + "collections" = dontDistribute super."collections"; + "collections-api" = dontDistribute super."collections-api"; + "collections-base-instances" = dontDistribute super."collections-base-instances"; + "colock" = dontDistribute super."colock"; + "colorize-haskell" = dontDistribute super."colorize-haskell"; + "colors" = dontDistribute super."colors"; + "coltrane" = dontDistribute super."coltrane"; + "com" = dontDistribute super."com"; + "combinat" = dontDistribute super."combinat"; + "combinat-diagrams" = dontDistribute super."combinat-diagrams"; + "combinator-interactive" = dontDistribute super."combinator-interactive"; + "combinatorial-problems" = dontDistribute super."combinatorial-problems"; + "combinatorics" = dontDistribute super."combinatorics"; + "combobuffer" = dontDistribute super."combobuffer"; + "comfort-graph" = dontDistribute super."comfort-graph"; + "command" = dontDistribute super."command"; + "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; + "commodities" = dontDistribute super."commodities"; + "commsec" = dontDistribute super."commsec"; + "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; + "comonad-extras" = dontDistribute super."comonad-extras"; + "comonad-random" = dontDistribute super."comonad-random"; + "compact-map" = dontDistribute super."compact-map"; + "compact-socket" = dontDistribute super."compact-socket"; + "compact-string" = dontDistribute super."compact-string"; + "compact-string-fix" = dontDistribute super."compact-string-fix"; + "compare-type" = dontDistribute super."compare-type"; + "compdata-automata" = dontDistribute super."compdata-automata"; + "compdata-dags" = dontDistribute super."compdata-dags"; + "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = dontDistribute super."compensated"; + "competition" = dontDistribute super."competition"; + "compilation" = dontDistribute super."compilation"; + "complex-generic" = dontDistribute super."complex-generic"; + "complex-integrate" = dontDistribute super."complex-integrate"; + "complexity" = dontDistribute super."complexity"; + "compose-ltr" = dontDistribute super."compose-ltr"; + "compose-trans" = dontDistribute super."compose-trans"; + "compression" = dontDistribute super."compression"; + "compstrat" = dontDistribute super."compstrat"; + "comptrans" = dontDistribute super."comptrans"; + "computational-algebra" = dontDistribute super."computational-algebra"; + "computations" = dontDistribute super."computations"; + "conceit" = dontDistribute super."conceit"; + "concorde" = dontDistribute super."concorde"; + "concraft" = dontDistribute super."concraft"; + "concraft-hr" = dontDistribute super."concraft-hr"; + "concraft-pl" = dontDistribute super."concraft-pl"; + "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser"; + "concrete-typerep" = dontDistribute super."concrete-typerep"; + "concurrent-barrier" = dontDistribute super."concurrent-barrier"; + "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = dontDistribute super."concurrent-extra"; + "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; + "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" = doDistribute super."conduit_1_2_6_3"; + "conduit-audio" = dontDistribute super."conduit-audio"; + "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; + "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; + "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; + "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; + "conf" = dontDistribute super."conf"; + "config-select" = dontDistribute super."config-select"; + "config-value" = dontDistribute super."config-value"; + "configifier" = dontDistribute super."configifier"; + "configuration" = dontDistribute super."configuration"; + "configuration-tools" = dontDistribute super."configuration-tools"; + "confsolve" = dontDistribute super."confsolve"; + "congruence-relation" = dontDistribute super."congruence-relation"; + "conjugateGradient" = dontDistribute super."conjugateGradient"; + "conjure" = dontDistribute super."conjure"; + "conlogger" = dontDistribute super."conlogger"; + "connection-pool" = dontDistribute super."connection-pool"; + "consistent" = dontDistribute super."consistent"; + "console-program" = dontDistribute super."console-program"; + "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; + "constrained-categories" = dontDistribute super."constrained-categories"; + "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; + "constructible" = dontDistribute super."constructible"; + "constructive-algebra" = dontDistribute super."constructive-algebra"; + "consumers" = dontDistribute super."consumers"; + "container" = dontDistribute super."container"; + "container-classes" = dontDistribute super."container-classes"; + "containers-benchmark" = dontDistribute super."containers-benchmark"; + "containers-deepseq" = dontDistribute super."containers-deepseq"; + "context-free-grammar" = dontDistribute super."context-free-grammar"; + "context-stack" = dontDistribute super."context-stack"; + "continue" = dontDistribute super."continue"; + "continued-fractions" = dontDistribute super."continued-fractions"; + "continuum" = dontDistribute super."continuum"; + "continuum-client" = dontDistribute super."continuum-client"; + "control-event" = dontDistribute super."control-event"; + "control-monad-attempt" = dontDistribute super."control-monad-attempt"; + "control-monad-exception" = dontDistribute super."control-monad-exception"; + "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd"; + "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf"; + "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl"; + "control-monad-failure" = dontDistribute super."control-monad-failure"; + "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl"; + "control-monad-omega" = dontDistribute super."control-monad-omega"; + "control-monad-queue" = dontDistribute super."control-monad-queue"; + "control-timeout" = dontDistribute super."control-timeout"; + "contstuff" = dontDistribute super."contstuff"; + "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf"; + "contstuff-transformers" = dontDistribute super."contstuff-transformers"; + "converge" = dontDistribute super."converge"; + "conversion" = dontDistribute super."conversion"; + "conversion-bytestring" = dontDistribute super."conversion-bytestring"; + "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive"; + "conversion-text" = dontDistribute super."conversion-text"; + "convert" = dontDistribute super."convert"; + "convertible-ascii" = dontDistribute super."convertible-ascii"; + "convertible-text" = dontDistribute super."convertible-text"; + "cookbook" = dontDistribute super."cookbook"; + "coordinate" = dontDistribute super."coordinate"; + "copilot" = dontDistribute super."copilot"; + "copilot-c99" = dontDistribute super."copilot-c99"; + "copilot-cbmc" = dontDistribute super."copilot-cbmc"; + "copilot-core" = dontDistribute super."copilot-core"; + "copilot-language" = dontDistribute super."copilot-language"; + "copilot-libraries" = dontDistribute super."copilot-libraries"; + "copilot-sbv" = dontDistribute super."copilot-sbv"; + "copilot-theorem" = dontDistribute super."copilot-theorem"; + "copr" = dontDistribute super."copr"; + "core" = dontDistribute super."core"; + "core-haskell" = dontDistribute super."core-haskell"; + "corebot-bliki" = dontDistribute super."corebot-bliki"; + "coroutine-enumerator" = dontDistribute super."coroutine-enumerator"; + "coroutine-iteratee" = dontDistribute super."coroutine-iteratee"; + "coroutine-object" = dontDistribute super."coroutine-object"; + "couch-hs" = dontDistribute super."couch-hs"; + "couch-simple" = dontDistribute super."couch-simple"; + "couchdb-conduit" = dontDistribute super."couchdb-conduit"; + "couchdb-enumerator" = dontDistribute super."couchdb-enumerator"; + "count" = dontDistribute super."count"; + "countable" = dontDistribute super."countable"; + "counter" = dontDistribute super."counter"; + "court" = dontDistribute super."court"; + "coverage" = dontDistribute super."coverage"; + "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; + "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; + "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; + "cpsa" = dontDistribute super."cpsa"; + "cpuid" = dontDistribute super."cpuid"; + "cpuperf" = dontDistribute super."cpuperf"; + "cpython" = dontDistribute super."cpython"; + "cqrs" = dontDistribute super."cqrs"; + "cqrs-core" = dontDistribute super."cqrs-core"; + "cqrs-example" = dontDistribute super."cqrs-example"; + "cqrs-memory" = dontDistribute super."cqrs-memory"; + "cqrs-postgresql" = dontDistribute super."cqrs-postgresql"; + "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3"; + "cqrs-test" = dontDistribute super."cqrs-test"; + "cqrs-testkit" = dontDistribute super."cqrs-testkit"; + "cqrs-types" = dontDistribute super."cqrs-types"; + "cr" = dontDistribute super."cr"; + "crack" = dontDistribute super."crack"; + "craftwerk" = dontDistribute super."craftwerk"; + "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; + "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "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-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; + "crypto-random-effect" = dontDistribute super."crypto-random-effect"; + "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptsy-api" = dontDistribute super."cryptsy-api"; + "crystalfontz" = dontDistribute super."crystalfontz"; + "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; + "csound-catalog" = dontDistribute super."csound-catalog"; + "csound-expression" = dontDistribute super."csound-expression"; + "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic"; + "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes"; + "csound-expression-typed" = dontDistribute super."csound-expression-typed"; + "csound-sampler" = dontDistribute super."csound-sampler"; + "csp" = dontDistribute super."csp"; + "cspmchecker" = dontDistribute super."cspmchecker"; + "css" = dontDistribute super."css"; + "csv-enumerator" = dontDistribute super."csv-enumerator"; + "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-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"; + "d3js" = dontDistribute super."d3js"; + "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; + "daemons" = dontDistribute super."daemons"; + "dag" = dontDistribute super."dag"; + "damnpacket" = dontDistribute super."damnpacket"; + "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-extra" = dontDistribute super."data-default-extra"; + "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; + "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; + "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; + "data-default-instances-text" = dontDistribute super."data-default-instances-text"; + "data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers"; + "data-default-instances-vector" = dontDistribute super."data-default-instances-vector"; + "data-dispersal" = dontDistribute super."data-dispersal"; + "data-dword" = dontDistribute super."data-dword"; + "data-easy" = dontDistribute super."data-easy"; + "data-embed" = dontDistribute super."data-embed"; + "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; + "data-extra" = dontDistribute super."data-extra"; + "data-filepath" = dontDistribute super."data-filepath"; + "data-fin" = dontDistribute super."data-fin"; + "data-fin-simple" = dontDistribute super."data-fin-simple"; + "data-fix" = dontDistribute super."data-fix"; + "data-fix-cse" = dontDistribute super."data-fix-cse"; + "data-flags" = dontDistribute super."data-flags"; + "data-flagset" = dontDistribute super."data-flagset"; + "data-fresh" = dontDistribute super."data-fresh"; + "data-interval" = dontDistribute super."data-interval"; + "data-ivar" = dontDistribute super."data-ivar"; + "data-json-token" = dontDistribute super."data-json-token"; + "data-kiln" = dontDistribute super."data-kiln"; + "data-layer" = dontDistribute super."data-layer"; + "data-layout" = dontDistribute super."data-layout"; + "data-lens" = dontDistribute super."data-lens"; + "data-lens-fd" = dontDistribute super."data-lens-fd"; + "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-template" = dontDistribute super."data-lens-template"; + "data-list-sequences" = dontDistribute super."data-list-sequences"; + "data-map-multikey" = dontDistribute super."data-map-multikey"; + "data-named" = dontDistribute super."data-named"; + "data-nat" = dontDistribute super."data-nat"; + "data-object" = dontDistribute super."data-object"; + "data-object-json" = dontDistribute super."data-object-json"; + "data-object-yaml" = dontDistribute super."data-object-yaml"; + "data-or" = dontDistribute super."data-or"; + "data-partition" = dontDistribute super."data-partition"; + "data-pprint" = dontDistribute super."data-pprint"; + "data-quotientref" = dontDistribute super."data-quotientref"; + "data-r-tree" = dontDistribute super."data-r-tree"; + "data-ref" = dontDistribute super."data-ref"; + "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; + "data-result" = dontDistribute super."data-result"; + "data-rev" = dontDistribute super."data-rev"; + "data-rope" = dontDistribute super."data-rope"; + "data-rtuple" = dontDistribute super."data-rtuple"; + "data-size" = dontDistribute super."data-size"; + "data-spacepart" = dontDistribute super."data-spacepart"; + "data-store" = dontDistribute super."data-store"; + "data-stringmap" = dontDistribute super."data-stringmap"; + "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-tensor" = dontDistribute super."data-tensor"; + "data-textual" = dontDistribute super."data-textual"; + "data-timeout" = dontDistribute super."data-timeout"; + "data-transform" = dontDistribute super."data-transform"; + "data-treify" = dontDistribute super."data-treify"; + "data-type" = dontDistribute super."data-type"; + "data-util" = dontDistribute super."data-util"; + "data-variant" = dontDistribute super."data-variant"; + "database-migrate" = dontDistribute super."database-migrate"; + "database-study" = dontDistribute super."database-study"; + "dataenc" = dontDistribute super."dataenc"; + "dataflow" = dontDistribute super."dataflow"; + "datalog" = dontDistribute super."datalog"; + "datapacker" = dontDistribute super."datapacker"; + "dataurl" = dontDistribute super."dataurl"; + "date-cache" = dontDistribute super."date-cache"; + "dates" = dontDistribute super."dates"; + "datetime" = dontDistribute super."datetime"; + "datetime-sb" = dontDistribute super."datetime-sb"; + "dawdle" = dontDistribute super."dawdle"; + "dawg" = dontDistribute super."dawg"; + "dbcleaner" = dontDistribute super."dbcleaner"; + "dbf" = dontDistribute super."dbf"; + "dbjava" = dontDistribute super."dbjava"; + "dbmigrations" = doDistribute super."dbmigrations_1_0"; + "dbus-client" = dontDistribute super."dbus-client"; + "dbus-core" = dontDistribute super."dbus-core"; + "dbus-qq" = dontDistribute super."dbus-qq"; + "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; + "dclabel" = dontDistribute super."dclabel"; + "dclabel-eci11" = dontDistribute super."dclabel-eci11"; + "ddc-base" = dontDistribute super."ddc-base"; + "ddc-build" = dontDistribute super."ddc-build"; + "ddc-code" = dontDistribute super."ddc-code"; + "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-eval" = dontDistribute super."ddc-core-eval"; + "ddc-core-flow" = dontDistribute super."ddc-core-flow"; + "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; + "ddc-core-salt" = dontDistribute super."ddc-core-salt"; + "ddc-core-simpl" = dontDistribute super."ddc-core-simpl"; + "ddc-core-tetra" = dontDistribute super."ddc-core-tetra"; + "ddc-driver" = dontDistribute super."ddc-driver"; + "ddc-interface" = dontDistribute super."ddc-interface"; + "ddc-source-tetra" = dontDistribute super."ddc-source-tetra"; + "ddc-tools" = dontDistribute super."ddc-tools"; + "ddc-war" = dontDistribute super."ddc-war"; + "ddci-core" = dontDistribute super."ddci-core"; + "dead-code-detection" = dontDistribute super."dead-code-detection"; + "dead-simple-json" = dontDistribute super."dead-simple-json"; + "debian-binary" = dontDistribute super."debian-binary"; + "debian-build" = dontDistribute super."debian-build"; + "debug-diff" = dontDistribute super."debug-diff"; + "debug-time" = dontDistribute super."debug-time"; + "decepticons" = dontDistribute super."decepticons"; + "decode-utf8" = dontDistribute super."decode-utf8"; + "decoder-conduit" = dontDistribute super."decoder-conduit"; + "dedukti" = dontDistribute super."dedukti"; + "deepcontrol" = dontDistribute super."deepcontrol"; + "deeplearning-hs" = dontDistribute super."deeplearning-hs"; + "deepseq-bounded" = dontDistribute super."deepseq-bounded"; + "deepseq-magic" = dontDistribute super."deepseq-magic"; + "deepseq-th" = dontDistribute super."deepseq-th"; + "deepzoom" = dontDistribute super."deepzoom"; + "defargs" = dontDistribute super."defargs"; + "definitive-base" = dontDistribute super."definitive-base"; + "definitive-filesystem" = dontDistribute super."definitive-filesystem"; + "definitive-graphics" = dontDistribute super."definitive-graphics"; + "definitive-parser" = dontDistribute super."definitive-parser"; + "definitive-reactive" = dontDistribute super."definitive-reactive"; + "definitive-sound" = dontDistribute super."definitive-sound"; + "deiko-config" = dontDistribute super."deiko-config"; + "deka" = dontDistribute super."deka"; + "deka-tests" = dontDistribute super."deka-tests"; + "delaunay" = dontDistribute super."delaunay"; + "delicious" = dontDistribute super."delicious"; + "delimited-text" = dontDistribute super."delimited-text"; + "delimiter-separated" = dontDistribute super."delimiter-separated"; + "delta" = dontDistribute super."delta"; + "delta-h" = dontDistribute super."delta-h"; + "demarcate" = dontDistribute super."demarcate"; + "denominate" = dontDistribute super."denominate"; + "dependent-state" = dontDistribute super."dependent-state"; + "depends" = dontDistribute super."depends"; + "dephd" = dontDistribute super."dephd"; + "dequeue" = dontDistribute super."dequeue"; + "derangement" = dontDistribute super."derangement"; + "derivation-trees" = dontDistribute super."derivation-trees"; + "derive-IG" = dontDistribute super."derive-IG"; + "derive-enumerable" = dontDistribute super."derive-enumerable"; + "derive-gadt" = dontDistribute super."derive-gadt"; + "derive-monoid" = dontDistribute super."derive-monoid"; + "derive-topdown" = dontDistribute super."derive-topdown"; + "derive-trie" = dontDistribute super."derive-trie"; + "deriving-compat" = dontDistribute super."deriving-compat"; + "derp" = dontDistribute super."derp"; + "derp-lib" = dontDistribute super."derp-lib"; + "descrilo" = dontDistribute super."descrilo"; + "despair" = dontDistribute super."despair"; + "deterministic-game-engine" = dontDistribute super."deterministic-game-engine"; + "detrospector" = dontDistribute super."detrospector"; + "deunicode" = dontDistribute super."deunicode"; + "devil" = dontDistribute super."devil"; + "dewdrop" = dontDistribute super."dewdrop"; + "dfrac" = dontDistribute super."dfrac"; + "dfsbuild" = dontDistribute super."dfsbuild"; + "dgim" = dontDistribute super."dgim"; + "dgs" = dontDistribute super."dgs"; + "dia-base" = dontDistribute super."dia-base"; + "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-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-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; + "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; + "dicom" = dontDistribute super."dicom"; + "dictparser" = dontDistribute super."dictparser"; + "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; + "diff-parse" = dontDistribute super."diff-parse"; + "diffarray" = dontDistribute super."diffarray"; + "diffcabal" = dontDistribute super."diffcabal"; + "diffdump" = dontDistribute super."diffdump"; + "digamma" = dontDistribute super."digamma"; + "digest-pure" = dontDistribute super."digest-pure"; + "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; + "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; + "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; + "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp"; + "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty"; + "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; + "digit" = dontDistribute super."digit"; + "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "dimensional-codata" = dontDistribute super."dimensional-codata"; + "dimensional-tf" = dontDistribute super."dimensional-tf"; + "dingo-core" = dontDistribute super."dingo-core"; + "dingo-example" = dontDistribute super."dingo-example"; + "dingo-widgets" = dontDistribute super."dingo-widgets"; + "diophantine" = dontDistribute super."diophantine"; + "diplomacy" = dontDistribute super."diplomacy"; + "diplomacy-server" = dontDistribute super."diplomacy-server"; + "direct-binary-files" = dontDistribute super."direct-binary-files"; + "direct-daemonize" = dontDistribute super."direct-daemonize"; + "direct-fastcgi" = dontDistribute super."direct-fastcgi"; + "direct-http" = dontDistribute super."direct-http"; + "direct-murmur-hash" = dontDistribute super."direct-murmur-hash"; + "direct-plugins" = dontDistribute super."direct-plugins"; + "directed-cubical" = dontDistribute super."directed-cubical"; + "directory-layout" = dontDistribute super."directory-layout"; + "directory-listing-webpage-parser" = dontDistribute super."directory-listing-webpage-parser"; + "dirfiles" = dontDistribute super."dirfiles"; + "dirstream" = dontDistribute super."dirstream"; + "disassembler" = dontDistribute super."disassembler"; + "discordian-calendar" = dontDistribute super."discordian-calendar"; + "discount" = dontDistribute super."discount"; + "discrete-space-map" = dontDistribute super."discrete-space-map"; + "discrimination" = dontDistribute super."discrimination"; + "disjoint-set" = dontDistribute super."disjoint-set"; + "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; + "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; + "distributed-process" = doDistribute super."distributed-process_0_5_5_1"; + "distributed-process-async" = dontDistribute super."distributed-process-async"; + "distributed-process-azure" = dontDistribute super."distributed-process-azure"; + "distributed-process-client-server" = dontDistribute super."distributed-process-client-server"; + "distributed-process-ekg" = dontDistribute super."distributed-process-ekg"; + "distributed-process-execution" = dontDistribute super."distributed-process-execution"; + "distributed-process-extras" = dontDistribute super."distributed-process-extras"; + "distributed-process-lifted" = dontDistribute super."distributed-process-lifted"; + "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control"; + "distributed-process-p2p" = dontDistribute super."distributed-process-p2p"; + "distributed-process-platform" = dontDistribute super."distributed-process-platform"; + "distributed-process-registry" = dontDistribute super."distributed-process-registry"; + "distributed-process-simplelocalnet" = dontDistribute super."distributed-process-simplelocalnet"; + "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor"; + "distributed-process-task" = dontDistribute super."distributed-process-task"; + "distributed-process-tests" = dontDistribute super."distributed-process-tests"; + "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distribution" = dontDistribute super."distribution"; + "distribution-plot" = dontDistribute super."distribution-plot"; + "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" = dontDistribute super."doctest-discover"; + "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; + "doctest-prop" = dontDistribute super."doctest-prop"; + "dom-lt" = dontDistribute super."dom-lt"; + "dom-parser" = dontDistribute super."dom-parser"; + "dom-selector" = dontDistribute super."dom-selector"; + "domain-auth" = dontDistribute super."domain-auth"; + "dominion" = dontDistribute super."dominion"; + "domplate" = dontDistribute super."domplate"; + "dot2graphml" = dontDistribute super."dot2graphml"; + "dotfs" = dontDistribute super."dotfs"; + "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; + "double-metaphone" = dontDistribute super."double-metaphone"; + "dove" = dontDistribute super."dove"; + "dow" = dontDistribute super."dow"; + "download" = dontDistribute super."download"; + "download-curl" = dontDistribute super."download-curl"; + "download-media-content" = dontDistribute super."download-media-content"; + "dozenal" = dontDistribute super."dozenal"; + "dozens" = dontDistribute super."dozens"; + "dph-base" = dontDistribute super."dph-base"; + "dph-examples" = dontDistribute super."dph-examples"; + "dph-lifted-base" = dontDistribute super."dph-lifted-base"; + "dph-lifted-copy" = dontDistribute super."dph-lifted-copy"; + "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg"; + "dph-par" = dontDistribute super."dph-par"; + "dph-prim-interface" = dontDistribute super."dph-prim-interface"; + "dph-prim-par" = dontDistribute super."dph-prim-par"; + "dph-prim-seq" = dontDistribute super."dph-prim-seq"; + "dph-seq" = dontDistribute super."dph-seq"; + "dpkg" = dontDistribute super."dpkg"; + "drClickOn" = dontDistribute super."drClickOn"; + "draw-poker" = dontDistribute super."draw-poker"; + "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; + "dropbox-sdk" = dontDistribute super."dropbox-sdk"; + "dropsolve" = dontDistribute super."dropsolve"; + "ds-kanren" = dontDistribute super."ds-kanren"; + "dsh-sql" = dontDistribute super."dsh-sql"; + "dsmc" = dontDistribute super."dsmc"; + "dsmc-tools" = dontDistribute super."dsmc-tools"; + "dson" = dontDistribute super."dson"; + "dson-parsec" = dontDistribute super."dson-parsec"; + "dsp" = dontDistribute super."dsp"; + "dstring" = dontDistribute super."dstring"; + "dtab" = dontDistribute super."dtab"; + "dtd" = dontDistribute super."dtd"; + "dtd-text" = dontDistribute super."dtd-text"; + "dtd-types" = dontDistribute super."dtd-types"; + "dtrace" = dontDistribute super."dtrace"; + "dtw" = dontDistribute super."dtw"; + "dump" = dontDistribute super."dump"; + "duplo" = dontDistribute super."duplo"; + "dvda" = dontDistribute super."dvda"; + "dvdread" = dontDistribute super."dvdread"; + "dvi-processing" = dontDistribute super."dvi-processing"; + "dvorak" = dontDistribute super."dvorak"; + "dwarf" = dontDistribute super."dwarf"; + "dwarf-el" = dontDistribute super."dwarf-el"; + "dwarfadt" = dontDistribute super."dwarfadt"; + "dx9base" = dontDistribute super."dx9base"; + "dx9d3d" = dontDistribute super."dx9d3d"; + "dx9d3dx" = dontDistribute super."dx9d3dx"; + "dynamic-cabal" = dontDistribute super."dynamic-cabal"; + "dynamic-graph" = dontDistribute super."dynamic-graph"; + "dynamic-linker-template" = dontDistribute super."dynamic-linker-template"; + "dynamic-loader" = dontDistribute super."dynamic-loader"; + "dynamic-mvector" = dontDistribute super."dynamic-mvector"; + "dynamic-object" = dontDistribute super."dynamic-object"; + "dynamic-plot" = dontDistribute super."dynamic-plot"; + "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynobud" = dontDistribute super."dynobud"; + "dywapitchtrack" = dontDistribute super."dywapitchtrack"; + "dzen-utils" = dontDistribute super."dzen-utils"; + "eager-sockets" = dontDistribute super."eager-sockets"; + "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; + "easyjson" = dontDistribute super."easyjson"; + "easyplot" = dontDistribute super."easyplot"; + "easyrender" = dontDistribute super."easyrender"; + "ebeats" = dontDistribute super."ebeats"; + "ebnf-bff" = dontDistribute super."ebnf-bff"; + "ec2-signature" = dontDistribute super."ec2-signature"; + "ecdsa" = dontDistribute super."ecdsa"; + "ecma262" = dontDistribute super."ecma262"; + "ecu" = dontDistribute super."ecu"; + "ed25519" = dontDistribute super."ed25519"; + "ed25519-donna" = dontDistribute super."ed25519-donna"; + "eddie" = dontDistribute super."eddie"; + "edenmodules" = dontDistribute super."edenmodules"; + "edenskel" = dontDistribute super."edenskel"; + "edentv" = dontDistribute super."edentv"; + "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; + "edit-lenses" = dontDistribute super."edit-lenses"; + "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; + "editable" = dontDistribute super."editable"; + "editline" = dontDistribute super."editline"; + "effect-monad" = dontDistribute super."effect-monad"; + "effective-aspects" = dontDistribute super."effective-aspects"; + "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; + "effects" = dontDistribute super."effects"; + "effects-parser" = dontDistribute super."effects-parser"; + "effin" = dontDistribute super."effin"; + "egison" = dontDistribute super."egison"; + "egison-quote" = dontDistribute super."egison-quote"; + "egison-tutorial" = dontDistribute super."egison-tutorial"; + "ehaskell" = dontDistribute super."ehaskell"; + "ehs" = dontDistribute super."ehs"; + "eibd-client-simple" = dontDistribute super."eibd-client-simple"; + "eigen" = dontDistribute super."eigen"; + "eithers" = dontDistribute super."eithers"; + "ekg-bosun" = dontDistribute super."ekg-bosun"; + "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-log" = dontDistribute super."ekg-log"; + "ekg-push" = dontDistribute super."ekg-push"; + "ekg-rrd" = dontDistribute super."ekg-rrd"; + "ekg-statsd" = dontDistribute super."ekg-statsd"; + "electrum-mnemonic" = dontDistribute super."electrum-mnemonic"; + "elerea" = dontDistribute super."elerea"; + "elerea-examples" = dontDistribute super."elerea-examples"; + "elerea-sdl" = dontDistribute super."elerea-sdl"; + "elevator" = dontDistribute super."elevator"; + "elf" = dontDistribute super."elf"; + "elision" = dontDistribute super."elision"; + "elm-build-lib" = dontDistribute super."elm-build-lib"; + "elm-compiler" = dontDistribute super."elm-compiler"; + "elm-get" = dontDistribute super."elm-get"; + "elm-init" = dontDistribute super."elm-init"; + "elm-make" = dontDistribute super."elm-make"; + "elm-package" = dontDistribute super."elm-package"; + "elm-reactor" = dontDistribute super."elm-reactor"; + "elm-repl" = dontDistribute super."elm-repl"; + "elm-server" = dontDistribute super."elm-server"; + "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; + "elocrypt" = dontDistribute super."elocrypt"; + "emacs-keys" = dontDistribute super."emacs-keys"; + "email" = dontDistribute super."email"; + "email-header" = dontDistribute super."email-header"; + "email-postmark" = dontDistribute super."email-postmark"; + "email-validator" = dontDistribute super."email-validator"; + "embeddock" = dontDistribute super."embeddock"; + "embeddock-example" = dontDistribute super."embeddock-example"; + "embroidery" = dontDistribute super."embroidery"; + "emgm" = dontDistribute super."emgm"; + "empty" = dontDistribute super."empty"; + "encoding" = dontDistribute super."encoding"; + "endo" = dontDistribute super."endo"; + "engine-io-growler" = dontDistribute super."engine-io-growler"; + "engine-io-snap" = dontDistribute super."engine-io-snap"; + "engineering-units" = dontDistribute super."engineering-units"; + "enumerable" = dontDistribute super."enumerable"; + "enumerate" = dontDistribute super."enumerate"; + "enumeration" = dontDistribute super."enumeration"; + "enumerator-fd" = dontDistribute super."enumerator-fd"; + "enumerator-tf" = dontDistribute super."enumerator-tf"; + "enumfun" = dontDistribute super."enumfun"; + "enummapmap" = dontDistribute super."enummapmap"; + "enummapset" = dontDistribute super."enummapset"; + "enummapset-th" = dontDistribute super."enummapset-th"; + "enumset" = dontDistribute super."enumset"; + "env-parser" = dontDistribute super."env-parser"; + "envparse" = dontDistribute super."envparse"; + "epanet-haskell" = dontDistribute super."epanet-haskell"; + "epass" = dontDistribute super."epass"; + "epic" = dontDistribute super."epic"; + "epoll" = dontDistribute super."epoll"; + "eprocess" = dontDistribute super."eprocess"; + "epub" = dontDistribute super."epub"; + "epub-metadata" = dontDistribute super."epub-metadata"; + "epub-tools" = dontDistribute super."epub-tools"; + "epubname" = dontDistribute super."epubname"; + "equal-files" = dontDistribute super."equal-files"; + "equational-reasoning" = dontDistribute super."equational-reasoning"; + "erd" = dontDistribute super."erd"; + "erf-native" = dontDistribute super."erf-native"; + "erlang" = dontDistribute super."erlang"; + "eros" = dontDistribute super."eros"; + "eros-client" = dontDistribute super."eros-client"; + "eros-http" = dontDistribute super."eros-http"; + "errno" = dontDistribute super."errno"; + "error-analyze" = dontDistribute super."error-analyze"; + "error-continuations" = dontDistribute super."error-continuations"; + "error-list" = dontDistribute super."error-list"; + "error-loc" = dontDistribute super."error-loc"; + "error-location" = dontDistribute super."error-location"; + "error-message" = dontDistribute super."error-message"; + "error-util" = dontDistribute super."error-util"; + "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; + "ersatz" = dontDistribute super."ersatz"; + "ersatz-toysat" = dontDistribute super."ersatz-toysat"; + "ert" = dontDistribute super."ert"; + "esotericbot" = dontDistribute super."esotericbot"; + "ess" = dontDistribute super."ess"; + "estimator" = dontDistribute super."estimator"; + "estimators" = dontDistribute super."estimators"; + "estreps" = dontDistribute super."estreps"; + "eternal" = dontDistribute super."eternal"; + "ether" = doDistribute super."ether_0_3_1_1"; + "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; + "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; + "ethereum-rlp" = dontDistribute super."ethereum-rlp"; + "ety" = dontDistribute super."ety"; + "euler" = dontDistribute super."euler"; + "euphoria" = dontDistribute super."euphoria"; + "eurofxref" = dontDistribute super."eurofxref"; + "event-driven" = dontDistribute super."event-driven"; + "event-handlers" = dontDistribute super."event-handlers"; + "event-list" = dontDistribute super."event-list"; + "event-monad" = dontDistribute super."event-monad"; + "eventloop" = dontDistribute super."eventloop"; + "eventstore" = doDistribute super."eventstore_0_10_0_2"; + "every-bit-counts" = dontDistribute super."every-bit-counts"; + "ewe" = dontDistribute super."ewe"; + "ex-pool" = dontDistribute super."ex-pool"; + "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "exception-hierarchy" = dontDistribute super."exception-hierarchy"; + "exception-mailer" = dontDistribute super."exception-mailer"; + "exception-monads-fd" = dontDistribute super."exception-monads-fd"; + "exception-monads-tf" = dontDistribute super."exception-monads-tf"; + "exception-mtl" = dontDistribute super."exception-mtl"; + "exherbo-cabal" = dontDistribute super."exherbo-cabal"; + "exif" = dontDistribute super."exif"; + "exinst" = dontDistribute super."exinst"; + "exinst-aeson" = dontDistribute super."exinst-aeson"; + "exinst-bytes" = dontDistribute super."exinst-bytes"; + "exinst-deepseq" = dontDistribute super."exinst-deepseq"; + "exinst-hashable" = dontDistribute super."exinst-hashable"; + "existential" = dontDistribute super."existential"; + "exists" = dontDistribute super."exists"; + "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; + "exp-pairs" = dontDistribute super."exp-pairs"; + "expand" = dontDistribute super."expand"; + "expat-enumerator" = dontDistribute super."expat-enumerator"; + "expiring-mvar" = dontDistribute super."expiring-mvar"; + "explain" = dontDistribute super."explain"; + "explicit-determinant" = dontDistribute super."explicit-determinant"; + "explicit-iomodes" = dontDistribute super."explicit-iomodes"; + "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring"; + "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text"; + "explicit-sharing" = dontDistribute super."explicit-sharing"; + "explore" = dontDistribute super."explore"; + "exposed-containers" = dontDistribute super."exposed-containers"; + "expression-parser" = dontDistribute super."expression-parser"; + "extcore" = dontDistribute super."extcore"; + "extemp" = dontDistribute super."extemp"; + "extended-categories" = dontDistribute super."extended-categories"; + "extended-reals" = dontDistribute super."extended-reals"; + "extensible" = dontDistribute super."extensible"; + "extensible-data" = dontDistribute super."extensible-data"; + "external-sort" = dontDistribute super."external-sort"; + "extractelf" = dontDistribute super."extractelf"; + "ez-couch" = dontDistribute super."ez-couch"; + "faceted" = dontDistribute super."faceted"; + "factory" = dontDistribute super."factory"; + "factual-api" = dontDistribute super."factual-api"; + "fad" = dontDistribute super."fad"; + "failable-list" = dontDistribute super."failable-list"; + "failure" = dontDistribute super."failure"; + "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; + "faker" = dontDistribute super."faker"; + "falling-turnip" = dontDistribute super."falling-turnip"; + "fallingblocks" = dontDistribute super."fallingblocks"; + "family-tree" = dontDistribute super."family-tree"; + "fast-digits" = dontDistribute super."fast-digits"; + "fast-math" = dontDistribute super."fast-math"; + "fast-tags" = dontDistribute super."fast-tags"; + "fast-tagsoup" = dontDistribute super."fast-tagsoup"; + "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fastbayes" = dontDistribute super."fastbayes"; + "fastcgi" = dontDistribute super."fastcgi"; + "fastedit" = dontDistribute super."fastedit"; + "fastirc" = dontDistribute super."fastirc"; + "fault-tree" = dontDistribute super."fault-tree"; + "fay-geoposition" = dontDistribute super."fay-geoposition"; + "fay-hsx" = dontDistribute super."fay-hsx"; + "fay-ref" = dontDistribute super."fay-ref"; + "fca" = dontDistribute super."fca"; + "fcache" = dontDistribute super."fcache"; + "fcd" = dontDistribute super."fcd"; + "fckeditor" = dontDistribute super."fckeditor"; + "fclabels-monadlib" = dontDistribute super."fclabels-monadlib"; + "fdo-trash" = dontDistribute super."fdo-trash"; + "fec" = dontDistribute super."fec"; + "fedora-packages" = dontDistribute super."fedora-packages"; + "feed-cli" = dontDistribute super."feed-cli"; + "feed-collect" = dontDistribute super."feed-collect"; + "feed-crawl" = dontDistribute super."feed-crawl"; + "feed-translator" = dontDistribute super."feed-translator"; + "feed2lj" = dontDistribute super."feed2lj"; + "feed2twitter" = dontDistribute super."feed2twitter"; + "feldspar-compiler" = dontDistribute super."feldspar-compiler"; + "feldspar-language" = dontDistribute super."feldspar-language"; + "feldspar-signal" = dontDistribute super."feldspar-signal"; + "fen2s" = dontDistribute super."fen2s"; + "fences" = dontDistribute super."fences"; + "fenfire" = dontDistribute super."fenfire"; + "fez-conf" = dontDistribute super."fez-conf"; + "ffeed" = dontDistribute super."ffeed"; + "fficxx" = dontDistribute super."fficxx"; + "fficxx-runtime" = dontDistribute super."fficxx-runtime"; + "ffmpeg-light" = dontDistribute super."ffmpeg-light"; + "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; + "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; + "fgl-visualize" = dontDistribute super."fgl-visualize"; + "fibon" = dontDistribute super."fibon"; + "fibonacci" = dontDistribute super."fibonacci"; + "fields" = dontDistribute super."fields"; + "fields-json" = dontDistribute super."fields-json"; + "fieldwise" = dontDistribute super."fieldwise"; + "fig" = dontDistribute super."fig"; + "file-collection" = dontDistribute super."file-collection"; + "file-command-qq" = dontDistribute super."file-command-qq"; + "filediff" = dontDistribute super."filediff"; + "filepath-io-access" = dontDistribute super."filepath-io-access"; + "filepather" = dontDistribute super."filepather"; + "filestore" = dontDistribute super."filestore"; + "filesystem-conduit" = dontDistribute super."filesystem-conduit"; + "filesystem-enumerator" = dontDistribute super."filesystem-enumerator"; + "filesystem-trees" = dontDistribute super."filesystem-trees"; + "filtrable" = dontDistribute super."filtrable"; + "final" = dontDistribute super."final"; + "find-clumpiness" = dontDistribute super."find-clumpiness"; + "find-conduit" = dontDistribute super."find-conduit"; + "fingertree-tf" = dontDistribute super."fingertree-tf"; + "finite-field" = dontDistribute super."finite-field"; + "finite-typelits" = dontDistribute super."finite-typelits"; + "first-and-last" = dontDistribute super."first-and-last"; + "first-class-patterns" = dontDistribute super."first-class-patterns"; + "firstify" = dontDistribute super."firstify"; + "fishfood" = dontDistribute super."fishfood"; + "fit" = dontDistribute super."fit"; + "fitsio" = dontDistribute super."fitsio"; + "fix-imports" = dontDistribute super."fix-imports"; + "fix-parser-simple" = dontDistribute super."fix-parser-simple"; + "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit"; + "fixed-length" = dontDistribute super."fixed-length"; + "fixed-point" = dontDistribute super."fixed-point"; + "fixed-point-vector" = dontDistribute super."fixed-point-vector"; + "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space"; + "fixed-precision" = dontDistribute super."fixed-precision"; + "fixed-storable-array" = dontDistribute super."fixed-storable-array"; + "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; + "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixedprec" = dontDistribute super."fixedprec"; + "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; + "fixfile" = dontDistribute super."fixfile"; + "fixhs" = dontDistribute super."fixhs"; + "fixplate" = dontDistribute super."fixplate"; + "fixpoint" = dontDistribute super."fixpoint"; + "fixtime" = dontDistribute super."fixtime"; + "fizz-buzz" = dontDistribute super."fizz-buzz"; + "flaccuraterip" = dontDistribute super."flaccuraterip"; + "flamethrower" = dontDistribute super."flamethrower"; + "flamingra" = dontDistribute super."flamingra"; + "flat-maybe" = dontDistribute super."flat-maybe"; + "flat-mcmc" = dontDistribute super."flat-mcmc"; + "flat-tex" = dontDistribute super."flat-tex"; + "flexible-time" = dontDistribute super."flexible-time"; + "flexible-unlit" = dontDistribute super."flexible-unlit"; + "flexiwrap" = dontDistribute super."flexiwrap"; + "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck"; + "flickr" = dontDistribute super."flickr"; + "flippers" = dontDistribute super."flippers"; + "flite" = dontDistribute super."flite"; + "flo" = dontDistribute super."flo"; + "float-binstring" = dontDistribute super."float-binstring"; + "floating-bits" = dontDistribute super."floating-bits"; + "floatshow" = dontDistribute super."floatshow"; + "flow2dot" = dontDistribute super."flow2dot"; + "flowdock-api" = dontDistribute super."flowdock-api"; + "flowdock-rest" = dontDistribute super."flowdock-rest"; + "flower" = dontDistribute super."flower"; + "flowlocks-framework" = dontDistribute super."flowlocks-framework"; + "flowsim" = dontDistribute super."flowsim"; + "fltkhs" = dontDistribute super."fltkhs"; + "fltkhs-demos" = dontDistribute super."fltkhs-demos"; + "fltkhs-fluid-demos" = dontDistribute super."fltkhs-fluid-demos"; + "fltkhs-fluid-examples" = dontDistribute super."fltkhs-fluid-examples"; + "fltkhs-hello-world" = dontDistribute super."fltkhs-hello-world"; + "fluent-logger" = dontDistribute super."fluent-logger"; + "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; + "fluidsynth" = dontDistribute super."fluidsynth"; + "fmark" = dontDistribute super."fmark"; + "fn" = doDistribute super."fn_0_2_0_2"; + "fn-extra" = doDistribute super."fn-extra_0_2_0_1"; + "fold-debounce" = dontDistribute super."fold-debounce"; + "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl" = doDistribute super."foldl_1_1_5"; + "foldl-incremental" = dontDistribute super."foldl-incremental"; + "foldl-transduce" = dontDistribute super."foldl-transduce"; + "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; + "folds" = dontDistribute super."folds"; + "folds-common" = dontDistribute super."folds-common"; + "follower" = dontDistribute super."follower"; + "foma" = dontDistribute super."foma"; + "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6"; + "foo" = dontDistribute super."foo"; + "for-free" = dontDistribute super."for-free"; + "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "fordo" = dontDistribute super."fordo"; + "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; + "foreign-var" = dontDistribute super."foreign-var"; + "forger" = dontDistribute super."forger"; + "forkable-monad" = dontDistribute super."forkable-monad"; + "formal" = dontDistribute super."formal"; + "format" = dontDistribute super."format"; + "format-status" = dontDistribute super."format-status"; + "formattable" = dontDistribute super."formattable"; + "forml" = dontDistribute super."forml"; + "formlets" = dontDistribute super."formlets"; + "formlets-hsp" = dontDistribute super."formlets-hsp"; + "formura" = dontDistribute super."formura"; + "forth-hll" = dontDistribute super."forth-hll"; + "foscam-directory" = dontDistribute super."foscam-directory"; + "foscam-filename" = dontDistribute super."foscam-filename"; + "foscam-sort" = dontDistribute super."foscam-sort"; + "fountain" = dontDistribute super."fountain"; + "fpco-api" = dontDistribute super."fpco-api"; + "fpipe" = dontDistribute super."fpipe"; + "fpnla" = dontDistribute super."fpnla"; + "fpnla-examples" = dontDistribute super."fpnla-examples"; + "fptest" = dontDistribute super."fptest"; + "fquery" = dontDistribute super."fquery"; + "fractal" = dontDistribute super."fractal"; + "fractals" = dontDistribute super."fractals"; + "fraction" = dontDistribute super."fraction"; + "frag" = dontDistribute super."frag"; + "frame" = dontDistribute super."frame"; + "frame-markdown" = dontDistribute super."frame-markdown"; + "franchise" = dontDistribute super."franchise"; + "free-concurrent" = dontDistribute super."free-concurrent"; + "free-functors" = dontDistribute super."free-functors"; + "free-game" = dontDistribute super."free-game"; + "free-http" = dontDistribute super."free-http"; + "free-operational" = dontDistribute super."free-operational"; + "free-theorems" = dontDistribute super."free-theorems"; + "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples"; + "free-theorems-seq" = dontDistribute super."free-theorems-seq"; + "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui"; + "free-theorems-webui" = dontDistribute super."free-theorems-webui"; + "free-vl" = dontDistribute super."free-vl"; + "freekick2" = dontDistribute super."freekick2"; + "freer" = dontDistribute super."freer"; + "freesect" = dontDistribute super."freesect"; + "freesound" = dontDistribute super."freesound"; + "freetype-simple" = dontDistribute super."freetype-simple"; + "freetype2" = dontDistribute super."freetype2"; + "fresh" = dontDistribute super."fresh"; + "friday" = dontDistribute super."friday"; + "friday-devil" = dontDistribute super."friday-devil"; + "friday-juicypixels" = dontDistribute super."friday-juicypixels"; + "friday-scale-dct" = dontDistribute super."friday-scale-dct"; + "friendly-time" = dontDistribute super."friendly-time"; + "frown" = dontDistribute super."frown"; + "frp-arduino" = dontDistribute super."frp-arduino"; + "frpnow" = dontDistribute super."frpnow"; + "frpnow-gloss" = dontDistribute super."frpnow-gloss"; + "frpnow-gtk" = dontDistribute super."frpnow-gtk"; + "frquotes" = dontDistribute super."frquotes"; + "fs-events" = dontDistribute super."fs-events"; + "fsharp" = dontDistribute super."fsharp"; + "fsmActions" = dontDistribute super."fsmActions"; + "fst" = dontDistribute super."fst"; + "fsutils" = dontDistribute super."fsutils"; + "fswatcher" = dontDistribute super."fswatcher"; + "ftdi" = dontDistribute super."ftdi"; + "ftp-conduit" = dontDistribute super."ftp-conduit"; + "ftphs" = dontDistribute super."ftphs"; + "ftree" = dontDistribute super."ftree"; + "ftshell" = dontDistribute super."ftshell"; + "fugue" = dontDistribute super."fugue"; + "full-sessions" = dontDistribute super."full-sessions"; + "full-text-search" = dontDistribute super."full-text-search"; + "fullstop" = dontDistribute super."fullstop"; + "funbot" = dontDistribute super."funbot"; + "funbot-client" = dontDistribute super."funbot-client"; + "funbot-ext-events" = dontDistribute super."funbot-ext-events"; + "funbot-git-hook" = dontDistribute super."funbot-git-hook"; + "funcons-tools" = dontDistribute super."funcons-tools"; + "function-combine" = dontDistribute super."function-combine"; + "function-instances-algebra" = dontDistribute super."function-instances-algebra"; + "functional-arrow" = dontDistribute super."functional-arrow"; + "functional-kmp" = dontDistribute super."functional-kmp"; + "functor-apply" = dontDistribute super."functor-apply"; + "functor-combo" = dontDistribute super."functor-combo"; + "functor-infix" = dontDistribute super."functor-infix"; + "functor-monadic" = dontDistribute super."functor-monadic"; + "functor-utils" = dontDistribute super."functor-utils"; + "functorm" = dontDistribute super."functorm"; + "functors" = dontDistribute super."functors"; + "funion" = dontDistribute super."funion"; + "funpat" = dontDistribute super."funpat"; + "funsat" = dontDistribute super."funsat"; + "fusion" = dontDistribute super."fusion"; + "futun" = dontDistribute super."futun"; + "future" = dontDistribute super."future"; + "future-resource" = dontDistribute super."future-resource"; + "fuzzy" = dontDistribute super."fuzzy"; + "fuzzy-timings" = dontDistribute super."fuzzy-timings"; + "fuzzytime" = dontDistribute super."fuzzytime"; + "fwgl" = dontDistribute super."fwgl"; + "fwgl-glfw" = dontDistribute super."fwgl-glfw"; + "fwgl-javascript" = dontDistribute super."fwgl-javascript"; + "g-npm" = dontDistribute super."g-npm"; + "gact" = dontDistribute super."gact"; + "game-of-life" = dontDistribute super."game-of-life"; + "game-probability" = dontDistribute super."game-probability"; + "game-tree" = dontDistribute super."game-tree"; + "gameclock" = dontDistribute super."gameclock"; + "gamma" = dontDistribute super."gamma"; + "gang-of-threads" = dontDistribute super."gang-of-threads"; + "garepinoh" = dontDistribute super."garepinoh"; + "garsia-wachs" = dontDistribute super."garsia-wachs"; + "gbu" = dontDistribute super."gbu"; + "gc" = dontDistribute super."gc"; + "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai"; + "gconf" = dontDistribute super."gconf"; + "gdiff" = dontDistribute super."gdiff"; + "gdiff-ig" = dontDistribute super."gdiff-ig"; + "gdiff-th" = dontDistribute super."gdiff-th"; + "gdo" = dontDistribute super."gdo"; + "gearbox" = dontDistribute super."gearbox"; + "geek" = dontDistribute super."geek"; + "geek-server" = dontDistribute super."geek-server"; + "gelatin" = dontDistribute super."gelatin"; + "gemstone" = dontDistribute super."gemstone"; + "gencheck" = dontDistribute super."gencheck"; + "gender" = dontDistribute super."gender"; + "genders" = dontDistribute super."genders"; + "general-prelude" = dontDistribute super."general-prelude"; + "generator" = dontDistribute super."generator"; + "generators" = dontDistribute super."generators"; + "generic-accessors" = dontDistribute super."generic-accessors"; + "generic-binary" = dontDistribute super."generic-binary"; + "generic-church" = dontDistribute super."generic-church"; + "generic-deepseq" = dontDistribute super."generic-deepseq"; + "generic-deriving" = doDistribute super."generic-deriving_1_9_0"; + "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; + "generic-maybe" = dontDistribute super."generic-maybe"; + "generic-pretty" = dontDistribute super."generic-pretty"; + "generic-server" = dontDistribute super."generic-server"; + "generic-storable" = dontDistribute super."generic-storable"; + "generic-tree" = dontDistribute super."generic-tree"; + "generic-xml" = dontDistribute super."generic-xml"; + "genericserialize" = dontDistribute super."genericserialize"; + "genetics" = dontDistribute super."genetics"; + "geni-gui" = dontDistribute super."geni-gui"; + "geni-util" = dontDistribute super."geni-util"; + "geniconvert" = dontDistribute super."geniconvert"; + "genifunctors" = dontDistribute super."genifunctors"; + "geniplate" = dontDistribute super."geniplate"; + "geniserver" = dontDistribute super."geniserver"; + "genprog" = dontDistribute super."genprog"; + "gentlemark" = dontDistribute super."gentlemark"; + "geo-resolver" = dontDistribute super."geo-resolver"; + "geo-uk" = dontDistribute super."geo-uk"; + "geocalc" = dontDistribute super."geocalc"; + "geocode-google" = dontDistribute super."geocode-google"; + "geodetic" = dontDistribute super."geodetic"; + "geodetics" = dontDistribute super."geodetics"; + "geohash" = dontDistribute super."geohash"; + "geoip2" = dontDistribute super."geoip2"; + "geojson" = dontDistribute super."geojson"; + "geom2d" = dontDistribute super."geom2d"; + "getemx" = dontDistribute super."getemx"; + "getflag" = dontDistribute super."getflag"; + "getopt-simple" = dontDistribute super."getopt-simple"; + "gf" = dontDistribute super."gf"; + "ggtsTC" = dontDistribute super."ggtsTC"; + "ghc-core" = dontDistribute super."ghc-core"; + "ghc-core-html" = dontDistribute super."ghc-core-html"; + "ghc-datasize" = dontDistribute super."ghc-datasize"; + "ghc-dump-tree" = dontDistribute super."ghc-dump-tree"; + "ghc-dup" = dontDistribute super."ghc-dup"; + "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; + "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; + "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-imported-from" = dontDistribute super."ghc-imported-from"; + "ghc-make" = dontDistribute super."ghc-make"; + "ghc-man-completion" = dontDistribute super."ghc-man-completion"; + "ghc-options" = dontDistribute super."ghc-options"; + "ghc-parmake" = dontDistribute super."ghc-parmake"; + "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; + "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; + "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; + "ghc-server" = dontDistribute super."ghc-server"; + "ghc-simple" = dontDistribute super."ghc-simple"; + "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; + "ghc-syb" = dontDistribute super."ghc-syb"; + "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-vis" = dontDistribute super."ghc-vis"; + "ghci-diagrams" = dontDistribute super."ghci-diagrams"; + "ghci-haskeline" = dontDistribute super."ghci-haskeline"; + "ghci-lib" = dontDistribute super."ghci-lib"; + "ghci-ng" = dontDistribute super."ghci-ng"; + "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; + "ghcjs-dom" = dontDistribute super."ghcjs-dom"; + "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; + "ghcjs-websockets" = dontDistribute super."ghcjs-websockets"; + "ghclive" = dontDistribute super."ghclive"; + "ghczdecode" = dontDistribute super."ghczdecode"; + "ght" = dontDistribute super."ght"; + "gi-atk" = dontDistribute super."gi-atk"; + "gi-cairo" = dontDistribute super."gi-cairo"; + "gi-gdk" = dontDistribute super."gi-gdk"; + "gi-gdkpixbuf" = dontDistribute super."gi-gdkpixbuf"; + "gi-gio" = dontDistribute super."gi-gio"; + "gi-girepository" = dontDistribute super."gi-girepository"; + "gi-glib" = dontDistribute super."gi-glib"; + "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gtk" = dontDistribute super."gi-gtk"; + "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; + "gi-notify" = dontDistribute super."gi-notify"; + "gi-pango" = dontDistribute super."gi-pango"; + "gi-poppler" = dontDistribute super."gi-poppler"; + "gi-soup" = dontDistribute super."gi-soup"; + "gi-vte" = dontDistribute super."gi-vte"; + "gi-webkit" = dontDistribute super."gi-webkit"; + "gi-webkit2" = dontDistribute super."gi-webkit2"; + "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "gimlh" = dontDistribute super."gimlh"; + "ginger" = dontDistribute super."ginger"; + "ginsu" = dontDistribute super."ginsu"; + "gist" = dontDistribute super."gist"; + "git-all" = dontDistribute super."git-all"; + "git-annex" = doDistribute super."git-annex_6_20160114"; + "git-checklist" = dontDistribute super."git-checklist"; + "git-date" = dontDistribute super."git-date"; + "git-embed" = dontDistribute super."git-embed"; + "git-freq" = dontDistribute super."git-freq"; + "git-gpush" = dontDistribute super."git-gpush"; + "git-jump" = dontDistribute super."git-jump"; + "git-monitor" = dontDistribute super."git-monitor"; + "git-object" = dontDistribute super."git-object"; + "git-repair" = dontDistribute super."git-repair"; + "git-sanity" = dontDistribute super."git-sanity"; + "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; + "gitcache" = dontDistribute super."gitcache"; + "gitdo" = dontDistribute super."gitdo"; + "github-backup" = dontDistribute super."github-backup"; + "github-post-receive" = dontDistribute super."github-post-receive"; + "github-utils" = dontDistribute super."github-utils"; + "gitignore" = dontDistribute super."gitignore"; + "gitit" = dontDistribute super."gitit"; + "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; + "gitlib-cross" = dontDistribute super."gitlib-cross"; + "gitlib-s3" = dontDistribute super."gitlib-s3"; + "gitlib-sample" = dontDistribute super."gitlib-sample"; + "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; + "gl-capture" = dontDistribute super."gl-capture"; + "glade" = dontDistribute super."glade"; + "gladexml-accessor" = dontDistribute super."gladexml-accessor"; + "glambda" = dontDistribute super."glambda"; + "glapp" = dontDistribute super."glapp"; + "glasso" = dontDistribute super."glasso"; + "glicko" = dontDistribute super."glicko"; + "glider-nlp" = dontDistribute super."glider-nlp"; + "glintcollider" = dontDistribute super."glintcollider"; + "gll" = dontDistribute super."gll"; + "global" = dontDistribute super."global"; + "global-config" = dontDistribute super."global-config"; + "global-lock" = dontDistribute super."global-lock"; + "global-variables" = dontDistribute super."global-variables"; + "glome-hs" = dontDistribute super."glome-hs"; + "gloss" = dontDistribute super."gloss"; + "gloss-accelerate" = dontDistribute super."gloss-accelerate"; + "gloss-algorithms" = dontDistribute super."gloss-algorithms"; + "gloss-banana" = dontDistribute super."gloss-banana"; + "gloss-devil" = dontDistribute super."gloss-devil"; + "gloss-examples" = dontDistribute super."gloss-examples"; + "gloss-game" = dontDistribute super."gloss-game"; + "gloss-juicy" = dontDistribute super."gloss-juicy"; + "gloss-raster" = dontDistribute super."gloss-raster"; + "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate"; + "gloss-rendering" = dontDistribute super."gloss-rendering"; + "gloss-sodium" = dontDistribute super."gloss-sodium"; + "glpk-hs" = dontDistribute super."glpk-hs"; + "glue" = dontDistribute super."glue"; + "glue-common" = dontDistribute super."glue-common"; + "glue-core" = dontDistribute super."glue-core"; + "glue-ekg" = dontDistribute super."glue-ekg"; + "glue-example" = dontDistribute super."glue-example"; + "gluturtle" = dontDistribute super."gluturtle"; + "gmap" = dontDistribute super."gmap"; + "gmndl" = dontDistribute super."gmndl"; + "gnome-desktop" = dontDistribute super."gnome-desktop"; + "gnome-keyring" = dontDistribute super."gnome-keyring"; + "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; + "gnuplot" = dontDistribute super."gnuplot"; + "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; + "goatee" = dontDistribute super."goatee"; + "goatee-gtk" = dontDistribute super."goatee-gtk"; + "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gogol" = dontDistribute super."gogol"; + "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer"; + "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller"; + "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer"; + "gogol-admin-directory" = dontDistribute super."gogol-admin-directory"; + "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration"; + "gogol-admin-reports" = dontDistribute super."gogol-admin-reports"; + "gogol-adsense" = dontDistribute super."gogol-adsense"; + "gogol-adsense-host" = dontDistribute super."gogol-adsense-host"; + "gogol-affiliates" = dontDistribute super."gogol-affiliates"; + "gogol-analytics" = dontDistribute super."gogol-analytics"; + "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise"; + "gogol-android-publisher" = dontDistribute super."gogol-android-publisher"; + "gogol-appengine" = dontDistribute super."gogol-appengine"; + "gogol-apps-activity" = dontDistribute super."gogol-apps-activity"; + "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar"; + "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing"; + "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller"; + "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks"; + "gogol-appstate" = dontDistribute super."gogol-appstate"; + "gogol-autoscaler" = dontDistribute super."gogol-autoscaler"; + "gogol-bigquery" = dontDistribute super."gogol-bigquery"; + "gogol-billing" = dontDistribute super."gogol-billing"; + "gogol-blogger" = dontDistribute super."gogol-blogger"; + "gogol-books" = dontDistribute super."gogol-books"; + "gogol-civicinfo" = dontDistribute super."gogol-civicinfo"; + "gogol-classroom" = dontDistribute super."gogol-classroom"; + "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace"; + "gogol-compute" = dontDistribute super."gogol-compute"; + "gogol-container" = dontDistribute super."gogol-container"; + "gogol-core" = dontDistribute super."gogol-core"; + "gogol-customsearch" = dontDistribute super."gogol-customsearch"; + "gogol-dataflow" = dontDistribute super."gogol-dataflow"; + "gogol-datastore" = dontDistribute super."gogol-datastore"; + "gogol-debugger" = dontDistribute super."gogol-debugger"; + "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager"; + "gogol-dfareporting" = dontDistribute super."gogol-dfareporting"; + "gogol-discovery" = dontDistribute super."gogol-discovery"; + "gogol-dns" = dontDistribute super."gogol-dns"; + "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids"; + "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search"; + "gogol-drive" = dontDistribute super."gogol-drive"; + "gogol-fitness" = dontDistribute super."gogol-fitness"; + "gogol-fonts" = dontDistribute super."gogol-fonts"; + "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch"; + "gogol-fusiontables" = dontDistribute super."gogol-fusiontables"; + "gogol-games" = dontDistribute super."gogol-games"; + "gogol-games-configuration" = dontDistribute super."gogol-games-configuration"; + "gogol-games-management" = dontDistribute super."gogol-games-management"; + "gogol-genomics" = dontDistribute super."gogol-genomics"; + "gogol-gmail" = dontDistribute super."gogol-gmail"; + "gogol-groups-migration" = dontDistribute super."gogol-groups-migration"; + "gogol-groups-settings" = dontDistribute super."gogol-groups-settings"; + "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit"; + "gogol-latencytest" = dontDistribute super."gogol-latencytest"; + "gogol-logging" = dontDistribute super."gogol-logging"; + "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate"; + "gogol-maps-engine" = dontDistribute super."gogol-maps-engine"; + "gogol-mirror" = dontDistribute super."gogol-mirror"; + "gogol-monitoring" = dontDistribute super."gogol-monitoring"; + "gogol-oauth2" = dontDistribute super."gogol-oauth2"; + "gogol-pagespeed" = dontDistribute super."gogol-pagespeed"; + "gogol-partners" = dontDistribute super."gogol-partners"; + "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner"; + "gogol-plus" = dontDistribute super."gogol-plus"; + "gogol-plus-domains" = dontDistribute super."gogol-plus-domains"; + "gogol-prediction" = dontDistribute super."gogol-prediction"; + "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon"; + "gogol-pubsub" = dontDistribute super."gogol-pubsub"; + "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress"; + "gogol-replicapool" = dontDistribute super."gogol-replicapool"; + "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater"; + "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager"; + "gogol-resourceviews" = dontDistribute super."gogol-resourceviews"; + "gogol-shopping-content" = dontDistribute super."gogol-shopping-content"; + "gogol-siteverification" = dontDistribute super."gogol-siteverification"; + "gogol-spectrum" = dontDistribute super."gogol-spectrum"; + "gogol-sqladmin" = dontDistribute super."gogol-sqladmin"; + "gogol-storage" = dontDistribute super."gogol-storage"; + "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer"; + "gogol-tagmanager" = dontDistribute super."gogol-tagmanager"; + "gogol-taskqueue" = dontDistribute super."gogol-taskqueue"; + "gogol-translate" = dontDistribute super."gogol-translate"; + "gogol-urlshortener" = dontDistribute super."gogol-urlshortener"; + "gogol-useraccounts" = dontDistribute super."gogol-useraccounts"; + "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools"; + "gogol-youtube" = dontDistribute super."gogol-youtube"; + "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; + "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; + "gooey" = dontDistribute super."gooey"; + "google-dictionary" = dontDistribute super."google-dictionary"; + "google-drive" = dontDistribute super."google-drive"; + "google-html5-slide" = dontDistribute super."google-html5-slide"; + "google-mail-filters" = dontDistribute super."google-mail-filters"; + "google-oauth2" = dontDistribute super."google-oauth2"; + "google-search" = dontDistribute super."google-search"; + "googleplus" = dontDistribute super."googleplus"; + "googlepolyline" = dontDistribute super."googlepolyline"; + "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; + "gpah" = dontDistribute super."gpah"; + "gpcsets" = dontDistribute super."gpcsets"; + "gpolyline" = dontDistribute super."gpolyline"; + "gps" = dontDistribute super."gps"; + "gps2htmlReport" = dontDistribute super."gps2htmlReport"; + "gpx-conduit" = dontDistribute super."gpx-conduit"; + "graceful" = dontDistribute super."graceful"; + "grammar-combinators" = dontDistribute super."grammar-combinators"; + "grapefruit-examples" = dontDistribute super."grapefruit-examples"; + "grapefruit-frp" = dontDistribute super."grapefruit-frp"; + "grapefruit-records" = dontDistribute super."grapefruit-records"; + "grapefruit-ui" = dontDistribute super."grapefruit-ui"; + "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk"; + "graph-core" = doDistribute super."graph-core_0_2_2_0"; + "graph-generators" = dontDistribute super."graph-generators"; + "graph-matchings" = dontDistribute super."graph-matchings"; + "graph-rewriting" = dontDistribute super."graph-rewriting"; + "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl"; + "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl"; + "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope"; + "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout"; + "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski"; + "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies"; + "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs"; + "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww"; + "graph-serialize" = dontDistribute super."graph-serialize"; + "graph-utils" = dontDistribute super."graph-utils"; + "graph-visit" = dontDistribute super."graph-visit"; + "graphbuilder" = dontDistribute super."graphbuilder"; + "graphene" = dontDistribute super."graphene"; + "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators"; + "graphics-formats-collada" = dontDistribute super."graphics-formats-collada"; + "graphicsFormats" = dontDistribute super."graphicsFormats"; + "graphicstools" = dontDistribute super."graphicstools"; + "graphmod" = dontDistribute super."graphmod"; + "graphql" = dontDistribute super."graphql"; + "graphtype" = dontDistribute super."graphtype"; + "grasp" = dontDistribute super."grasp"; + "gray-code" = dontDistribute super."gray-code"; + "gray-extended" = dontDistribute super."gray-extended"; + "graylog" = dontDistribute super."graylog"; + "greencard" = dontDistribute super."greencard"; + "greencard-lib" = dontDistribute super."greencard-lib"; + "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; + "greplicate" = dontDistribute super."greplicate"; + "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; + "gridland" = dontDistribute super."gridland"; + "grm" = dontDistribute super."grm"; + "groundhog-inspector" = dontDistribute super."groundhog-inspector"; + "group-with" = dontDistribute super."group-with"; + "groupoid" = dontDistribute super."groupoid"; + "gruff" = dontDistribute super."gruff"; + "gruff-examples" = dontDistribute super."gruff-examples"; + "gsc-weighting" = dontDistribute super."gsc-weighting"; + "gsl-random" = dontDistribute super."gsl-random"; + "gsl-random-fu" = dontDistribute super."gsl-random-fu"; + "gsmenu" = dontDistribute super."gsmenu"; + "gstreamer" = dontDistribute super."gstreamer"; + "gt-tools" = dontDistribute super."gt-tools"; + "gtfs" = dontDistribute super."gtfs"; + "gtk-helpers" = dontDistribute super."gtk-helpers"; + "gtk-jsinput" = dontDistribute super."gtk-jsinput"; + "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; + "gtk-mac-integration" = dontDistribute super."gtk-mac-integration"; + "gtk-serialized-event" = dontDistribute super."gtk-serialized-event"; + "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view"; + "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list"; + "gtk-toy" = dontDistribute super."gtk-toy"; + "gtk-traymanager" = dontDistribute super."gtk-traymanager"; + "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade"; + "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib"; + "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs"; + "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk"; + "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext"; + "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2"; + "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; + "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; + "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; + "gtkglext" = dontDistribute super."gtkglext"; + "gtkimageview" = dontDistribute super."gtkimageview"; + "gtkrsync" = dontDistribute super."gtkrsync"; + "gtksourceview2" = dontDistribute super."gtksourceview2"; + "gtksourceview3" = dontDistribute super."gtksourceview3"; + "guarded-rewriting" = dontDistribute super."guarded-rewriting"; + "guess-combinator" = dontDistribute super."guess-combinator"; + "gulcii" = dontDistribute super."gulcii"; + "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis"; + "gyah-bin" = dontDistribute super."gyah-bin"; + "h-booru" = dontDistribute super."h-booru"; + "h-gpgme" = dontDistribute super."h-gpgme"; + "h2048" = dontDistribute super."h2048"; + "hArduino" = dontDistribute super."hArduino"; + "hBDD" = dontDistribute super."hBDD"; + "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD"; + "hBDD-CUDD" = dontDistribute super."hBDD-CUDD"; + "hCsound" = dontDistribute super."hCsound"; + "hDFA" = dontDistribute super."hDFA"; + "hF2" = dontDistribute super."hF2"; + "hGelf" = dontDistribute super."hGelf"; + "hLLVM" = dontDistribute super."hLLVM"; + "hMollom" = dontDistribute super."hMollom"; + "hPDB-examples" = dontDistribute super."hPDB-examples"; + "hPushover" = dontDistribute super."hPushover"; + "hR" = dontDistribute super."hR"; + "hRESP" = dontDistribute super."hRESP"; + "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; + "hSimpleDB" = dontDistribute super."hSimpleDB"; + "hTalos" = dontDistribute super."hTalos"; + "hTensor" = dontDistribute super."hTensor"; + "hVOIDP" = dontDistribute super."hVOIDP"; + "hXmixer" = dontDistribute super."hXmixer"; + "haar" = dontDistribute super."haar"; + "hacanon-light" = dontDistribute super."hacanon-light"; + "hack" = dontDistribute super."hack"; + "hack-contrib" = dontDistribute super."hack-contrib"; + "hack-contrib-press" = dontDistribute super."hack-contrib-press"; + "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack"; + "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi"; + "hack-handler-cgi" = dontDistribute super."hack-handler-cgi"; + "hack-handler-epoll" = dontDistribute super."hack-handler-epoll"; + "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp"; + "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi"; + "hack-handler-happstack" = dontDistribute super."hack-handler-happstack"; + "hack-handler-hyena" = dontDistribute super."hack-handler-hyena"; + "hack-handler-kibro" = dontDistribute super."hack-handler-kibro"; + "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver"; + "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath"; + "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession"; + "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip"; + "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp"; + "hack2" = dontDistribute super."hack2"; + "hack2-contrib" = dontDistribute super."hack2-contrib"; + "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra"; + "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server"; + "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http"; + "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server"; + "hack2-handler-warp" = dontDistribute super."hack2-handler-warp"; + "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; + "hackage-diff" = dontDistribute super."hackage-diff"; + "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-proxy" = dontDistribute super."hackage-proxy"; + "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; + "hackage-security" = dontDistribute super."hackage-security"; + "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; + "hackage-server" = dontDistribute super."hackage-server"; + "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage2hwn" = dontDistribute super."hackage2hwn"; + "hackage2twitter" = dontDistribute super."hackage2twitter"; + "hackager" = dontDistribute super."hackager"; + "hackernews" = dontDistribute super."hackernews"; + "hackertyper" = dontDistribute super."hackertyper"; + "hackport" = dontDistribute super."hackport"; + "hactor" = dontDistribute super."hactor"; + "hactors" = dontDistribute super."hactors"; + "haddock" = dontDistribute super."haddock"; + "haddock-leksah" = dontDistribute super."haddock-leksah"; + "hadoop-formats" = dontDistribute super."hadoop-formats"; + "hadoop-rpc" = dontDistribute super."hadoop-rpc"; + "hadoop-tools" = dontDistribute super."hadoop-tools"; + "haeredes" = dontDistribute super."haeredes"; + "haggis" = dontDistribute super."haggis"; + "haha" = dontDistribute super."haha"; + "hahp" = dontDistribute super."hahp"; + "haiji" = dontDistribute super."haiji"; + "hailgun" = dontDistribute super."hailgun"; + "hailgun-send" = dontDistribute super."hailgun-send"; + "hails" = dontDistribute super."hails"; + "hails-bin" = dontDistribute super."hails-bin"; + "hairy" = dontDistribute super."hairy"; + "hakaru" = dontDistribute super."hakaru"; + "hake" = dontDistribute super."hake"; + "hakismet" = dontDistribute super."hakismet"; + "hako" = dontDistribute super."hako"; + "hakyll-R" = dontDistribute super."hakyll-R"; + "hakyll-agda" = dontDistribute super."hakyll-agda"; + "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; + "hakyll-contrib" = dontDistribute super."hakyll-contrib"; + "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation"; + "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; + "hakyll-convert" = dontDistribute super."hakyll-convert"; + "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; + "hakyll-sass" = dontDistribute super."hakyll-sass"; + "halberd" = dontDistribute super."halberd"; + "halfs" = dontDistribute super."halfs"; + "halipeto" = dontDistribute super."halipeto"; + "halive" = dontDistribute super."halive"; + "halma" = dontDistribute super."halma"; + "haltavista" = dontDistribute super."haltavista"; + "hamid" = dontDistribute super."hamid"; + "hampp" = dontDistribute super."hampp"; + "hamtmap" = dontDistribute super."hamtmap"; + "hamusic" = dontDistribute super."hamusic"; + "handa-gdata" = dontDistribute super."handa-gdata"; + "handa-geodata" = dontDistribute super."handa-geodata"; + "handa-opengl" = dontDistribute super."handa-opengl"; + "handle-like" = dontDistribute super."handle-like"; + "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; + "hangman" = dontDistribute super."hangman"; + "hannahci" = dontDistribute super."hannahci"; + "hans" = dontDistribute super."hans"; + "hans-pcap" = dontDistribute super."hans-pcap"; + "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; + "happindicator" = dontDistribute super."happindicator"; + "happindicator3" = dontDistribute super."happindicator3"; + "happraise" = dontDistribute super."happraise"; + "happs-hsp" = dontDistribute super."happs-hsp"; + "happs-hsp-template" = dontDistribute super."happs-hsp-template"; + "happs-tutorial" = dontDistribute super."happs-tutorial"; + "happstack" = dontDistribute super."happstack"; + "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-contrib" = dontDistribute super."happstack-contrib"; + "happstack-data" = dontDistribute super."happstack-data"; + "happstack-dlg" = dontDistribute super."happstack-dlg"; + "happstack-facebook" = dontDistribute super."happstack-facebook"; + "happstack-fastcgi" = dontDistribute super."happstack-fastcgi"; + "happstack-fay" = dontDistribute super."happstack-fay"; + "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax"; + "happstack-foundation" = dontDistribute super."happstack-foundation"; + "happstack-hamlet" = dontDistribute super."happstack-hamlet"; + "happstack-heist" = dontDistribute super."happstack-heist"; + "happstack-helpers" = dontDistribute super."happstack-helpers"; + "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate"; + "happstack-ixset" = dontDistribute super."happstack-ixset"; + "happstack-lite" = dontDistribute super."happstack-lite"; + "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; + "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; + "happstack-state" = dontDistribute super."happstack-state"; + "happstack-static-routing" = dontDistribute super."happstack-static-routing"; + "happstack-util" = dontDistribute super."happstack-util"; + "happstack-yui" = dontDistribute super."happstack-yui"; + "happy-meta" = dontDistribute super."happy-meta"; + "happybara" = dontDistribute super."happybara"; + "happybara-webkit" = dontDistribute super."happybara-webkit"; + "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "har" = dontDistribute super."har"; + "harchive" = dontDistribute super."harchive"; + "hardware-edsl" = dontDistribute super."hardware-edsl"; + "hark" = dontDistribute super."hark"; + "harmony" = dontDistribute super."harmony"; + "haroonga" = dontDistribute super."haroonga"; + "haroonga-httpd" = dontDistribute super."haroonga-httpd"; + "harpy" = dontDistribute super."harpy"; + "has" = dontDistribute super."has"; + "has-th" = dontDistribute super."has-th"; + "hascal" = dontDistribute super."hascal"; + "hascat" = dontDistribute super."hascat"; + "hascat-lib" = dontDistribute super."hascat-lib"; + "hascat-setup" = dontDistribute super."hascat-setup"; + "hascat-system" = dontDistribute super."hascat-system"; + "hash" = dontDistribute super."hash"; + "hashable-generics" = dontDistribute super."hashable-generics"; + "hashabler" = dontDistribute super."hashabler"; + "hashed-storage" = dontDistribute super."hashed-storage"; + "hashids" = dontDistribute super."hashids"; + "hashring" = dontDistribute super."hashring"; + "hashtables-plus" = dontDistribute super."hashtables-plus"; + "hasim" = dontDistribute super."hasim"; + "hask" = dontDistribute super."hask"; + "hask-home" = dontDistribute super."hask-home"; + "haskades" = dontDistribute super."haskades"; + "haskakafka" = dontDistribute super."haskakafka"; + "haskanoid" = dontDistribute super."haskanoid"; + "haskarrow" = dontDistribute super."haskarrow"; + "haskbot-core" = dontDistribute super."haskbot-core"; + "haskdeep" = dontDistribute super."haskdeep"; + "haskdogs" = dontDistribute super."haskdogs"; + "haskeem" = dontDistribute super."haskeem"; + "haskeline" = doDistribute super."haskeline_0_7_2_2"; + "haskeline-class" = dontDistribute super."haskeline-class"; + "haskell-aliyun" = dontDistribute super."haskell-aliyun"; + "haskell-awk" = dontDistribute super."haskell-awk"; + "haskell-bcrypt" = dontDistribute super."haskell-bcrypt"; + "haskell-brainfuck" = dontDistribute super."haskell-brainfuck"; + "haskell-cnc" = dontDistribute super."haskell-cnc"; + "haskell-coffee" = dontDistribute super."haskell-coffee"; + "haskell-compression" = dontDistribute super."haskell-compression"; + "haskell-course-preludes" = dontDistribute super."haskell-course-preludes"; + "haskell-docs" = dontDistribute super."haskell-docs"; + "haskell-exp-parser" = dontDistribute super."haskell-exp-parser"; + "haskell-formatter" = dontDistribute super."haskell-formatter"; + "haskell-ftp" = dontDistribute super."haskell-ftp"; + "haskell-generate" = dontDistribute super."haskell-generate"; + "haskell-gi" = dontDistribute super."haskell-gi"; + "haskell-gi-base" = dontDistribute super."haskell-gi-base"; + "haskell-import-graph" = dontDistribute super."haskell-import-graph"; + "haskell-in-space" = dontDistribute super."haskell-in-space"; + "haskell-kubernetes" = dontDistribute super."haskell-kubernetes"; + "haskell-modbus" = dontDistribute super."haskell-modbus"; + "haskell-mpfr" = dontDistribute super."haskell-mpfr"; + "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = dontDistribute super."haskell-names"; + "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; + "haskell-platform-test" = dontDistribute super."haskell-platform-test"; + "haskell-plot" = dontDistribute super."haskell-plot"; + "haskell-qrencode" = dontDistribute super."haskell-qrencode"; + "haskell-read-editor" = dontDistribute super."haskell-read-editor"; + "haskell-reflect" = dontDistribute super."haskell-reflect"; + "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; + "haskell-token-utils" = dontDistribute super."haskell-token-utils"; + "haskell-tor" = dontDistribute super."haskell-tor"; + "haskell-type-exts" = dontDistribute super."haskell-type-exts"; + "haskell-typescript" = dontDistribute super."haskell-typescript"; + "haskell-tyrant" = dontDistribute super."haskell-tyrant"; + "haskell-updater" = dontDistribute super."haskell-updater"; + "haskell-xmpp" = dontDistribute super."haskell-xmpp"; + "haskell2010" = dontDistribute super."haskell2010"; + "haskell98" = dontDistribute super."haskell98"; + "haskell98libraries" = dontDistribute super."haskell98libraries"; + "haskelldb" = dontDistribute super."haskelldb"; + "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc"; + "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl"; + "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf"; + "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers"; + "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted"; + "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic"; + "haskelldb-flat" = dontDistribute super."haskelldb-flat"; + "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc"; + "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql"; + "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc"; + "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql"; + "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3"; + "haskelldb-hsql" = dontDistribute super."haskelldb-hsql"; + "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql"; + "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc"; + "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle"; + "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql"; + "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite"; + "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3"; + "haskelldb-th" = dontDistribute super."haskelldb-th"; + "haskelldb-wx" = dontDistribute super."haskelldb-wx"; + "haskellscrabble" = dontDistribute super."haskellscrabble"; + "haskellscript" = dontDistribute super."haskellscript"; + "haskelm" = dontDistribute super."haskelm"; + "haskgame" = dontDistribute super."haskgame"; + "haskheap" = dontDistribute super."haskheap"; + "haskhol-core" = dontDistribute super."haskhol-core"; + "haskmon" = dontDistribute super."haskmon"; + "haskoin" = dontDistribute super."haskoin"; + "haskoin-core" = dontDistribute super."haskoin-core"; + "haskoin-crypto" = dontDistribute super."haskoin-crypto"; + "haskoin-node" = dontDistribute super."haskoin-node"; + "haskoin-protocol" = dontDistribute super."haskoin-protocol"; + "haskoin-script" = dontDistribute super."haskoin-script"; + "haskoin-util" = dontDistribute super."haskoin-util"; + "haskoin-wallet" = dontDistribute super."haskoin-wallet"; + "haskoon" = dontDistribute super."haskoon"; + "haskoon-httpspec" = dontDistribute super."haskoon-httpspec"; + "haskoon-salvia" = dontDistribute super."haskoon-salvia"; + "haskore" = dontDistribute super."haskore"; + "haskore-realtime" = dontDistribute super."haskore-realtime"; + "haskore-supercollider" = dontDistribute super."haskore-supercollider"; + "haskore-synthesizer" = dontDistribute super."haskore-synthesizer"; + "haskore-vintage" = dontDistribute super."haskore-vintage"; + "hasktags" = dontDistribute super."hasktags"; + "haslo" = dontDistribute super."haslo"; + "hasloGUI" = dontDistribute super."hasloGUI"; + "hasparql-client" = dontDistribute super."hasparql-client"; + "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_19_6"; + "hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative"; + "hasql-pool" = dontDistribute super."hasql-pool"; + "hasql-postgres" = dontDistribute super."hasql-postgres"; + "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; + "hasql-th" = dontDistribute super."hasql-th"; + "hasql-transaction" = dontDistribute super."hasql-transaction"; + "hastache-aeson" = dontDistribute super."hastache-aeson"; + "haste" = dontDistribute super."haste"; + "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-markup" = dontDistribute super."haste-markup"; + "haste-perch" = dontDistribute super."haste-perch"; + "hastily" = dontDistribute super."hastily"; + "hat" = dontDistribute super."hat"; + "hatex-guide" = dontDistribute super."hatex-guide"; + "hath" = dontDistribute super."hath"; + "hatt" = dontDistribute super."hatt"; + "haverer" = dontDistribute super."haverer"; + "hawitter" = dontDistribute super."hawitter"; + "haxl-amazonka" = dontDistribute super."haxl-amazonka"; + "haxl-facebook" = dontDistribute super."haxl-facebook"; + "haxparse" = dontDistribute super."haxparse"; + "haxr-th" = dontDistribute super."haxr-th"; + "haxy" = dontDistribute super."haxy"; + "hayland" = dontDistribute super."hayland"; + "hayoo-cli" = dontDistribute super."hayoo-cli"; + "hback" = dontDistribute super."hback"; + "hbayes" = dontDistribute super."hbayes"; + "hbb" = dontDistribute super."hbb"; + "hbcd" = dontDistribute super."hbcd"; + "hbeat" = dontDistribute super."hbeat"; + "hblas" = dontDistribute super."hblas"; + "hblock" = dontDistribute super."hblock"; + "hbro" = dontDistribute super."hbro"; + "hbro-contrib" = dontDistribute super."hbro-contrib"; + "hburg" = dontDistribute super."hburg"; + "hcc" = dontDistribute super."hcc"; + "hcg-minus" = dontDistribute super."hcg-minus"; + "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo"; + "hcheat" = dontDistribute super."hcheat"; + "hchesslib" = dontDistribute super."hchesslib"; + "hcltest" = dontDistribute super."hcltest"; + "hcoap" = dontDistribute super."hcoap"; + "hcron" = dontDistribute super."hcron"; + "hcube" = dontDistribute super."hcube"; + "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; + "hdbc-aeson" = dontDistribute super."hdbc-aeson"; + "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; + "hdbc-tuple" = dontDistribute super."hdbc-tuple"; + "hdbi" = dontDistribute super."hdbi"; + "hdbi-conduit" = dontDistribute super."hdbi-conduit"; + "hdbi-postgresql" = dontDistribute super."hdbi-postgresql"; + "hdbi-sqlite" = dontDistribute super."hdbi-sqlite"; + "hdbi-tests" = dontDistribute super."hdbi-tests"; + "hdf" = dontDistribute super."hdf"; + "hdigest" = dontDistribute super."hdigest"; + "hdirect" = dontDistribute super."hdirect"; + "hdis86" = dontDistribute super."hdis86"; + "hdiscount" = dontDistribute super."hdiscount"; + "hdm" = dontDistribute super."hdm"; + "hdph" = dontDistribute super."hdph"; + "hdph-closure" = dontDistribute super."hdph-closure"; + "hdr-histogram" = dontDistribute super."hdr-histogram"; + "headergen" = dontDistribute super."headergen"; + "heapsort" = dontDistribute super."heapsort"; + "hecc" = dontDistribute super."hecc"; + "hedis-config" = dontDistribute super."hedis-config"; + "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-pile" = dontDistribute super."hedis-pile"; + "hedis-simple" = dontDistribute super."hedis-simple"; + "hedis-tags" = dontDistribute super."hedis-tags"; + "hedn" = dontDistribute super."hedn"; + "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; + "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"; + "herf-time" = dontDistribute super."herf-time"; + "hermit" = dontDistribute super."hermit"; + "hermit-syb" = dontDistribute super."hermit-syb"; + "hero-club-five-tenets" = dontDistribute super."hero-club-five-tenets"; + "heroku" = dontDistribute super."heroku"; + "heroku-persistent" = dontDistribute super."heroku-persistent"; + "herringbone" = dontDistribute super."herringbone"; + "herringbone-embed" = dontDistribute super."herringbone-embed"; + "herringbone-wai" = dontDistribute super."herringbone-wai"; + "hesh" = dontDistribute super."hesh"; + "hesql" = dontDistribute super."hesql"; + "hetero-map" = dontDistribute super."hetero-map"; + "hetris" = dontDistribute super."hetris"; + "heukarya" = dontDistribute super."heukarya"; + "hevolisa" = dontDistribute super."hevolisa"; + "hevolisa-dph" = dontDistribute super."hevolisa-dph"; + "hexdump" = dontDistribute super."hexdump"; + "hexif" = dontDistribute super."hexif"; + "hexpat-iteratee" = dontDistribute super."hexpat-iteratee"; + "hexpat-lens" = dontDistribute super."hexpat-lens"; + "hexpat-pickle" = dontDistribute super."hexpat-pickle"; + "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic"; + "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup"; + "hexpr" = dontDistribute super."hexpr"; + "hexquote" = dontDistribute super."hexquote"; + "heyefi" = dontDistribute super."heyefi"; + "hfann" = dontDistribute super."hfann"; + "hfd" = dontDistribute super."hfd"; + "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4"; + "hfmt" = dontDistribute super."hfmt"; + "hfoil" = dontDistribute super."hfoil"; + "hformat" = dontDistribute super."hformat"; + "hfov" = dontDistribute super."hfov"; + "hfractal" = dontDistribute super."hfractal"; + "hfusion" = dontDistribute super."hfusion"; + "hg-buildpackage" = dontDistribute super."hg-buildpackage"; + "hgal" = dontDistribute super."hgal"; + "hgalib" = dontDistribute super."hgalib"; + "hgdbmi" = dontDistribute super."hgdbmi"; + "hgearman" = dontDistribute super."hgearman"; + "hgen" = dontDistribute super."hgen"; + "hgeometric" = dontDistribute super."hgeometric"; + "hgeometry" = dontDistribute super."hgeometry"; + "hgithub" = dontDistribute super."hgithub"; + "hgl-example" = dontDistribute super."hgl-example"; + "hgom" = dontDistribute super."hgom"; + "hgopher" = dontDistribute super."hgopher"; + "hgrev" = dontDistribute super."hgrev"; + "hgrib" = dontDistribute super."hgrib"; + "hharp" = dontDistribute super."hharp"; + "hi" = dontDistribute super."hi"; + "hi3status" = dontDistribute super."hi3status"; + "hiccup" = dontDistribute super."hiccup"; + "hichi" = dontDistribute super."hichi"; + "hieraclus" = dontDistribute super."hieraclus"; + "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; + "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions"; + "hierarchy" = dontDistribute super."hierarchy"; + "hiernotify" = dontDistribute super."hiernotify"; + "highWaterMark" = dontDistribute super."highWaterMark"; + "higher-leveldb" = dontDistribute super."higher-leveldb"; + "higherorder" = dontDistribute super."higherorder"; + "highlight-versions" = dontDistribute super."highlight-versions"; + "highlighter" = dontDistribute super."highlighter"; + "highlighter2" = dontDistribute super."highlighter2"; + "hills" = dontDistribute super."hills"; + "himerge" = dontDistribute super."himerge"; + "himg" = dontDistribute super."himg"; + "himpy" = dontDistribute super."himpy"; + "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"; + "hinquire" = dontDistribute super."hinquire"; + "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_2_3"; + "hint-server" = dontDistribute super."hint-server"; + "hinvaders" = dontDistribute super."hinvaders"; + "hinze-streams" = dontDistribute super."hinze-streams"; + "hip" = dontDistribute super."hip"; + "hipbot" = dontDistribute super."hipbot"; + "hipchat-hs" = dontDistribute super."hipchat-hs"; + "hipe" = dontDistribute super."hipe"; + "hips" = dontDistribute super."hips"; + "hircules" = dontDistribute super."hircules"; + "hirt" = dontDistribute super."hirt"; + "hissmetrics" = dontDistribute super."hissmetrics"; + "hist-pl" = dontDistribute super."hist-pl"; + "hist-pl-dawg" = dontDistribute super."hist-pl-dawg"; + "hist-pl-fusion" = dontDistribute super."hist-pl-fusion"; + "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon"; + "hist-pl-lmf" = dontDistribute super."hist-pl-lmf"; + "hist-pl-transliter" = dontDistribute super."hist-pl-transliter"; + "hist-pl-types" = dontDistribute super."hist-pl-types"; + "histogram-fill-binary" = dontDistribute super."histogram-fill-binary"; + "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal"; + "historian" = dontDistribute super."historian"; + "hjcase" = dontDistribute super."hjcase"; + "hjpath" = dontDistribute super."hjpath"; + "hjs" = dontDistribute super."hjs"; + "hjson" = dontDistribute super."hjson"; + "hjson-query" = dontDistribute super."hjson-query"; + "hjsonpointer" = dontDistribute super."hjsonpointer"; + "hjsonschema" = dontDistribute super."hjsonschema"; + "hkdf" = dontDistribute super."hkdf"; + "hlatex" = dontDistribute super."hlatex"; + "hlbfgsb" = dontDistribute super."hlbfgsb"; + "hlcm" = dontDistribute super."hlcm"; + "hleap" = dontDistribute super."hleap"; + "hledger-chart" = dontDistribute super."hledger-chart"; + "hledger-diff" = dontDistribute super."hledger-diff"; + "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-vty" = dontDistribute super."hledger-vty"; + "hlibBladeRF" = dontDistribute super."hlibBladeRF"; + "hlibev" = dontDistribute super."hlibev"; + "hlibfam" = dontDistribute super."hlibfam"; + "hlogger" = dontDistribute super."hlogger"; + "hlongurl" = dontDistribute super."hlongurl"; + "hls" = dontDistribute super."hls"; + "hlwm" = dontDistribute super."hlwm"; + "hly" = dontDistribute super."hly"; + "hmark" = dontDistribute super."hmark"; + "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix-banded" = dontDistribute super."hmatrix-banded"; + "hmatrix-csv" = dontDistribute super."hmatrix-csv"; + "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; + "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; + "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; + "hmatrix-repa" = dontDistribute super."hmatrix-repa"; + "hmatrix-special" = dontDistribute super."hmatrix-special"; + "hmatrix-static" = dontDistribute super."hmatrix-static"; + "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc"; + "hmatrix-syntax" = dontDistribute super."hmatrix-syntax"; + "hmatrix-tests" = dontDistribute super."hmatrix-tests"; + "hmeap" = dontDistribute super."hmeap"; + "hmeap-utils" = dontDistribute super."hmeap-utils"; + "hmemdb" = dontDistribute super."hmemdb"; + "hmenu" = dontDistribute super."hmenu"; + "hmidi" = dontDistribute super."hmidi"; + "hmk" = dontDistribute super."hmk"; + "hmm" = dontDistribute super."hmm"; + "hmm-hmatrix" = dontDistribute super."hmm-hmatrix"; + "hmp3" = dontDistribute super."hmp3"; + "hmpfr" = dontDistribute super."hmpfr"; + "hmt" = dontDistribute super."hmt"; + "hmt-diagrams" = dontDistribute super."hmt-diagrams"; + "hmumps" = dontDistribute super."hmumps"; + "hnetcdf" = dontDistribute super."hnetcdf"; + "hnix" = dontDistribute super."hnix"; + "hnn" = dontDistribute super."hnn"; + "hnop" = dontDistribute super."hnop"; + "ho-rewriting" = dontDistribute super."ho-rewriting"; + "hoauth" = dontDistribute super."hoauth"; + "hob" = dontDistribute super."hob"; + "hobbes" = dontDistribute super."hobbes"; + "hobbits" = dontDistribute super."hobbits"; + "hoe" = dontDistribute super."hoe"; + "hofix-mtl" = dontDistribute super."hofix-mtl"; + "hog" = dontDistribute super."hog"; + "hogg" = dontDistribute super."hogg"; + "hogre" = dontDistribute super."hogre"; + "hogre-examples" = dontDistribute super."hogre-examples"; + "hois" = dontDistribute super."hois"; + "hoist-error" = dontDistribute super."hoist-error"; + "hold-em" = dontDistribute super."hold-em"; + "hole" = dontDistribute super."hole"; + "holey-format" = dontDistribute super."holey-format"; + "homeomorphic" = dontDistribute super."homeomorphic"; + "hommage" = dontDistribute super."hommage"; + "hommage-ds" = dontDistribute super."hommage-ds"; + "homplexity" = dontDistribute super."homplexity"; + "honi" = dontDistribute super."honi"; + "honk" = dontDistribute super."honk"; + "hoobuddy" = dontDistribute super."hoobuddy"; + "hood" = dontDistribute super."hood"; + "hood-off" = dontDistribute super."hood-off"; + "hood2" = dontDistribute super."hood2"; + "hoodie" = dontDistribute super."hoodie"; + "hoodle" = dontDistribute super."hoodle"; + "hoodle-builder" = dontDistribute super."hoodle-builder"; + "hoodle-core" = dontDistribute super."hoodle-core"; + "hoodle-extra" = dontDistribute super."hoodle-extra"; + "hoodle-parser" = dontDistribute super."hoodle-parser"; + "hoodle-publish" = dontDistribute super."hoodle-publish"; + "hoodle-render" = dontDistribute super."hoodle-render"; + "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle-index" = dontDistribute super."hoogle-index"; + "hooks-dir" = dontDistribute super."hooks-dir"; + "hoovie" = dontDistribute super."hoovie"; + "hopencc" = dontDistribute super."hopencc"; + "hopencl" = dontDistribute super."hopencl"; + "hopfield" = dontDistribute super."hopfield"; + "hopfield-networks" = dontDistribute super."hopfield-networks"; + "hopfli" = dontDistribute super."hopfli"; + "hoppy-generator" = dontDistribute super."hoppy-generator"; + "hoppy-runtime" = dontDistribute super."hoppy-runtime"; + "hoppy-std" = dontDistribute super."hoppy-std"; + "hops" = dontDistribute super."hops"; + "hoq" = dontDistribute super."hoq"; + "horizon" = dontDistribute super."horizon"; + "hosc" = dontDistribute super."hosc"; + "hosc-json" = dontDistribute super."hosc-json"; + "hosc-utils" = dontDistribute super."hosc-utils"; + "hosts-server" = dontDistribute super."hosts-server"; + "hothasktags" = dontDistribute super."hothasktags"; + "hotswap" = dontDistribute super."hotswap"; + "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "hp2any-core" = dontDistribute super."hp2any-core"; + "hp2any-graph" = dontDistribute super."hp2any-graph"; + "hp2any-manager" = dontDistribute super."hp2any-manager"; + "hp2html" = dontDistribute super."hp2html"; + "hp2pretty" = dontDistribute super."hp2pretty"; + "hpack" = dontDistribute super."hpack"; + "hpaco" = dontDistribute super."hpaco"; + "hpaco-lib" = dontDistribute super."hpaco-lib"; + "hpage" = dontDistribute super."hpage"; + "hpapi" = dontDistribute super."hpapi"; + "hpaste" = dontDistribute super."hpaste"; + "hpasteit" = dontDistribute super."hpasteit"; + "hpc-strobe" = dontDistribute super."hpc-strobe"; + "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; + "hplayground" = dontDistribute super."hplayground"; + "hplaylist" = dontDistribute super."hplaylist"; + "hpodder" = dontDistribute super."hpodder"; + "hpp" = dontDistribute super."hpp"; + "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc-fork" = dontDistribute super."hprotoc-fork"; + "hps" = dontDistribute super."hps"; + "hps-cairo" = dontDistribute super."hps-cairo"; + "hps-kmeans" = dontDistribute super."hps-kmeans"; + "hpuz" = dontDistribute super."hpuz"; + "hpygments" = dontDistribute super."hpygments"; + "hpylos" = dontDistribute super."hpylos"; + "hpyrg" = dontDistribute super."hpyrg"; + "hquantlib" = dontDistribute super."hquantlib"; + "hquery" = dontDistribute super."hquery"; + "hranker" = dontDistribute super."hranker"; + "hreader" = dontDistribute super."hreader"; + "hricket" = dontDistribute super."hricket"; + "hruby" = dontDistribute super."hruby"; + "hs-GeoIP" = dontDistribute super."hs-GeoIP"; + "hs-blake2" = dontDistribute super."hs-blake2"; + "hs-captcha" = dontDistribute super."hs-captcha"; + "hs-carbon" = dontDistribute super."hs-carbon"; + "hs-carbon-examples" = dontDistribute super."hs-carbon-examples"; + "hs-cdb" = dontDistribute super."hs-cdb"; + "hs-dotnet" = dontDistribute super."hs-dotnet"; + "hs-duktape" = dontDistribute super."hs-duktape"; + "hs-excelx" = dontDistribute super."hs-excelx"; + "hs-ffmpeg" = dontDistribute super."hs-ffmpeg"; + "hs-fltk" = dontDistribute super."hs-fltk"; + "hs-gchart" = dontDistribute super."hs-gchart"; + "hs-gen-iface" = dontDistribute super."hs-gen-iface"; + "hs-gizapp" = dontDistribute super."hs-gizapp"; + "hs-inspector" = dontDistribute super."hs-inspector"; + "hs-java" = dontDistribute super."hs-java"; + "hs-json-rpc" = dontDistribute super."hs-json-rpc"; + "hs-logo" = dontDistribute super."hs-logo"; + "hs-mesos" = dontDistribute super."hs-mesos"; + "hs-nombre-generator" = dontDistribute super."hs-nombre-generator"; + "hs-pgms" = dontDistribute super."hs-pgms"; + "hs-php-session" = dontDistribute super."hs-php-session"; + "hs-pkg-config" = dontDistribute super."hs-pkg-config"; + "hs-pkpass" = dontDistribute super."hs-pkpass"; + "hs-re" = dontDistribute super."hs-re"; + "hs-scrape" = dontDistribute super."hs-scrape"; + "hs-twitter" = dontDistribute super."hs-twitter"; + "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver"; + "hs-vcard" = dontDistribute super."hs-vcard"; + "hs2048" = dontDistribute super."hs2048"; + "hs2bf" = dontDistribute super."hs2bf"; + "hs2dot" = dontDistribute super."hs2dot"; + "hsConfigure" = dontDistribute super."hsConfigure"; + "hsSqlite3" = dontDistribute super."hsSqlite3"; + "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsay" = dontDistribute super."hsay"; + "hsb2hs" = dontDistribute super."hsb2hs"; + "hsbackup" = dontDistribute super."hsbackup"; + "hsbencher" = dontDistribute super."hsbencher"; + "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed"; + "hsbencher-fusion" = dontDistribute super."hsbencher-fusion"; + "hsc2hs" = dontDistribute super."hsc2hs"; + "hsc3" = dontDistribute super."hsc3"; + "hsc3-auditor" = dontDistribute super."hsc3-auditor"; + "hsc3-cairo" = dontDistribute super."hsc3-cairo"; + "hsc3-data" = dontDistribute super."hsc3-data"; + "hsc3-db" = dontDistribute super."hsc3-db"; + "hsc3-dot" = dontDistribute super."hsc3-dot"; + "hsc3-forth" = dontDistribute super."hsc3-forth"; + "hsc3-graphs" = dontDistribute super."hsc3-graphs"; + "hsc3-lang" = dontDistribute super."hsc3-lang"; + "hsc3-lisp" = dontDistribute super."hsc3-lisp"; + "hsc3-plot" = dontDistribute super."hsc3-plot"; + "hsc3-process" = dontDistribute super."hsc3-process"; + "hsc3-rec" = dontDistribute super."hsc3-rec"; + "hsc3-rw" = dontDistribute super."hsc3-rw"; + "hsc3-server" = dontDistribute super."hsc3-server"; + "hsc3-sf" = dontDistribute super."hsc3-sf"; + "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile"; + "hsc3-unsafe" = dontDistribute super."hsc3-unsafe"; + "hsc3-utils" = dontDistribute super."hsc3-utils"; + "hscamwire" = dontDistribute super."hscamwire"; + "hscassandra" = dontDistribute super."hscassandra"; + "hscd" = dontDistribute super."hscd"; + "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; + "hscope" = dontDistribute super."hscope"; + "hscrtmpl" = dontDistribute super."hscrtmpl"; + "hscuid" = dontDistribute super."hscuid"; + "hscurses" = dontDistribute super."hscurses"; + "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex"; + "hsdev" = dontDistribute super."hsdev"; + "hsdif" = dontDistribute super."hsdif"; + "hsdip" = dontDistribute super."hsdip"; + "hsdns" = dontDistribute super."hsdns"; + "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsemail-ns" = dontDistribute super."hsemail-ns"; + "hsenv" = dontDistribute super."hsenv"; + "hserv" = dontDistribute super."hserv"; + "hset" = dontDistribute super."hset"; + "hsexif" = doDistribute super."hsexif_0_6_0_7"; + "hsfacter" = dontDistribute super."hsfacter"; + "hsfcsh" = dontDistribute super."hsfcsh"; + "hsfilt" = dontDistribute super."hsfilt"; + "hsgnutls" = dontDistribute super."hsgnutls"; + "hsgnutls-yj" = dontDistribute super."hsgnutls-yj"; + "hsgsom" = dontDistribute super."hsgsom"; + "hsgtd" = dontDistribute super."hsgtd"; + "hsharc" = dontDistribute super."hsharc"; + "hsilop" = dontDistribute super."hsilop"; + "hsimport" = dontDistribute super."hsimport"; + "hsini" = dontDistribute super."hsini"; + "hskeleton" = dontDistribute super."hskeleton"; + "hslackbuilder" = dontDistribute super."hslackbuilder"; + "hslibsvm" = dontDistribute super."hslibsvm"; + "hslinks" = dontDistribute super."hslinks"; + "hslogger-reader" = dontDistribute super."hslogger-reader"; + "hslogger-template" = dontDistribute super."hslogger-template"; + "hslogger4j" = dontDistribute super."hslogger4j"; + "hslogstash" = dontDistribute super."hslogstash"; + "hsmagick" = dontDistribute super."hsmagick"; + "hsmisc" = dontDistribute super."hsmisc"; + "hsmtpclient" = dontDistribute super."hsmtpclient"; + "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector"; + "hsnock" = dontDistribute super."hsnock"; + "hsnoise" = dontDistribute super."hsnoise"; + "hsns" = dontDistribute super."hsns"; + "hsnsq" = dontDistribute super."hsnsq"; + "hsntp" = dontDistribute super."hsntp"; + "hsoptions" = dontDistribute super."hsoptions"; + "hsp-cgi" = dontDistribute super."hsp-cgi"; + "hsparklines" = dontDistribute super."hsparklines"; + "hsparql" = dontDistribute super."hsparql"; + "hspear" = dontDistribute super."hspear"; + "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; + "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; + "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-experimental" = dontDistribute super."hspec-experimental"; + "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-monad-control" = dontDistribute super."hspec-monad-control"; + "hspec-server" = dontDistribute super."hspec-server"; + "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; + "hspec-test-framework" = dontDistribute super."hspec-test-framework"; + "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; + "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; + "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"; + "hstats" = dontDistribute super."hstats"; + "hstest" = dontDistribute super."hstest"; + "hstidy" = dontDistribute super."hstidy"; + "hstorchat" = dontDistribute super."hstorchat"; + "hstradeking" = dontDistribute super."hstradeking"; + "hstyle" = dontDistribute super."hstyle"; + "hstzaar" = dontDistribute super."hstzaar"; + "hsubconvert" = dontDistribute super."hsubconvert"; + "hsverilog" = dontDistribute super."hsverilog"; + "hswip" = dontDistribute super."hswip"; + "hsx" = dontDistribute super."hsx"; + "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsyscall" = dontDistribute super."hsyscall"; + "hszephyr" = dontDistribute super."hszephyr"; + "htags" = dontDistribute super."htags"; + "htar" = dontDistribute super."htar"; + "htiled" = dontDistribute super."htiled"; + "htime" = dontDistribute super."htime"; + "html-email-validate" = dontDistribute super."html-email-validate"; + "html-entities" = dontDistribute super."html-entities"; + "html-kure" = dontDistribute super."html-kure"; + "html-minimalist" = dontDistribute super."html-minimalist"; + "html-rules" = dontDistribute super."html-rules"; + "html-tokenizer" = dontDistribute super."html-tokenizer"; + "html-truncate" = dontDistribute super."html-truncate"; + "html2hamlet" = dontDistribute super."html2hamlet"; + "html5-entity" = dontDistribute super."html5-entity"; + "htodo" = dontDistribute super."htodo"; + "htoml" = dontDistribute super."htoml"; + "htrace" = dontDistribute super."htrace"; + "hts" = dontDistribute super."hts"; + "htsn" = dontDistribute super."htsn"; + "htsn-common" = dontDistribute super."htsn-common"; + "htsn-import" = dontDistribute super."htsn-import"; + "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client-auth" = dontDistribute super."http-client-auth"; + "http-client-conduit" = dontDistribute super."http-client-conduit"; + "http-client-lens" = dontDistribute super."http-client-lens"; + "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; + "http-client-streams" = dontDistribute super."http-client-streams"; + "http-conduit-browser" = dontDistribute super."http-conduit-browser"; + "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-encodings" = dontDistribute super."http-encodings"; + "http-enumerator" = dontDistribute super."http-enumerator"; + "http-kinder" = dontDistribute super."http-kinder"; + "http-kit" = dontDistribute super."http-kit"; + "http-listen" = dontDistribute super."http-listen"; + "http-monad" = dontDistribute super."http-monad"; + "http-proxy" = dontDistribute super."http-proxy"; + "http-querystring" = dontDistribute super."http-querystring"; + "http-server" = dontDistribute super."http-server"; + "http-shed" = dontDistribute super."http-shed"; + "http-test" = dontDistribute super."http-test"; + "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_4_5"; + "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; + "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; + "httpspec" = dontDistribute super."httpspec"; + "htune" = dontDistribute super."htune"; + "htzaar" = dontDistribute super."htzaar"; + "hub" = dontDistribute super."hub"; + "hubigraph" = dontDistribute super."hubigraph"; + "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; + "huffman" = dontDistribute super."huffman"; + "hugs2yc" = dontDistribute super."hugs2yc"; + "hulk" = dontDistribute super."hulk"; + "hums" = dontDistribute super."hums"; + "hunch" = dontDistribute super."hunch"; + "hunit-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"; + "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"; + "hylolib" = dontDistribute super."hylolib"; + "hylotab" = dontDistribute super."hylotab"; + "hyloutils" = dontDistribute super."hyloutils"; + "hyperdrive" = dontDistribute super."hyperdrive"; + "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperpublic" = dontDistribute super."hyperpublic"; + "hyphenate" = dontDistribute super."hyphenate"; + "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; + "hzk" = dontDistribute super."hzk"; + "i18n" = dontDistribute super."i18n"; + "iCalendar" = dontDistribute super."iCalendar"; + "iException" = dontDistribute super."iException"; + "iap-verifier" = dontDistribute super."iap-verifier"; + "ib-api" = dontDistribute super."ib-api"; + "iban" = dontDistribute super."iban"; + "ibus-hs" = dontDistribute super."ibus-hs"; + "ideas" = dontDistribute super."ideas"; + "ideas-math" = dontDistribute super."ideas-math"; + "idempotent" = dontDistribute super."idempotent"; + "identifiers" = dontDistribute super."identifiers"; + "idiii" = dontDistribute super."idiii"; + "idna" = dontDistribute super."idna"; + "idna2008" = dontDistribute super."idna2008"; + "idris" = dontDistribute super."idris"; + "ieee" = dontDistribute super."ieee"; + "ieee-utils" = dontDistribute super."ieee-utils"; + "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix"; + "ieee754-parser" = dontDistribute super."ieee754-parser"; + "ifcxt" = dontDistribute super."ifcxt"; + "iff" = dontDistribute super."iff"; + "ifscs" = dontDistribute super."ifscs"; + "ige-mac-integration" = dontDistribute super."ige-mac-integration"; + "igraph" = dontDistribute super."igraph"; + "igrf" = dontDistribute super."igrf"; + "ihaskell-display" = dontDistribute super."ihaskell-display"; + "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; + "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; + "ihaskell-plot" = dontDistribute super."ihaskell-plot"; + "ihaskell-widgets" = dontDistribute super."ihaskell-widgets"; + "ihttp" = dontDistribute super."ihttp"; + "illuminate" = dontDistribute super."illuminate"; + "image-type" = dontDistribute super."image-type"; + "imagefilters" = dontDistribute super."imagefilters"; + "imagemagick" = dontDistribute super."imagemagick"; + "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; + "imapget" = dontDistribute super."imapget"; + "imbib" = dontDistribute super."imbib"; + "imgurder" = dontDistribute super."imgurder"; + "imm" = dontDistribute super."imm"; + "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; + "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; + "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; + "implicit-params" = dontDistribute super."implicit-params"; + "imports" = dontDistribute super."imports"; + "impossible" = dontDistribute super."impossible"; + "improve" = dontDistribute super."improve"; + "inc-ref" = dontDistribute super."inc-ref"; + "inch" = dontDistribute super."inch"; + "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-sat-solver" = dontDistribute super."incremental-sat-solver"; + "increments" = dontDistribute super."increments"; + "indentation" = dontDistribute super."indentation"; + "indentparser" = dontDistribute super."indentparser"; + "index-core" = dontDistribute super."index-core"; + "indexed" = dontDistribute super."indexed"; + "indexed-do-notation" = dontDistribute super."indexed-do-notation"; + "indexed-extras" = dontDistribute super."indexed-extras"; + "indexed-free" = dontDistribute super."indexed-free"; + "indian-language-font-converter" = dontDistribute super."indian-language-font-converter"; + "indices" = dontDistribute super."indices"; + "indieweb-algorithms" = dontDistribute super."indieweb-algorithms"; + "inf-interval" = dontDistribute super."inf-interval"; + "infer-upstream" = dontDistribute super."infer-upstream"; + "infernu" = dontDistribute super."infernu"; + "infinite-search" = dontDistribute super."infinite-search"; + "infinity" = dontDistribute super."infinity"; + "infix" = dontDistribute super."infix"; + "inflist" = dontDistribute super."inflist"; + "influxdb" = dontDistribute super."influxdb"; + "informative" = dontDistribute super."informative"; + "inilist" = dontDistribute super."inilist"; + "inject" = dontDistribute super."inject"; + "inject-function" = dontDistribute super."inject-function"; + "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; + "inserts" = dontDistribute super."inserts"; + "inspection-proxy" = dontDistribute super."inspection-proxy"; + "instant-aeson" = dontDistribute super."instant-aeson"; + "instant-bytes" = dontDistribute super."instant-bytes"; + "instant-deepseq" = dontDistribute super."instant-deepseq"; + "instant-generics" = dontDistribute super."instant-generics"; + "instant-hashable" = dontDistribute super."instant-hashable"; + "instant-zipper" = dontDistribute super."instant-zipper"; + "instinct" = dontDistribute super."instinct"; + "instrument-chord" = dontDistribute super."instrument-chord"; + "int-cast" = dontDistribute super."int-cast"; + "integer-pure" = dontDistribute super."integer-pure"; + "intel-aes" = dontDistribute super."intel-aes"; + "interchangeable" = dontDistribute super."interchangeable"; + "interleavableGen" = dontDistribute super."interleavableGen"; + "interleavableIO" = dontDistribute super."interleavableIO"; + "interleave" = dontDistribute super."interleave"; + "interlude" = dontDistribute super."interlude"; + "intern" = dontDistribute super."intern"; + "internetmarke" = dontDistribute super."internetmarke"; + "interpol" = dontDistribute super."interpol"; + "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; + "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; + "interpolation" = dontDistribute super."interpolation"; + "intricacy" = dontDistribute super."intricacy"; + "intset" = dontDistribute super."intset"; + "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-quoter" = dontDistribute super."ip-quoter"; + "ipatch" = dontDistribute super."ipatch"; + "ipc" = dontDistribute super."ipc"; + "ipcvar" = dontDistribute super."ipcvar"; + "ipopt-hs" = dontDistribute super."ipopt-hs"; + "ipprint" = dontDistribute super."ipprint"; + "iptables-helpers" = dontDistribute super."iptables-helpers"; + "iptadmin" = dontDistribute super."iptadmin"; + "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-colors" = dontDistribute super."irc-colors"; + "irc-core" = dontDistribute super."irc-core"; + "irc-dcc" = dontDistribute super."irc-dcc"; + "irc-fun-bot" = dontDistribute super."irc-fun-bot"; + "irc-fun-client" = dontDistribute super."irc-fun-client"; + "irc-fun-color" = dontDistribute super."irc-fun-color"; + "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; + "ircbot" = dontDistribute super."ircbot"; + "ircbouncer" = dontDistribute super."ircbouncer"; + "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; + "iron-mq" = dontDistribute super."iron-mq"; + "ironforge" = dontDistribute super."ironforge"; + "is" = dontDistribute super."is"; + "isdicom" = dontDistribute super."isdicom"; + "isevaluated" = dontDistribute super."isevaluated"; + "isiz" = dontDistribute super."isiz"; + "ismtp" = dontDistribute super."ismtp"; + "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; + "isohunt" = dontDistribute super."isohunt"; + "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-backend-c" = dontDistribute super."ivory-backend-c"; + "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "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-stdlib" = dontDistribute super."ivory-stdlib"; + "ivy-web" = dontDistribute super."ivy-web"; + "ixdopp" = dontDistribute super."ixdopp"; + "ixmonad" = dontDistribute super."ixmonad"; + "iyql" = dontDistribute super."iyql"; + "j2hs" = dontDistribute super."j2hs"; + "ja-base-extra" = dontDistribute super."ja-base-extra"; + "jack" = dontDistribute super."jack"; + "jack-bindings" = dontDistribute super."jack-bindings"; + "jackminimix" = dontDistribute super."jackminimix"; + "jacobi-roots" = dontDistribute super."jacobi-roots"; + "jail" = dontDistribute super."jail"; + "jailbreak-cabal" = dontDistribute super."jailbreak-cabal"; + "jalaali" = dontDistribute super."jalaali"; + "jalla" = dontDistribute super."jalla"; + "jammittools" = dontDistribute super."jammittools"; + "jarfind" = dontDistribute super."jarfind"; + "java-bridge" = dontDistribute super."java-bridge"; + "java-bridge-extras" = dontDistribute super."java-bridge-extras"; + "java-character" = dontDistribute super."java-character"; + "java-poker" = dontDistribute super."java-poker"; + "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; + "javasf" = dontDistribute super."javasf"; + "javav" = dontDistribute super."javav"; + "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; + "jdi" = dontDistribute super."jdi"; + "jespresso" = dontDistribute super."jespresso"; + "jobqueue" = dontDistribute super."jobqueue"; + "join" = dontDistribute super."join"; + "joinlist" = dontDistribute super."joinlist"; + "jonathanscard" = dontDistribute super."jonathanscard"; + "jort" = dontDistribute super."jort"; + "jose" = dontDistribute super."jose"; + "jpeg" = dontDistribute super."jpeg"; + "js-good-parts" = dontDistribute super."js-good-parts"; + "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-hello" = dontDistribute super."jsaddle-hello"; + "jsc" = dontDistribute super."jsc"; + "jsmw" = dontDistribute super."jsmw"; + "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; + "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_11"; + "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-litobj" = dontDistribute super."json-litobj"; + "json-pointer" = dontDistribute super."json-pointer"; + "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; + "json-python" = dontDistribute super."json-python"; + "json-qq" = dontDistribute super."json-qq"; + "json-rpc" = dontDistribute super."json-rpc"; + "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-sop" = dontDistribute super."json-sop"; + "json-state" = dontDistribute super."json-state"; + "json-stream" = dontDistribute super."json-stream"; + "json-togo" = dontDistribute super."json-togo"; + "json-tools" = dontDistribute super."json-tools"; + "json-types" = dontDistribute super."json-types"; + "json2" = dontDistribute super."json2"; + "json2-hdbc" = dontDistribute super."json2-hdbc"; + "json2-types" = dontDistribute super."json2-types"; + "json2yaml" = dontDistribute super."json2yaml"; + "jsonresume" = dontDistribute super."jsonresume"; + "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit"; + "jsonschema-gen" = dontDistribute super."jsonschema-gen"; + "jsonsql" = dontDistribute super."jsonsql"; + "jsontsv" = dontDistribute super."jsontsv"; + "jspath" = dontDistribute super."jspath"; + "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"; + "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; + "kansas-lava" = dontDistribute super."kansas-lava"; + "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; + "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio"; + "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; + "karakuri" = dontDistribute super."karakuri"; + "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; + "katt" = dontDistribute super."katt"; + "kazura-queue" = dontDistribute super."kazura-queue"; + "kbq-gu" = dontDistribute super."kbq-gu"; + "kd-tree" = dontDistribute super."kd-tree"; + "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keera-callbacks" = dontDistribute super."keera-callbacks"; + "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; + "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; + "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk"; + "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel"; + "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel"; + "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config"; + "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk"; + "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view"; + "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk"; + "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs"; + "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk"; + "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network"; + "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling"; + "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx"; + "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa"; + "keera-hails-reactivelenses" = dontDistribute super."keera-hails-reactivelenses"; + "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues"; + "keera-posture" = dontDistribute super."keera-posture"; + "keiretsu" = dontDistribute super."keiretsu"; + "kevin" = dontDistribute super."kevin"; + "keyed" = dontDistribute super."keyed"; + "keyring" = dontDistribute super."keyring"; + "keystore" = dontDistribute super."keystore"; + "keyvaluehash" = dontDistribute super."keyvaluehash"; + "keyword-args" = dontDistribute super."keyword-args"; + "kibro" = dontDistribute super."kibro"; + "kicad-data" = dontDistribute super."kicad-data"; + "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser"; + "kickchan" = dontDistribute super."kickchan"; + "kif-parser" = dontDistribute super."kif-parser"; + "kinds" = dontDistribute super."kinds"; + "kit" = dontDistribute super."kit"; + "kmeans-par" = dontDistribute super."kmeans-par"; + "kmeans-vector" = dontDistribute super."kmeans-vector"; + "knots" = dontDistribute super."knots"; + "koellner-phonetic" = dontDistribute super."koellner-phonetic"; + "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; + "korfu" = dontDistribute super."korfu"; + "kqueue" = dontDistribute super."kqueue"; + "krpc" = dontDistribute super."krpc"; + "ks-test" = dontDistribute super."ks-test"; + "ktx" = dontDistribute super."ktx"; + "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate"; + "kyotocabinet" = dontDistribute super."kyotocabinet"; + "l-bfgs-b" = dontDistribute super."l-bfgs-b"; + "labeled-graph" = dontDistribute super."labeled-graph"; + "labeled-tree" = dontDistribute super."labeled-tree"; + "laborantin-hs" = dontDistribute super."laborantin-hs"; + "labyrinth" = dontDistribute super."labyrinth"; + "labyrinth-server" = dontDistribute super."labyrinth-server"; + "lackey" = dontDistribute super."lackey"; + "lagrangian" = dontDistribute super."lagrangian"; + "laika" = dontDistribute super."laika"; + "lambda-ast" = dontDistribute super."lambda-ast"; + "lambda-bridge" = dontDistribute super."lambda-bridge"; + "lambda-canvas" = dontDistribute super."lambda-canvas"; + "lambda-devs" = dontDistribute super."lambda-devs"; + "lambda-options" = dontDistribute super."lambda-options"; + "lambda-placeholders" = dontDistribute super."lambda-placeholders"; + "lambda-toolbox" = dontDistribute super."lambda-toolbox"; + "lambda2js" = dontDistribute super."lambda2js"; + "lambdaBase" = dontDistribute super."lambdaBase"; + "lambdaFeed" = dontDistribute super."lambdaFeed"; + "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = dontDistribute super."lambdabot"; + "lambdabot-core" = dontDistribute super."lambdabot-core"; + "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins"; + "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins"; + "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins"; + "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins"; + "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins"; + "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins"; + "lambdabot-trusted" = dontDistribute super."lambdabot-trusted"; + "lambdabot-utils" = dontDistribute super."lambdabot-utils"; + "lambdacat" = dontDistribute super."lambdacat"; + "lambdacms-core" = dontDistribute super."lambdacms-core"; + "lambdacms-media" = dontDistribute super."lambdacms-media"; + "lambdacube" = dontDistribute super."lambdacube"; + "lambdacube-bullet" = dontDistribute super."lambdacube-bullet"; + "lambdacube-compiler" = dontDistribute super."lambdacube-compiler"; + "lambdacube-core" = dontDistribute super."lambdacube-core"; + "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; + "lambdacube-engine" = dontDistribute super."lambdacube-engine"; + "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = dontDistribute super."lambdacube-gl"; + "lambdacube-ir" = dontDistribute super."lambdacube-ir"; + "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; + "lambdatwit" = dontDistribute super."lambdatwit"; + "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-c-quote" = dontDistribute super."language-c-quote"; + "language-cil" = dontDistribute super."language-cil"; + "language-css" = dontDistribute super."language-css"; + "language-dot" = dontDistribute super."language-dot"; + "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; + "language-eiffel" = dontDistribute super."language-eiffel"; + "language-fortran" = dontDistribute super."language-fortran"; + "language-gcl" = dontDistribute super."language-gcl"; + "language-go" = dontDistribute super."language-go"; + "language-guess" = dontDistribute super."language-guess"; + "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-kort" = dontDistribute super."language-kort"; + "language-lua" = dontDistribute super."language-lua"; + "language-lua-qq" = dontDistribute super."language-lua-qq"; + "language-mixal" = dontDistribute super."language-mixal"; + "language-objc" = dontDistribute super."language-objc"; + "language-openscad" = dontDistribute super."language-openscad"; + "language-pig" = dontDistribute super."language-pig"; + "language-puppet" = dontDistribute super."language-puppet"; + "language-python" = dontDistribute super."language-python"; + "language-python-colour" = dontDistribute super."language-python-colour"; + "language-python-test" = dontDistribute super."language-python-test"; + "language-qux" = dontDistribute super."language-qux"; + "language-sh" = dontDistribute super."language-sh"; + "language-slice" = dontDistribute super."language-slice"; + "language-spelling" = dontDistribute super."language-spelling"; + "language-sqlite" = dontDistribute super."language-sqlite"; + "language-thrift" = doDistribute super."language-thrift_0_7_0_1"; + "language-typescript" = dontDistribute super."language-typescript"; + "language-vhdl" = dontDistribute super."language-vhdl"; + "lat" = dontDistribute super."lat"; + "latest-npm-version" = dontDistribute super."latest-npm-version"; + "latex" = dontDistribute super."latex"; + "launchpad-control" = dontDistribute super."launchpad-control"; + "lax" = dontDistribute super."lax"; + "layers" = dontDistribute super."layers"; + "layers-game" = dontDistribute super."layers-game"; + "layout" = dontDistribute super."layout"; + "layout-bootstrap" = dontDistribute super."layout-bootstrap"; + "lazy-io" = dontDistribute super."lazy-io"; + "lazyarray" = dontDistribute super."lazyarray"; + "lazyio" = dontDistribute super."lazyio"; + "lazysmallcheck" = dontDistribute super."lazysmallcheck"; + "lazysplines" = dontDistribute super."lazysplines"; + "lbfgs" = dontDistribute super."lbfgs"; + "lcs" = dontDistribute super."lcs"; + "lda" = dontDistribute super."lda"; + "ldap-client" = dontDistribute super."ldap-client"; + "ldif" = dontDistribute super."ldif"; + "leaf" = dontDistribute super."leaf"; + "leaky" = dontDistribute super."leaky"; + "leankit-api" = dontDistribute super."leankit-api"; + "leapseconds-announced" = dontDistribute super."leapseconds-announced"; + "learn" = dontDistribute super."learn"; + "learn-physics" = dontDistribute super."learn-physics"; + "learn-physics-examples" = dontDistribute super."learn-physics-examples"; + "learning-hmm" = dontDistribute super."learning-hmm"; + "leetify" = dontDistribute super."leetify"; + "leksah" = dontDistribute super."leksah"; + "leksah-server" = dontDistribute super."leksah-server"; + "lendingclub" = dontDistribute super."lendingclub"; + "lens-datetime" = dontDistribute super."lens-datetime"; + "lens-prelude" = dontDistribute super."lens-prelude"; + "lens-properties" = dontDistribute super."lens-properties"; + "lens-sop" = dontDistribute super."lens-sop"; + "lens-text-encoding" = dontDistribute super."lens-text-encoding"; + "lens-time" = dontDistribute super."lens-time"; + "lens-tutorial" = dontDistribute super."lens-tutorial"; + "lens-utils" = dontDistribute super."lens-utils"; + "lenses" = dontDistribute super."lenses"; + "lensref" = dontDistribute super."lensref"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; + "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; + "levmar" = dontDistribute super."levmar"; + "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; + "lgtk" = dontDistribute super."lgtk"; + "lha" = dontDistribute super."lha"; + "lhae" = dontDistribute super."lhae"; + "lhc" = dontDistribute super."lhc"; + "lhe" = dontDistribute super."lhe"; + "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl"; + "lhs2html" = dontDistribute super."lhs2html"; + "lhslatex" = dontDistribute super."lhslatex"; + "libGenI" = dontDistribute super."libGenI"; + "libarchive-conduit" = dontDistribute super."libarchive-conduit"; + "libconfig" = dontDistribute super."libconfig"; + "libcspm" = dontDistribute super."libcspm"; + "libexpect" = dontDistribute super."libexpect"; + "libffi" = dontDistribute super."libffi"; + "libgraph" = dontDistribute super."libgraph"; + "libhbb" = dontDistribute super."libhbb"; + "libjenkins" = dontDistribute super."libjenkins"; + "liblastfm" = dontDistribute super."liblastfm"; + "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; + "libltdl" = dontDistribute super."libltdl"; + "libmpd" = dontDistribute super."libmpd"; + "libnvvm" = dontDistribute super."libnvvm"; + "liboleg" = dontDistribute super."liboleg"; + "libpafe" = dontDistribute super."libpafe"; + "libpq" = dontDistribute super."libpq"; + "librandomorg" = dontDistribute super."librandomorg"; + "libravatar" = dontDistribute super."libravatar"; + "libssh2" = dontDistribute super."libssh2"; + "libssh2-conduit" = dontDistribute super."libssh2-conduit"; + "libstackexchange" = dontDistribute super."libstackexchange"; + "libsystemd-daemon" = dontDistribute super."libsystemd-daemon"; + "libtagc" = dontDistribute super."libtagc"; + "libvirt-hs" = dontDistribute super."libvirt-hs"; + "libvorbis" = dontDistribute super."libvorbis"; + "libxls" = dontDistribute super."libxls"; + "libxml" = dontDistribute super."libxml"; + "libxml-enumerator" = dontDistribute super."libxml-enumerator"; + "libxslt" = dontDistribute super."libxslt"; + "life" = dontDistribute super."life"; + "lift-generics" = dontDistribute super."lift-generics"; + "lifted-threads" = dontDistribute super."lifted-threads"; + "lifter" = dontDistribute super."lifter"; + "ligature" = dontDistribute super."ligature"; + "ligd" = dontDistribute super."ligd"; + "lighttpd-conf" = dontDistribute super."lighttpd-conf"; + "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq"; + "lilypond" = dontDistribute super."lilypond"; + "limp" = dontDistribute super."limp"; + "limp-cbc" = dontDistribute super."limp-cbc"; + "lin-alg" = dontDistribute super."lin-alg"; + "linda" = dontDistribute super."linda"; + "lindenmayer" = dontDistribute super."lindenmayer"; + "line-break" = dontDistribute super."line-break"; + "line2pdf" = dontDistribute super."line2pdf"; + "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; + "linear-circuit" = dontDistribute super."linear-circuit"; + "linear-grammar" = dontDistribute super."linear-grammar"; + "linear-maps" = dontDistribute super."linear-maps"; + "linear-opengl" = dontDistribute super."linear-opengl"; + "linear-vect" = dontDistribute super."linear-vect"; + "linearEqSolver" = dontDistribute super."linearEqSolver"; + "linearscan" = dontDistribute super."linearscan"; + "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; + "linebreak" = dontDistribute super."linebreak"; + "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; + "linkchk" = dontDistribute super."linkchk"; + "linkcore" = dontDistribute super."linkcore"; + "linkedhashmap" = dontDistribute super."linkedhashmap"; + "linklater" = dontDistribute super."linklater"; + "linode" = dontDistribute super."linode"; + "linux-blkid" = dontDistribute super."linux-blkid"; + "linux-cgroup" = dontDistribute super."linux-cgroup"; + "linux-evdev" = dontDistribute super."linux-evdev"; + "linux-inotify" = dontDistribute super."linux-inotify"; + "linux-kmod" = dontDistribute super."linux-kmod"; + "linux-mount" = dontDistribute super."linux-mount"; + "linux-perf" = dontDistribute super."linux-perf"; + "linux-ptrace" = dontDistribute super."linux-ptrace"; + "linux-xattr" = dontDistribute super."linux-xattr"; + "linx-gateway" = dontDistribute super."linx-gateway"; + "lio" = dontDistribute super."lio"; + "lio-eci11" = dontDistribute super."lio-eci11"; + "lio-fs" = dontDistribute super."lio-fs"; + "lio-simple" = dontDistribute super."lio-simple"; + "lipsum-gen" = dontDistribute super."lipsum-gen"; + "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; + "liquidhaskell" = dontDistribute super."liquidhaskell"; + "lispparser" = dontDistribute super."lispparser"; + "list-extras" = dontDistribute super."list-extras"; + "list-grouping" = dontDistribute super."list-grouping"; + "list-mux" = dontDistribute super."list-mux"; + "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; + "list-t-html-parser" = dontDistribute super."list-t-html-parser"; + "list-t-http-client" = dontDistribute super."list-t-http-client"; + "list-t-libcurl" = dontDistribute super."list-t-libcurl"; + "list-t-text" = dontDistribute super."list-t-text"; + "list-tries" = dontDistribute super."list-tries"; + "list-zip-def" = dontDistribute super."list-zip-def"; + "listlike-instances" = dontDistribute super."listlike-instances"; + "lists" = dontDistribute super."lists"; + "listsafe" = dontDistribute super."listsafe"; + "lit" = dontDistribute super."lit"; + "literals" = dontDistribute super."literals"; + "live-sequencer" = dontDistribute super."live-sequencer"; + "ll-picosat" = dontDistribute super."ll-picosat"; + "llrbtree" = dontDistribute super."llrbtree"; + "llsd" = dontDistribute super."llsd"; + "llvm" = dontDistribute super."llvm"; + "llvm-analysis" = dontDistribute super."llvm-analysis"; + "llvm-base" = dontDistribute super."llvm-base"; + "llvm-base-types" = dontDistribute super."llvm-base-types"; + "llvm-base-util" = dontDistribute super."llvm-base-util"; + "llvm-data-interop" = dontDistribute super."llvm-data-interop"; + "llvm-extra" = dontDistribute super."llvm-extra"; + "llvm-ffi" = dontDistribute super."llvm-ffi"; + "llvm-general" = dontDistribute super."llvm-general"; + "llvm-general-pure" = dontDistribute super."llvm-general-pure"; + "llvm-general-quote" = dontDistribute super."llvm-general-quote"; + "llvm-ht" = dontDistribute super."llvm-ht"; + "llvm-pkg-config" = dontDistribute super."llvm-pkg-config"; + "llvm-pretty" = dontDistribute super."llvm-pretty"; + "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser"; + "llvm-tf" = dontDistribute super."llvm-tf"; + "llvm-tools" = dontDistribute super."llvm-tools"; + "lmdb" = dontDistribute super."lmdb"; + "lmonad" = dontDistribute super."lmonad"; + "lmonad-yesod" = dontDistribute super."lmonad-yesod"; + "loadavg" = dontDistribute super."loadavg"; + "local-address" = dontDistribute super."local-address"; + "local-search" = dontDistribute super."local-search"; + "located-base" = dontDistribute super."located-base"; + "locators" = dontDistribute super."locators"; + "loch" = dontDistribute super."loch"; + "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; + "lockfree-queue" = dontDistribute super."lockfree-queue"; + "log" = dontDistribute super."log"; + "log-effect" = dontDistribute super."log-effect"; + "log2json" = dontDistribute super."log2json"; + "logfloat" = dontDistribute super."logfloat"; + "logger" = dontDistribute super."logger"; + "logging" = dontDistribute super."logging"; + "logging-effect" = dontDistribute super."logging-effect"; + "logging-facade-journald" = dontDistribute super."logging-facade-journald"; + "logic-TPTP" = dontDistribute super."logic-TPTP"; + "logic-classes" = dontDistribute super."logic-classes"; + "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; + "logplex-parse" = dontDistribute super."logplex-parse"; + "logsink" = dontDistribute super."logsink"; + "lojban" = dontDistribute super."lojban"; + "lojbanParser" = dontDistribute super."lojbanParser"; + "lojbanXiragan" = dontDistribute super."lojbanXiragan"; + "lojysamban" = dontDistribute super."lojysamban"; + "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; + "loli" = dontDistribute super."loli"; + "lookup-tables" = dontDistribute super."lookup-tables"; + "loop-effin" = dontDistribute super."loop-effin"; + "loop-while" = dontDistribute super."loop-while"; + "loops" = dontDistribute super."loops"; + "loopy" = dontDistribute super."loopy"; + "lord" = dontDistribute super."lord"; + "lorem" = dontDistribute super."lorem"; + "loris" = dontDistribute super."loris"; + "loshadka" = dontDistribute super."loshadka"; + "lostcities" = dontDistribute super."lostcities"; + "lowgl" = dontDistribute super."lowgl"; + "lp-diagrams" = dontDistribute super."lp-diagrams"; + "lp-diagrams-svg" = dontDistribute super."lp-diagrams-svg"; + "ls-usb" = dontDistribute super."ls-usb"; + "lscabal" = dontDistribute super."lscabal"; + "lss" = dontDistribute super."lss"; + "lsystem" = dontDistribute super."lsystem"; + "ltk" = dontDistribute super."ltk"; + "ltl" = dontDistribute super."ltl"; + "lua-bytecode" = dontDistribute super."lua-bytecode"; + "luachunk" = dontDistribute super."luachunk"; + "luautils" = dontDistribute super."luautils"; + "lub" = dontDistribute super."lub"; + "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucienne" = dontDistribute super."lucienne"; + "luhn" = dontDistribute super."luhn"; + "lui" = dontDistribute super."lui"; + "luka" = dontDistribute super."luka"; + "luminance" = doDistribute super."luminance_0_9_1_2"; + "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; + "lushtags" = dontDistribute super."lushtags"; + "luthor" = dontDistribute super."luthor"; + "lvish" = dontDistribute super."lvish"; + "lvmlib" = dontDistribute super."lvmlib"; + "lvmrun" = dontDistribute super."lvmrun"; + "lxc" = dontDistribute super."lxc"; + "lye" = dontDistribute super."lye"; + "lz4" = dontDistribute super."lz4"; + "lzma" = dontDistribute super."lzma"; + "lzma-clib" = dontDistribute super."lzma-clib"; + "lzma-enumerator" = dontDistribute super."lzma-enumerator"; + "lzma-streams" = dontDistribute super."lzma-streams"; + "maam" = dontDistribute super."maam"; + "mac" = dontDistribute super."mac"; + "maccatcher" = dontDistribute super."maccatcher"; + "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; + "machines-zlib" = dontDistribute super."machines-zlib"; + "macho" = dontDistribute super."macho"; + "maclight" = dontDistribute super."maclight"; + "macosx-make-standalone" = dontDistribute super."macosx-make-standalone"; + "mage" = dontDistribute super."mage"; + "magico" = dontDistribute super."magico"; + "magma" = dontDistribute super."magma"; + "mahoro" = dontDistribute super."mahoro"; + "maid" = dontDistribute super."maid"; + "mailbox-count" = dontDistribute super."mailbox-count"; + "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; + "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = dontDistribute super."mainland-pretty"; + "majordomo" = dontDistribute super."majordomo"; + "majority" = dontDistribute super."majority"; + "make-hard-links" = dontDistribute super."make-hard-links"; + "make-package" = dontDistribute super."make-package"; + "makedo" = dontDistribute super."makedo"; + "manatee" = dontDistribute super."manatee"; + "manatee-all" = dontDistribute super."manatee-all"; + "manatee-anything" = dontDistribute super."manatee-anything"; + "manatee-browser" = dontDistribute super."manatee-browser"; + "manatee-core" = dontDistribute super."manatee-core"; + "manatee-curl" = dontDistribute super."manatee-curl"; + "manatee-editor" = dontDistribute super."manatee-editor"; + "manatee-filemanager" = dontDistribute super."manatee-filemanager"; + "manatee-imageviewer" = dontDistribute super."manatee-imageviewer"; + "manatee-ircclient" = dontDistribute super."manatee-ircclient"; + "manatee-mplayer" = dontDistribute super."manatee-mplayer"; + "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer"; + "manatee-processmanager" = dontDistribute super."manatee-processmanager"; + "manatee-reader" = dontDistribute super."manatee-reader"; + "manatee-template" = dontDistribute super."manatee-template"; + "manatee-terminal" = dontDistribute super."manatee-terminal"; + "manatee-welcome" = dontDistribute super."manatee-welcome"; + "mancala" = dontDistribute super."mancala"; + "mandulia" = dontDistribute super."mandulia"; + "manifold-random" = dontDistribute super."manifold-random"; + "manifolds" = dontDistribute super."manifolds"; + "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"; + "matchers" = dontDistribute super."matchers"; + "mathblog" = dontDistribute super."mathblog"; + "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; + "mathlink" = dontDistribute super."mathlink"; + "matlab" = dontDistribute super."matlab"; + "matrix-market" = dontDistribute super."matrix-market"; + "matrix-market-pure" = dontDistribute super."matrix-market-pure"; + "matsuri" = dontDistribute super."matsuri"; + "maude" = dontDistribute super."maude"; + "maxent" = dontDistribute super."maxent"; + "maxsharing" = dontDistribute super."maxsharing"; + "maybe-justify" = dontDistribute super."maybe-justify"; + "maybench" = dontDistribute super."maybench"; + "mbox-tools" = dontDistribute super."mbox-tools"; + "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; + "mcmc-samplers" = dontDistribute super."mcmc-samplers"; + "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; + "mcpi" = dontDistribute super."mcpi"; + "mdapi" = dontDistribute super."mdapi"; + "mdcat" = dontDistribute super."mdcat"; + "mdo" = dontDistribute super."mdo"; + "mdp" = dontDistribute super."mdp"; + "mecab" = dontDistribute super."mecab"; + "mecha" = dontDistribute super."mecha"; + "mediawiki" = dontDistribute super."mediawiki"; + "mediawiki2latex" = dontDistribute super."mediawiki2latex"; + "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; + "meep" = dontDistribute super."meep"; + "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = doDistribute super."megaparsec_4_3_0"; + "meldable-heap" = dontDistribute super."meldable-heap"; + "melody" = dontDistribute super."melody"; + "memcache" = dontDistribute super."memcache"; + "memcache-conduit" = dontDistribute super."memcache-conduit"; + "memcache-haskell" = dontDistribute super."memcache-haskell"; + "memcached" = dontDistribute super."memcached"; + "memexml" = dontDistribute super."memexml"; + "memo-ptr" = dontDistribute super."memo-ptr"; + "memo-sqlite" = dontDistribute super."memo-sqlite"; + "memscript" = dontDistribute super."memscript"; + "mersenne-random" = dontDistribute super."mersenne-random"; + "mersenne-random-pure64" = doDistribute super."mersenne-random-pure64_0_2_0_4"; + "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"; + "microtimer" = dontDistribute super."microtimer"; + "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; + "midi" = dontDistribute super."midi"; + "midi-alsa" = dontDistribute super."midi-alsa"; + "midi-music-box" = dontDistribute super."midi-music-box"; + "midi-util" = dontDistribute super."midi-util"; + "midimory" = dontDistribute super."midimory"; + "midisurface" = dontDistribute super."midisurface"; + "mighttpd" = dontDistribute super."mighttpd"; + "mighttpd2" = dontDistribute super."mighttpd2"; + "mikmod" = dontDistribute super."mikmod"; + "miku" = dontDistribute super."miku"; + "milena" = dontDistribute super."milena"; + "mime" = dontDistribute super."mime"; + "mime-directory" = dontDistribute super."mime-directory"; + "mime-string" = dontDistribute super."mime-string"; + "mines" = dontDistribute super."mines"; + "minesweeper" = dontDistribute super."minesweeper"; + "miniball" = dontDistribute super."miniball"; + "miniforth" = dontDistribute super."miniforth"; + "minilens" = dontDistribute super."minilens"; + "minimal-configuration" = dontDistribute super."minimal-configuration"; + "minimorph" = dontDistribute super."minimorph"; + "minimung" = dontDistribute super."minimung"; + "minions" = dontDistribute super."minions"; + "minioperational" = dontDistribute super."minioperational"; + "miniplex" = dontDistribute super."miniplex"; + "minirotate" = dontDistribute super."minirotate"; + "minisat" = dontDistribute super."minisat"; + "ministg" = dontDistribute super."ministg"; + "miniutter" = dontDistribute super."miniutter"; + "minst-idx" = dontDistribute super."minst-idx"; + "mirror-tweet" = dontDistribute super."mirror-tweet"; + "missing-py2" = dontDistribute super."missing-py2"; + "mix-arrows" = dontDistribute super."mix-arrows"; + "mixed-strategies" = dontDistribute super."mixed-strategies"; + "mkbndl" = dontDistribute super."mkbndl"; + "mkcabal" = dontDistribute super."mkcabal"; + "ml-w" = dontDistribute super."ml-w"; + "mlist" = dontDistribute super."mlist"; + "mmtl" = dontDistribute super."mmtl"; + "mmtl-base" = dontDistribute super."mmtl-base"; + "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-exception" = dontDistribute super."monad-exception"; + "monad-fork" = dontDistribute super."monad-fork"; + "monad-gen" = dontDistribute super."monad-gen"; + "monad-interleave" = dontDistribute super."monad-interleave"; + "monad-levels" = dontDistribute super."monad-levels"; + "monad-loops-stm" = dontDistribute super."monad-loops-stm"; + "monad-lrs" = dontDistribute super."monad-lrs"; + "monad-memo" = dontDistribute super."monad-memo"; + "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; + "monad-open" = dontDistribute super."monad-open"; + "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; + "monad-param" = dontDistribute super."monad-param"; + "monad-ran" = dontDistribute super."monad-ran"; + "monad-resumption" = dontDistribute super."monad-resumption"; + "monad-state" = dontDistribute super."monad-state"; + "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-stlike-io" = dontDistribute super."monad-stlike-io"; + "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; + "monad-supply" = dontDistribute super."monad-supply"; + "monad-task" = dontDistribute super."monad-task"; + "monad-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"; + "monadplus" = dontDistribute super."monadplus"; + "monads-fd" = dontDistribute super."monads-fd"; + "monadtransform" = dontDistribute super."monadtransform"; + "monarch" = dontDistribute super."monarch"; + "mongodb-queue" = dontDistribute super."mongodb-queue"; + "mongrel2-handler" = dontDistribute super."mongrel2-handler"; + "monitor" = dontDistribute super."monitor"; + "mono-foldable" = dontDistribute super."mono-foldable"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-owns" = dontDistribute super."monoid-owns"; + "monoid-record" = dontDistribute super."monoid-record"; + "monoid-statistics" = dontDistribute super."monoid-statistics"; + "monoid-transformer" = dontDistribute super."monoid-transformer"; + "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"; + "mosaico-lib" = dontDistribute super."mosaico-lib"; + "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; + "mp" = dontDistribute super."mp"; + "mp3decoder" = dontDistribute super."mp3decoder"; + "mpdmate" = dontDistribute super."mpdmate"; + "mpppc" = dontDistribute super."mpppc"; + "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; + "mprover" = dontDistribute super."mprover"; + "mps" = dontDistribute super."mps"; + "mpvguihs" = dontDistribute super."mpvguihs"; + "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; + "ms" = dontDistribute super."ms"; + "msgpack" = dontDistribute super."msgpack"; + "msgpack-aeson" = dontDistribute super."msgpack-aeson"; + "msgpack-idl" = dontDistribute super."msgpack-idl"; + "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; + "msu" = dontDistribute super."msu"; + "mtgoxapi" = dontDistribute super."mtgoxapi"; + "mtl-c" = dontDistribute super."mtl-c"; + "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-tf" = dontDistribute super."mtl-tf"; + "mtl-unleashed" = dontDistribute super."mtl-unleashed"; + "mtlparse" = dontDistribute super."mtlparse"; + "mtlx" = dontDistribute super."mtlx"; + "mtp" = dontDistribute super."mtp"; + "mtree" = dontDistribute super."mtree"; + "mucipher" = dontDistribute super."mucipher"; + "mudbath" = dontDistribute super."mudbath"; + "muesli" = dontDistribute super."muesli"; + "mueval" = dontDistribute super."mueval"; + "mulang" = dontDistribute super."mulang"; + "multext-east-msd" = dontDistribute super."multext-east-msd"; + "multi-cabal" = dontDistribute super."multi-cabal"; + "multiaddr" = dontDistribute super."multiaddr"; + "multifocal" = dontDistribute super."multifocal"; + "multihash" = dontDistribute super."multihash"; + "multipart-names" = dontDistribute super."multipart-names"; + "multipass" = dontDistribute super."multipass"; + "multiplate-simplified" = dontDistribute super."multiplate-simplified"; + "multiplicity" = dontDistribute super."multiplicity"; + "multirec" = dontDistribute super."multirec"; + "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; + "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset-comb" = dontDistribute super."multiset-comb"; + "multisetrewrite" = dontDistribute super."multisetrewrite"; + "multistate" = dontDistribute super."multistate"; + "muon" = dontDistribute super."muon"; + "murder" = dontDistribute super."murder"; + "murmur3" = dontDistribute super."murmur3"; + "murmurhash3" = dontDistribute super."murmurhash3"; + "music-articulation" = dontDistribute super."music-articulation"; + "music-diatonic" = dontDistribute super."music-diatonic"; + "music-dynamics" = dontDistribute super."music-dynamics"; + "music-dynamics-literal" = dontDistribute super."music-dynamics-literal"; + "music-graphics" = dontDistribute super."music-graphics"; + "music-parts" = dontDistribute super."music-parts"; + "music-pitch" = dontDistribute super."music-pitch"; + "music-pitch-literal" = dontDistribute super."music-pitch-literal"; + "music-preludes" = dontDistribute super."music-preludes"; + "music-score" = dontDistribute super."music-score"; + "music-sibelius" = dontDistribute super."music-sibelius"; + "music-suite" = dontDistribute super."music-suite"; + "music-util" = dontDistribute super."music-util"; + "musicbrainz-email" = dontDistribute super."musicbrainz-email"; + "musicxml" = dontDistribute super."musicxml"; + "musicxml2" = dontDistribute super."musicxml2"; + "mustache-haskell" = dontDistribute super."mustache-haskell"; + "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-iter" = dontDistribute super."mutable-iter"; + "mute-unmute" = dontDistribute super."mute-unmute"; + "mvc" = dontDistribute super."mvc"; + "mvc-updates" = dontDistribute super."mvc-updates"; + "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = doDistribute super."mwc-probability_1_0_3"; + "mwc-random-monad" = dontDistribute super."mwc-random-monad"; + "myTestlll" = dontDistribute super."myTestlll"; + "mybitcoin-sci" = dontDistribute super."mybitcoin-sci"; + "myo" = dontDistribute super."myo"; + "mysnapsession" = dontDistribute super."mysnapsession"; + "mysnapsession-example" = dontDistribute super."mysnapsession-example"; + "mysql-effect" = dontDistribute super."mysql-effect"; + "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi"; + "mysql-simple-typed" = dontDistribute super."mysql-simple-typed"; + "mzv" = dontDistribute super."mzv"; + "n-m" = dontDistribute super."n-m"; + "nagios-perfdata" = dontDistribute super."nagios-perfdata"; + "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg"; + "named-formlet" = dontDistribute super."named-formlet"; + "named-lock" = dontDistribute super."named-lock"; + "named-records" = dontDistribute super."named-records"; + "namelist" = dontDistribute super."namelist"; + "names" = dontDistribute super."names"; + "names-th" = dontDistribute super."names-th"; + "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; + "nano-hmac" = dontDistribute super."nano-hmac"; + "nano-md5" = dontDistribute super."nano-md5"; + "nanoAgda" = dontDistribute super."nanoAgda"; + "nanocurses" = dontDistribute super."nanocurses"; + "nanomsg" = dontDistribute super."nanomsg"; + "nanomsg-haskell" = dontDistribute super."nanomsg-haskell"; + "nanoparsec" = dontDistribute super."nanoparsec"; + "nanq" = dontDistribute super."nanq"; + "narc" = dontDistribute super."narc"; + "nat" = dontDistribute super."nat"; + "nats-queue" = dontDistribute super."nats-queue"; + "natural-number" = dontDistribute super."natural-number"; + "natural-numbers" = dontDistribute super."natural-numbers"; + "natural-transformation" = dontDistribute super."natural-transformation"; + "naturalcomp" = dontDistribute super."naturalcomp"; + "naturals" = dontDistribute super."naturals"; + "naver-translate" = dontDistribute super."naver-translate"; + "nbt" = dontDistribute super."nbt"; + "nc-indicators" = dontDistribute super."nc-indicators"; + "ncurses" = dontDistribute super."ncurses"; + "neat" = dontDistribute super."neat"; + "needle" = dontDistribute super."needle"; + "neet" = dontDistribute super."neet"; + "nehe-tuts" = dontDistribute super."nehe-tuts"; + "neil" = dontDistribute super."neil"; + "neither" = dontDistribute super."neither"; + "nemesis" = dontDistribute super."nemesis"; + "nemesis-titan" = dontDistribute super."nemesis-titan"; + "nerf" = dontDistribute super."nerf"; + "nero" = dontDistribute super."nero"; + "nero-wai" = dontDistribute super."nero-wai"; + "nero-warp" = dontDistribute super."nero-warp"; + "nested-routes" = dontDistribute super."nested-routes"; + "nested-sets" = dontDistribute super."nested-sets"; + "nestedmap" = dontDistribute super."nestedmap"; + "net-concurrent" = dontDistribute super."net-concurrent"; + "netclock" = dontDistribute super."netclock"; + "netcore" = dontDistribute super."netcore"; + "netlines" = dontDistribute super."netlines"; + "netlink" = dontDistribute super."netlink"; + "netlist" = dontDistribute super."netlist"; + "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl"; + "netpbm" = dontDistribute super."netpbm"; + "netrc" = dontDistribute super."netrc"; + "netspec" = dontDistribute super."netspec"; + "netstring-enumerator" = dontDistribute super."netstring-enumerator"; + "nettle-frp" = dontDistribute super."nettle-frp"; + "nettle-netkit" = dontDistribute super."nettle-netkit"; + "nettle-openflow" = dontDistribute super."nettle-openflow"; + "netwire" = dontDistribute super."netwire"; + "netwire-input" = dontDistribute super."netwire-input"; + "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; + "network-address" = dontDistribute super."network-address"; + "network-api-support" = dontDistribute super."network-api-support"; + "network-bitcoin" = dontDistribute super."network-bitcoin"; + "network-builder" = dontDistribute super."network-builder"; + "network-bytestring" = dontDistribute super."network-bytestring"; + "network-conduit" = dontDistribute super."network-conduit"; + "network-connection" = dontDistribute super."network-connection"; + "network-data" = dontDistribute super."network-data"; + "network-dbus" = dontDistribute super."network-dbus"; + "network-dns" = dontDistribute super."network-dns"; + "network-enumerator" = dontDistribute super."network-enumerator"; + "network-fancy" = dontDistribute super."network-fancy"; + "network-interfacerequest" = dontDistribute super."network-interfacerequest"; + "network-ip" = dontDistribute super."network-ip"; + "network-metrics" = dontDistribute super."network-metrics"; + "network-minihttp" = dontDistribute super."network-minihttp"; + "network-msg" = dontDistribute super."network-msg"; + "network-netpacket" = dontDistribute super."network-netpacket"; + "network-pgi" = dontDistribute super."network-pgi"; + "network-rpca" = dontDistribute super."network-rpca"; + "network-server" = dontDistribute super."network-server"; + "network-service" = dontDistribute super."network-service"; + "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; + "network-simple-tls" = dontDistribute super."network-simple-tls"; + "network-socket-options" = dontDistribute super."network-socket-options"; + "network-stream" = dontDistribute super."network-stream"; + "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport-amqp" = dontDistribute super."network-transport-amqp"; + "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; + "network-uri-static" = dontDistribute super."network-uri-static"; + "network-wai-router" = dontDistribute super."network-wai-router"; + "network-websocket" = dontDistribute super."network-websocket"; + "networked-game" = dontDistribute super."networked-game"; + "newports" = dontDistribute super."newports"; + "newsynth" = dontDistribute super."newsynth"; + "newt" = dontDistribute super."newt"; + "newtype-deriving" = dontDistribute super."newtype-deriving"; + "newtype-th" = dontDistribute super."newtype-th"; + "newtyper" = dontDistribute super."newtyper"; + "nextstep-plist" = dontDistribute super."nextstep-plist"; + "nf" = dontDistribute super."nf"; + "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; + "nibblestring" = dontDistribute super."nibblestring"; + "nicify" = dontDistribute super."nicify"; + "nicify-lib" = dontDistribute super."nicify-lib"; + "nicovideo-translator" = dontDistribute super."nicovideo-translator"; + "nikepub" = dontDistribute super."nikepub"; + "nimber" = dontDistribute super."nimber"; + "nist-beacon" = dontDistribute super."nist-beacon"; + "nitro" = dontDistribute super."nitro"; + "nix-eval" = dontDistribute super."nix-eval"; + "nixfromnpm" = dontDistribute super."nixfromnpm"; + "nixos-types" = dontDistribute super."nixos-types"; + "nkjp" = dontDistribute super."nkjp"; + "nlp-scores" = dontDistribute super."nlp-scores"; + "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts"; + "nm" = dontDistribute super."nm"; + "nme" = dontDistribute super."nme"; + "nntp" = dontDistribute super."nntp"; + "no-buffering-workaround" = dontDistribute super."no-buffering-workaround"; + "no-role-annots" = dontDistribute super."no-role-annots"; + "nofib-analyse" = dontDistribute super."nofib-analyse"; + "nofib-analyze" = dontDistribute super."nofib-analyze"; + "noise" = dontDistribute super."noise"; + "non-empty" = dontDistribute super."non-empty"; + "non-negative" = dontDistribute super."non-negative"; + "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; + "nonfree" = dontDistribute super."nonfree"; + "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; + "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; + "noodle" = dontDistribute super."noodle"; + "normaldistribution" = dontDistribute super."normaldistribution"; + "not-gloss" = dontDistribute super."not-gloss"; + "not-gloss-examples" = dontDistribute super."not-gloss-examples"; + "not-in-base" = dontDistribute super."not-in-base"; + "notcpp" = dontDistribute super."notcpp"; + "notmuch-haskell" = dontDistribute super."notmuch-haskell"; + "notmuch-web" = dontDistribute super."notmuch-web"; + "notzero" = dontDistribute super."notzero"; + "np-extras" = dontDistribute super."np-extras"; + "np-linear" = dontDistribute super."np-linear"; + "nptools" = dontDistribute super."nptools"; + "nth-prime" = dontDistribute super."nth-prime"; + "nthable" = dontDistribute super."nthable"; + "ntp-control" = dontDistribute super."ntp-control"; + "null-canvas" = dontDistribute super."null-canvas"; + "nullary" = dontDistribute super."nullary"; + "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; + "numbering" = dontDistribute super."numbering"; + "numerals" = dontDistribute super."numerals"; + "numerals-base" = dontDistribute super."numerals-base"; + "numeric-limits" = dontDistribute super."numeric-limits"; + "numeric-prelude" = dontDistribute super."numeric-prelude"; + "numeric-qq" = dontDistribute super."numeric-qq"; + "numeric-quest" = dontDistribute super."numeric-quest"; + "numeric-ranges" = dontDistribute super."numeric-ranges"; + "numeric-tools" = dontDistribute super."numeric-tools"; + "numericpeano" = dontDistribute super."numericpeano"; + "nums" = dontDistribute super."nums"; + "numtype" = dontDistribute super."numtype"; + "numtype-tf" = dontDistribute super."numtype-tf"; + "nurbs" = dontDistribute super."nurbs"; + "nvim-hs" = dontDistribute super."nvim-hs"; + "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib"; + "nyan" = dontDistribute super."nyan"; + "nylas" = dontDistribute super."nylas"; + "nymphaea" = dontDistribute super."nymphaea"; + "oanda-rest-api" = dontDistribute super."oanda-rest-api"; + "oauthenticated" = dontDistribute super."oauthenticated"; + "obdd" = dontDistribute super."obdd"; + "oberon0" = dontDistribute super."oberon0"; + "obj" = dontDistribute super."obj"; + "objectid" = dontDistribute super."objectid"; + "objective" = doDistribute super."objective_1_0_5"; + "observable-sharing" = dontDistribute super."observable-sharing"; + "octane" = dontDistribute super."octane"; + "octohat" = dontDistribute super."octohat"; + "octopus" = dontDistribute super."octopus"; + "oculus" = dontDistribute super."oculus"; + "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = dontDistribute super."oeis"; + "off-simple" = dontDistribute super."off-simple"; + "ohloh-hs" = dontDistribute super."ohloh-hs"; + "oi" = dontDistribute super."oi"; + "oidc-client" = dontDistribute super."oidc-client"; + "ois-input-manager" = dontDistribute super."ois-input-manager"; + "old-version" = dontDistribute super."old-version"; + "olwrapper" = dontDistribute super."olwrapper"; + "omaketex" = dontDistribute super."omaketex"; + "omega" = dontDistribute super."omega"; + "omnicodec" = dontDistribute super."omnicodec"; + "on-a-horse" = dontDistribute super."on-a-horse"; + "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "one-liner" = dontDistribute super."one-liner"; + "one-time-password" = dontDistribute super."one-time-password"; + "oneOfN" = dontDistribute super."oneOfN"; + "oneormore" = dontDistribute super."oneormore"; + "only" = dontDistribute super."only"; + "onu-course" = dontDistribute super."onu-course"; + "opaleye-classy" = dontDistribute super."opaleye-classy"; + "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; + "opaleye-trans" = dontDistribute super."opaleye-trans"; + "open-haddock" = dontDistribute super."open-haddock"; + "open-pandoc" = dontDistribute super."open-pandoc"; + "open-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"; + "opml-conduit" = doDistribute super."opml-conduit_0_4_0_1"; + "opn" = dontDistribute super."opn"; + "optimal-blocks" = dontDistribute super."optimal-blocks"; + "optimization" = dontDistribute super."optimization"; + "optimusprime" = dontDistribute super."optimusprime"; + "option" = dontDistribute super."option"; + "optional" = dontDistribute super."optional"; + "options-time" = dontDistribute super."options-time"; + "optparse-declarative" = dontDistribute super."optparse-declarative"; + "optparse-generic" = dontDistribute super."optparse-generic"; + "orc" = dontDistribute super."orc"; + "orchestrate" = dontDistribute super."orchestrate"; + "orchid" = dontDistribute super."orchid"; + "orchid-demo" = dontDistribute super."orchid-demo"; + "ord-adhoc" = dontDistribute super."ord-adhoc"; + "order-maintenance" = dontDistribute super."order-maintenance"; + "order-statistic-tree" = dontDistribute super."order-statistic-tree"; + "order-statistics" = dontDistribute super."order-statistics"; + "ordered" = dontDistribute super."ordered"; + "orders" = dontDistribute super."orders"; + "ordrea" = dontDistribute super."ordrea"; + "organize-imports" = dontDistribute super."organize-imports"; + "orgmode" = dontDistribute super."orgmode"; + "orgmode-parse" = dontDistribute super."orgmode-parse"; + "origami" = dontDistribute super."origami"; + "os-release" = dontDistribute super."os-release"; + "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; + "osm-download" = dontDistribute super."osm-download"; + "oso2pdf" = dontDistribute super."oso2pdf"; + "osx-ar" = dontDistribute super."osx-ar"; + "ot" = dontDistribute super."ot"; + "ottparse-pretty" = dontDistribute super."ottparse-pretty"; + "overloaded-records" = dontDistribute super."overloaded-records"; + "overture" = dontDistribute super."overture"; + "pack" = dontDistribute super."pack"; + "package-o-tron" = dontDistribute super."package-o-tron"; + "package-vt" = dontDistribute super."package-vt"; + "packdeps" = dontDistribute super."packdeps"; + "packed-dawg" = dontDistribute super."packed-dawg"; + "packedstring" = dontDistribute super."packedstring"; + "packer" = dontDistribute super."packer"; + "packman" = dontDistribute super."packman"; + "packunused" = dontDistribute super."packunused"; + "pacman-memcache" = dontDistribute super."pacman-memcache"; + "padKONTROL" = dontDistribute super."padKONTROL"; + "pagarme" = dontDistribute super."pagarme"; + "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palindromes" = dontDistribute super."palindromes"; + "pam" = dontDistribute super."pam"; + "panda" = dontDistribute super."panda"; + "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; + "pandoc-crossref" = dontDistribute super."pandoc-crossref"; + "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; + "pandoc-include" = dontDistribute super."pandoc-include"; + "pandoc-japanese-filters" = dontDistribute super."pandoc-japanese-filters"; + "pandoc-lens" = dontDistribute super."pandoc-lens"; + "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "papillon" = dontDistribute super."papillon"; + "pappy" = dontDistribute super."pappy"; + "para" = dontDistribute super."para"; + "paragon" = dontDistribute super."paragon"; + "parallel-tasks" = dontDistribute super."parallel-tasks"; + "parallel-tree-search" = dontDistribute super."parallel-tree-search"; + "parameterized-data" = dontDistribute super."parameterized-data"; + "parco" = dontDistribute super."parco"; + "parco-attoparsec" = dontDistribute super."parco-attoparsec"; + "parco-parsec" = dontDistribute super."parco-parsec"; + "parcom-lib" = dontDistribute super."parcom-lib"; + "parconc-examples" = dontDistribute super."parconc-examples"; + "parport" = dontDistribute super."parport"; + "parse-dimacs" = dontDistribute super."parse-dimacs"; + "parse-help" = dontDistribute super."parse-help"; + "parsec-extra" = dontDistribute super."parsec-extra"; + "parsec-numbers" = dontDistribute super."parsec-numbers"; + "parsec-parsers" = dontDistribute super."parsec-parsers"; + "parsec-permutation" = dontDistribute super."parsec-permutation"; + "parsec-tagsoup" = dontDistribute super."parsec-tagsoup"; + "parsec-trace" = dontDistribute super."parsec-trace"; + "parsec-utils" = dontDistribute super."parsec-utils"; + "parsec1" = dontDistribute super."parsec1"; + "parsec2" = dontDistribute super."parsec2"; + "parsec3" = dontDistribute super."parsec3"; + "parsec3-numbers" = dontDistribute super."parsec3-numbers"; + "parsedate" = dontDistribute super."parsedate"; + "parsek" = dontDistribute super."parsek"; + "parsely" = dontDistribute super."parsely"; + "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; + "parsergen" = dontDistribute super."parsergen"; + "parsestar" = dontDistribute super."parsestar"; + "parsimony" = dontDistribute super."parsimony"; + "partial" = dontDistribute super."partial"; + "partial-lens" = dontDistribute super."partial-lens"; + "partial-uri" = dontDistribute super."partial-uri"; + "partly" = dontDistribute super."partly"; + "passage" = dontDistribute super."passage"; + "passwords" = dontDistribute super."passwords"; + "pastis" = dontDistribute super."pastis"; + "pasty" = dontDistribute super."pasty"; + "patch-combinators" = dontDistribute super."patch-combinators"; + "patch-image" = dontDistribute super."patch-image"; + "path-io" = doDistribute super."path-io_0_2_0"; + "pathfinding" = dontDistribute super."pathfinding"; + "pathfindingcore" = dontDistribute super."pathfindingcore"; + "pathtype" = dontDistribute super."pathtype"; + "patronscraper" = dontDistribute super."patronscraper"; + "patterns" = dontDistribute super."patterns"; + "paymill" = dontDistribute super."paymill"; + "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops"; + "paypal-api" = dontDistribute super."paypal-api"; + "pb" = dontDistribute super."pb"; + "pbc4hs" = dontDistribute super."pbc4hs"; + "pbkdf" = dontDistribute super."pbkdf"; + "pcap-conduit" = dontDistribute super."pcap-conduit"; + "pcap-enumerator" = dontDistribute super."pcap-enumerator"; + "pcd-loader" = dontDistribute super."pcd-loader"; + "pcf" = dontDistribute super."pcf"; + "pcg-random" = dontDistribute super."pcg-random"; + "pcre-less" = dontDistribute super."pcre-less"; + "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; + "pdf2line" = dontDistribute super."pdf2line"; + "pdfsplit" = dontDistribute super."pdfsplit"; + "pdynload" = dontDistribute super."pdynload"; + "peakachu" = dontDistribute super."peakachu"; + "peano" = dontDistribute super."peano"; + "peano-inf" = dontDistribute super."peano-inf"; + "pec" = dontDistribute super."pec"; + "pecoff" = dontDistribute super."pecoff"; + "peg" = dontDistribute super."peg"; + "peggy" = dontDistribute super."peggy"; + "pell" = dontDistribute super."pell"; + "penn-treebank" = dontDistribute super."penn-treebank"; + "penny" = dontDistribute super."penny"; + "penny-bin" = dontDistribute super."penny-bin"; + "penny-lib" = dontDistribute super."penny-lib"; + "peparser" = dontDistribute super."peparser"; + "perceptron" = dontDistribute super."perceptron"; + "perdure" = dontDistribute super."perdure"; + "period" = dontDistribute super."period"; + "perm" = dontDistribute super."perm"; + "permutation" = dontDistribute super."permutation"; + "permute" = dontDistribute super."permute"; + "persist2er" = dontDistribute super."persist2er"; + "persistable-record" = dontDistribute super."persistable-record"; + "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent" = doDistribute super."persistent_2_2_4"; + "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-equivalence" = dontDistribute super."persistent-equivalence"; + "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; + "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; + "persistent-iproute" = dontDistribute super."persistent-iproute"; + "persistent-map" = dontDistribute super."persistent-map"; + "persistent-odbc" = dontDistribute super."persistent-odbc"; + "persistent-protobuf" = dontDistribute super."persistent-protobuf"; + "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; + "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2"; + "persistent-template" = doDistribute super."persistent-template_2_1_5"; + "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"; + "pgdl" = dontDistribute super."pgdl"; + "pgm" = dontDistribute super."pgm"; + "pgsql-simple" = dontDistribute super."pgsql-simple"; + "pgstream" = dontDistribute super."pgstream"; + "phasechange" = dontDistribute super."phasechange"; + "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; + "phone-numbers" = dontDistribute super."phone-numbers"; + "phone-push" = dontDistribute super."phone-push"; + "phonetic-code" = dontDistribute super."phonetic-code"; + "phooey" = dontDistribute super."phooey"; + "photoname" = dontDistribute super."photoname"; + "phraskell" = dontDistribute super."phraskell"; + "phybin" = dontDistribute super."phybin"; + "pi-calculus" = dontDistribute super."pi-calculus"; + "pia-forward" = dontDistribute super."pia-forward"; + "pianola" = dontDistribute super."pianola"; + "picologic" = dontDistribute super."picologic"; + "picosat" = dontDistribute super."picosat"; + "piet" = dontDistribute super."piet"; + "piki" = dontDistribute super."piki"; + "pinboard" = dontDistribute super."pinboard"; + "pinchot" = doDistribute super."pinchot_0_6_0_0"; + "pipe-enumerator" = dontDistribute super."pipe-enumerator"; + "pipeclip" = dontDistribute super."pipeclip"; + "pipes-async" = dontDistribute super."pipes-async"; + "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-bzip" = dontDistribute super."pipes-bzip"; + "pipes-cacophony" = doDistribute super."pipes-cacophony_0_1_3"; + "pipes-cellular" = dontDistribute super."pipes-cellular"; + "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; + "pipes-cereal" = dontDistribute super."pipes-cereal"; + "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-conduit" = dontDistribute super."pipes-conduit"; + "pipes-core" = dontDistribute super."pipes-core"; + "pipes-courier" = dontDistribute super."pipes-courier"; + "pipes-errors" = dontDistribute super."pipes-errors"; + "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-files" = dontDistribute super."pipes-files"; + "pipes-interleave" = dontDistribute super."pipes-interleave"; + "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-network-tls" = dontDistribute super."pipes-network-tls"; + "pipes-p2p" = dontDistribute super."pipes-p2p"; + "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; + "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; + "pipes-vector" = dontDistribute super."pipes-vector"; + "pipes-websockets" = dontDistribute super."pipes-websockets"; + "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; + "pipes-zlib" = dontDistribute super."pipes-zlib"; + "pisigma" = dontDistribute super."pisigma"; + "pit" = dontDistribute super."pit"; + "pitchtrack" = dontDistribute super."pitchtrack"; + "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pkcs1" = dontDistribute super."pkcs1"; + "pkcs7" = dontDistribute super."pkcs7"; + "pkggraph" = dontDistribute super."pkggraph"; + "pktree" = dontDistribute super."pktree"; + "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; + "planar-graph" = dontDistribute super."planar-graph"; + "plat" = dontDistribute super."plat"; + "playlists" = dontDistribute super."playlists"; + "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; + "plivo" = dontDistribute super."plivo"; + "plot-lab" = dontDistribute super."plot-lab"; + "plotfont" = dontDistribute super."plotfont"; + "plotserver-api" = dontDistribute super."plotserver-api"; + "plugins" = dontDistribute super."plugins"; + "plugins-auto" = dontDistribute super."plugins-auto"; + "plugins-multistage" = dontDistribute super."plugins-multistage"; + "plumbers" = dontDistribute super."plumbers"; + "ply-loader" = dontDistribute super."ply-loader"; + "png-file" = dontDistribute super."png-file"; + "pngload" = dontDistribute super."pngload"; + "pngload-fixed" = dontDistribute super."pngload-fixed"; + "pnm" = dontDistribute super."pnm"; + "pocket-dns" = dontDistribute super."pocket-dns"; + "pointfree" = dontDistribute super."pointfree"; + "pointful" = dontDistribute super."pointful"; + "pointless-fun" = dontDistribute super."pointless-fun"; + "pointless-haskell" = dontDistribute super."pointless-haskell"; + "pointless-lenses" = dontDistribute super."pointless-lenses"; + "pointless-rewrite" = dontDistribute super."pointless-rewrite"; + "poker-eval" = dontDistribute super."poker-eval"; + "pokitdok" = dontDistribute super."pokitdok"; + "polar" = dontDistribute super."polar"; + "polar-configfile" = dontDistribute super."polar-configfile"; + "polar-shader" = dontDistribute super."polar-shader"; + "polh-lexicon" = dontDistribute super."polh-lexicon"; + "polimorf" = dontDistribute super."polimorf"; + "poll" = dontDistribute super."poll"; + "poly-control" = dontDistribute super."poly-control"; + "polyToMonoid" = dontDistribute super."polyToMonoid"; + "polymap" = dontDistribute super."polymap"; + "polynom" = dontDistribute super."polynom"; + "polynomial" = dontDistribute super."polynomial"; + "polynomials-bernstein" = dontDistribute super."polynomials-bernstein"; + "polyseq" = dontDistribute super."polyseq"; + "polysoup" = dontDistribute super."polysoup"; + "polytypeable" = dontDistribute super."polytypeable"; + "polytypeable-utils" = dontDistribute super."polytypeable-utils"; + "ponder" = dontDistribute super."ponder"; + "pong-server" = dontDistribute super."pong-server"; + "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver"; + "pontarius-xmpp" = dontDistribute super."pontarius-xmpp"; + "pontarius-xpmn" = dontDistribute super."pontarius-xpmn"; + "pony" = dontDistribute super."pony"; + "pool" = dontDistribute super."pool"; + "pool-conduit" = dontDistribute super."pool-conduit"; + "pooled-io" = dontDistribute super."pooled-io"; + "pop3-client" = dontDistribute super."pop3-client"; + "popenhs" = dontDistribute super."popenhs"; + "poppler" = dontDistribute super."poppler"; + "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache"; + "portable-lines" = dontDistribute super."portable-lines"; + "portaudio" = dontDistribute super."portaudio"; + "porte" = dontDistribute super."porte"; + "porter" = dontDistribute super."porter"; + "ports" = dontDistribute super."ports"; + "ports-tools" = dontDistribute super."ports-tools"; + "positive" = dontDistribute super."positive"; + "posix-acl" = dontDistribute super."posix-acl"; + "posix-escape" = dontDistribute super."posix-escape"; + "posix-filelock" = dontDistribute super."posix-filelock"; + "posix-paths" = dontDistribute super."posix-paths"; + "posix-pty" = dontDistribute super."posix-pty"; + "posix-timer" = dontDistribute super."posix-timer"; + "posix-waitpid" = dontDistribute super."posix-waitpid"; + "possible" = dontDistribute super."possible"; + "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_7_9"; + "postgresql-config" = dontDistribute super."postgresql-config"; + "postgresql-connector" = dontDistribute super."postgresql-connector"; + "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; + "postgresql-cube" = dontDistribute super."postgresql-cube"; + "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; + "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration"; + "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; + "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; + "postgresql-typed" = dontDistribute super."postgresql-typed"; + "postgrest" = dontDistribute super."postgrest"; + "postie" = dontDistribute super."postie"; + "postmark" = dontDistribute super."postmark"; + "postmaster" = dontDistribute super."postmaster"; + "potato-tool" = dontDistribute super."potato-tool"; + "potrace" = dontDistribute super."potrace"; + "potrace-diagrams" = dontDistribute super."potrace-diagrams"; + "powermate" = dontDistribute super."powermate"; + "powerpc" = dontDistribute super."powerpc"; + "ppm" = dontDistribute super."ppm"; + "pqc" = dontDistribute super."pqc"; + "pqueue-mtl" = dontDistribute super."pqueue-mtl"; + "practice-room" = dontDistribute super."practice-room"; + "precis" = dontDistribute super."precis"; + "predicates" = dontDistribute super."predicates"; + "prednote-test" = dontDistribute super."prednote-test"; + "prefork" = dontDistribute super."prefork"; + "pregame" = dontDistribute super."pregame"; + "prelude-edsl" = dontDistribute super."prelude-edsl"; + "prelude-generalize" = dontDistribute super."prelude-generalize"; + "prelude-plus" = dontDistribute super."prelude-plus"; + "prelude-prime" = dontDistribute super."prelude-prime"; + "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "preprocess-haskell" = dontDistribute super."preprocess-haskell"; + "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = dontDistribute super."present"; + "press" = dontDistribute super."press"; + "presto-hdbc" = dontDistribute super."presto-hdbc"; + "prettify" = dontDistribute super."prettify"; + "pretty-compact" = dontDistribute super."pretty-compact"; + "pretty-error" = dontDistribute super."pretty-error"; + "pretty-hex" = dontDistribute super."pretty-hex"; + "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-sop" = dontDistribute super."pretty-sop"; + "pretty-tree" = dontDistribute super."pretty-tree"; + "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-uniq" = dontDistribute super."prim-uniq"; + "primitive-simd" = dontDistribute super."primitive-simd"; + "primula-board" = dontDistribute super."primula-board"; + "primula-bot" = dontDistribute super."primula-bot"; + "print-debugger" = dontDistribute super."print-debugger"; + "printf-mauke" = dontDistribute super."printf-mauke"; + "printxosd" = dontDistribute super."printxosd"; + "priority-queue" = dontDistribute super."priority-queue"; + "priority-sync" = dontDistribute super."priority-sync"; + "privileged-concurrency" = dontDistribute super."privileged-concurrency"; + "prizm" = dontDistribute super."prizm"; + "probability" = dontDistribute super."probability"; + "probable" = dontDistribute super."probable"; + "proc" = dontDistribute super."proc"; + "process-conduit" = dontDistribute super."process-conduit"; + "process-extras" = doDistribute super."process-extras_0_3_3_7"; + "process-iterio" = dontDistribute super."process-iterio"; + "process-leksah" = dontDistribute super."process-leksah"; + "process-listlike" = dontDistribute super."process-listlike"; + "process-progress" = dontDistribute super."process-progress"; + "process-qq" = dontDistribute super."process-qq"; + "process-streaming" = dontDistribute super."process-streaming"; + "processing" = dontDistribute super."processing"; + "processor-creative-kit" = dontDistribute super."processor-creative-kit"; + "procrastinating-structure" = dontDistribute super."procrastinating-structure"; + "procrastinating-variable" = dontDistribute super."procrastinating-variable"; + "procstat" = dontDistribute super."procstat"; + "proctest" = dontDistribute super."proctest"; + "product-profunctors" = doDistribute super."product-profunctors_0_6_3_1"; + "prof2dot" = dontDistribute super."prof2dot"; + "prof2pretty" = dontDistribute super."prof2pretty"; + "profiteur" = dontDistribute super."profiteur"; + "progress" = dontDistribute super."progress"; + "progressbar" = dontDistribute super."progressbar"; + "progression" = dontDistribute super."progression"; + "progressive" = dontDistribute super."progressive"; + "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; + "projection" = dontDistribute super."projection"; + "prolog" = dontDistribute super."prolog"; + "prolog-graph" = dontDistribute super."prolog-graph"; + "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; + "promise" = dontDistribute super."promise"; + "promises" = dontDistribute super."promises"; + "propane" = dontDistribute super."propane"; + "propellor" = dontDistribute super."propellor"; + "properties" = dontDistribute super."properties"; + "property-list" = dontDistribute super."property-list"; + "proplang" = dontDistribute super."proplang"; + "props" = dontDistribute super."props"; + "prosper" = dontDistribute super."prosper"; + "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers-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"; + "proxied" = dontDistribute super."proxied"; + "proxy-kindness" = dontDistribute super."proxy-kindness"; + "psc-ide" = doDistribute super."psc-ide_0_5_0"; + "pseudo-boolean" = dontDistribute super."pseudo-boolean"; + "pseudo-trie" = dontDistribute super."pseudo-trie"; + "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; + "pub" = dontDistribute super."pub"; + "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; + "publicsuffixlist" = dontDistribute super."publicsuffixlist"; + "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate"; + "pubnub" = dontDistribute super."pubnub"; + "pubsub" = dontDistribute super."pubsub"; + "puffytools" = dontDistribute super."puffytools"; + "pugixml" = dontDistribute super."pugixml"; + "pugs-DrIFT" = dontDistribute super."pugs-DrIFT"; + "pugs-HsSyck" = dontDistribute super."pugs-HsSyck"; + "pugs-compat" = dontDistribute super."pugs-compat"; + "pugs-hsregex" = dontDistribute super."pugs-hsregex"; + "pulse-simple" = dontDistribute super."pulse-simple"; + "punkt" = dontDistribute super."punkt"; + "punycode" = dontDistribute super."punycode"; + "puppetresources" = dontDistribute super."puppetresources"; + "pure-fft" = dontDistribute super."pure-fft"; + "pure-priority-queue" = dontDistribute super."pure-priority-queue"; + "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; + "pure-zlib" = dontDistribute super."pure-zlib"; + "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "push-notify" = dontDistribute super."push-notify"; + "push-notify-ccs" = dontDistribute super."push-notify-ccs"; + "push-notify-general" = dontDistribute super."push-notify-general"; + "pusher-haskell" = dontDistribute super."pusher-haskell"; + "pushme" = dontDistribute super."pushme"; + "putlenses" = dontDistribute super."putlenses"; + "puzzle-draw" = dontDistribute super."puzzle-draw"; + "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline"; + "pvd" = dontDistribute super."pvd"; + "pwstore-cli" = dontDistribute super."pwstore-cli"; + "pxsl-tools" = dontDistribute super."pxsl-tools"; + "pyffi" = dontDistribute super."pyffi"; + "pyfi" = dontDistribute super."pyfi"; + "python-pickle" = dontDistribute super."python-pickle"; + "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator"; + "qd" = dontDistribute super."qd"; + "qd-vec" = dontDistribute super."qd-vec"; + "qed" = dontDistribute super."qed"; + "qhull-simple" = dontDistribute super."qhull-simple"; + "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; + "quadratic-irrational" = dontDistribute super."quadratic-irrational"; + "quantfin" = dontDistribute super."quantfin"; + "quantities" = dontDistribute super."quantities"; + "quantum-arrow" = dontDistribute super."quantum-arrow"; + "qudb" = dontDistribute super."qudb"; + "quenya-verb" = dontDistribute super."quenya-verb"; + "querystring-pickle" = dontDistribute super."querystring-pickle"; + "queue" = dontDistribute super."queue"; + "queuelike" = dontDistribute super."queuelike"; + "quick-generator" = dontDistribute super."quick-generator"; + "quick-schema" = dontDistribute super."quick-schema"; + "quickcheck-poly" = dontDistribute super."quickcheck-poly"; + "quickcheck-properties" = dontDistribute super."quickcheck-properties"; + "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; + "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad"; + "quickcheck-regex" = dontDistribute super."quickcheck-regex"; + "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng"; + "quickcheck-rematch" = dontDistribute super."quickcheck-rematch"; + "quickcheck-script" = dontDistribute super."quickcheck-script"; + "quickcheck-simple" = dontDistribute super."quickcheck-simple"; + "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver"; + "quicklz" = dontDistribute super."quicklz"; + "quickpull" = dontDistribute super."quickpull"; + "quickset" = dontDistribute super."quickset"; + "quickspec" = dontDistribute super."quickspec"; + "quicktest" = dontDistribute super."quicktest"; + "quickwebapp" = dontDistribute super."quickwebapp"; + "quiver" = dontDistribute super."quiver"; + "quiver-bytestring" = dontDistribute super."quiver-bytestring"; + "quiver-cell" = dontDistribute super."quiver-cell"; + "quiver-csv" = dontDistribute super."quiver-csv"; + "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-http" = dontDistribute super."quiver-http"; + "quoridor-hs" = dontDistribute super."quoridor-hs"; + "qux" = dontDistribute super."qux"; + "rabocsv2qif" = dontDistribute super."rabocsv2qif"; + "rad" = dontDistribute super."rad"; + "radian" = dontDistribute super."radian"; + "radium" = dontDistribute super."radium"; + "radium-formula-parser" = dontDistribute super."radium-formula-parser"; + "radix" = dontDistribute super."radix"; + "rados-haskell" = dontDistribute super."rados-haskell"; + "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; + "rake" = dontDistribute super."rake"; + "rakhana" = dontDistribute super."rakhana"; + "ralist" = dontDistribute super."ralist"; + "rallod" = dontDistribute super."rallod"; + "raml" = dontDistribute super."raml"; + "rand-vars" = dontDistribute super."rand-vars"; + "randfile" = dontDistribute super."randfile"; + "random-access-list" = dontDistribute super."random-access-list"; + "random-derive" = dontDistribute super."random-derive"; + "random-eff" = dontDistribute super."random-eff"; + "random-effin" = dontDistribute super."random-effin"; + "random-extras" = dontDistribute super."random-extras"; + "random-hypergeometric" = dontDistribute super."random-hypergeometric"; + "random-stream" = dontDistribute super."random-stream"; + "random-tree" = dontDistribute super."random-tree"; + "random-variates" = dontDistribute super."random-variates"; + "randomgen" = dontDistribute super."randomgen"; + "randproc" = dontDistribute super."randproc"; + "randsolid" = dontDistribute super."randsolid"; + "range-space" = dontDistribute super."range-space"; + "rangemin" = dontDistribute super."rangemin"; + "ranges" = dontDistribute super."ranges"; + "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; + "rate-limit" = dontDistribute super."rate-limit"; + "ratel" = dontDistribute super."ratel"; + "ratel-wai" = dontDistribute super."ratel-wai"; + "ratio-int" = dontDistribute super."ratio-int"; + "raven-haskell" = dontDistribute super."raven-haskell"; + "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "rawstring-qm" = dontDistribute super."rawstring-qm"; + "razom-text-util" = dontDistribute super."razom-text-util"; + "rbr" = dontDistribute super."rbr"; + "rclient" = dontDistribute super."rclient"; + "rcu" = dontDistribute super."rcu"; + "rdf4h" = dontDistribute super."rdf4h"; + "rdioh" = dontDistribute super."rdioh"; + "rdtsc" = dontDistribute super."rdtsc"; + "rdtsc-enolan" = dontDistribute super."rdtsc-enolan"; + "re2" = dontDistribute super."re2"; + "react-flux" = dontDistribute super."react-flux"; + "react-haskell" = dontDistribute super."react-haskell"; + "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"; + "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"; + "reedsolomon" = dontDistribute super."reedsolomon"; + "reenact" = dontDistribute super."reenact"; + "reexport-crypto-random" = dontDistribute super."reexport-crypto-random"; + "ref" = dontDistribute super."ref"; + "ref-mtl" = dontDistribute super."ref-mtl"; + "ref-tf" = dontDistribute super."ref-tf"; + "refcount" = dontDistribute super."refcount"; + "reference" = dontDistribute super."reference"; + "references" = dontDistribute super."references"; + "refh" = dontDistribute super."refh"; + "refined" = dontDistribute super."refined"; + "reflection-extras" = dontDistribute super."reflection-extras"; + "reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; + "reflex" = dontDistribute super."reflex"; + "reflex-animation" = dontDistribute super."reflex-animation"; + "reflex-dom" = dontDistribute super."reflex-dom"; + "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; + "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; + "regex-deriv" = dontDistribute super."regex-deriv"; + "regex-dfa" = dontDistribute super."regex-dfa"; + "regex-easy" = dontDistribute super."regex-easy"; + "regex-genex" = dontDistribute super."regex-genex"; + "regex-parsec" = dontDistribute super."regex-parsec"; + "regex-pderiv" = dontDistribute super."regex-pderiv"; + "regex-posix-unittest" = dontDistribute super."regex-posix-unittest"; + "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes"; + "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter"; + "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; + "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; + "regex-tre" = dontDistribute super."regex-tre"; + "regex-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"; + "regress" = dontDistribute super."regress"; + "regular" = dontDistribute super."regular"; + "regular-extras" = dontDistribute super."regular-extras"; + "regular-web" = dontDistribute super."regular-web"; + "regular-xmlpickler" = dontDistribute super."regular-xmlpickler"; + "reheat" = dontDistribute super."reheat"; + "rehoo" = dontDistribute super."rehoo"; + "rei" = dontDistribute super."rei"; + "reified-records" = dontDistribute super."reified-records"; + "reify" = dontDistribute super."reify"; + "relacion" = dontDistribute super."relacion"; + "relation" = dontDistribute super."relation"; + "relational-postgresql8" = dontDistribute super."relational-postgresql8"; + "relational-query" = dontDistribute super."relational-query"; + "relational-query-HDBC" = dontDistribute super."relational-query-HDBC"; + "relational-record" = dontDistribute super."relational-record"; + "relational-record-examples" = dontDistribute super."relational-record-examples"; + "relational-schemas" = dontDistribute super."relational-schemas"; + "relative-date" = dontDistribute super."relative-date"; + "relit" = dontDistribute super."relit"; + "rematch" = dontDistribute super."rematch"; + "rematch-text" = dontDistribute super."rematch-text"; + "remote" = dontDistribute super."remote"; + "remote-debugger" = dontDistribute super."remote-debugger"; + "remote-json" = dontDistribute super."remote-json"; + "remote-json-client" = dontDistribute super."remote-json-client"; + "remote-json-server" = dontDistribute super."remote-json-server"; + "remote-monad" = dontDistribute super."remote-monad"; + "remotion" = dontDistribute super."remotion"; + "renderable" = dontDistribute super."renderable"; + "reord" = dontDistribute super."reord"; + "reorderable" = dontDistribute super."reorderable"; + "repa-array" = dontDistribute super."repa-array"; + "repa-bytestring" = dontDistribute super."repa-bytestring"; + "repa-convert" = dontDistribute super."repa-convert"; + "repa-eval" = dontDistribute super."repa-eval"; + "repa-examples" = dontDistribute super."repa-examples"; + "repa-fftw" = dontDistribute super."repa-fftw"; + "repa-flow" = dontDistribute super."repa-flow"; + "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; + "repa-plugin" = dontDistribute super."repa-plugin"; + "repa-scalar" = dontDistribute super."repa-scalar"; + "repa-series" = dontDistribute super."repa-series"; + "repa-sndfile" = dontDistribute super."repa-sndfile"; + "repa-stream" = dontDistribute super."repa-stream"; + "repa-v4l2" = dontDistribute super."repa-v4l2"; + "repl" = dontDistribute super."repl"; + "repl-toolkit" = dontDistribute super."repl-toolkit"; + "repline" = dontDistribute super."repline"; + "repo-based-blog" = dontDistribute super."repo-based-blog"; + "repr" = dontDistribute super."repr"; + "repr-tree-syb" = dontDistribute super."repr-tree-syb"; + "representable-functors" = dontDistribute super."representable-functors"; + "representable-profunctors" = dontDistribute super."representable-profunctors"; + "representable-tries" = dontDistribute super."representable-tries"; + "request-monad" = dontDistribute super."request-monad"; + "reserve" = dontDistribute super."reserve"; + "resistor-cube" = dontDistribute super."resistor-cube"; + "resource-effect" = dontDistribute super."resource-effect"; + "resource-embed" = dontDistribute super."resource-embed"; + "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; + "resource-pool-monad" = dontDistribute super."resource-pool-monad"; + "resource-simple" = dontDistribute super."resource-simple"; + "respond" = dontDistribute super."respond"; + "rest-core" = doDistribute super."rest-core_0_37"; + "rest-example" = dontDistribute super."rest-example"; + "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "restful-snap" = dontDistribute super."restful-snap"; + "restricted-workers" = dontDistribute super."restricted-workers"; + "restyle" = dontDistribute super."restyle"; + "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb-model" = dontDistribute super."rethinkdb-model"; + "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retryer" = dontDistribute super."retryer"; + "revdectime" = dontDistribute super."revdectime"; + "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-geocoding" = dontDistribute super."reverse-geocoding"; + "reversi" = dontDistribute super."reversi"; + "rewrite" = dontDistribute super."rewrite"; + "rewriting" = dontDistribute super."rewriting"; + "rex" = dontDistribute super."rex"; + "rezoom" = dontDistribute super."rezoom"; + "rfc3339" = dontDistribute super."rfc3339"; + "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; + "richreports" = dontDistribute super."richreports"; + "riemann" = dontDistribute super."riemann"; + "riff" = dontDistribute super."riff"; + "ring-buffer" = dontDistribute super."ring-buffer"; + "riot" = dontDistribute super."riot"; + "ripple" = dontDistribute super."ripple"; + "ripple-federation" = dontDistribute super."ripple-federation"; + "risc386" = dontDistribute super."risc386"; + "rivers" = dontDistribute super."rivers"; + "rivet" = dontDistribute super."rivet"; + "rivet-core" = dontDistribute super."rivet-core"; + "rivet-migration" = dontDistribute super."rivet-migration"; + "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; + "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; + "rmonad" = dontDistribute super."rmonad"; + "rncryptor" = dontDistribute super."rncryptor"; + "rng-utils" = dontDistribute super."rng-utils"; + "robin" = dontDistribute super."robin"; + "robot" = dontDistribute super."robot"; + "robots-txt" = dontDistribute super."robots-txt"; + "rocksdb-haskell" = dontDistribute super."rocksdb-haskell"; + "roguestar" = dontDistribute super."roguestar"; + "roguestar-engine" = dontDistribute super."roguestar-engine"; + "roguestar-gl" = dontDistribute super."roguestar-gl"; + "roguestar-glut" = dontDistribute super."roguestar-glut"; + "rollbar" = dontDistribute super."rollbar"; + "roller" = dontDistribute super."roller"; + "rolling-queue" = dontDistribute super."rolling-queue"; + "roman-numerals" = dontDistribute super."roman-numerals"; + "romkan" = dontDistribute super."romkan"; + "roots" = dontDistribute super."roots"; + "rope" = dontDistribute super."rope"; + "rosa" = dontDistribute super."rosa"; + "rose-trie" = dontDistribute super."rose-trie"; + "roshask" = dontDistribute super."roshask"; + "rosso" = dontDistribute super."rosso"; + "rot13" = dontDistribute super."rot13"; + "rotating-log" = dontDistribute super."rotating-log"; + "rounding" = dontDistribute super."rounding"; + "roundtrip" = dontDistribute super."roundtrip"; + "roundtrip-aeson" = dontDistribute super."roundtrip-aeson"; + "roundtrip-string" = dontDistribute super."roundtrip-string"; + "roundtrip-xml" = dontDistribute super."roundtrip-xml"; + "route-generator" = dontDistribute super."route-generator"; + "route-planning" = dontDistribute super."route-planning"; + "rowrecord" = dontDistribute super."rowrecord"; + "rpc" = dontDistribute super."rpc"; + "rpc-framework" = dontDistribute super."rpc-framework"; + "rpf" = dontDistribute super."rpf"; + "rpm" = dontDistribute super."rpm"; + "rsagl" = dontDistribute super."rsagl"; + "rsagl-frp" = dontDistribute super."rsagl-frp"; + "rsagl-math" = dontDistribute super."rsagl-math"; + "rspp" = dontDistribute super."rspp"; + "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; + "rss2irc" = dontDistribute super."rss2irc"; + "rtcm" = dontDistribute super."rtcm"; + "rtld" = dontDistribute super."rtld"; + "rtlsdr" = dontDistribute super."rtlsdr"; + "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; + "rtorrent-state" = dontDistribute super."rtorrent-state"; + "rubberband" = dontDistribute super."rubberband"; + "ruby-marshal" = dontDistribute super."ruby-marshal"; + "ruby-qq" = dontDistribute super."ruby-qq"; + "ruff" = dontDistribute super."ruff"; + "ruler" = dontDistribute super."ruler"; + "ruler-core" = dontDistribute super."ruler-core"; + "rungekutta" = dontDistribute super."rungekutta"; + "runghc" = dontDistribute super."runghc"; + "rwlock" = dontDistribute super."rwlock"; + "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; + "safe-access" = dontDistribute super."safe-access"; + "safe-failure" = dontDistribute super."safe-failure"; + "safe-failure-cme" = dontDistribute super."safe-failure-cme"; + "safe-freeze" = dontDistribute super."safe-freeze"; + "safe-globals" = dontDistribute super."safe-globals"; + "safe-lazy-io" = dontDistribute super."safe-lazy-io"; + "safe-length" = dontDistribute super."safe-length"; + "safe-plugins" = dontDistribute super."safe-plugins"; + "safe-printf" = dontDistribute super."safe-printf"; + "safeint" = dontDistribute super."safeint"; + "safer-file-handles" = dontDistribute super."safer-file-handles"; + "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; + "safer-file-handles-text" = dontDistribute super."safer-file-handles-text"; + "saferoute" = dontDistribute super."saferoute"; + "sai-shape-syb" = dontDistribute super."sai-shape-syb"; + "saltine" = dontDistribute super."saltine"; + "saltine-quickcheck" = dontDistribute super."saltine-quickcheck"; + "salvia" = dontDistribute super."salvia"; + "salvia-demo" = dontDistribute super."salvia-demo"; + "salvia-extras" = dontDistribute super."salvia-extras"; + "salvia-protocol" = dontDistribute super."salvia-protocol"; + "salvia-sessions" = dontDistribute super."salvia-sessions"; + "salvia-websocket" = dontDistribute super."salvia-websocket"; + "sample-frame" = dontDistribute super."sample-frame"; + "sample-frame-np" = dontDistribute super."sample-frame-np"; + "sampling" = dontDistribute super."sampling"; + "samtools" = dontDistribute super."samtools"; + "samtools-conduit" = dontDistribute super."samtools-conduit"; + "samtools-enumerator" = dontDistribute super."samtools-enumerator"; + "samtools-iteratee" = dontDistribute super."samtools-iteratee"; + "sandlib" = dontDistribute super."sandlib"; + "sarasvati" = dontDistribute super."sarasvati"; + "sasl" = dontDistribute super."sasl"; + "sat" = dontDistribute super."sat"; + "sat-micro-hs" = dontDistribute super."sat-micro-hs"; + "satchmo" = dontDistribute super."satchmo"; + "satchmo-backends" = dontDistribute super."satchmo-backends"; + "satchmo-examples" = dontDistribute super."satchmo-examples"; + "satchmo-funsat" = dontDistribute super."satchmo-funsat"; + "satchmo-minisat" = dontDistribute super."satchmo-minisat"; + "satchmo-toysat" = dontDistribute super."satchmo-toysat"; + "sbp" = dontDistribute super."sbp"; + "sbvPlugin" = dontDistribute super."sbvPlugin"; + "sc3-rdu" = dontDistribute super."sc3-rdu"; + "scalable-server" = dontDistribute super."scalable-server"; + "scaleimage" = dontDistribute super."scaleimage"; + "scalp-webhooks" = dontDistribute super."scalp-webhooks"; + "scalpel" = doDistribute super."scalpel_0_2_1_1"; + "scan" = dontDistribute super."scan"; + "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "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_4"; + "scion" = dontDistribute super."scion"; + "scion-browser" = dontDistribute super."scion-browser"; + "scons2dot" = dontDistribute super."scons2dot"; + "scope" = dontDistribute super."scope"; + "scope-cairo" = dontDistribute super."scope-cairo"; + "scottish" = dontDistribute super."scottish"; + "scotty" = doDistribute super."scotty_0_10_2"; + "scotty-binding-play" = dontDistribute super."scotty-binding-play"; + "scotty-blaze" = dontDistribute super."scotty-blaze"; + "scotty-cookie" = dontDistribute super."scotty-cookie"; + "scotty-fay" = dontDistribute super."scotty-fay"; + "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-rest" = dontDistribute super."scotty-rest"; + "scotty-session" = dontDistribute super."scotty-session"; + "scotty-tls" = dontDistribute super."scotty-tls"; + "scp-streams" = dontDistribute super."scp-streams"; + "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrobble" = dontDistribute super."scrobble"; + "scroll" = dontDistribute super."scroll"; + "scrz" = dontDistribute super."scrz"; + "scyther-proof" = dontDistribute super."scyther-proof"; + "sde-solver" = dontDistribute super."sde-solver"; + "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; + "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; + "sdl2-compositor" = dontDistribute super."sdl2-compositor"; + "sdl2-image" = dontDistribute super."sdl2-image"; + "sdl2-ttf" = dontDistribute super."sdl2-ttf"; + "sdnv" = dontDistribute super."sdnv"; + "sdr" = dontDistribute super."sdr"; + "seacat" = dontDistribute super."seacat"; + "seal-module" = dontDistribute super."seal-module"; + "search" = dontDistribute super."search"; + "sec" = dontDistribute super."sec"; + "secdh" = dontDistribute super."secdh"; + "seclib" = dontDistribute super."seclib"; + "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; + "secp256k1" = dontDistribute super."secp256k1"; + "secret-santa" = dontDistribute super."secret-santa"; + "secret-sharing" = dontDistribute super."secret-sharing"; + "secrm" = dontDistribute super."secrm"; + "secure-sockets" = dontDistribute super."secure-sockets"; + "sednaDBXML" = dontDistribute super."sednaDBXML"; + "select" = dontDistribute super."select"; + "selectors" = dontDistribute super."selectors"; + "selenium" = dontDistribute super."selenium"; + "selenium-server" = dontDistribute super."selenium-server"; + "selfrestart" = dontDistribute super."selfrestart"; + "selinux" = dontDistribute super."selinux"; + "semaphore-plus" = dontDistribute super."semaphore-plus"; + "semi-iso" = dontDistribute super."semi-iso"; + "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; + "semigroups-actions" = dontDistribute super."semigroups-actions"; + "semiring" = dontDistribute super."semiring"; + "semiring-simple" = dontDistribute super."semiring-simple"; + "semver-range" = dontDistribute super."semver-range"; + "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; + "sensenet" = dontDistribute super."sensenet"; + "sentry" = dontDistribute super."sentry"; + "senza" = dontDistribute super."senza"; + "separated" = dontDistribute super."separated"; + "seqaid" = dontDistribute super."seqaid"; + "seqid" = dontDistribute super."seqid"; + "seqid-streams" = dontDistribute super."seqid-streams"; + "seqloc-datafiles" = dontDistribute super."seqloc-datafiles"; + "sequence" = dontDistribute super."sequence"; + "sequent-core" = dontDistribute super."sequent-core"; + "sequential-index" = dontDistribute super."sequential-index"; + "sequor" = dontDistribute super."sequor"; + "serial" = dontDistribute super."serial"; + "serial-test-generators" = dontDistribute super."serial-test-generators"; + "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; + "serv-wai" = dontDistribute super."serv-wai"; + "servant-cassava" = dontDistribute super."servant-cassava"; + "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-lucid" = dontDistribute super."servant-lucid"; + "servant-mock" = dontDistribute super."servant-mock"; + "servant-pandoc" = dontDistribute super."servant-pandoc"; + "servant-pool" = dontDistribute super."servant-pool"; + "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-response" = dontDistribute super."servant-response"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; + "sessions" = dontDistribute super."sessions"; + "set-cover" = dontDistribute super."set-cover"; + "set-extra" = doDistribute super."set-extra_1_3_2"; + "set-with" = dontDistribute super."set-with"; + "setdown" = dontDistribute super."setdown"; + "setgame" = dontDistribute super."setgame"; + "setops" = dontDistribute super."setops"; + "setters" = dontDistribute super."setters"; + "settings" = dontDistribute super."settings"; + "sexp" = dontDistribute super."sexp"; + "sexp-grammar" = dontDistribute super."sexp-grammar"; + "sexp-show" = dontDistribute super."sexp-show"; + "sexpr" = dontDistribute super."sexpr"; + "sext" = dontDistribute super."sext"; + "sfml-audio" = dontDistribute super."sfml-audio"; + "sfmt" = dontDistribute super."sfmt"; + "sgd" = dontDistribute super."sgd"; + "sgf" = dontDistribute super."sgf"; + "sgrep" = dontDistribute super."sgrep"; + "sha-streams" = dontDistribute super."sha-streams"; + "shadower" = dontDistribute super."shadower"; + "shadowsocks" = dontDistribute super."shadowsocks"; + "shady-gen" = dontDistribute super."shady-gen"; + "shady-graphics" = dontDistribute super."shady-graphics"; + "shake-cabal-build" = dontDistribute super."shake-cabal-build"; + "shake-extras" = dontDistribute super."shake-extras"; + "shake-minify" = dontDistribute super."shake-minify"; + "shake-pack" = dontDistribute super."shake-pack"; + "shake-persist" = dontDistribute super."shake-persist"; + "shaker" = dontDistribute super."shaker"; + "shakespeare-babel" = dontDistribute super."shakespeare-babel"; + "shakespeare-css" = dontDistribute super."shakespeare-css"; + "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; + "shakespeare-js" = dontDistribute super."shakespeare-js"; + "shakespeare-text" = dontDistribute super."shakespeare-text"; + "shana" = dontDistribute super."shana"; + "shapefile" = dontDistribute super."shapefile"; + "shapely-data" = dontDistribute super."shapely-data"; + "sharc-timbre" = dontDistribute super."sharc-timbre"; + "shared-buffer" = dontDistribute super."shared-buffer"; + "shared-fields" = dontDistribute super."shared-fields"; + "shared-memory" = dontDistribute super."shared-memory"; + "sharedio" = dontDistribute super."sharedio"; + "she" = dontDistribute super."she"; + "shelduck" = dontDistribute super."shelduck"; + "shell-escape" = dontDistribute super."shell-escape"; + "shell-monad" = dontDistribute super."shell-monad"; + "shell-pipe" = dontDistribute super."shell-pipe"; + "shellish" = dontDistribute super."shellish"; + "shellmate" = dontDistribute super."shellmate"; + "shelly-extra" = dontDistribute super."shelly-extra"; + "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" = dontDistribute super."simple-log"; + "simple-log-syslog" = dontDistribute super."simple-log-syslog"; + "simple-neural-networks" = dontDistribute super."simple-neural-networks"; + "simple-nix" = dontDistribute super."simple-nix"; + "simple-observer" = dontDistribute super."simple-observer"; + "simple-pascal" = dontDistribute super."simple-pascal"; + "simple-pipe" = dontDistribute super."simple-pipe"; + "simple-rope" = dontDistribute super."simple-rope"; + "simple-server" = dontDistribute super."simple-server"; + "simple-sessions" = dontDistribute super."simple-sessions"; + "simple-sql-parser" = dontDistribute super."simple-sql-parser"; + "simple-stacked-vm" = dontDistribute super."simple-stacked-vm"; + "simple-tabular" = dontDistribute super."simple-tabular"; + "simple-vec3" = dontDistribute super."simple-vec3"; + "simpleargs" = dontDistribute super."simpleargs"; + "simpleirc" = dontDistribute super."simpleirc"; + "simpleirc-lens" = dontDistribute super."simpleirc-lens"; + "simplenote" = dontDistribute super."simplenote"; + "simpleprelude" = dontDistribute super."simpleprelude"; + "simplesmtpclient" = dontDistribute super."simplesmtpclient"; + "simplessh" = dontDistribute super."simplessh"; + "simplest-sqlite" = dontDistribute super."simplest-sqlite"; + "simplex" = dontDistribute super."simplex"; + "simplex-basic" = dontDistribute super."simplex-basic"; + "simseq" = dontDistribute super."simseq"; + "simtreelo" = dontDistribute super."simtreelo"; + "sindre" = dontDistribute super."sindre"; + "singleton-nats" = dontDistribute super."singleton-nats"; + "sink" = dontDistribute super."sink"; + "sirkel" = dontDistribute super."sirkel"; + "sitemap" = dontDistribute super."sitemap"; + "sized" = dontDistribute super."sized"; + "sized-types" = dontDistribute super."sized-types"; + "sized-vector" = dontDistribute super."sized-vector"; + "sizes" = dontDistribute super."sizes"; + "sjsp" = dontDistribute super."sjsp"; + "skeleton" = dontDistribute super."skeleton"; + "skell" = dontDistribute super."skell"; + "skemmtun" = dontDistribute super."skemmtun"; + "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"; + "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; + "slidemews" = dontDistribute super."slidemews"; + "sloane" = dontDistribute super."sloane"; + "slot-lambda" = dontDistribute super."slot-lambda"; + "sloth" = dontDistribute super."sloth"; + "smallarray" = dontDistribute super."smallarray"; + "smallcheck-laws" = dontDistribute super."smallcheck-laws"; + "smallcheck-lens" = dontDistribute super."smallcheck-lens"; + "smallcheck-series" = dontDistribute super."smallcheck-series"; + "smallpt-hs" = dontDistribute super."smallpt-hs"; + "smallstring" = dontDistribute super."smallstring"; + "smaoin" = dontDistribute super."smaoin"; + "smartGroup" = dontDistribute super."smartGroup"; + "smartcheck" = dontDistribute super."smartcheck"; + "smartconstructor" = dontDistribute super."smartconstructor"; + "smartword" = dontDistribute super."smartword"; + "sme" = dontDistribute super."sme"; + "smt-lib" = dontDistribute super."smt-lib"; + "smtlib2" = dontDistribute super."smtlib2"; + "smtp-mail-ng" = dontDistribute super."smtp-mail-ng"; + "smtp2mta" = dontDistribute super."smtp2mta"; + "smtps-gmail" = dontDistribute super."smtps-gmail"; + "snake-game" = dontDistribute super."snake-game"; + "snap-accept" = dontDistribute super."snap-accept"; + "snap-app" = dontDistribute super."snap-app"; + "snap-auth-cli" = dontDistribute super."snap-auth-cli"; + "snap-blaze" = dontDistribute super."snap-blaze"; + "snap-blaze-clay" = dontDistribute super."snap-blaze-clay"; + "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities"; + "snap-cors" = dontDistribute super."snap-cors"; + "snap-elm" = dontDistribute super."snap-elm"; + "snap-error-collector" = dontDistribute super."snap-error-collector"; + "snap-extras" = dontDistribute super."snap-extras"; + "snap-language" = dontDistribute super."snap-language"; + "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic"; + "snap-loader-static" = dontDistribute super."snap-loader-static"; + "snap-predicates" = dontDistribute super."snap-predicates"; + "snap-testing" = dontDistribute super."snap-testing"; + "snap-utils" = dontDistribute super."snap-utils"; + "snap-web-routes" = dontDistribute super."snap-web-routes"; + "snaplet-acid-state" = dontDistribute super."snaplet-acid-state"; + "snaplet-actionlog" = dontDistribute super."snaplet-actionlog"; + "snaplet-amqp" = dontDistribute super."snaplet-amqp"; + "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid"; + "snaplet-coffee" = dontDistribute super."snaplet-coffee"; + "snaplet-css-min" = dontDistribute super."snaplet-css-min"; + "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; + "snaplet-hasql" = dontDistribute super."snaplet-hasql"; + "snaplet-haxl" = dontDistribute super."snaplet-haxl"; + "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; + "snaplet-hslogger" = dontDistribute super."snaplet-hslogger"; + "snaplet-i18n" = dontDistribute super."snaplet-i18n"; + "snaplet-influxdb" = dontDistribute super."snaplet-influxdb"; + "snaplet-lss" = dontDistribute super."snaplet-lss"; + "snaplet-mandrill" = dontDistribute super."snaplet-mandrill"; + "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB"; + "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic"; + "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple"; + "snaplet-oauth" = dontDistribute super."snaplet-oauth"; + "snaplet-persistent" = dontDistribute super."snaplet-persistent"; + "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple"; + "snaplet-postmark" = dontDistribute super."snaplet-postmark"; + "snaplet-purescript" = dontDistribute super."snaplet-purescript"; + "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha"; + "snaplet-redis" = dontDistribute super."snaplet-redis"; + "snaplet-redson" = dontDistribute super."snaplet-redson"; + "snaplet-rest" = dontDistribute super."snaplet-rest"; + "snaplet-riak" = dontDistribute super."snaplet-riak"; + "snaplet-sass" = dontDistribute super."snaplet-sass"; + "snaplet-sedna" = dontDistribute super."snaplet-sedna"; + "snaplet-ses-html" = dontDistribute super."snaplet-ses-html"; + "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple"; + "snaplet-stripe" = dontDistribute super."snaplet-stripe"; + "snaplet-tasks" = dontDistribute super."snaplet-tasks"; + "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions"; + "snaplet-wordpress" = dontDistribute super."snaplet-wordpress"; + "snappy" = dontDistribute super."snappy"; + "snappy-conduit" = dontDistribute super."snappy-conduit"; + "snappy-framing" = dontDistribute super."snappy-framing"; + "snappy-iteratee" = dontDistribute super."snappy-iteratee"; + "sndfile-enumerators" = dontDistribute super."sndfile-enumerators"; + "sneakyterm" = dontDistribute super."sneakyterm"; + "sneathlane-haste" = dontDistribute super."sneathlane-haste"; + "snippet-extractor" = dontDistribute super."snippet-extractor"; + "snm" = dontDistribute super."snm"; + "snow-white" = dontDistribute super."snow-white"; + "snowball" = dontDistribute super."snowball"; + "snowglobe" = dontDistribute super."snowglobe"; + "sock2stream" = dontDistribute super."sock2stream"; + "sockaddr" = dontDistribute super."sockaddr"; + "socket-activation" = dontDistribute super."socket-activation"; + "socket-sctp" = dontDistribute super."socket-sctp"; + "socketio" = dontDistribute super."socketio"; + "socketson" = dontDistribute super."socketson"; + "soegtk" = dontDistribute super."soegtk"; + "sonic-visualiser" = dontDistribute super."sonic-visualiser"; + "sophia" = dontDistribute super."sophia"; + "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; + "sorted" = dontDistribute super."sorted"; + "sorting" = dontDistribute super."sorting"; + "sorty" = dontDistribute super."sorty"; + "sound-collage" = dontDistribute super."sound-collage"; + "sounddelay" = dontDistribute super."sounddelay"; + "source-code-server" = dontDistribute super."source-code-server"; + "sousit" = dontDistribute super."sousit"; + "sox" = dontDistribute super."sox"; + "soxlib" = dontDistribute super."soxlib"; + "soyuz" = dontDistribute super."soyuz"; + "spacefill" = dontDistribute super."spacefill"; + "spacepart" = dontDistribute super."spacepart"; + "spaceprobe" = dontDistribute super."spaceprobe"; + "spanout" = dontDistribute super."spanout"; + "sparse" = dontDistribute super."sparse"; + "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; + "sparsebit" = dontDistribute super."sparsebit"; + "sparsecheck" = dontDistribute super."sparsecheck"; + "sparser" = dontDistribute super."sparser"; + "spata" = dontDistribute super."spata"; + "spatial-math" = dontDistribute super."spatial-math"; + "spawn" = dontDistribute super."spawn"; + "spe" = dontDistribute super."spe"; + "special-functors" = dontDistribute super."special-functors"; + "special-keys" = dontDistribute super."special-keys"; + "specialize-th" = dontDistribute super."specialize-th"; + "species" = dontDistribute super."species"; + "speculation-transformers" = dontDistribute super."speculation-transformers"; + "spelling-suggest" = dontDistribute super."spelling-suggest"; + "sphero" = dontDistribute super."sphero"; + "sphinx-cli" = dontDistribute super."sphinx-cli"; + "spice" = dontDistribute super."spice"; + "spike" = dontDistribute super."spike"; + "spine" = dontDistribute super."spine"; + "spir-v" = dontDistribute super."spir-v"; + "splay" = dontDistribute super."splay"; + "splaytree" = dontDistribute super."splaytree"; + "spline3" = dontDistribute super."spline3"; + "splines" = dontDistribute super."splines"; + "split-channel" = dontDistribute super."split-channel"; + "split-record" = dontDistribute super."split-record"; + "split-tchan" = dontDistribute super."split-tchan"; + "splitter" = dontDistribute super."splitter"; + "splot" = dontDistribute super."splot"; + "spool" = dontDistribute super."spool"; + "spoonutil" = dontDistribute super."spoonutil"; + "spoty" = dontDistribute super."spoty"; + "spreadsheet" = dontDistribute super."spreadsheet"; + "spritz" = dontDistribute super."spritz"; + "spsa" = dontDistribute super."spsa"; + "spy" = dontDistribute super."spy"; + "sql-simple" = dontDistribute super."sql-simple"; + "sql-simple-mysql" = dontDistribute super."sql-simple-mysql"; + "sql-simple-pool" = dontDistribute super."sql-simple-pool"; + "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql"; + "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite"; + "sql-words" = dontDistribute super."sql-words"; + "sqlite" = dontDistribute super."sqlite"; + "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed"; + "sqlvalue-list" = dontDistribute super."sqlvalue-list"; + "squeeze" = dontDistribute super."squeeze"; + "sr-extra" = dontDistribute super."sr-extra"; + "srcinst" = dontDistribute super."srcinst"; + "srec" = dontDistribute super."srec"; + "sscgi" = dontDistribute super."sscgi"; + "ssh" = dontDistribute super."ssh"; + "sshd-lint" = dontDistribute super."sshd-lint"; + "sshtun" = dontDistribute super."sshtun"; + "sssp" = dontDistribute super."sssp"; + "sstable" = dontDistribute super."sstable"; + "ssv" = dontDistribute super."ssv"; + "stable-heap" = dontDistribute super."stable-heap"; + "stable-maps" = dontDistribute super."stable-maps"; + "stable-marriage" = dontDistribute super."stable-marriage"; + "stable-memo" = dontDistribute super."stable-memo"; + "stable-tree" = dontDistribute super."stable-tree"; + "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; + "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; + "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; + "standalone-haddock" = dontDistribute super."standalone-haddock"; + "star-to-star" = dontDistribute super."star-to-star"; + "star-to-star-contra" = dontDistribute super."star-to-star-contra"; + "starling" = dontDistribute super."starling"; + "starrover2" = dontDistribute super."starrover2"; + "stash" = dontDistribute super."stash"; + "state" = dontDistribute super."state"; + "state-record" = dontDistribute super."state-record"; + "statechart" = dontDistribute super."statechart"; + "stateful-mtl" = dontDistribute super."stateful-mtl"; + "statethread" = dontDistribute super."statethread"; + "statgrab" = dontDistribute super."statgrab"; + "static-hash" = dontDistribute super."static-hash"; + "static-resources" = dontDistribute super."static-resources"; + "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; + "statistics-fusion" = dontDistribute super."statistics-fusion"; + "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; + "stats" = dontDistribute super."stats"; + "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; + "statsd-datadog" = dontDistribute super."statsd-datadog"; + "statvfs" = dontDistribute super."statvfs"; + "stb-image" = dontDistribute super."stb-image"; + "stb-truetype" = dontDistribute super."stb-truetype"; + "stdata" = dontDistribute super."stdata"; + "stdf" = dontDistribute super."stdf"; + "steambrowser" = dontDistribute super."steambrowser"; + "steeloverseer" = dontDistribute super."steeloverseer"; + "stemmer" = dontDistribute super."stemmer"; + "step-function" = dontDistribute super."step-function"; + "stepwise" = dontDistribute super."stepwise"; + "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; + "stitch" = dontDistribute super."stitch"; + "stm-channelize" = dontDistribute super."stm-channelize"; + "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-firehose" = dontDistribute super."stm-firehose"; + "stm-io-hooks" = dontDistribute super."stm-io-hooks"; + "stm-lifted" = dontDistribute super."stm-lifted"; + "stm-linkedlist" = dontDistribute super."stm-linkedlist"; + "stm-orelse-io" = dontDistribute super."stm-orelse-io"; + "stm-promise" = dontDistribute super."stm-promise"; + "stm-queue-extras" = dontDistribute super."stm-queue-extras"; + "stm-sbchan" = dontDistribute super."stm-sbchan"; + "stm-split" = dontDistribute super."stm-split"; + "stm-tlist" = dontDistribute super."stm-tlist"; + "stmcontrol" = dontDistribute super."stmcontrol"; + "stomp-conduit" = dontDistribute super."stomp-conduit"; + "stomp-patterns" = dontDistribute super."stomp-patterns"; + "stomp-queue" = dontDistribute super."stomp-queue"; + "stompl" = dontDistribute super."stompl"; + "stopwatch" = dontDistribute super."stopwatch"; + "storable" = dontDistribute super."storable"; + "storable-record" = dontDistribute super."storable-record"; + "storable-static-array" = dontDistribute super."storable-static-array"; + "storable-tuple" = dontDistribute super."storable-tuple"; + "storablevector" = dontDistribute super."storablevector"; + "storablevector-carray" = dontDistribute super."storablevector-carray"; + "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; + "str" = dontDistribute super."str"; + "stratum-tool" = dontDistribute super."stratum-tool"; + "stream-fusion" = dontDistribute super."stream-fusion"; + "stream-monad" = dontDistribute super."stream-monad"; + "streamed" = dontDistribute super."streamed"; + "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; + "streaming-utils" = dontDistribute super."streaming-utils"; + "streaming-wai" = dontDistribute super."streaming-wai"; + "strict-base-types" = doDistribute super."strict-base-types_0_4_0"; + "strict-concurrency" = dontDistribute super."strict-concurrency"; + "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin"; + "strict-identity" = dontDistribute super."strict-identity"; + "strict-io" = dontDistribute super."strict-io"; + "strictify" = dontDistribute super."strictify"; + "strictly" = dontDistribute super."strictly"; + "string" = dontDistribute super."string"; + "string-conv" = dontDistribute super."string-conv"; + "string-convert" = dontDistribute super."string-convert"; + "string-quote" = dontDistribute super."string-quote"; + "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; + "stringlike" = dontDistribute super."stringlike"; + "stringprep" = dontDistribute super."stringprep"; + "strings" = dontDistribute super."strings"; + "stringtable-atom" = dontDistribute super."stringtable-atom"; + "strio" = dontDistribute super."strio"; + "stripe" = dontDistribute super."stripe"; + "stripe-core" = doDistribute super."stripe-core_2_0_2"; + "stripe-haskell" = doDistribute super."stripe-haskell_2_0_2"; + "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_2"; + "strive" = dontDistribute super."strive"; + "strptime" = dontDistribute super."strptime"; + "structs" = dontDistribute super."structs"; + "structural-induction" = dontDistribute super."structural-induction"; + "structured-haskell-mode" = dontDistribute super."structured-haskell-mode"; + "structured-mongoDB" = dontDistribute super."structured-mongoDB"; + "structures" = dontDistribute super."structures"; + "stunclient" = dontDistribute super."stunclient"; + "stunts" = dontDistribute super."stunts"; + "stylized" = dontDistribute super."stylized"; + "sub-state" = dontDistribute super."sub-state"; + "subhask" = dontDistribute super."subhask"; + "subleq-toolchain" = dontDistribute super."subleq-toolchain"; + "subnet" = dontDistribute super."subnet"; + "subtitleParser" = dontDistribute super."subtitleParser"; + "subtitles" = dontDistribute super."subtitles"; + "suffixarray" = dontDistribute super."suffixarray"; + "suffixtree" = dontDistribute super."suffixtree"; + "sugarhaskell" = dontDistribute super."sugarhaskell"; + "suitable" = dontDistribute super."suitable"; + "sump" = dontDistribute super."sump"; + "sundown" = dontDistribute super."sundown"; + "sunlight" = dontDistribute super."sunlight"; + "sunroof-compiler" = dontDistribute super."sunroof-compiler"; + "sunroof-examples" = dontDistribute super."sunroof-examples"; + "sunroof-server" = dontDistribute super."sunroof-server"; + "super-user-spark" = dontDistribute super."super-user-spark"; + "supercollider-ht" = dontDistribute super."supercollider-ht"; + "supercollider-midi" = dontDistribute super."supercollider-midi"; + "superdoc" = dontDistribute super."superdoc"; + "supero" = dontDistribute super."supero"; + "supervisor" = dontDistribute super."supervisor"; + "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; + "svg2q" = dontDistribute super."svg2q"; + "svgcairo" = dontDistribute super."svgcairo"; + "svgutils" = dontDistribute super."svgutils"; + "svm" = dontDistribute super."svm"; + "svm-light-utils" = dontDistribute super."svm-light-utils"; + "svm-simple" = dontDistribute super."svm-simple"; + "svndump" = dontDistribute super."svndump"; + "swagger2" = doDistribute super."swagger2_1_2_1"; + "swapper" = dontDistribute super."swapper"; + "swearjure" = dontDistribute super."swearjure"; + "swf" = dontDistribute super."swf"; + "swift-lda" = dontDistribute super."swift-lda"; + "swish" = dontDistribute super."swish"; + "sws" = dontDistribute super."sws"; + "syb-extras" = dontDistribute super."syb-extras"; + "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; + "sylvia" = dontDistribute super."sylvia"; + "sym" = dontDistribute super."sym"; + "sym-plot" = dontDistribute super."sym-plot"; + "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; + "sync" = dontDistribute super."sync"; + "synchronous-channels" = dontDistribute super."synchronous-channels"; + "syncthing-hs" = dontDistribute super."syncthing-hs"; + "synt" = dontDistribute super."synt"; + "syntactic" = dontDistribute super."syntactic"; + "syntactical" = dontDistribute super."syntactical"; + "syntax" = dontDistribute super."syntax"; + "syntax-attoparsec" = dontDistribute super."syntax-attoparsec"; + "syntax-example" = dontDistribute super."syntax-example"; + "syntax-example-json" = dontDistribute super."syntax-example-json"; + "syntax-pretty" = dontDistribute super."syntax-pretty"; + "syntax-printer" = dontDistribute super."syntax-printer"; + "syntax-trees" = dontDistribute super."syntax-trees"; + "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn"; + "synthesizer" = dontDistribute super."synthesizer"; + "synthesizer-alsa" = dontDistribute super."synthesizer-alsa"; + "synthesizer-core" = dontDistribute super."synthesizer-core"; + "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional"; + "synthesizer-filter" = dontDistribute super."synthesizer-filter"; + "synthesizer-inference" = dontDistribute super."synthesizer-inference"; + "synthesizer-llvm" = dontDistribute super."synthesizer-llvm"; + "synthesizer-midi" = dontDistribute super."synthesizer-midi"; + "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient"; + "sys-process" = dontDistribute super."sys-process"; + "system-canonicalpath" = dontDistribute super."system-canonicalpath"; + "system-command" = dontDistribute super."system-command"; + "system-gpio" = dontDistribute super."system-gpio"; + "system-inotify" = dontDistribute super."system-inotify"; + "system-lifted" = dontDistribute super."system-lifted"; + "system-random-effect" = dontDistribute super."system-random-effect"; + "system-time-monotonic" = dontDistribute super."system-time-monotonic"; + "system-util" = dontDistribute super."system-util"; + "system-uuid" = dontDistribute super."system-uuid"; + "systemd" = dontDistribute super."systemd"; + "t-regex" = dontDistribute super."t-regex"; + "ta" = dontDistribute super."ta"; + "table" = dontDistribute super."table"; + "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-transformer" = dontDistribute super."tagged-transformer"; + "tagging" = dontDistribute super."tagging"; + "taggy" = dontDistribute super."taggy"; + "taggy-lens" = dontDistribute super."taggy-lens"; + "taglib" = dontDistribute super."taglib"; + "taglib-api" = dontDistribute super."taglib-api"; + "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "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-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; + "tasty-integrate" = dontDistribute super."tasty-integrate"; + "tasty-laws" = dontDistribute super."tasty-laws"; + "tasty-lens" = dontDistribute super."tasty-lens"; + "tasty-program" = dontDistribute super."tasty-program"; + "tateti-tateti" = dontDistribute super."tateti-tateti"; + "tau" = dontDistribute super."tau"; + "tbox" = dontDistribute super."tbox"; + "tcache-AWS" = dontDistribute super."tcache-AWS"; + "tccli" = dontDistribute super."tccli"; + "tce-conf" = dontDistribute super."tce-conf"; + "tconfig" = dontDistribute super."tconfig"; + "tcp" = dontDistribute super."tcp"; + "tdd-util" = dontDistribute super."tdd-util"; + "tdoc" = dontDistribute super."tdoc"; + "teams" = dontDistribute super."teams"; + "teeth" = dontDistribute super."teeth"; + "telegram" = dontDistribute super."telegram"; + "telegram-api" = dontDistribute super."telegram-api"; + "teleport" = dontDistribute super."teleport"; + "template-default" = dontDistribute super."template-default"; + "template-haskell-util" = dontDistribute super."template-haskell-util"; + "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; + "templatepg" = dontDistribute super."templatepg"; + "templater" = dontDistribute super."templater"; + "tempodb" = dontDistribute super."tempodb"; + "temporal-csound" = dontDistribute super."temporal-csound"; + "temporal-media" = dontDistribute super."temporal-media"; + "temporal-music-notation" = dontDistribute super."temporal-music-notation"; + "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo"; + "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western"; + "temporary-resourcet" = dontDistribute super."temporary-resourcet"; + "tempus" = dontDistribute super."tempus"; + "tempus-fugit" = dontDistribute super."tempus-fugit"; + "tensor" = dontDistribute super."tensor"; + "term-rewriting" = dontDistribute super."term-rewriting"; + "termbox-bindings" = dontDistribute super."termbox-bindings"; + "termination-combinators" = dontDistribute super."termination-combinators"; + "terminfo" = doDistribute super."terminfo_0_4_0_2"; + "terminfo-hs" = dontDistribute super."terminfo-hs"; + "termplot" = dontDistribute super."termplot"; + "terntup" = dontDistribute super."terntup"; + "terrahs" = dontDistribute super."terrahs"; + "tersmu" = dontDistribute super."tersmu"; + "test-framework-doctest" = dontDistribute super."test-framework-doctest"; + "test-framework-golden" = dontDistribute super."test-framework-golden"; + "test-framework-program" = dontDistribute super."test-framework-program"; + "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck"; + "test-framework-sandbox" = dontDistribute super."test-framework-sandbox"; + "test-framework-skip" = dontDistribute super."test-framework-skip"; + "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat"; + "test-invariant" = dontDistribute super."test-invariant"; + "test-pkg" = dontDistribute super."test-pkg"; + "test-sandbox" = dontDistribute super."test-sandbox"; + "test-sandbox-compose" = dontDistribute super."test-sandbox-compose"; + "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit"; + "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; + "test-shouldbe" = dontDistribute super."test-shouldbe"; + "testPkg" = dontDistribute super."testPkg"; + "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; + "testloop" = dontDistribute super."testloop"; + "testpack" = dontDistribute super."testpack"; + "testpattern" = dontDistribute super."testpattern"; + "testrunner" = dontDistribute super."testrunner"; + "tetris" = dontDistribute super."tetris"; + "tex2txt" = dontDistribute super."tex2txt"; + "texrunner" = dontDistribute super."texrunner"; + "text-and-plots" = dontDistribute super."text-and-plots"; + "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-translit" = dontDistribute super."text-icu-translit"; + "text-json-qq" = dontDistribute super."text-json-qq"; + "text-latin1" = dontDistribute super."text-latin1"; + "text-ldap" = dontDistribute super."text-ldap"; + "text-locale-encoding" = dontDistribute super."text-locale-encoding"; + "text-normal" = dontDistribute super."text-normal"; + "text-position" = dontDistribute super."text-position"; + "text-postgresql" = dontDistribute super."text-postgresql"; + "text-printer" = dontDistribute super."text-printer"; + "text-regex-replace" = dontDistribute super."text-regex-replace"; + "text-region" = dontDistribute super."text-region"; + "text-register-machine" = dontDistribute super."text-register-machine"; + "text-render" = dontDistribute super."text-render"; + "text-show-instances" = dontDistribute super."text-show-instances"; + "text-stream-decode" = dontDistribute super."text-stream-decode"; + "text-utf7" = dontDistribute super."text-utf7"; + "text-xml-generic" = dontDistribute super."text-xml-generic"; + "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text1" = dontDistribute super."text1"; + "textPlot" = dontDistribute super."textPlot"; + "textmatetags" = dontDistribute super."textmatetags"; + "textocat-api" = dontDistribute super."textocat-api"; + "texts" = dontDistribute super."texts"; + "textual" = dontDistribute super."textual"; + "tfp" = dontDistribute super."tfp"; + "tfp-th" = dontDistribute super."tfp-th"; + "tftp" = dontDistribute super."tftp"; + "tga" = dontDistribute super."tga"; + "th-alpha" = dontDistribute super."th-alpha"; + "th-build" = dontDistribute super."th-build"; + "th-cas" = dontDistribute super."th-cas"; + "th-context" = dontDistribute super."th-context"; + "th-fold" = dontDistribute super."th-fold"; + "th-inline-io-action" = dontDistribute super."th-inline-io-action"; + "th-instance-reification" = dontDistribute super."th-instance-reification"; + "th-instances" = dontDistribute super."th-instances"; + "th-kinds" = dontDistribute super."th-kinds"; + "th-kinds-fork" = dontDistribute super."th-kinds-fork"; + "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-printf" = dontDistribute super."th-printf"; + "th-sccs" = dontDistribute super."th-sccs"; + "th-traced" = dontDistribute super."th-traced"; + "th-typegraph" = dontDistribute super."th-typegraph"; + "themoviedb" = dontDistribute super."themoviedb"; + "themplate" = dontDistribute super."themplate"; + "theoremquest" = dontDistribute super."theoremquest"; + "theoremquest-client" = dontDistribute super."theoremquest-client"; + "thespian" = dontDistribute super."thespian"; + "theta-functions" = dontDistribute super."theta-functions"; + "thih" = dontDistribute super."thih"; + "thimk" = dontDistribute super."thimk"; + "thorn" = dontDistribute super."thorn"; + "thread-local-storage" = dontDistribute super."thread-local-storage"; + "threadPool" = dontDistribute super."threadPool"; + "threadmanager" = dontDistribute super."threadmanager"; + "threads-pool" = dontDistribute super."threads-pool"; + "threads-supervisor" = dontDistribute super."threads-supervisor"; + "threadscope" = dontDistribute super."threadscope"; + "threefish" = dontDistribute super."threefish"; + "threepenny-gui" = dontDistribute super."threepenny-gui"; + "thrift" = dontDistribute super."thrift"; + "thrist" = dontDistribute super."thrist"; + "throttle" = dontDistribute super."throttle"; + "thumbnail" = dontDistribute super."thumbnail"; + "tianbar" = dontDistribute super."tianbar"; + "tic-tac-toe" = dontDistribute super."tic-tac-toe"; + "tickle" = dontDistribute super."tickle"; + "tictactoe3d" = dontDistribute super."tictactoe3d"; + "tidal" = dontDistribute super."tidal"; + "tidal-midi" = dontDistribute super."tidal-midi"; + "tidal-vis" = dontDistribute super."tidal-vis"; + "tie-knot" = dontDistribute super."tie-knot"; + "tiempo" = dontDistribute super."tiempo"; + "tiger" = dontDistribute super."tiger"; + "tight-apply" = dontDistribute super."tight-apply"; + "tightrope" = dontDistribute super."tightrope"; + "tighttp" = dontDistribute super."tighttp"; + "tilings" = dontDistribute super."tilings"; + "timberc" = dontDistribute super."timberc"; + "time-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-patterns" = dontDistribute super."time-patterns"; + "time-qq" = dontDistribute super."time-qq"; + "time-recurrence" = dontDistribute super."time-recurrence"; + "time-series" = dontDistribute super."time-series"; + "time-w3c" = dontDistribute super."time-w3c"; + "timecalc" = dontDistribute super."timecalc"; + "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; + "timemap" = dontDistribute super."timemap"; + "timeout" = dontDistribute super."timeout"; + "timeout-control" = dontDistribute super."timeout-control"; + "timeout-with-results" = dontDistribute super."timeout-with-results"; + "timeparsers" = dontDistribute super."timeparsers"; + "timeplot" = dontDistribute super."timeplot"; + "timers" = dontDistribute super."timers"; + "timers-updatable" = dontDistribute super."timers-updatable"; + "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; + "timestamper" = dontDistribute super."timestamper"; + "timezone-olson-th" = dontDistribute super."timezone-olson-th"; + "timing-convenience" = dontDistribute super."timing-convenience"; + "tinyMesh" = dontDistribute super."tinyMesh"; + "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"; + "tracker" = dontDistribute super."tracker"; + "trajectory" = dontDistribute super."trajectory"; + "transactional-events" = dontDistribute super."transactional-events"; + "transf" = dontDistribute super."transf"; + "transformations" = dontDistribute super."transformations"; + "transformers-abort" = dontDistribute super."transformers-abort"; + "transformers-compose" = dontDistribute super."transformers-compose"; + "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-free" = dontDistribute super."transformers-free"; + "transformers-runnable" = dontDistribute super."transformers-runnable"; + "transformers-supply" = dontDistribute super."transformers-supply"; + "transient" = dontDistribute super."transient"; + "translatable-intset" = dontDistribute super."translatable-intset"; + "translate" = dontDistribute super."translate"; + "travis" = dontDistribute super."travis"; + "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; + "trawl" = dontDistribute super."trawl"; + "traypoweroff" = dontDistribute super."traypoweroff"; + "tree-fun" = dontDistribute super."tree-fun"; + "tree-monad" = dontDistribute super."tree-monad"; + "treemap-html" = dontDistribute super."treemap-html"; + "treemap-html-tools" = dontDistribute super."treemap-html-tools"; + "treersec" = dontDistribute super."treersec"; + "treeviz" = dontDistribute super."treeviz"; + "tremulous-query" = dontDistribute super."tremulous-query"; + "trhsx" = dontDistribute super."trhsx"; + "triangulation" = dontDistribute super."triangulation"; + "trimpolya" = dontDistribute super."trimpolya"; + "tripLL" = dontDistribute super."tripLL"; + "trivia" = dontDistribute super."trivia"; + "trivial-constraint" = dontDistribute super."trivial-constraint"; + "tropical" = dontDistribute super."tropical"; + "truelevel" = dontDistribute super."truelevel"; + "trurl" = dontDistribute super."trurl"; + "truthful" = dontDistribute super."truthful"; + "tsession" = dontDistribute super."tsession"; + "tsession-happstack" = dontDistribute super."tsession-happstack"; + "tskiplist" = dontDistribute super."tskiplist"; + "tslib" = dontDistribute super."tslib"; + "tslogger" = dontDistribute super."tslogger"; + "tsp-viz" = dontDistribute super."tsp-viz"; + "tsparse" = dontDistribute super."tsparse"; + "tst" = dontDistribute super."tst"; + "tsvsql" = dontDistribute super."tsvsql"; + "tttool" = doDistribute super."tttool_1_5_1"; + "tubes" = dontDistribute super."tubes"; + "tuntap" = dontDistribute super."tuntap"; + "tup-functor" = dontDistribute super."tup-functor"; + "tuple" = dontDistribute super."tuple"; + "tuple-gen" = dontDistribute super."tuple-gen"; + "tuple-generic" = dontDistribute super."tuple-generic"; + "tuple-hlist" = dontDistribute super."tuple-hlist"; + "tuple-lenses" = dontDistribute super."tuple-lenses"; + "tuple-morph" = dontDistribute super."tuple-morph"; + "tupleinstances" = dontDistribute super."tupleinstances"; + "turing" = dontDistribute super."turing"; + "turing-music" = dontDistribute super."turing-music"; + "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; + "turni" = dontDistribute super."turni"; + "turtle-options" = dontDistribute super."turtle-options"; + "tweak" = dontDistribute super."tweak"; + "twee" = dontDistribute super."twee"; + "twentefp" = dontDistribute super."twentefp"; + "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; + "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees"; + "twentefp-graphs" = dontDistribute super."twentefp-graphs"; + "twentefp-number" = dontDistribute super."twentefp-number"; + "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; + "twentefp-trees" = dontDistribute super."twentefp-trees"; + "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twhs" = dontDistribute super."twhs"; + "twidge" = dontDistribute super."twidge"; + "twilight-stm" = dontDistribute super."twilight-stm"; + "twilio" = dontDistribute super."twilio"; + "twill" = dontDistribute super."twill"; + "twiml" = dontDistribute super."twiml"; + "twine" = dontDistribute super."twine"; + "twisty" = dontDistribute super."twisty"; + "twitch" = dontDistribute super."twitch"; + "twitter" = dontDistribute super."twitter"; + "twitter-conduit" = doDistribute super."twitter-conduit_0_1_1_1"; + "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-types" = doDistribute super."twitter-types_0_7_1_1"; + "twitter-types-lens" = doDistribute super."twitter-types-lens_0_7_1"; + "tx" = dontDistribute super."tx"; + "txt-sushi" = dontDistribute super."txt-sushi"; + "txt2rtf" = dontDistribute super."txt2rtf"; + "txtblk" = dontDistribute super."txtblk"; + "ty" = dontDistribute super."ty"; + "typalyze" = dontDistribute super."typalyze"; + "type-booleans" = dontDistribute super."type-booleans"; + "type-cache" = dontDistribute super."type-cache"; + "type-cereal" = dontDistribute super."type-cereal"; + "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; + "type-digits" = dontDistribute super."type-digits"; + "type-equality" = dontDistribute super."type-equality"; + "type-equality-check" = dontDistribute super."type-equality-check"; + "type-fun" = dontDistribute super."type-fun"; + "type-functions" = dontDistribute super."type-functions"; + "type-hint" = dontDistribute super."type-hint"; + "type-int" = dontDistribute super."type-int"; + "type-iso" = dontDistribute super."type-iso"; + "type-level" = dontDistribute super."type-level"; + "type-level-bst" = dontDistribute super."type-level-bst"; + "type-level-natural-number" = dontDistribute super."type-level-natural-number"; + "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction"; + "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; + "type-level-sets" = dontDistribute super."type-level-sets"; + "type-level-tf" = dontDistribute super."type-level-tf"; + "type-natural" = dontDistribute super."type-natural"; + "type-ord" = dontDistribute super."type-ord"; + "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; + "type-prelude" = dontDistribute super."type-prelude"; + "type-settheory" = dontDistribute super."type-settheory"; + "type-spine" = dontDistribute super."type-spine"; + "type-structure" = dontDistribute super."type-structure"; + "type-sub-th" = dontDistribute super."type-sub-th"; + "type-unary" = dontDistribute super."type-unary"; + "typeable-th" = dontDistribute super."typeable-th"; + "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; + "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; + "typedquery" = dontDistribute super."typedquery"; + "typehash" = dontDistribute super."typehash"; + "typelevel" = dontDistribute super."typelevel"; + "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typeof" = dontDistribute super."typeof"; + "typeparams" = dontDistribute super."typeparams"; + "typesafe-endian" = dontDistribute super."typesafe-endian"; + "typescript-docs" = dontDistribute super."typescript-docs"; + "typical" = dontDistribute super."typical"; + "typography-geometry" = dontDistribute super."typography-geometry"; + "uAgda" = dontDistribute super."uAgda"; + "ua-parser" = dontDistribute super."ua-parser"; + "uacpid" = dontDistribute super."uacpid"; + "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"; + "ungadtagger" = dontDistribute super."ungadtagger"; + "uni-events" = dontDistribute super."uni-events"; + "uni-graphs" = dontDistribute super."uni-graphs"; + "uni-htk" = dontDistribute super."uni-htk"; + "uni-posixutil" = dontDistribute super."uni-posixutil"; + "uni-reactor" = dontDistribute super."uni-reactor"; + "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph"; + "uni-util" = dontDistribute super."uni-util"; + "unicode" = dontDistribute super."unicode"; + "unicode-names" = dontDistribute super."unicode-names"; + "unicode-normalization" = dontDistribute super."unicode-normalization"; + "unicode-prelude" = dontDistribute super."unicode-prelude"; + "unicode-properties" = dontDistribute super."unicode-properties"; + "unicode-show" = dontDistribute super."unicode-show"; + "unicode-symbols" = dontDistribute super."unicode-symbols"; + "unicoder" = dontDistribute super."unicoder"; + "uniform-io" = dontDistribute super."uniform-io"; + "uniform-pair" = dontDistribute super."uniform-pair"; + "union-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"; + "units" = dontDistribute super."units"; + "units-attoparsec" = dontDistribute super."units-attoparsec"; + "units-defs" = dontDistribute super."units-defs"; + "units-parser" = dontDistribute super."units-parser"; + "unittyped" = dontDistribute super."unittyped"; + "universal-binary" = dontDistribute super."universal-binary"; + "universe-th" = dontDistribute super."universe-th"; + "unix-fcntl" = dontDistribute super."unix-fcntl"; + "unix-handle" = dontDistribute super."unix-handle"; + "unix-io-extra" = dontDistribute super."unix-io-extra"; + "unix-memory" = dontDistribute super."unix-memory"; + "unix-process-conduit" = dontDistribute super."unix-process-conduit"; + "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = dontDistribute super."unlambda"; + "unlit" = dontDistribute super."unlit"; + "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; + "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; + "unpack-funcs" = dontDistribute super."unpack-funcs"; + "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; + "unsafe" = dontDistribute super."unsafe"; + "unsafe-promises" = dontDistribute super."unsafe-promises"; + "unsafely" = dontDistribute super."unsafely"; + "unsafeperformst" = dontDistribute super."unsafeperformst"; + "unscramble" = dontDistribute super."unscramble"; + "unusable-pkg" = dontDistribute super."unusable-pkg"; + "uom-plugin" = dontDistribute super."uom-plugin"; + "up" = dontDistribute super."up"; + "up-grade" = dontDistribute super."up-grade"; + "uploadcare" = dontDistribute super."uploadcare"; + "upskirt" = dontDistribute super."upskirt"; + "ureader" = dontDistribute super."ureader"; + "urembed" = dontDistribute super."urembed"; + "uri" = dontDistribute super."uri"; + "uri-bytestring" = doDistribute super."uri-bytestring_0_1_9_2"; + "uri-conduit" = dontDistribute super."uri-conduit"; + "uri-enumerator" = dontDistribute super."uri-enumerator"; + "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; + "uri-template" = dontDistribute super."uri-template"; + "url-generic" = dontDistribute super."url-generic"; + "urlcheck" = dontDistribute super."urlcheck"; + "urldecode" = dontDistribute super."urldecode"; + "urldisp-happstack" = dontDistribute super."urldisp-happstack"; + "urlencoded" = dontDistribute super."urlencoded"; + "urn" = dontDistribute super."urn"; + "urxml" = dontDistribute super."urxml"; + "usb" = dontDistribute super."usb"; + "usb-enumerator" = dontDistribute super."usb-enumerator"; + "usb-hid" = dontDistribute super."usb-hid"; + "usb-id-database" = dontDistribute super."usb-id-database"; + "usb-iteratee" = dontDistribute super."usb-iteratee"; + "usb-safe" = dontDistribute super."usb-safe"; + "users" = doDistribute super."users_0_4_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_4_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0"; + "users-test" = doDistribute super."users-test_0_4_0_0"; + "utc" = dontDistribute super."utc"; + "utf8-env" = dontDistribute super."utf8-env"; + "utf8-prelude" = dontDistribute super."utf8-prelude"; + "uu-cco" = dontDistribute super."uu-cco"; + "uu-cco-examples" = dontDistribute super."uu-cco-examples"; + "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing"; + "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib"; + "uu-options" = dontDistribute super."uu-options"; + "uu-tc" = dontDistribute super."uu-tc"; + "uuagc" = dontDistribute super."uuagc"; + "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap"; + "uuagc-cabal" = dontDistribute super."uuagc-cabal"; + "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; + "uuagd" = dontDistribute super."uuagd"; + "uuid-aeson" = dontDistribute super."uuid-aeson"; + "uuid-le" = dontDistribute super."uuid-le"; + "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uulib" = dontDistribute super."uulib"; + "uvector" = dontDistribute super."uvector"; + "uvector-algorithms" = dontDistribute super."uvector-algorithms"; + "uxadt" = dontDistribute super."uxadt"; + "uzbl-with-source" = dontDistribute super."uzbl-with-source"; + "v4l2" = dontDistribute super."v4l2"; + "v4l2-examples" = dontDistribute super."v4l2-examples"; + "vacuum" = dontDistribute super."vacuum"; + "vacuum-cairo" = dontDistribute super."vacuum-cairo"; + "vacuum-graphviz" = dontDistribute super."vacuum-graphviz"; + "vacuum-opengl" = dontDistribute super."vacuum-opengl"; + "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph"; + "vado" = dontDistribute super."vado"; + "valid-names" = dontDistribute super."valid-names"; + "validate" = dontDistribute super."validate"; + "validated-literals" = dontDistribute super."validated-literals"; + "validations" = dontDistribute super."validations"; + "value-supply" = dontDistribute super."value-supply"; + "vampire" = dontDistribute super."vampire"; + "var" = dontDistribute super."var"; + "varan" = dontDistribute super."varan"; + "variable-precision" = dontDistribute super."variable-precision"; + "variables" = dontDistribute super."variables"; + "varying" = dontDistribute super."varying"; + "vaultaire-common" = dontDistribute super."vaultaire-common"; + "vcache" = dontDistribute super."vcache"; + "vcache-trie" = dontDistribute super."vcache-trie"; + "vcard" = dontDistribute super."vcard"; + "vcd" = dontDistribute super."vcd"; + "vcs-revision" = dontDistribute super."vcs-revision"; + "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; + "vcsgui" = dontDistribute super."vcsgui"; + "vcswrapper" = dontDistribute super."vcswrapper"; + "vect" = dontDistribute super."vect"; + "vect-floating" = dontDistribute super."vect-floating"; + "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; + "vect-opengl" = dontDistribute super."vect-opengl"; + "vector-binary" = dontDistribute super."vector-binary"; + "vector-binary-instances" = doDistribute super."vector-binary-instances_0_2_1_1"; + "vector-bytestring" = dontDistribute super."vector-bytestring"; + "vector-clock" = dontDistribute super."vector-clock"; + "vector-conduit" = dontDistribute super."vector-conduit"; + "vector-functorlazy" = dontDistribute super."vector-functorlazy"; + "vector-heterogenous" = dontDistribute super."vector-heterogenous"; + "vector-instances-collections" = dontDistribute super."vector-instances-collections"; + "vector-mmap" = dontDistribute super."vector-mmap"; + "vector-random" = dontDistribute super."vector-random"; + "vector-read-instances" = dontDistribute super."vector-read-instances"; + "vector-sized" = dontDistribute super."vector-sized"; + "vector-space-map" = dontDistribute super."vector-space-map"; + "vector-space-opengl" = dontDistribute super."vector-space-opengl"; + "vector-space-points" = dontDistribute super."vector-space-points"; + "vector-static" = dontDistribute super."vector-static"; + "vector-strategies" = dontDistribute super."vector-strategies"; + "verbalexpressions" = dontDistribute super."verbalexpressions"; + "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; + "verilog" = dontDistribute super."verilog"; + "versions" = dontDistribute super."versions"; + "vhdl" = dontDistribute super."vhdl"; + "views" = dontDistribute super."views"; + "vigilance" = dontDistribute super."vigilance"; + "vimeta" = dontDistribute super."vimeta"; + "vimus" = dontDistribute super."vimus"; + "vintage-basic" = dontDistribute super."vintage-basic"; + "vinyl-gl" = dontDistribute super."vinyl-gl"; + "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-utils" = dontDistribute super."vinyl-utils"; + "vinyl-vectors" = dontDistribute super."vinyl-vectors"; + "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; + "vision" = dontDistribute super."vision"; + "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; + "visual-prof" = dontDistribute super."visual-prof"; + "vivid" = dontDistribute super."vivid"; + "vk-aws-route53" = dontDistribute super."vk-aws-route53"; + "vk-posix-pty" = dontDistribute super."vk-posix-pty"; + "vocabulary-kadma" = dontDistribute super."vocabulary-kadma"; + "vorbiscomment" = dontDistribute super."vorbiscomment"; + "vowpal-utils" = dontDistribute super."vowpal-utils"; + "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; + "vte" = dontDistribute super."vte"; + "vtegtk3" = dontDistribute super."vtegtk3"; + "vty-examples" = dontDistribute super."vty-examples"; + "vty-menu" = dontDistribute super."vty-menu"; + "vty-ui" = dontDistribute super."vty-ui"; + "vty-ui-extras" = dontDistribute super."vty-ui-extras"; + "vulkan" = dontDistribute super."vulkan"; + "wacom-daemon" = dontDistribute super."wacom-daemon"; + "waddle" = dontDistribute super."waddle"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; + "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; + "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; + "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; + "wai-graceful" = dontDistribute super."wai-graceful"; + "wai-handler-devel" = dontDistribute super."wai-handler-devel"; + "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; + "wai-handler-snap" = dontDistribute super."wai-handler-snap"; + "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; + "wai-hastache" = dontDistribute super."wai-hastache"; + "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; + "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; + "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; + "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; + "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; + "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; + "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-metrics" = doDistribute super."wai-middleware-metrics_0_2_2"; + "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; + "wai-middleware-route" = dontDistribute super."wai-middleware-route"; + "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-request-spec" = dontDistribute super."wai-request-spec"; + "wai-responsible" = dontDistribute super."wai-responsible"; + "wai-router" = dontDistribute super."wai-router"; + "wai-session-alt" = dontDistribute super."wai-session-alt"; + "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; + "wai-static-cache" = dontDistribute super."wai-static-cache"; + "wai-static-pages" = dontDistribute super."wai-static-pages"; + "wai-test" = dontDistribute super."wai-test"; + "wai-thrift" = dontDistribute super."wai-thrift"; + "wai-throttler" = dontDistribute super."wai-throttler"; + "wait-handle" = dontDistribute super."wait-handle"; + "waitfree" = dontDistribute super."waitfree"; + "warc" = dontDistribute super."warc"; + "warp" = doDistribute super."warp_3_2_2"; + "warp-dynamic" = dontDistribute super."warp-dynamic"; + "warp-static" = dontDistribute super."warp-static"; + "warp-tls-uid" = dontDistribute super."warp-tls-uid"; + "watchdog" = dontDistribute super."watchdog"; + "watcher" = dontDistribute super."watcher"; + "watchit" = dontDistribute super."watchit"; + "wavconvert" = dontDistribute super."wavconvert"; + "wavesurfer" = dontDistribute super."wavesurfer"; + "wavy" = dontDistribute super."wavy"; + "wcwidth" = dontDistribute super."wcwidth"; + "weather-api" = dontDistribute super."weather-api"; + "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell"; + "web-css" = dontDistribute super."web-css"; + "web-encodings" = dontDistribute super."web-encodings"; + "web-mongrel2" = dontDistribute super."web-mongrel2"; + "web-page" = dontDistribute super."web-page"; + "web-routes-mtl" = dontDistribute super."web-routes-mtl"; + "web-routes-quasi" = dontDistribute super."web-routes-quasi"; + "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-transformers" = dontDistribute super."web-routes-transformers"; + "webapi" = dontDistribute super."webapi"; + "webapp" = dontDistribute super."webapp"; + "webcrank" = dontDistribute super."webcrank"; + "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; + "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; + "webidl" = dontDistribute super."webidl"; + "webify" = dontDistribute super."webify"; + "webkit" = dontDistribute super."webkit"; + "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore"; + "webkitgtk3" = dontDistribute super."webkitgtk3"; + "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore"; + "webrtc-vad" = dontDistribute super."webrtc-vad"; + "webserver" = dontDistribute super."webserver"; + "websnap" = dontDistribute super."websnap"; + "webwire" = dontDistribute super."webwire"; + "wedding-announcement" = dontDistribute super."wedding-announcement"; + "wedged" = dontDistribute super."wedged"; + "weighted-regexp" = dontDistribute super."weighted-regexp"; + "weighted-search" = dontDistribute super."weighted-search"; + "welshy" = dontDistribute super."welshy"; + "werewolf" = dontDistribute super."werewolf"; + "wheb-mongo" = dontDistribute super."wheb-mongo"; + "wheb-redis" = dontDistribute super."wheb-redis"; + "wheb-strapped" = dontDistribute super."wheb-strapped"; + "while-lang-parser" = dontDistribute super."while-lang-parser"; + "whim" = dontDistribute super."whim"; + "whiskers" = dontDistribute super."whiskers"; + "whitespace" = dontDistribute super."whitespace"; + "whois" = dontDistribute super."whois"; + "why3" = dontDistribute super."why3"; + "wigner-symbols" = dontDistribute super."wigner-symbols"; + "wikipedia4epub" = dontDistribute super."wikipedia4epub"; + "win-hp-path" = dontDistribute super."win-hp-path"; + "windowslive" = dontDistribute super."windowslive"; + "winerror" = dontDistribute super."winerror"; + "winio" = dontDistribute super."winio"; + "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; + "witness" = dontDistribute super."witness"; + "witty" = dontDistribute super."witty"; + "wkt" = dontDistribute super."wkt"; + "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm"; + "wlc-hs" = dontDistribute super."wlc-hs"; + "wobsurv" = dontDistribute super."wobsurv"; + "woffex" = dontDistribute super."woffex"; + "wol" = dontDistribute super."wol"; + "wolf" = dontDistribute super."wolf"; + "woot" = dontDistribute super."woot"; + "word24" = dontDistribute super."word24"; + "wordcloud" = dontDistribute super."wordcloud"; + "wordexp" = dontDistribute super."wordexp"; + "words" = dontDistribute super."words"; + "wordsearch" = dontDistribute super."wordsearch"; + "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; + "wp-archivebot" = dontDistribute super."wp-archivebot"; + "wraparound" = dontDistribute super."wraparound"; + "wraxml" = dontDistribute super."wraxml"; + "wreq-sb" = dontDistribute super."wreq-sb"; + "wright" = dontDistribute super."wright"; + "wsdl" = dontDistribute super."wsdl"; + "wsedit" = dontDistribute super."wsedit"; + "wtk" = dontDistribute super."wtk"; + "wtk-gtk" = dontDistribute super."wtk-gtk"; + "wumpus-basic" = dontDistribute super."wumpus-basic"; + "wumpus-core" = dontDistribute super."wumpus-core"; + "wumpus-drawing" = dontDistribute super."wumpus-drawing"; + "wumpus-microprint" = dontDistribute super."wumpus-microprint"; + "wumpus-tree" = dontDistribute super."wumpus-tree"; + "wuss" = dontDistribute super."wuss"; + "wx" = dontDistribute super."wx"; + "wxAsteroids" = dontDistribute super."wxAsteroids"; + "wxFruit" = dontDistribute super."wxFruit"; + "wxc" = dontDistribute super."wxc"; + "wxcore" = dontDistribute super."wxcore"; + "wxdirect" = dontDistribute super."wxdirect"; + "wxhnotepad" = dontDistribute super."wxhnotepad"; + "wxturtle" = dontDistribute super."wxturtle"; + "wybor" = dontDistribute super."wybor"; + "wyvern" = dontDistribute super."wyvern"; + "x-dsp" = dontDistribute super."x-dsp"; + "x11-xim" = dontDistribute super."x11-xim"; + "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-util" = dontDistribute super."x509-util"; + "xattr" = dontDistribute super."xattr"; + "xbattbar" = dontDistribute super."xbattbar"; + "xcb-types" = dontDistribute super."xcb-types"; + "xcffib" = dontDistribute super."xcffib"; + "xchat-plugin" = dontDistribute super."xchat-plugin"; + "xcp" = dontDistribute super."xcp"; + "xdg-userdirs" = dontDistribute super."xdg-userdirs"; + "xdot" = dontDistribute super."xdot"; + "xfconf" = dontDistribute super."xfconf"; + "xhaskell-library" = dontDistribute super."xhaskell-library"; + "xhb" = dontDistribute super."xhb"; + "xhb-atom-cache" = dontDistribute super."xhb-atom-cache"; + "xhb-ewmh" = dontDistribute super."xhb-ewmh"; + "xhtml" = doDistribute super."xhtml_3000_2_1"; + "xhtml-combinators" = dontDistribute super."xhtml-combinators"; + "xilinx-lava" = dontDistribute super."xilinx-lava"; + "xine" = dontDistribute super."xine"; + "xing-api" = dontDistribute super."xing-api"; + "xinput-conduit" = dontDistribute super."xinput-conduit"; + "xkbcommon" = dontDistribute super."xkbcommon"; + "xkcd" = dontDistribute super."xkcd"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; + "xlsx-templater" = dontDistribute super."xlsx-templater"; + "xml-basic" = dontDistribute super."xml-basic"; + "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-enumerator" = dontDistribute super."xml-enumerator"; + "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; + "xml-extractors" = dontDistribute super."xml-extractors"; + "xml-helpers" = dontDistribute super."xml-helpers"; + "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens"; + "xml-monad" = dontDistribute super."xml-monad"; + "xml-parsec" = dontDistribute super."xml-parsec"; + "xml-picklers" = dontDistribute super."xml-picklers"; + "xml-pipe" = dontDistribute super."xml-pipe"; + "xml-prettify" = dontDistribute super."xml-prettify"; + "xml-push" = dontDistribute super."xml-push"; + "xml-query" = dontDistribute super."xml-query"; + "xml-query-xml-conduit" = dontDistribute super."xml-query-xml-conduit"; + "xml-query-xml-types" = dontDistribute super."xml-query-xml-types"; + "xml2html" = dontDistribute super."xml2html"; + "xml2json" = dontDistribute super."xml2json"; + "xml2x" = dontDistribute super."xml2x"; + "xmltv" = dontDistribute super."xmltv"; + "xmms2-client" = dontDistribute super."xmms2-client"; + "xmms2-client-glib" = dontDistribute super."xmms2-client-glib"; + "xmobar" = dontDistribute super."xmobar"; + "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch"; + "xmonad-contrib" = dontDistribute super."xmonad-contrib"; + "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch"; + "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl"; + "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper"; + "xmonad-eval" = dontDistribute super."xmonad-eval"; + "xmonad-extras" = dontDistribute super."xmonad-extras"; + "xmonad-screenshot" = dontDistribute super."xmonad-screenshot"; + "xmonad-utils" = dontDistribute super."xmonad-utils"; + "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper"; + "xmonad-windownames" = dontDistribute super."xmonad-windownames"; + "xmpipe" = dontDistribute super."xmpipe"; + "xorshift" = dontDistribute super."xorshift"; + "xosd" = dontDistribute super."xosd"; + "xournal-builder" = dontDistribute super."xournal-builder"; + "xournal-convert" = dontDistribute super."xournal-convert"; + "xournal-parser" = dontDistribute super."xournal-parser"; + "xournal-render" = dontDistribute super."xournal-render"; + "xournal-types" = dontDistribute super."xournal-types"; + "xsact" = dontDistribute super."xsact"; + "xsd" = dontDistribute super."xsd"; + "xsha1" = dontDistribute super."xsha1"; + "xslt" = dontDistribute super."xslt"; + "xtc" = dontDistribute super."xtc"; + "xtest" = dontDistribute super."xtest"; + "xturtle" = dontDistribute super."xturtle"; + "xxhash" = dontDistribute super."xxhash"; + "y0l0bot" = dontDistribute super."y0l0bot"; + "yabi" = dontDistribute super."yabi"; + "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; + "yahoo-web-search" = dontDistribute super."yahoo-web-search"; + "yajl" = dontDistribute super."yajl"; + "yajl-enumerator" = dontDistribute super."yajl-enumerator"; + "yall" = dontDistribute super."yall"; + "yamemo" = dontDistribute super."yamemo"; + "yaml-config" = dontDistribute super."yaml-config"; + "yaml-light-lens" = dontDistribute super."yaml-light-lens"; + "yaml-rpc" = dontDistribute super."yaml-rpc"; + "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty"; + "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap"; + "yaml-union" = dontDistribute super."yaml-union"; + "yaml2owl" = dontDistribute super."yaml2owl"; + "yamlkeysdiff" = dontDistribute super."yamlkeysdiff"; + "yampa-canvas" = dontDistribute super."yampa-canvas"; + "yampa-glfw" = dontDistribute super."yampa-glfw"; + "yampa-glut" = dontDistribute super."yampa-glut"; + "yampa2048" = dontDistribute super."yampa2048"; + "yaop" = dontDistribute super."yaop"; + "yap" = dontDistribute super."yap"; + "yarr" = dontDistribute super."yarr"; + "yarr-image-io" = dontDistribute super."yarr-image-io"; + "yate" = dontDistribute super."yate"; + "yavie" = dontDistribute super."yavie"; + "ycextra" = dontDistribute super."ycextra"; + "yeganesh" = dontDistribute super."yeganesh"; + "yeller" = dontDistribute super."yeller"; + "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-pam" = dontDistribute super."yesod-auth-pam"; + "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; + "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; + "yesod-comments" = dontDistribute super."yesod-comments"; + "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; + "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-crud" = dontDistribute super."yesod-crud"; + "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; + "yesod-csp" = dontDistribute super."yesod-csp"; + "yesod-datatables" = dontDistribute super."yesod-datatables"; + "yesod-dsl" = dontDistribute super."yesod-dsl"; + "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; + "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-json" = dontDistribute super."yesod-json"; + "yesod-links" = dontDistribute super."yesod-links"; + "yesod-lucid" = dontDistribute super."yesod-lucid"; + "yesod-markdown" = dontDistribute super."yesod-markdown"; + "yesod-media-simple" = dontDistribute super."yesod-media-simple"; + "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_5"; + "yesod-paginate" = dontDistribute super."yesod-paginate"; + "yesod-pagination" = dontDistribute super."yesod-pagination"; + "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-platform" = dontDistribute super."yesod-platform"; + "yesod-pnotify" = dontDistribute super."yesod-pnotify"; + "yesod-pure" = dontDistribute super."yesod-pure"; + "yesod-purescript" = dontDistribute super."yesod-purescript"; + "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; + "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; + "yesod-routes" = dontDistribute super."yesod-routes"; + "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; + "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript"; + "yesod-rst" = dontDistribute super."yesod-rst"; + "yesod-s3" = dontDistribute super."yesod-s3"; + "yesod-sass" = dontDistribute super."yesod-sass"; + "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test-json" = dontDistribute super."yesod-test-json"; + "yesod-tls" = dontDistribute super."yesod-tls"; + "yesod-transloadit" = dontDistribute super."yesod-transloadit"; + "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; + "yesod-worker" = dontDistribute super."yesod-worker"; + "yet-another-logger" = dontDistribute super."yet-another-logger"; + "yhccore" = dontDistribute super."yhccore"; + "yi-contrib" = dontDistribute super."yi-contrib"; + "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; + "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-monokai" = dontDistribute super."yi-monokai"; + "yi-snippet" = dontDistribute super."yi-snippet"; + "yi-solarized" = dontDistribute super."yi-solarized"; + "yi-spolsky" = dontDistribute super."yi-spolsky"; + "yi-vty" = dontDistribute super."yi-vty"; + "yices" = dontDistribute super."yices"; + "yices-easy" = dontDistribute super."yices-easy"; + "yices-painless" = dontDistribute super."yices-painless"; + "yjftp" = dontDistribute super."yjftp"; + "yjftp-libs" = dontDistribute super."yjftp-libs"; + "yjsvg" = dontDistribute super."yjsvg"; + "yjtools" = dontDistribute super."yjtools"; + "yocto" = dontDistribute super."yocto"; + "yoctoparsec" = dontDistribute super."yoctoparsec"; + "yoko" = dontDistribute super."yoko"; + "york-lava" = dontDistribute super."york-lava"; + "youtube" = dontDistribute super."youtube"; + "yql" = dontDistribute super."yql"; + "yst" = dontDistribute super."yst"; + "yuiGrid" = dontDistribute super."yuiGrid"; + "yuuko" = dontDistribute super."yuuko"; + "yxdb-utils" = dontDistribute super."yxdb-utils"; + "z3" = dontDistribute super."z3"; + "zalgo" = dontDistribute super."zalgo"; + "zampolit" = dontDistribute super."zampolit"; + "zasni-gerna" = dontDistribute super."zasni-gerna"; + "zcache" = dontDistribute super."zcache"; + "zenc" = dontDistribute super."zenc"; + "zendesk-api" = dontDistribute super."zendesk-api"; + "zeno" = dontDistribute super."zeno"; + "zerobin" = dontDistribute super."zerobin"; + "zeromq-haskell" = dontDistribute super."zeromq-haskell"; + "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; + "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; + "zeroth" = dontDistribute super."zeroth"; + "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zip" = dontDistribute super."zip"; + "zip-conduit" = dontDistribute super."zip-conduit"; + "zipedit" = dontDistribute super."zipedit"; + "zipkin" = dontDistribute super."zipkin"; + "zipper" = dontDistribute super."zipper"; + "zippers" = dontDistribute super."zippers"; + "zippo" = dontDistribute super."zippo"; + "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zmcat" = dontDistribute super."zmcat"; + "zmidi-core" = dontDistribute super."zmidi-core"; + "zmidi-score" = dontDistribute super."zmidi-score"; + "zmqat" = dontDistribute super."zmqat"; + "zoneinfo" = dontDistribute super."zoneinfo"; + "zoom" = dontDistribute super."zoom"; + "zoom-cache" = dontDistribute super."zoom-cache"; + "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm"; + "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile"; + "zoom-refs" = dontDistribute super."zoom-refs"; + "zot" = dontDistribute super."zot"; + "zsh-battery" = dontDistribute super."zsh-battery"; + "ztail" = dontDistribute super."ztail"; + +} diff --git a/pkgs/development/haskell-modules/configuration-lts-5.7.nix b/pkgs/development/haskell-modules/configuration-lts-5.7.nix new file mode 100644 index 00000000000..eb4b2013e21 --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-5.7.nix @@ -0,0 +1,7794 @@ +{ pkgs }: + +with import ./lib.nix { inherit pkgs; }; + +self: super: { + + # core libraries provided by the compiler + Cabal = null; + array = null; + base = null; + bin-package-db = null; + binary = null; + bytestring = null; + containers = null; + deepseq = null; + directory = null; + filepath = null; + ghc-prim = null; + hoopl = null; + hpc = null; + integer-gmp = null; + pretty = null; + process = null; + rts = null; + template-haskell = null; + time = null; + transformers = null; + unix = null; + + # lts-5.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"; + "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-executable" = dontDistribute super."Agda-executable"; + "AhoCorasick" = dontDistribute super."AhoCorasick"; + "AlgorithmW" = dontDistribute super."AlgorithmW"; + "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms"; + "Allure" = dontDistribute super."Allure"; + "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter"; + "Animas" = dontDistribute super."Animas"; + "Annotations" = dontDistribute super."Annotations"; + "Ansi2Html" = dontDistribute super."Ansi2Html"; + "ApplePush" = dontDistribute super."ApplePush"; + "AppleScript" = dontDistribute super."AppleScript"; + "ApproxFun-hs" = dontDistribute super."ApproxFun-hs"; + "ArrayRef" = dontDistribute super."ArrayRef"; + "ArrowVHDL" = dontDistribute super."ArrowVHDL"; + "AspectAG" = dontDistribute super."AspectAG"; + "AttoBencode" = dontDistribute super."AttoBencode"; + "AttoJson" = dontDistribute super."AttoJson"; + "Attrac" = dontDistribute super."Attrac"; + "Aurochs" = dontDistribute super."Aurochs"; + "AutoForms" = dontDistribute super."AutoForms"; + "AvlTree" = dontDistribute super."AvlTree"; + "BASIC" = dontDistribute super."BASIC"; + "BCMtools" = dontDistribute super."BCMtools"; + "BNFC" = dontDistribute super."BNFC"; + "BNFC-meta" = dontDistribute super."BNFC-meta"; + "Baggins" = dontDistribute super."Baggins"; + "Bang" = dontDistribute super."Bang"; + "Barracuda" = dontDistribute super."Barracuda"; + "Befunge93" = dontDistribute super."Befunge93"; + "BenchmarkHistory" = dontDistribute super."BenchmarkHistory"; + "BerkeleyDB" = dontDistribute super."BerkeleyDB"; + "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; + "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BigPixel" = dontDistribute super."BigPixel"; + "Binpack" = dontDistribute super."Binpack"; + "Biobase" = dontDistribute super."Biobase"; + "BiobaseBlast" = dontDistribute super."BiobaseBlast"; + "BiobaseDotP" = dontDistribute super."BiobaseDotP"; + "BiobaseFR3D" = dontDistribute super."BiobaseFR3D"; + "BiobaseFasta" = dontDistribute super."BiobaseFasta"; + "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; + "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; + "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; + "BiobaseTurner" = dontDistribute super."BiobaseTurner"; + "BiobaseTypes" = dontDistribute super."BiobaseTypes"; + "BiobaseVienna" = dontDistribute super."BiobaseVienna"; + "BiobaseXNA" = dontDistribute super."BiobaseXNA"; + "BirdPP" = dontDistribute super."BirdPP"; + "BitSyntax" = dontDistribute super."BitSyntax"; + "Bitly" = dontDistribute super."Bitly"; + "Blobs" = dontDistribute super."Blobs"; + "BluePrintCSS" = dontDistribute super."BluePrintCSS"; + "Blueprint" = dontDistribute super."Blueprint"; + "Bookshelf" = dontDistribute super."Bookshelf"; + "Bravo" = dontDistribute super."Bravo"; + "BufferedSocket" = dontDistribute super."BufferedSocket"; + "Buster" = dontDistribute super."Buster"; + "CBOR" = dontDistribute super."CBOR"; + "CC-delcont" = dontDistribute super."CC-delcont"; + "CC-delcont-alt" = dontDistribute super."CC-delcont-alt"; + "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe"; + "CC-delcont-exc" = dontDistribute super."CC-delcont-exc"; + "CC-delcont-ref" = dontDistribute super."CC-delcont-ref"; + "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf"; + "CCA" = dontDistribute super."CCA"; + "CHXHtml" = dontDistribute super."CHXHtml"; + "CLASE" = dontDistribute super."CLASE"; + "CLI" = dontDistribute super."CLI"; + "CMCompare" = dontDistribute super."CMCompare"; + "CMQ" = dontDistribute super."CMQ"; + "COrdering" = dontDistribute super."COrdering"; + "CPBrainfuck" = dontDistribute super."CPBrainfuck"; + "CPL" = dontDistribute super."CPL"; + "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage"; + "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules"; + "CSPM-Frontend" = dontDistribute super."CSPM-Frontend"; + "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter"; + "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog"; + "CSPM-cspm" = dontDistribute super."CSPM-cspm"; + "CTRex" = dontDistribute super."CTRex"; + "CV" = dontDistribute super."CV"; + "CabalSearch" = dontDistribute super."CabalSearch"; + "Capabilities" = dontDistribute super."Capabilities"; + "Cardinality" = dontDistribute super."Cardinality"; + "CarneadesDSL" = dontDistribute super."CarneadesDSL"; + "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; + "Cascade" = dontDistribute super."Cascade"; + "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; + "Chart-diagrams" = dontDistribute super."Chart-diagrams"; + "Chart-gtk" = dontDistribute super."Chart-gtk"; + "Chart-simple" = dontDistribute super."Chart-simple"; + "CheatSheet" = dontDistribute super."CheatSheet"; + "Checked" = dontDistribute super."Checked"; + "Chitra" = dontDistribute super."Chitra"; + "ChristmasTree" = dontDistribute super."ChristmasTree"; + "CirruParser" = dontDistribute super."CirruParser"; + "ClassLaws" = dontDistribute super."ClassLaws"; + "ClassyPrelude" = dontDistribute super."ClassyPrelude"; + "Clean" = dontDistribute super."Clean"; + "Clipboard" = dontDistribute super."Clipboard"; + "Coadjute" = dontDistribute super."Coadjute"; + "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; + "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; + "Combinatorrent" = dontDistribute super."Combinatorrent"; + "Command" = dontDistribute super."Command"; + "Commando" = dontDistribute super."Commando"; + "ComonadSheet" = dontDistribute super."ComonadSheet"; + "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; + "Concurrential" = dontDistribute super."Concurrential"; + "Condor" = dontDistribute super."Condor"; + "ConfigFileTH" = dontDistribute super."ConfigFileTH"; + "Configger" = dontDistribute super."Configger"; + "Configurable" = dontDistribute super."Configurable"; + "ConsStream" = dontDistribute super."ConsStream"; + "Conscript" = dontDistribute super."Conscript"; + "ConstraintKinds" = dontDistribute super."ConstraintKinds"; + "Consumer" = dontDistribute super."Consumer"; + "ContArrow" = dontDistribute super."ContArrow"; + "ContextAlgebra" = dontDistribute super."ContextAlgebra"; + "Contract" = dontDistribute super."Contract"; + "Control-Engine" = dontDistribute super."Control-Engine"; + "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass"; + "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2"; + "CoreDump" = dontDistribute super."CoreDump"; + "CoreErlang" = dontDistribute super."CoreErlang"; + "CoreFoundation" = dontDistribute super."CoreFoundation"; + "Coroutine" = dontDistribute super."Coroutine"; + "CouchDB" = dontDistribute super."CouchDB"; + "Craft3e" = dontDistribute super."Craft3e"; + "Crypto" = dontDistribute super."Crypto"; + "CurryDB" = dontDistribute super."CurryDB"; + "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DBlimited" = dontDistribute super."DBlimited"; + "DBus" = dontDistribute super."DBus"; + "DCFL" = dontDistribute super."DCFL"; + "DMuCheck" = dontDistribute super."DMuCheck"; + "DOM" = dontDistribute super."DOM"; + "DP" = dontDistribute super."DP"; + "DPM" = dontDistribute super."DPM"; + "DSA" = dontDistribute super."DSA"; + "DSH" = dontDistribute super."DSH"; + "DSTM" = dontDistribute super."DSTM"; + "DTC" = dontDistribute super."DTC"; + "Dangerous" = dontDistribute super."Dangerous"; + "Dao" = dontDistribute super."Dao"; + "DarcsHelpers" = dontDistribute super."DarcsHelpers"; + "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent"; + "Data-Rope" = dontDistribute super."Data-Rope"; + "DataTreeView" = dontDistribute super."DataTreeView"; + "Deadpan-DDP" = dontDistribute super."Deadpan-DDP"; + "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers"; + "DecisionTree" = dontDistribute super."DecisionTree"; + "DeepArrow" = dontDistribute super."DeepArrow"; + "DefendTheKing" = dontDistribute super."DefendTheKing"; + "DescriptiveKeys" = dontDistribute super."DescriptiveKeys"; + "Dflow" = dontDistribute super."Dflow"; + "DifferenceLogic" = dontDistribute super."DifferenceLogic"; + "DifferentialEvolution" = dontDistribute super."DifferentialEvolution"; + "Digit" = dontDistribute super."Digit"; + "DigitalOcean" = dontDistribute super."DigitalOcean"; + "DimensionalHash" = dontDistribute super."DimensionalHash"; + "DirectSound" = dontDistribute super."DirectSound"; + "DisTract" = dontDistribute super."DisTract"; + "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem"; + "Dish" = dontDistribute super."Dish"; + "Dist" = dontDistribute super."Dist"; + "DistanceTransform" = dontDistribute super."DistanceTransform"; + "DistanceUnits" = dontDistribute super."DistanceUnits"; + "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment"; + "DocTest" = dontDistribute super."DocTest"; + "Docs" = dontDistribute super."Docs"; + "DrHylo" = dontDistribute super."DrHylo"; + "DrIFT" = dontDistribute super."DrIFT"; + "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized"; + "Dung" = dontDistribute super."Dung"; + "Dust" = dontDistribute super."Dust"; + "Dust-crypto" = dontDistribute super."Dust-crypto"; + "Dust-tools" = dontDistribute super."Dust-tools"; + "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap"; + "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp"; + "DysFRP" = dontDistribute super."DysFRP"; + "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; + "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; + "EEConfig" = dontDistribute super."EEConfig"; + "EdisonAPI" = dontDistribute super."EdisonAPI"; + "EdisonCore" = dontDistribute super."EdisonCore"; + "EditTimeReport" = dontDistribute super."EditTimeReport"; + "EitherT" = dontDistribute super."EitherT"; + "Elm" = dontDistribute super."Elm"; + "Emping" = dontDistribute super."Emping"; + "Encode" = dontDistribute super."Encode"; + "EnumContainers" = dontDistribute super."EnumContainers"; + "EnumMap" = dontDistribute super."EnumMap"; + "Eq" = dontDistribute super."Eq"; + "EqualitySolver" = dontDistribute super."EqualitySolver"; + "EsounD" = dontDistribute super."EsounD"; + "EstProgress" = dontDistribute super."EstProgress"; + "EtaMOO" = dontDistribute super."EtaMOO"; + "Etage" = dontDistribute super."Etage"; + "Etage-Graph" = dontDistribute super."Etage-Graph"; + "Eternal10Seconds" = dontDistribute super."Eternal10Seconds"; + "Etherbunny" = dontDistribute super."Etherbunny"; + "EuroIT" = dontDistribute super."EuroIT"; + "Euterpea" = dontDistribute super."Euterpea"; + "EventSocket" = dontDistribute super."EventSocket"; + "Extra" = dontDistribute super."Extra"; + "FComp" = dontDistribute super."FComp"; + "FM-SBLEX" = dontDistribute super."FM-SBLEX"; + "FModExRaw" = dontDistribute super."FModExRaw"; + "FPretty" = dontDistribute super."FPretty"; + "FTGL" = dontDistribute super."FTGL"; + "FTGL-bytestring" = dontDistribute super."FTGL-bytestring"; + "FTPLine" = dontDistribute super."FTPLine"; + "Facts" = dontDistribute super."Facts"; + "FailureT" = dontDistribute super."FailureT"; + "FastxPipe" = dontDistribute super."FastxPipe"; + "FermatsLastMargin" = dontDistribute super."FermatsLastMargin"; + "FerryCore" = dontDistribute super."FerryCore"; + "Feval" = dontDistribute super."Feval"; + "FieldTrip" = dontDistribute super."FieldTrip"; + "FileManip" = dontDistribute super."FileManip"; + "FileManipCompat" = dontDistribute super."FileManipCompat"; + "FilePather" = dontDistribute super."FilePather"; + "FileSystem" = dontDistribute super."FileSystem"; + "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo"; + "Finance-Treasury" = dontDistribute super."Finance-Treasury"; + "FiniteMap" = dontDistribute super."FiniteMap"; + "FirstOrderTheory" = dontDistribute super."FirstOrderTheory"; + "FixedPoint-simple" = dontDistribute super."FixedPoint-simple"; + "Flippi" = dontDistribute super."Flippi"; + "Focus" = dontDistribute super."Focus"; + "Folly" = dontDistribute super."Folly"; + "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; + "ForkableT" = dontDistribute super."ForkableT"; + "FormalGrammars" = dontDistribute super."FormalGrammars"; + "Foster" = dontDistribute super."Foster"; + "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; + "Fractaler" = dontDistribute super."Fractaler"; + "Frank" = dontDistribute super."Frank"; + "FreeTypeGL" = dontDistribute super."FreeTypeGL"; + "FunGEn" = dontDistribute super."FunGEn"; + "Fungi" = dontDistribute super."Fungi"; + "GA" = dontDistribute super."GA"; + "GGg" = dontDistribute super."GGg"; + "GHood" = dontDistribute super."GHood"; + "GLFW" = dontDistribute super."GLFW"; + "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; + "GLFW-task" = dontDistribute super."GLFW-task"; + "GLHUI" = dontDistribute super."GLHUI"; + "GLM" = dontDistribute super."GLM"; + "GLMatrix" = dontDistribute super."GLMatrix"; + "GLUtil" = dontDistribute super."GLUtil"; + "GPX" = dontDistribute super."GPX"; + "GPipe-Collada" = dontDistribute super."GPipe-Collada"; + "GPipe-Examples" = dontDistribute super."GPipe-Examples"; + "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad"; + "GTALib" = dontDistribute super."GTALib"; + "Gamgine" = dontDistribute super."Gamgine"; + "Ganymede" = dontDistribute super."Ganymede"; + "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration"; + "GeBoP" = dontDistribute super."GeBoP"; + "GenI" = dontDistribute super."GenI"; + "GenSmsPdu" = dontDistribute super."GenSmsPdu"; + "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe"; + "GenussFold" = dontDistribute super."GenussFold"; + "GeoIp" = dontDistribute super."GeoIp"; + "GeocoderOpenCage" = dontDistribute super."GeocoderOpenCage"; + "Geodetic" = dontDistribute super."Geodetic"; + "GeomPredicates" = dontDistribute super."GeomPredicates"; + "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE"; + "GiST" = dontDistribute super."GiST"; + "Gifcurry" = dontDistribute super."Gifcurry"; + "GiveYouAHead" = dontDistribute super."GiveYouAHead"; + "GlomeTrace" = dontDistribute super."GlomeTrace"; + "GlomeVec" = dontDistribute super."GlomeVec"; + "GlomeView" = dontDistribute super."GlomeView"; + "GoogleChart" = dontDistribute super."GoogleChart"; + "GoogleDirections" = dontDistribute super."GoogleDirections"; + "GoogleSB" = dontDistribute super."GoogleSB"; + "GoogleSuggest" = dontDistribute super."GoogleSuggest"; + "GoogleTranslate" = dontDistribute super."GoogleTranslate"; + "GotoT-transformers" = dontDistribute super."GotoT-transformers"; + "GrammarProducts" = dontDistribute super."GrammarProducts"; + "Graph500" = dontDistribute super."Graph500"; + "GraphHammer" = dontDistribute super."GraphHammer"; + "GraphHammer-examples" = dontDistribute super."GraphHammer-examples"; + "Graphalyze" = dontDistribute super."Graphalyze"; + "Grempa" = dontDistribute super."Grempa"; + "GroteTrap" = dontDistribute super."GroteTrap"; + "Grow" = dontDistribute super."Grow"; + "GrowlNotify" = dontDistribute super."GrowlNotify"; + "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics"; + "GtkGLTV" = dontDistribute super."GtkGLTV"; + "GtkTV" = dontDistribute super."GtkTV"; + "GuiHaskell" = dontDistribute super."GuiHaskell"; + "GuiTV" = dontDistribute super."GuiTV"; + "HARM" = dontDistribute super."HARM"; + "HAppS-Data" = dontDistribute super."HAppS-Data"; + "HAppS-IxSet" = dontDistribute super."HAppS-IxSet"; + "HAppS-Server" = dontDistribute super."HAppS-Server"; + "HAppS-State" = dontDistribute super."HAppS-State"; + "HAppS-Util" = dontDistribute super."HAppS-Util"; + "HAppSHelpers" = dontDistribute super."HAppSHelpers"; + "HCL" = dontDistribute super."HCL"; + "HCard" = dontDistribute super."HCard"; + "HDBC-mysql" = dontDistribute super."HDBC-mysql"; + "HDBC-odbc" = dontDistribute super."HDBC-odbc"; + "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore"; + "HDBC-session" = dontDistribute super."HDBC-session"; + "HDRUtils" = dontDistribute super."HDRUtils"; + "HERA" = dontDistribute super."HERA"; + "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; + "HFuse" = dontDistribute super."HFuse"; + "HGL" = dontDistribute super."HGL"; + "HGamer3D" = dontDistribute super."HGamer3D"; + "HGamer3D-API" = dontDistribute super."HGamer3D-API"; + "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio"; + "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding"; + "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding"; + "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding"; + "HGamer3D-Common" = dontDistribute super."HGamer3D-Common"; + "HGamer3D-Data" = dontDistribute super."HGamer3D-Data"; + "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding"; + "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI"; + "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D"; + "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem"; + "HGamer3D-Network" = dontDistribute super."HGamer3D-Network"; + "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding"; + "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding"; + "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding"; + "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding"; + "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent"; + "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire"; + "HGraphStorage" = dontDistribute super."HGraphStorage"; + "HHDL" = dontDistribute super."HHDL"; + "HJScript" = dontDistribute super."HJScript"; + "HJVM" = dontDistribute super."HJVM"; + "HJavaScript" = dontDistribute super."HJavaScript"; + "HLearn-algebra" = dontDistribute super."HLearn-algebra"; + "HLearn-approximation" = dontDistribute super."HLearn-approximation"; + "HLearn-classification" = dontDistribute super."HLearn-classification"; + "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; + "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HListPP" = dontDistribute super."HListPP"; + "HLogger" = dontDistribute super."HLogger"; + "HMM" = dontDistribute super."HMM"; + "HMap" = dontDistribute super."HMap"; + "HNM" = dontDistribute super."HNM"; + "HODE" = dontDistribute super."HODE"; + "HOpenCV" = dontDistribute super."HOpenCV"; + "HPath" = dontDistribute super."HPath"; + "HPi" = dontDistribute super."HPi"; + "HPlot" = dontDistribute super."HPlot"; + "HPong" = dontDistribute super."HPong"; + "HROOT" = dontDistribute super."HROOT"; + "HROOT-core" = dontDistribute super."HROOT-core"; + "HROOT-graf" = dontDistribute super."HROOT-graf"; + "HROOT-hist" = dontDistribute super."HROOT-hist"; + "HROOT-io" = dontDistribute super."HROOT-io"; + "HROOT-math" = dontDistribute super."HROOT-math"; + "HRay" = dontDistribute super."HRay"; + "HSFFIG" = dontDistribute super."HSFFIG"; + "HSGEP" = dontDistribute super."HSGEP"; + "HSH" = dontDistribute super."HSH"; + "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSlippyMap" = dontDistribute super."HSlippyMap"; + "HSmarty" = dontDistribute super."HSmarty"; + "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; + "HSvm" = dontDistribute super."HSvm"; + "HTTP-Simple" = dontDistribute super."HTTP-Simple"; + "HTab" = dontDistribute super."HTab"; + "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit-Diff" = dontDistribute super."HUnit-Diff"; + "HUnit-Plus" = dontDistribute super."HUnit-Plus"; + "HUnit-approx" = dontDistribute super."HUnit-approx"; + "HXMPP" = dontDistribute super."HXMPP"; + "HXQ" = dontDistribute super."HXQ"; + "HaLeX" = dontDistribute super."HaLeX"; + "HaMinitel" = dontDistribute super."HaMinitel"; + "HaPy" = dontDistribute super."HaPy"; + "HaTeX-meta" = dontDistribute super."HaTeX-meta"; + "HaTeX-qq" = dontDistribute super."HaTeX-qq"; + "HaVSA" = dontDistribute super."HaVSA"; + "Hach" = dontDistribute super."Hach"; + "HackMail" = dontDistribute super."HackMail"; + "Haggressive" = dontDistribute super."Haggressive"; + "HandlerSocketClient" = dontDistribute super."HandlerSocketClient"; + "Hangman" = dontDistribute super."Hangman"; + "HarmTrace" = dontDistribute super."HarmTrace"; + "HarmTrace-Base" = dontDistribute super."HarmTrace-Base"; + "HasGP" = dontDistribute super."HasGP"; + "Haschoo" = dontDistribute super."Haschoo"; + "Hashell" = dontDistribute super."Hashell"; + "HaskRel" = dontDistribute super."HaskRel"; + "HaskellForMaths" = dontDistribute super."HaskellForMaths"; + "HaskellLM" = dontDistribute super."HaskellLM"; + "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellTorrent" = dontDistribute super."HaskellTorrent"; + "HaskellTutorials" = dontDistribute super."HaskellTutorials"; + "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; + "Hawk" = dontDistribute super."Hawk"; + "Hayoo" = dontDistribute super."Hayoo"; + "Hclip" = dontDistribute super."Hclip"; + "Hedi" = dontDistribute super."Hedi"; + "HerbiePlugin" = dontDistribute super."HerbiePlugin"; + "Hermes" = dontDistribute super."Hermes"; + "Hieroglyph" = dontDistribute super."Hieroglyph"; + "HiggsSet" = dontDistribute super."HiggsSet"; + "Hipmunk" = dontDistribute super."Hipmunk"; + "HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; + "Hish" = dontDistribute super."Hish"; + "Histogram" = dontDistribute super."Histogram"; + "Hmpf" = dontDistribute super."Hmpf"; + "Hoed" = dontDistribute super."Hoed"; + "HoleyMonoid" = dontDistribute super."HoleyMonoid"; + "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution"; + "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce"; + "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine"; + "Holumbus-Storage" = dontDistribute super."Holumbus-Storage"; + "Homology" = dontDistribute super."Homology"; + "HongoDB" = dontDistribute super."HongoDB"; + "HostAndPort" = dontDistribute super."HostAndPort"; + "Hricket" = dontDistribute super."Hricket"; + "Hs2lib" = dontDistribute super."Hs2lib"; + "HsASA" = dontDistribute super."HsASA"; + "HsHaruPDF" = dontDistribute super."HsHaruPDF"; + "HsHyperEstraier" = dontDistribute super."HsHyperEstraier"; + "HsJudy" = dontDistribute super."HsJudy"; + "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system"; + "HsParrot" = dontDistribute super."HsParrot"; + "HsPerl5" = dontDistribute super."HsPerl5"; + "HsSVN" = dontDistribute super."HsSVN"; + "HsTools" = dontDistribute super."HsTools"; + "Hsed" = dontDistribute super."Hsed"; + "Hsmtlib" = dontDistribute super."Hsmtlib"; + "HueAPI" = dontDistribute super."HueAPI"; + "HulkImport" = dontDistribute super."HulkImport"; + "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres"; + "IDynamic" = dontDistribute super."IDynamic"; + "IFS" = dontDistribute super."IFS"; + "INblobs" = dontDistribute super."INblobs"; + "IOR" = dontDistribute super."IOR"; + "IORefCAS" = dontDistribute super."IORefCAS"; + "IOSpec" = dontDistribute super."IOSpec"; + "IcoGrid" = dontDistribute super."IcoGrid"; + "Imlib" = dontDistribute super."Imlib"; + "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; + "IndentParser" = dontDistribute super."IndentParser"; + "IndexedList" = dontDistribute super."IndexedList"; + "InfixApplicative" = dontDistribute super."InfixApplicative"; + "Interpolation" = dontDistribute super."Interpolation"; + "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "Irc" = dontDistribute super."Irc"; + "IrrHaskell" = dontDistribute super."IrrHaskell"; + "IsNull" = dontDistribute super."IsNull"; + "JSON-Combinator" = dontDistribute super."JSON-Combinator"; + "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples"; + "JSONb" = dontDistribute super."JSONb"; + "JYU-Utils" = dontDistribute super."JYU-Utils"; + "JackMiniMix" = dontDistribute super."JackMiniMix"; + "Javasf" = dontDistribute super."Javasf"; + "Javav" = dontDistribute super."Javav"; + "JsContracts" = dontDistribute super."JsContracts"; + "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JunkDB" = dontDistribute super."JunkDB"; + "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; + "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables"; + "JustParse" = dontDistribute super."JustParse"; + "KMP" = dontDistribute super."KMP"; + "KSP" = dontDistribute super."KSP"; + "Kalman" = dontDistribute super."Kalman"; + "KdTree" = dontDistribute super."KdTree"; + "Ketchup" = dontDistribute super."Ketchup"; + "KiCS" = dontDistribute super."KiCS"; + "KiCS-debugger" = dontDistribute super."KiCS-debugger"; + "KiCS-prophecy" = dontDistribute super."KiCS-prophecy"; + "Kleislify" = dontDistribute super."Kleislify"; + "Konf" = dontDistribute super."Konf"; + "Kriens" = dontDistribute super."Kriens"; + "KyotoCabinet" = dontDistribute super."KyotoCabinet"; + "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; + "LDAP" = dontDistribute super."LDAP"; + "LRU" = dontDistribute super."LRU"; + "LTree" = dontDistribute super."LTree"; + "LambdaCalculator" = dontDistribute super."LambdaCalculator"; + "LambdaHack" = dontDistribute super."LambdaHack"; + "LambdaINet" = dontDistribute super."LambdaINet"; + "LambdaNet" = dontDistribute super."LambdaNet"; + "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; + "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdajudge" = dontDistribute super."Lambdajudge"; + "Lambdaya" = dontDistribute super."Lambdaya"; + "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; + "Lastik" = dontDistribute super."Lastik"; + "Lattices" = dontDistribute super."Lattices"; + "Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2"; + "LazyVault" = dontDistribute super."LazyVault"; + "Level0" = dontDistribute super."Level0"; + "LibClang" = dontDistribute super."LibClang"; + "Limit" = dontDistribute super."Limit"; + "LinearSplit" = dontDistribute super."LinearSplit"; + "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; + "LinkChecker" = dontDistribute super."LinkChecker"; + "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; + "ListZipper" = dontDistribute super."ListZipper"; + "Logic" = dontDistribute super."Logic"; + "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; + "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI"; + "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network"; + "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes"; + "LslPlus" = dontDistribute super."LslPlus"; + "Lucu" = dontDistribute super."Lucu"; + "MASMGen" = dontDistribute super."MASMGen"; + "MC-Fold-DP" = dontDistribute super."MC-Fold-DP"; + "MHask" = dontDistribute super."MHask"; + "MSQueue" = dontDistribute super."MSQueue"; + "MTGBuilder" = dontDistribute super."MTGBuilder"; + "MagicHaskeller" = dontDistribute super."MagicHaskeller"; + "MailchimpSimple" = dontDistribute super."MailchimpSimple"; + "MaybeT" = dontDistribute super."MaybeT"; + "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf"; + "MaybeT-transformers" = dontDistribute super."MaybeT-transformers"; + "MazesOfMonad" = dontDistribute super."MazesOfMonad"; + "MeanShift" = dontDistribute super."MeanShift"; + "Measure" = dontDistribute super."Measure"; + "MetaHDBC" = dontDistribute super."MetaHDBC"; + "MetaObject" = dontDistribute super."MetaObject"; + "Metrics" = dontDistribute super."Metrics"; + "Mhailist" = dontDistribute super."Mhailist"; + "Michelangelo" = dontDistribute super."Michelangelo"; + "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator"; + "MiniAgda" = dontDistribute super."MiniAgda"; + "MissingK" = dontDistribute super."MissingK"; + "MissingM" = dontDistribute super."MissingM"; + "MissingPy" = dontDistribute super."MissingPy"; + "Modulo" = dontDistribute super."Modulo"; + "Moe" = dontDistribute super."Moe"; + "MoeDict" = dontDistribute super."MoeDict"; + "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl"; + "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign"; + "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; + "MonadCompose" = dontDistribute super."MonadCompose"; + "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; + "MonadStack" = dontDistribute super."MonadStack"; + "Monadius" = dontDistribute super."Monadius"; + "Monaris" = dontDistribute super."Monaris"; + "Monatron" = dontDistribute super."Monatron"; + "Monatron-IO" = dontDistribute super."Monatron-IO"; + "Monocle" = dontDistribute super."Monocle"; + "MorseCode" = dontDistribute super."MorseCode"; + "MuCheck" = dontDistribute super."MuCheck"; + "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit"; + "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec"; + "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck"; + "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck"; + "Munkres" = dontDistribute super."Munkres"; + "Munkres-simple" = dontDistribute super."Munkres-simple"; + "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid"; + "MyPrimes" = dontDistribute super."MyPrimes"; + "NGrams" = dontDistribute super."NGrams"; + "NTRU" = dontDistribute super."NTRU"; + "NXT" = dontDistribute super."NXT"; + "NXTDSL" = dontDistribute super."NXTDSL"; + "NanoProlog" = dontDistribute super."NanoProlog"; + "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets"; + "NaturalSort" = dontDistribute super."NaturalSort"; + "NearContextAlgebra" = dontDistribute super."NearContextAlgebra"; + "Neks" = dontDistribute super."Neks"; + "NestedFunctor" = dontDistribute super."NestedFunctor"; + "NestedSampling" = dontDistribute super."NestedSampling"; + "NetSNMP" = dontDistribute super."NetSNMP"; + "NewBinary" = dontDistribute super."NewBinary"; + "Ninjas" = dontDistribute super."Ninjas"; + "NoSlow" = dontDistribute super."NoSlow"; + "NoTrace" = dontDistribute super."NoTrace"; + "Noise" = dontDistribute super."Noise"; + "Nomyx" = dontDistribute super."Nomyx"; + "Nomyx-Core" = dontDistribute super."Nomyx-Core"; + "Nomyx-Language" = dontDistribute super."Nomyx-Language"; + "Nomyx-Rules" = dontDistribute super."Nomyx-Rules"; + "Nomyx-Web" = dontDistribute super."Nomyx-Web"; + "NonEmpty" = dontDistribute super."NonEmpty"; + "NonEmptyList" = dontDistribute super."NonEmptyList"; + "NumLazyByteString" = dontDistribute super."NumLazyByteString"; + "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; + "Numbers" = dontDistribute super."Numbers"; + "Nussinov78" = dontDistribute super."Nussinov78"; + "Nutri" = dontDistribute super."Nutri"; + "OGL" = dontDistribute super."OGL"; + "OSM" = dontDistribute super."OSM"; + "OTP" = dontDistribute super."OTP"; + "Object" = dontDistribute super."Object"; + "ObjectIO" = dontDistribute super."ObjectIO"; + "Obsidian" = dontDistribute super."Obsidian"; + "OddWord" = dontDistribute super."OddWord"; + "Omega" = dontDistribute super."Omega"; + "OneTuple" = dontDistribute super."OneTuple"; + "OpenAFP" = dontDistribute super."OpenAFP"; + "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils"; + "OpenAL" = dontDistribute super."OpenAL"; + "OpenCL" = dontDistribute super."OpenCL"; + "OpenCLRaw" = dontDistribute super."OpenCLRaw"; + "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; + "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw21" = dontDistribute super."OpenGLRaw21"; + "OpenSCAD" = dontDistribute super."OpenSCAD"; + "OpenVG" = dontDistribute super."OpenVG"; + "OpenVGRaw" = dontDistribute super."OpenVGRaw"; + "Operads" = dontDistribute super."Operads"; + "OptDir" = dontDistribute super."OptDir"; + "OrPatterns" = dontDistribute super."OrPatterns"; + "OrchestrateDB" = dontDistribute super."OrchestrateDB"; + "OrderedBits" = dontDistribute super."OrderedBits"; + "Ordinals" = dontDistribute super."Ordinals"; + "PArrows" = dontDistribute super."PArrows"; + "PBKDF2" = dontDistribute super."PBKDF2"; + "PCLT" = dontDistribute super."PCLT"; + "PCLT-DB" = dontDistribute super."PCLT-DB"; + "PDBtools" = dontDistribute super."PDBtools"; + "PTQ" = dontDistribute super."PTQ"; + "PUH-Project" = dontDistribute super."PUH-Project"; + "PageIO" = dontDistribute super."PageIO"; + "Paillier" = dontDistribute super."Paillier"; + "PandocAgda" = dontDistribute super."PandocAgda"; + "Paraiso" = dontDistribute super."Paraiso"; + "Parry" = dontDistribute super."Parry"; + "ParsecTools" = dontDistribute super."ParsecTools"; + "ParserFunction" = dontDistribute super."ParserFunction"; + "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; + "PasswordGenerator" = dontDistribute super."PasswordGenerator"; + "PastePipe" = dontDistribute super."PastePipe"; + "Pathfinder" = dontDistribute super."Pathfinder"; + "Peano" = dontDistribute super."Peano"; + "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; + "PerfectHash" = dontDistribute super."PerfectHash"; + "PermuteEffects" = dontDistribute super."PermuteEffects"; + "Phsu" = dontDistribute super."Phsu"; + "Pipe" = dontDistribute super."Pipe"; + "Piso" = dontDistribute super."Piso"; + "PlayHangmanGame" = dontDistribute super."PlayHangmanGame"; + "PlayingCards" = dontDistribute super."PlayingCards"; + "Plot-ho-matic" = dontDistribute super."Plot-ho-matic"; + "PlslTools" = dontDistribute super."PlslTools"; + "Plural" = dontDistribute super."Plural"; + "Pollutocracy" = dontDistribute super."Pollutocracy"; + "PortFusion" = dontDistribute super."PortFusion"; + "PortMidi" = dontDistribute super."PortMidi"; + "PostgreSQL" = dontDistribute super."PostgreSQL"; + "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; + "Printf-TH" = dontDistribute super."Printf-TH"; + "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; + "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; + "PropLogic" = dontDistribute super."PropLogic"; + "Proper" = dontDistribute super."Proper"; + "ProxN" = dontDistribute super."ProxN"; + "Pugs" = dontDistribute super."Pugs"; + "Pup-Events" = dontDistribute super."Pup-Events"; + "Pup-Events-Client" = dontDistribute super."Pup-Events-Client"; + "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo"; + "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; + "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; + "QIO" = dontDistribute super."QIO"; + "QuadEdge" = dontDistribute super."QuadEdge"; + "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; + "QuickAnnotate" = dontDistribute super."QuickAnnotate"; + "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; + "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; + "QuickCheck-safe" = dontDistribute super."QuickCheck-safe"; + "QuickPlot" = dontDistribute super."QuickPlot"; + "Quickson" = dontDistribute super."Quickson"; + "R-pandoc" = dontDistribute super."R-pandoc"; + "RANSAC" = dontDistribute super."RANSAC"; + "RBTree" = dontDistribute super."RBTree"; + "RESTng" = dontDistribute super."RESTng"; + "RFC1751" = dontDistribute super."RFC1751"; + "RJson" = dontDistribute super."RJson"; + "RMP" = dontDistribute super."RMP"; + "RNAFold" = dontDistribute super."RNAFold"; + "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; + "RNAdesign" = dontDistribute super."RNAdesign"; + "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = doDistribute super."RNAlien_1_0_0"; + "RNAwolf" = dontDistribute super."RNAwolf"; + "Raincat" = dontDistribute super."Raincat"; + "Random123" = dontDistribute super."Random123"; + "RandomDotOrg" = dontDistribute super."RandomDotOrg"; + "Randometer" = dontDistribute super."Randometer"; + "Range" = dontDistribute super."Range"; + "Ranged-sets" = dontDistribute super."Ranged-sets"; + "Ranka" = dontDistribute super."Ranka"; + "Rasenschach" = dontDistribute super."Rasenschach"; + "Redmine" = dontDistribute super."Redmine"; + "Ref" = dontDistribute super."Ref"; + "Referees" = dontDistribute super."Referees"; + "RepLib" = dontDistribute super."RepLib"; + "ReplicateEffects" = dontDistribute super."ReplicateEffects"; + "ReviewBoard" = dontDistribute super."ReviewBoard"; + "RichConditional" = dontDistribute super."RichConditional"; + "RollingDirectory" = dontDistribute super."RollingDirectory"; + "RoyalMonad" = dontDistribute super."RoyalMonad"; + "RxHaskell" = dontDistribute super."RxHaskell"; + "SBench" = dontDistribute super."SBench"; + "SConfig" = dontDistribute super."SConfig"; + "SDL" = dontDistribute super."SDL"; + "SDL-gfx" = dontDistribute super."SDL-gfx"; + "SDL-image" = dontDistribute super."SDL-image"; + "SDL-mixer" = dontDistribute super."SDL-mixer"; + "SDL-mpeg" = dontDistribute super."SDL-mpeg"; + "SDL-ttf" = dontDistribute super."SDL-ttf"; + "SDL2-ttf" = dontDistribute super."SDL2-ttf"; + "SFML" = dontDistribute super."SFML"; + "SFML-control" = dontDistribute super."SFML-control"; + "SFont" = dontDistribute super."SFont"; + "SG" = dontDistribute super."SG"; + "SGdemo" = dontDistribute super."SGdemo"; + "SHA2" = dontDistribute super."SHA2"; + "SMTPClient" = dontDistribute super."SMTPClient"; + "SNet" = dontDistribute super."SNet"; + "SQLDeps" = dontDistribute super."SQLDeps"; + "STL" = dontDistribute super."STL"; + "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = dontDistribute super."SVGFonts"; + "SVGPath" = dontDistribute super."SVGPath"; + "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; + "SableCC2Hs" = dontDistribute super."SableCC2Hs"; + "Safe" = dontDistribute super."Safe"; + "Salsa" = dontDistribute super."Salsa"; + "Saturnin" = dontDistribute super."Saturnin"; + "SciFlow" = dontDistribute super."SciFlow"; + "ScratchFs" = dontDistribute super."ScratchFs"; + "Scurry" = dontDistribute super."Scurry"; + "Semantique" = dontDistribute super."Semantique"; + "Semigroup" = dontDistribute super."Semigroup"; + "SeqAlign" = dontDistribute super."SeqAlign"; + "SessionLogger" = dontDistribute super."SessionLogger"; + "ShellCheck" = dontDistribute super."ShellCheck"; + "Shellac" = dontDistribute super."Shellac"; + "Shellac-compatline" = dontDistribute super."Shellac-compatline"; + "Shellac-editline" = dontDistribute super."Shellac-editline"; + "Shellac-haskeline" = dontDistribute super."Shellac-haskeline"; + "Shellac-readline" = dontDistribute super."Shellac-readline"; + "ShowF" = dontDistribute super."ShowF"; + "Shrub" = dontDistribute super."Shrub"; + "Shu-thing" = dontDistribute super."Shu-thing"; + "SimpleAES" = dontDistribute super."SimpleAES"; + "SimpleEA" = dontDistribute super."SimpleEA"; + "SimpleGL" = dontDistribute super."SimpleGL"; + "SimpleH" = dontDistribute super."SimpleH"; + "SimpleLog" = dontDistribute super."SimpleLog"; + "SimpleServer" = dontDistribute super."SimpleServer"; + "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; + "Smooth" = dontDistribute super."Smooth"; + "SmtLib" = dontDistribute super."SmtLib"; + "Snusmumrik" = dontDistribute super."Snusmumrik"; + "SoOSiM" = dontDistribute super."SoOSiM"; + "SoccerFun" = dontDistribute super."SoccerFun"; + "SoccerFunGL" = dontDistribute super."SoccerFunGL"; + "Sonnex" = dontDistribute super."Sonnex"; + "SourceGraph" = dontDistribute super."SourceGraph"; + "Southpaw" = dontDistribute super."Southpaw"; + "SpaceInvaders" = dontDistribute super."SpaceInvaders"; + "SpacePrivateers" = dontDistribute super."SpacePrivateers"; + "SpinCounter" = dontDistribute super."SpinCounter"; + "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; + "SpreadsheetML" = dontDistribute super."SpreadsheetML"; + "Sprig" = dontDistribute super."Sprig"; + "Stasis" = dontDistribute super."Stasis"; + "StateVar-transformer" = dontDistribute super."StateVar-transformer"; + "StatisticalMethods" = dontDistribute super."StatisticalMethods"; + "Stomp" = dontDistribute super."Stomp"; + "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; + "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "StrappedTemplates" = dontDistribute super."StrappedTemplates"; + "StrategyLib" = dontDistribute super."StrategyLib"; + "Stream" = dontDistribute super."Stream"; + "StrictBench" = dontDistribute super."StrictBench"; + "SuffixStructures" = dontDistribute super."SuffixStructures"; + "SybWidget" = dontDistribute super."SybWidget"; + "SyntaxMacros" = dontDistribute super."SyntaxMacros"; + "Sysmon" = dontDistribute super."Sysmon"; + "TBC" = dontDistribute super."TBC"; + "TBit" = dontDistribute super."TBit"; + "THEff" = dontDistribute super."THEff"; + "TTTAS" = dontDistribute super."TTTAS"; + "TV" = dontDistribute super."TV"; + "TYB" = dontDistribute super."TYB"; + "TableAlgebra" = dontDistribute super."TableAlgebra"; + "Tables" = dontDistribute super."Tables"; + "Tablify" = dontDistribute super."Tablify"; + "Tainted" = dontDistribute super."Tainted"; + "Takusen" = dontDistribute super."Takusen"; + "Tape" = dontDistribute super."Tape"; + "TeaHS" = dontDistribute super."TeaHS"; + "Tensor" = dontDistribute super."Tensor"; + "TernaryTrees" = dontDistribute super."TernaryTrees"; + "TestExplode" = dontDistribute super."TestExplode"; + "Theora" = dontDistribute super."Theora"; + "Thingie" = dontDistribute super."Thingie"; + "ThreadObjects" = dontDistribute super."ThreadObjects"; + "Thrift" = dontDistribute super."Thrift"; + "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe"; + "TicTacToe" = dontDistribute super."TicTacToe"; + "TigerHash" = dontDistribute super."TigerHash"; + "TimePiece" = dontDistribute super."TimePiece"; + "TinyLaunchbury" = dontDistribute super."TinyLaunchbury"; + "TinyURL" = dontDistribute super."TinyURL"; + "Titim" = dontDistribute super."Titim"; + "Top" = dontDistribute super."Top"; + "Tournament" = dontDistribute super."Tournament"; + "TraceUtils" = dontDistribute super."TraceUtils"; + "TransformersStepByStep" = dontDistribute super."TransformersStepByStep"; + "Transhare" = dontDistribute super."Transhare"; + "TreeCounter" = dontDistribute super."TreeCounter"; + "TreeStructures" = dontDistribute super."TreeStructures"; + "TreeT" = dontDistribute super."TreeT"; + "Treiber" = dontDistribute super."Treiber"; + "TrendGraph" = dontDistribute super."TrendGraph"; + "TrieMap" = dontDistribute super."TrieMap"; + "Twofish" = dontDistribute super."Twofish"; + "TypeClass" = dontDistribute super."TypeClass"; + "TypeCompose" = dontDistribute super."TypeCompose"; + "TypeIlluminator" = dontDistribute super."TypeIlluminator"; + "TypeNat" = dontDistribute super."TypeNat"; + "TypingTester" = dontDistribute super."TypingTester"; + "UISF" = dontDistribute super."UISF"; + "UMM" = dontDistribute super."UMM"; + "URLT" = dontDistribute super."URLT"; + "URLb" = dontDistribute super."URLb"; + "UTFTConverter" = dontDistribute super."UTFTConverter"; + "Unique" = dontDistribute super."Unique"; + "Unixutils-shadow" = dontDistribute super."Unixutils-shadow"; + "Updater" = dontDistribute super."Updater"; + "UrlDisp" = dontDistribute super."UrlDisp"; + "Useful" = dontDistribute super."Useful"; + "UtilityTM" = dontDistribute super."UtilityTM"; + "VKHS" = dontDistribute super."VKHS"; + "Validation" = dontDistribute super."Validation"; + "Vec" = dontDistribute super."Vec"; + "Vec-Boolean" = dontDistribute super."Vec-Boolean"; + "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw"; + "Vec-Transform" = dontDistribute super."Vec-Transform"; + "VecN" = dontDistribute super."VecN"; + "Verba" = dontDistribute super."Verba"; + "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "Vulkan" = dontDistribute super."Vulkan"; + "WAVE" = dontDistribute super."WAVE"; + "WL500gPControl" = dontDistribute super."WL500gPControl"; + "WL500gPLib" = dontDistribute super."WL500gPLib"; + "WMSigner" = dontDistribute super."WMSigner"; + "WURFL" = dontDistribute super."WURFL"; + "WXDiffCtrl" = dontDistribute super."WXDiffCtrl"; + "WashNGo" = dontDistribute super."WashNGo"; + "WaveFront" = dontDistribute super."WaveFront"; + "Weather" = dontDistribute super."Weather"; + "WebBits" = dontDistribute super."WebBits"; + "WebBits-Html" = dontDistribute super."WebBits-Html"; + "WebBits-multiplate" = dontDistribute super."WebBits-multiplate"; + "WebCont" = dontDistribute super."WebCont"; + "WeberLogic" = dontDistribute super."WeberLogic"; + "Webrexp" = dontDistribute super."Webrexp"; + "Wheb" = dontDistribute super."Wheb"; + "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; + "Win32-errors" = dontDistribute super."Win32-errors"; + "Win32-junction-point" = dontDistribute super."Win32-junction-point"; + "Win32-security" = dontDistribute super."Win32-security"; + "Win32-services" = dontDistribute super."Win32-services"; + "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper"; + "Wired" = dontDistribute super."Wired"; + "WordAlignment" = dontDistribute super."WordAlignment"; + "WordNet" = dontDistribute super."WordNet"; + "WordNet-ghc74" = dontDistribute super."WordNet-ghc74"; + "Wordlint" = dontDistribute super."Wordlint"; + "WxGeneric" = dontDistribute super."WxGeneric"; + "X11-extras" = dontDistribute super."X11-extras"; + "X11-rm" = dontDistribute super."X11-rm"; + "X11-xdamage" = dontDistribute super."X11-xdamage"; + "X11-xfixes" = dontDistribute super."X11-xfixes"; + "X11-xft" = dontDistribute super."X11-xft"; + "X11-xshape" = dontDistribute super."X11-xshape"; + "XAttr" = dontDistribute super."XAttr"; + "XInput" = dontDistribute super."XInput"; + "XMMS" = dontDistribute super."XMMS"; + "XMPP" = dontDistribute super."XMPP"; + "XSaiga" = dontDistribute super."XSaiga"; + "Xec" = dontDistribute super."Xec"; + "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter"; + "Xorshift128Plus" = dontDistribute super."Xorshift128Plus"; + "YACPong" = dontDistribute super."YACPong"; + "YFrob" = dontDistribute super."YFrob"; + "Yablog" = dontDistribute super."Yablog"; + "YamlReference" = dontDistribute super."YamlReference"; + "Yampa-core" = dontDistribute super."Yampa-core"; + "Yocto" = dontDistribute super."Yocto"; + "Yogurt" = dontDistribute super."Yogurt"; + "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone"; + "ZEBEDDE" = dontDistribute super."ZEBEDDE"; + "ZFS" = dontDistribute super."ZFS"; + "ZMachine" = dontDistribute super."ZMachine"; + "ZipFold" = dontDistribute super."ZipFold"; + "ZipperAG" = dontDistribute super."ZipperAG"; + "Zora" = dontDistribute super."Zora"; + "Zwaluw" = dontDistribute super."Zwaluw"; + "a50" = dontDistribute super."a50"; + "abacate" = dontDistribute super."abacate"; + "abc-puzzle" = dontDistribute super."abc-puzzle"; + "abcBridge" = dontDistribute super."abcBridge"; + "abcnotation" = dontDistribute super."abcnotation"; + "abeson" = dontDistribute super."abeson"; + "abstract-deque-tests" = dontDistribute super."abstract-deque-tests"; + "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate"; + "abt" = dontDistribute super."abt"; + "ac-machine" = dontDistribute super."ac-machine"; + "ac-machine-conduit" = dontDistribute super."ac-machine-conduit"; + "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic"; + "accelerate-cublas" = dontDistribute super."accelerate-cublas"; + "accelerate-cuda" = dontDistribute super."accelerate-cuda"; + "accelerate-cufft" = dontDistribute super."accelerate-cufft"; + "accelerate-examples" = dontDistribute super."accelerate-examples"; + "accelerate-fft" = dontDistribute super."accelerate-fft"; + "accelerate-fftw" = dontDistribute super."accelerate-fftw"; + "accelerate-fourier" = dontDistribute super."accelerate-fourier"; + "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; + "accelerate-io" = dontDistribute super."accelerate-io"; + "accelerate-random" = dontDistribute super."accelerate-random"; + "accelerate-utility" = dontDistribute super."accelerate-utility"; + "accentuateus" = dontDistribute super."accentuateus"; + "access-time" = dontDistribute super."access-time"; + "acid-state-dist" = dontDistribute super."acid-state-dist"; + "acid-state-tls" = dontDistribute super."acid-state-tls"; + "acl2" = dontDistribute super."acl2"; + "acme-all-monad" = dontDistribute super."acme-all-monad"; + "acme-box" = dontDistribute super."acme-box"; + "acme-cadre" = dontDistribute super."acme-cadre"; + "acme-cofunctor" = dontDistribute super."acme-cofunctor"; + "acme-colosson" = dontDistribute super."acme-colosson"; + "acme-comonad" = dontDistribute super."acme-comonad"; + "acme-cutegirl" = dontDistribute super."acme-cutegirl"; + "acme-dont" = dontDistribute super."acme-dont"; + "acme-flipping-tables" = dontDistribute super."acme-flipping-tables"; + "acme-grawlix" = dontDistribute super."acme-grawlix"; + "acme-hq9plus" = dontDistribute super."acme-hq9plus"; + "acme-http" = dontDistribute super."acme-http"; + "acme-inator" = dontDistribute super."acme-inator"; + "acme-io" = dontDistribute super."acme-io"; + "acme-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-diff" = dontDistribute super."aeson-diff"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-lens" = dontDistribute super."aeson-lens"; + "aeson-native" = dontDistribute super."aeson-native"; + "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-schema" = dontDistribute super."aeson-schema"; + "aeson-serialize" = dontDistribute super."aeson-serialize"; + "aeson-smart" = dontDistribute super."aeson-smart"; + "aeson-streams" = dontDistribute super."aeson-streams"; + "aeson-t" = dontDistribute super."aeson-t"; + "aeson-toolkit" = dontDistribute super."aeson-toolkit"; + "aeson-value-parser" = dontDistribute super."aeson-value-parser"; + "aeson-yak" = dontDistribute super."aeson-yak"; + "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc"; + "afis" = dontDistribute super."afis"; + "afv" = dontDistribute super."afv"; + "ag-pictgen" = dontDistribute super."ag-pictgen"; + "agda-server" = dontDistribute super."agda-server"; + "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; + "agum" = dontDistribute super."agum"; + "aig" = dontDistribute super."aig"; + "air" = dontDistribute super."air"; + "air-extra" = dontDistribute super."air-extra"; + "air-spec" = dontDistribute super."air-spec"; + "air-th" = dontDistribute super."air-th"; + "airbrake" = dontDistribute super."airbrake"; + "aivika" = dontDistribute super."aivika"; + "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-experiment" = dontDistribute super."aivika-experiment"; + "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; + "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; + "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams"; + "aivika-transformers" = dontDistribute super."aivika-transformers"; + "ajhc" = dontDistribute super."ajhc"; + "al" = dontDistribute super."al"; + "alea" = dontDistribute super."alea"; + "alex-meta" = dontDistribute super."alex-meta"; + "alfred" = dontDistribute super."alfred"; + "alga" = dontDistribute super."alga"; + "algebra" = dontDistribute super."algebra"; + "algebra-dag" = dontDistribute super."algebra-dag"; + "algebra-sql" = dontDistribute super."algebra-sql"; + "algebraic" = dontDistribute super."algebraic"; + "algebraic-classes" = dontDistribute super."algebraic-classes"; + "align" = dontDistribute super."align"; + "align-text" = dontDistribute super."align-text"; + "aligned-foreignptr" = dontDistribute super."aligned-foreignptr"; + "allocated-processor" = dontDistribute super."allocated-processor"; + "alloy" = dontDistribute super."alloy"; + "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd"; + "almost-fix" = dontDistribute super."almost-fix"; + "alms" = dontDistribute super."alms"; + "alpha" = dontDistribute super."alpha"; + "alpino-tools" = dontDistribute super."alpino-tools"; + "alsa" = dontDistribute super."alsa"; + "alsa-core" = dontDistribute super."alsa-core"; + "alsa-gui" = dontDistribute super."alsa-gui"; + "alsa-midi" = dontDistribute super."alsa-midi"; + "alsa-mixer" = dontDistribute super."alsa-mixer"; + "alsa-pcm" = dontDistribute super."alsa-pcm"; + "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests"; + "alsa-seq" = dontDistribute super."alsa-seq"; + "alsa-seq-tests" = dontDistribute super."alsa-seq-tests"; + "altcomposition" = dontDistribute super."altcomposition"; + "alternative-io" = dontDistribute super."alternative-io"; + "altfloat" = dontDistribute super."altfloat"; + "alure" = dontDistribute super."alure"; + "amazon-emailer" = dontDistribute super."amazon-emailer"; + "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; + "amazon-products" = dontDistribute super."amazon-products"; + "ampersand" = dontDistribute super."ampersand"; + "amqp-conduit" = dontDistribute super."amqp-conduit"; + "amrun" = dontDistribute super."amrun"; + "analyze-client" = dontDistribute super."analyze-client"; + "anansi" = dontDistribute super."anansi"; + "anansi-hscolour" = dontDistribute super."anansi-hscolour"; + "anansi-pandoc" = dontDistribute super."anansi-pandoc"; + "anatomy" = dontDistribute super."anatomy"; + "android" = dontDistribute super."android"; + "android-lint-summary" = dontDistribute super."android-lint-summary"; + "animalcase" = dontDistribute super."animalcase"; + "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-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"; + "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; + "apportionment" = dontDistribute super."apportionment"; + "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate-equality" = dontDistribute super."approximate-equality"; + "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; + "arb-fft" = dontDistribute super."arb-fft"; + "arbb-vm" = dontDistribute super."arbb-vm"; + "archive" = dontDistribute super."archive"; + "archiver" = dontDistribute super."archiver"; + "archlinux" = dontDistribute super."archlinux"; + "archlinux-web" = dontDistribute super."archlinux-web"; + "archnews" = dontDistribute super."archnews"; + "arff" = dontDistribute super."arff"; + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon2" = dontDistribute super."argon2"; + "argparser" = dontDistribute super."argparser"; + "arguedit" = dontDistribute super."arguedit"; + "ariadne" = dontDistribute super."ariadne"; + "arion" = dontDistribute super."arion"; + "arith-encode" = dontDistribute super."arith-encode"; + "arithmatic" = dontDistribute super."arithmatic"; + "arithmetic" = dontDistribute super."arithmetic"; + "arithmoi" = dontDistribute super."arithmoi"; + "armada" = dontDistribute super."armada"; + "arpa" = dontDistribute super."arpa"; + "array-forth" = dontDistribute super."array-forth"; + "array-memoize" = dontDistribute super."array-memoize"; + "array-primops" = dontDistribute super."array-primops"; + "array-utils" = dontDistribute super."array-utils"; + "arrow-improve" = dontDistribute super."arrow-improve"; + "arrowapply-utils" = dontDistribute super."arrowapply-utils"; + "arrowp" = dontDistribute super."arrowp"; + "arrows" = dontDistribute super."arrows"; + "artery" = dontDistribute super."artery"; + "arx" = dontDistribute super."arx"; + "arxiv" = dontDistribute super."arxiv"; + "ascetic" = dontDistribute super."ascetic"; + "ascii" = dontDistribute super."ascii"; + "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; + "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; + "asic" = dontDistribute super."asic"; + "asil" = dontDistribute super."asil"; + "asn1-data" = dontDistribute super."asn1-data"; + "asn1dump" = dontDistribute super."asn1dump"; + "assembler" = dontDistribute super."assembler"; + "assert" = dontDistribute super."assert"; + "assert-failure" = dontDistribute super."assert-failure"; + "assertions" = dontDistribute super."assertions"; + "assimp" = dontDistribute super."assimp"; + "astar" = dontDistribute super."astar"; + "astrds" = dontDistribute super."astrds"; + "astview" = dontDistribute super."astview"; + "astview-utils" = dontDistribute super."astview-utils"; + "async-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" = dontDistribute super."atom-conduit"; + "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; + "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; + "atomic-write" = dontDistribute super."atomic-write"; + "atomo" = dontDistribute super."atomo"; + "atp-haskell" = dontDistribute super."atp-haskell"; + "atrans" = dontDistribute super."atrans"; + "attempt" = dontDistribute super."attempt"; + "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec-arff" = dontDistribute super."attoparsec-arff"; + "attoparsec-binary" = dontDistribute super."attoparsec-binary"; + "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; + "attoparsec-csv" = dontDistribute super."attoparsec-csv"; + "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee"; + "attoparsec-parsec" = dontDistribute super."attoparsec-parsec"; + "attoparsec-text" = dontDistribute super."attoparsec-text"; + "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator"; + "attosplit" = dontDistribute super."attosplit"; + "atuin" = dontDistribute super."atuin"; + "audacity" = dontDistribute super."audacity"; + "audiovisual" = dontDistribute super."audiovisual"; + "augeas" = dontDistribute super."augeas"; + "augur" = dontDistribute super."augur"; + "aur" = dontDistribute super."aur"; + "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; + "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authinfo-hs" = dontDistribute super."authinfo-hs"; + "authoring" = dontDistribute super."authoring"; + "autoexporter" = dontDistribute super."autoexporter"; + "autonix-deps" = dontDistribute super."autonix-deps"; + "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; + "autoproc" = dontDistribute super."autoproc"; + "avahi" = dontDistribute super."avahi"; + "avatar-generator" = dontDistribute super."avatar-generator"; + "average" = dontDistribute super."average"; + "avl-static" = dontDistribute super."avl-static"; + "avr-shake" = dontDistribute super."avr-shake"; + "awesome-prelude" = dontDistribute super."awesome-prelude"; + "awesomium" = dontDistribute super."awesomium"; + "awesomium-glut" = dontDistribute super."awesomium-glut"; + "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; + "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; + "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; + "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams"; + "aws-ec2" = dontDistribute super."aws-ec2"; + "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder"; + "aws-general" = dontDistribute super."aws-general"; + "aws-kinesis" = dontDistribute super."aws-kinesis"; + "aws-kinesis-client" = dontDistribute super."aws-kinesis-client"; + "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard"; + "aws-lambda" = dontDistribute super."aws-lambda"; + "aws-performance-tests" = dontDistribute super."aws-performance-tests"; + "aws-route53" = dontDistribute super."aws-route53"; + "aws-sdk" = dontDistribute super."aws-sdk"; + "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter"; + "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered"; + "aws-sign4" = dontDistribute super."aws-sign4"; + "aws-sns" = dontDistribute super."aws-sns"; + "azure-acs" = dontDistribute super."azure-acs"; + "azure-service-api" = dontDistribute super."azure-service-api"; + "azure-servicebus" = dontDistribute super."azure-servicebus"; + "azurify" = dontDistribute super."azurify"; + "b-tree" = dontDistribute super."b-tree"; + "babylon" = dontDistribute super."babylon"; + "backdropper" = dontDistribute super."backdropper"; + "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; + "backward-state" = dontDistribute super."backward-state"; + "bacteria" = dontDistribute super."bacteria"; + "bag" = dontDistribute super."bag"; + "bamboo" = dontDistribute super."bamboo"; + "bamboo-launcher" = dontDistribute super."bamboo-launcher"; + "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight"; + "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo"; + "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint"; + "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5"; + "bamse" = dontDistribute super."bamse"; + "bamstats" = dontDistribute super."bamstats"; + "bank-holiday-usa" = dontDistribute super."bank-holiday-usa"; + "banwords" = dontDistribute super."banwords"; + "barchart" = dontDistribute super."barchart"; + "barcodes-code128" = dontDistribute super."barcodes-code128"; + "barecheck" = dontDistribute super."barecheck"; + "barley" = dontDistribute super."barley"; + "barrie" = dontDistribute super."barrie"; + "barrier-monad" = dontDistribute super."barrier-monad"; + "base-generics" = dontDistribute super."base-generics"; + "base-io-access" = dontDistribute super."base-io-access"; + "base-prelude" = doDistribute super."base-prelude_0_1_21"; + "base32-bytestring" = dontDistribute super."base32-bytestring"; + "base58-bytestring" = dontDistribute super."base58-bytestring"; + "base58address" = dontDistribute super."base58address"; + "base64-conduit" = dontDistribute super."base64-conduit"; + "base91" = dontDistribute super."base91"; + "basex-client" = dontDistribute super."basex-client"; + "bash" = dontDistribute super."bash"; + "basic-lens" = dontDistribute super."basic-lens"; + "basic-sop" = dontDistribute super."basic-sop"; + "baskell" = dontDistribute super."baskell"; + "battlenet" = dontDistribute super."battlenet"; + "battlenet-yesod" = dontDistribute super."battlenet-yesod"; + "battleships" = dontDistribute super."battleships"; + "bayes-stack" = dontDistribute super."bayes-stack"; + "bbdb" = dontDistribute super."bbdb"; + "bbi" = dontDistribute super."bbi"; + "bdd" = dontDistribute super."bdd"; + "bdelta" = dontDistribute super."bdelta"; + "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; + "beamable" = dontDistribute super."beamable"; + "beautifHOL" = dontDistribute super."beautifHOL"; + "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; + "bein" = dontDistribute super."bein"; + "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"; + "bibtex" = dontDistribute super."bibtex"; + "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; + "bidispec" = dontDistribute super."bidispec"; + "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; + "billboard-parser" = dontDistribute super."billboard-parser"; + "billeksah-forms" = dontDistribute super."billeksah-forms"; + "billeksah-main" = dontDistribute super."billeksah-main"; + "billeksah-main-static" = dontDistribute super."billeksah-main-static"; + "billeksah-pane" = dontDistribute super."billeksah-pane"; + "billeksah-services" = dontDistribute super."billeksah-services"; + "bimaps" = dontDistribute super."bimaps"; + "binary-bits" = dontDistribute super."binary-bits"; + "binary-communicator" = dontDistribute super."binary-communicator"; + "binary-derive" = dontDistribute super."binary-derive"; + "binary-enum" = dontDistribute super."binary-enum"; + "binary-file" = dontDistribute super."binary-file"; + "binary-generic" = dontDistribute super."binary-generic"; + "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-protocol" = dontDistribute super."binary-protocol"; + "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; + "binary-shared" = dontDistribute super."binary-shared"; + "binary-state" = dontDistribute super."binary-state"; + "binary-store" = dontDistribute super."binary-store"; + "binary-streams" = dontDistribute super."binary-streams"; + "binary-strict" = dontDistribute super."binary-strict"; + "binarydefer" = dontDistribute super."binarydefer"; + "bind-marshal" = dontDistribute super."bind-marshal"; + "binding-core" = dontDistribute super."binding-core"; + "binding-gtk" = dontDistribute super."binding-gtk"; + "binding-wx" = dontDistribute super."binding-wx"; + "bindings" = dontDistribute super."bindings"; + "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-K8055" = dontDistribute super."bindings-K8055"; + "bindings-apr" = dontDistribute super."bindings-apr"; + "bindings-apr-util" = dontDistribute super."bindings-apr-util"; + "bindings-audiofile" = dontDistribute super."bindings-audiofile"; + "bindings-bfd" = dontDistribute super."bindings-bfd"; + "bindings-cctools" = dontDistribute super."bindings-cctools"; + "bindings-codec2" = dontDistribute super."bindings-codec2"; + "bindings-common" = dontDistribute super."bindings-common"; + "bindings-dc1394" = dontDistribute super."bindings-dc1394"; + "bindings-directfb" = dontDistribute super."bindings-directfb"; + "bindings-eskit" = dontDistribute super."bindings-eskit"; + "bindings-fann" = dontDistribute super."bindings-fann"; + "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth"; + "bindings-friso" = dontDistribute super."bindings-friso"; + "bindings-glib" = dontDistribute super."bindings-glib"; + "bindings-gobject" = dontDistribute super."bindings-gobject"; + "bindings-gpgme" = dontDistribute super."bindings-gpgme"; + "bindings-gsl" = dontDistribute super."bindings-gsl"; + "bindings-gts" = dontDistribute super."bindings-gts"; + "bindings-hamlib" = dontDistribute super."bindings-hamlib"; + "bindings-hdf5" = dontDistribute super."bindings-hdf5"; + "bindings-levmar" = dontDistribute super."bindings-levmar"; + "bindings-libcddb" = dontDistribute super."bindings-libcddb"; + "bindings-libffi" = dontDistribute super."bindings-libffi"; + "bindings-libftdi" = dontDistribute super."bindings-libftdi"; + "bindings-librrd" = dontDistribute super."bindings-librrd"; + "bindings-libstemmer" = dontDistribute super."bindings-libstemmer"; + "bindings-libusb" = dontDistribute super."bindings-libusb"; + "bindings-libv4l2" = dontDistribute super."bindings-libv4l2"; + "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2"; + "bindings-lxc" = dontDistribute super."bindings-lxc"; + "bindings-mmap" = dontDistribute super."bindings-mmap"; + "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal"; + "bindings-nettle" = dontDistribute super."bindings-nettle"; + "bindings-parport" = dontDistribute super."bindings-parport"; + "bindings-portaudio" = dontDistribute super."bindings-portaudio"; + "bindings-potrace" = dontDistribute super."bindings-potrace"; + "bindings-ppdev" = dontDistribute super."bindings-ppdev"; + "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd"; + "bindings-sane" = dontDistribute super."bindings-sane"; + "bindings-sc3" = dontDistribute super."bindings-sc3"; + "bindings-sipc" = dontDistribute super."bindings-sipc"; + "bindings-sophia" = dontDistribute super."bindings-sophia"; + "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; + "bindings-svm" = dontDistribute super."bindings-svm"; + "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; + "binembed" = dontDistribute super."binembed"; + "binembed-example" = dontDistribute super."binembed-example"; + "bini" = dontDistribute super."bini"; + "bio" = dontDistribute super."bio"; + "biohazard" = dontDistribute super."biohazard"; + "bioinformatics-toolkit" = dontDistribute super."bioinformatics-toolkit"; + "biosff" = dontDistribute super."biosff"; + "biostockholm" = dontDistribute super."biostockholm"; + "bird" = dontDistribute super."bird"; + "bit-array" = dontDistribute super."bit-array"; + "bit-vector" = dontDistribute super."bit-vector"; + "bitarray" = dontDistribute super."bitarray"; + "bitcoin-rpc" = dontDistribute super."bitcoin-rpc"; + "bitly-cli" = dontDistribute super."bitly-cli"; + "bitmap" = dontDistribute super."bitmap"; + "bitmap-opengl" = dontDistribute super."bitmap-opengl"; + "bitmaps" = dontDistribute super."bitmaps"; + "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-conduit" = dontDistribute super."bits-conduit"; + "bits-extras" = dontDistribute super."bits-extras"; + "bitset" = dontDistribute super."bitset"; + "bitspeak" = dontDistribute super."bitspeak"; + "bitstream" = dontDistribute super."bitstream"; + "bitstring" = dontDistribute super."bitstring"; + "bittorrent" = dontDistribute super."bittorrent"; + "bitvec" = dontDistribute super."bitvec"; + "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; + "bk-tree" = dontDistribute super."bk-tree"; + "bkr" = dontDistribute super."bkr"; + "bktrees" = dontDistribute super."bktrees"; + "bla" = dontDistribute super."bla"; + "black-jewel" = dontDistribute super."black-jewel"; + "blacktip" = dontDistribute super."blacktip"; + "blakesum" = dontDistribute super."blakesum"; + "blakesum-demo" = dontDistribute super."blakesum-demo"; + "blas" = dontDistribute super."blas"; + "blas-hs" = dontDistribute super."blas-hs"; + "blatex" = dontDistribute super."blatex"; + "blaze" = dontDistribute super."blaze"; + "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; + "blaze-from-html" = dontDistribute super."blaze-from-html"; + "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; + "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat"; + "blaze-html-truncate" = dontDistribute super."blaze-html-truncate"; + "blaze-json" = dontDistribute super."blaze-json"; + "blaze-shields" = dontDistribute super."blaze-shields"; + "blaze-textual-native" = dontDistribute super."blaze-textual-native"; + "blazeMarker" = dontDistribute super."blazeMarker"; + "blink1" = dontDistribute super."blink1"; + "blip" = dontDistribute super."blip"; + "bliplib" = dontDistribute super."bliplib"; + "blocking-transactions" = dontDistribute super."blocking-transactions"; + "blogination" = dontDistribute super."blogination"; + "bloodhound" = dontDistribute super."bloodhound"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloxorz" = dontDistribute super."bloxorz"; + "blubber" = dontDistribute super."blubber"; + "blubber-server" = dontDistribute super."blubber-server"; + "bluetile" = dontDistribute super."bluetile"; + "bluetileutils" = dontDistribute super."bluetileutils"; + "blunt" = dontDistribute super."blunt"; + "board-games" = dontDistribute super."board-games"; + "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; + "boolean-list" = dontDistribute super."boolean-list"; + "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; + "boolexpr" = dontDistribute super."boolexpr"; + "bools" = dontDistribute super."bools"; + "boolsimplifier" = dontDistribute super."boolsimplifier"; + "boomange" = dontDistribute super."boomange"; + "boombox" = dontDistribute super."boombox"; + "boomslang" = dontDistribute super."boomslang"; + "borel" = dontDistribute super."borel"; + "bot" = dontDistribute super."bot"; + "botpp" = dontDistribute super."botpp"; + "bound-gen" = dontDistribute super."bound-gen"; + "bounded-tchan" = dontDistribute super."bounded-tchan"; + "boundingboxes" = dontDistribute super."boundingboxes"; + "bowntz" = dontDistribute super."bowntz"; + "bpann" = dontDistribute super."bpann"; + "braid" = dontDistribute super."braid"; + "brainfuck" = dontDistribute super."brainfuck"; + "brainfuck-monad" = dontDistribute super."brainfuck-monad"; + "brainfuck-tut" = dontDistribute super."brainfuck-tut"; + "break" = dontDistribute super."break"; + "breakout" = dontDistribute super."breakout"; + "breve" = dontDistribute super."breve"; + "brians-brain" = dontDistribute super."brians-brain"; + "brillig" = dontDistribute super."brillig"; + "broccoli" = dontDistribute super."broccoli"; + "broker-haskell" = dontDistribute super."broker-haskell"; + "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson-generic" = dontDistribute super."bson-generic"; + "bson-generics" = dontDistribute super."bson-generics"; + "bson-mapping" = dontDistribute super."bson-mapping"; + "bspack" = dontDistribute super."bspack"; + "bsparse" = dontDistribute super."bsparse"; + "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; + "buffer-pipe" = dontDistribute super."buffer-pipe"; + "buffon" = dontDistribute super."buffon"; + "bugzilla" = dontDistribute super."bugzilla"; + "buildable" = dontDistribute super."buildable"; + "buildbox" = dontDistribute super."buildbox"; + "buildbox-tools" = dontDistribute super."buildbox-tools"; + "buildwrapper" = dontDistribute super."buildwrapper"; + "bullet" = dontDistribute super."bullet"; + "burst-detection" = dontDistribute super."burst-detection"; + "bus-pirate" = dontDistribute super."bus-pirate"; + "buster" = dontDistribute super."buster"; + "buster-gtk" = dontDistribute super."buster-gtk"; + "buster-network" = dontDistribute super."buster-network"; + "butterflies" = dontDistribute super."butterflies"; + "bv" = dontDistribute super."bv"; + "byline" = dontDistribute super."byline"; + "bytable" = dontDistribute super."bytable"; + "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-class" = dontDistribute super."bytestring-class"; + "bytestring-csv" = dontDistribute super."bytestring-csv"; + "bytestring-delta" = dontDistribute super."bytestring-delta"; + "bytestring-from" = dontDistribute super."bytestring-from"; + "bytestring-nums" = dontDistribute super."bytestring-nums"; + "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-rematch" = dontDistribute super."bytestring-rematch"; + "bytestring-short" = dontDistribute super."bytestring-short"; + "bytestring-show" = dontDistribute super."bytestring-show"; + "bytestring-tree-builder" = dontDistribute super."bytestring-tree-builder"; + "bytestringparser" = dontDistribute super."bytestringparser"; + "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary"; + "bytestringreadp" = dontDistribute super."bytestringreadp"; + "c-dsl" = dontDistribute super."c-dsl"; + "c-io" = dontDistribute super."c-io"; + "c-storable-deriving" = dontDistribute super."c-storable-deriving"; + "c0check" = dontDistribute super."c0check"; + "c0parser" = dontDistribute super."c0parser"; + "c10k" = dontDistribute super."c10k"; + "c2hsc" = dontDistribute super."c2hsc"; + "cab" = dontDistribute super."cab"; + "cabal-audit" = dontDistribute super."cabal-audit"; + "cabal-bounds" = dontDistribute super."cabal-bounds"; + "cabal-cargs" = dontDistribute super."cabal-cargs"; + "cabal-constraints" = dontDistribute super."cabal-constraints"; + "cabal-db" = dontDistribute super."cabal-db"; + "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; + "cabal-dev" = dontDistribute super."cabal-dev"; + "cabal-dir" = dontDistribute super."cabal-dir"; + "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags"; + "cabal-ghci" = dontDistribute super."cabal-ghci"; + "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; + "cabal-info" = dontDistribute super."cabal-info"; + "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; + "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; + "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; + "cabal-lenses" = dontDistribute super."cabal-lenses"; + "cabal-macosx" = dontDistribute super."cabal-macosx"; + "cabal-meta" = dontDistribute super."cabal-meta"; + "cabal-mon" = dontDistribute super."cabal-mon"; + "cabal-nirvana" = dontDistribute super."cabal-nirvana"; + "cabal-progdeps" = dontDistribute super."cabal-progdeps"; + "cabal-query" = dontDistribute super."cabal-query"; + "cabal-scripts" = dontDistribute super."cabal-scripts"; + "cabal-setup" = dontDistribute super."cabal-setup"; + "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-test" = dontDistribute super."cabal-test"; + "cabal-test-bin" = dontDistribute super."cabal-test-bin"; + "cabal-test-compat" = dontDistribute super."cabal-test-compat"; + "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck"; + "cabal-uninstall" = dontDistribute super."cabal-uninstall"; + "cabal-upload" = dontDistribute super."cabal-upload"; + "cabal2arch" = dontDistribute super."cabal2arch"; + "cabal2doap" = dontDistribute super."cabal2doap"; + "cabal2ebuild" = dontDistribute super."cabal2ebuild"; + "cabal2ghci" = dontDistribute super."cabal2ghci"; + "cabal2nix" = dontDistribute super."cabal2nix"; + "cabal2spec" = dontDistribute super."cabal2spec"; + "cabalQuery" = dontDistribute super."cabalQuery"; + "cabalg" = dontDistribute super."cabalg"; + "cabalgraph" = dontDistribute super."cabalgraph"; + "cabalmdvrpm" = dontDistribute super."cabalmdvrpm"; + "cabalrpmdeps" = dontDistribute super."cabalrpmdeps"; + "cabalvchk" = dontDistribute super."cabalvchk"; + "cabin" = dontDistribute super."cabin"; + "cabocha" = dontDistribute super."cabocha"; + "cached-io" = dontDistribute super."cached-io"; + "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = doDistribute super."cacophony_0_4_0"; + "caf" = dontDistribute super."caf"; + "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; + "caffegraph" = dontDistribute super."caffegraph"; + "cairo-appbase" = dontDistribute super."cairo-appbase"; + "cake" = dontDistribute super."cake"; + "cake3" = dontDistribute super."cake3"; + "cakyrespa" = dontDistribute super."cakyrespa"; + "cal3d" = dontDistribute super."cal3d"; + "cal3d-examples" = dontDistribute super."cal3d-examples"; + "cal3d-opengl" = dontDistribute super."cal3d-opengl"; + "calc" = dontDistribute super."calc"; + "caldims" = dontDistribute super."caldims"; + "caledon" = dontDistribute super."caledon"; + "call" = dontDistribute super."call"; + "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; + "camh" = dontDistribute super."camh"; + "campfire" = dontDistribute super."campfire"; + "canonical-filepath" = dontDistribute super."canonical-filepath"; + "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; + "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; + "cantor" = dontDistribute super."cantor"; + "cao" = dontDistribute super."cao"; + "cap" = dontDistribute super."cap"; + "capped-list" = dontDistribute super."capped-list"; + "capri" = dontDistribute super."capri"; + "car-pool" = dontDistribute super."car-pool"; + "caramia" = dontDistribute super."caramia"; + "carboncopy" = dontDistribute super."carboncopy"; + "carettah" = dontDistribute super."carettah"; + "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; + "casadi-bindings" = dontDistribute super."casadi-bindings"; + "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; + "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; + "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal"; + "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface"; + "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; + "cascading" = dontDistribute super."cascading"; + "case-conversion" = dontDistribute super."case-conversion"; + "cash" = dontDistribute super."cash"; + "casing" = dontDistribute super."casing"; + "casr-logbook" = dontDistribute super."casr-logbook"; + "cassandra-cql" = dontDistribute super."cassandra-cql"; + "cassandra-thrift" = dontDistribute super."cassandra-thrift"; + "cassava-conduit" = dontDistribute super."cassava-conduit"; + "cassava-streams" = dontDistribute super."cassava-streams"; + "cassette" = dontDistribute super."cassette"; + "cassy" = dontDistribute super."cassy"; + "castle" = dontDistribute super."castle"; + "casui" = dontDistribute super."casui"; + "catamorphism" = dontDistribute super."catamorphism"; + "catch-fd" = dontDistribute super."catch-fd"; + "categorical-algebra" = dontDistribute super."categorical-algebra"; + "categories" = dontDistribute super."categories"; + "category-extras" = dontDistribute super."category-extras"; + "category-traced" = dontDistribute super."category-traced"; + "cayley-dickson" = dontDistribute super."cayley-dickson"; + "cblrepo" = dontDistribute super."cblrepo"; + "cci" = dontDistribute super."cci"; + "ccnx" = dontDistribute super."ccnx"; + "cctools-workqueue" = dontDistribute super."cctools-workqueue"; + "cedict" = dontDistribute super."cedict"; + "cef" = dontDistribute super."cef"; + "ceilometer-common" = dontDistribute super."ceilometer-common"; + "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; + "cereal-derive" = dontDistribute super."cereal-derive"; + "cereal-enumerator" = dontDistribute super."cereal-enumerator"; + "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-text" = dontDistribute super."cereal-text"; + "certificate" = dontDistribute super."certificate"; + "cf" = dontDistribute super."cf"; + "cfipu" = dontDistribute super."cfipu"; + "cflp" = dontDistribute super."cflp"; + "cfopu" = dontDistribute super."cfopu"; + "cg" = dontDistribute super."cg"; + "cgen" = dontDistribute super."cgen"; + "cgi" = doDistribute super."cgi_3001_2_2_3"; + "cgi-undecidable" = dontDistribute super."cgi-undecidable"; + "cgi-utils" = dontDistribute super."cgi-utils"; + "cgrep" = dontDistribute super."cgrep"; + "chain-codes" = dontDistribute super."chain-codes"; + "chalk" = dontDistribute super."chalk"; + "chalkboard" = dontDistribute super."chalkboard"; + "chalkboard-viewer" = dontDistribute super."chalkboard-viewer"; + "chalmers-lava2000" = dontDistribute super."chalmers-lava2000"; + "chan-split" = dontDistribute super."chan-split"; + "change-monger" = dontDistribute super."change-monger"; + "charade" = dontDistribute super."charade"; + "charsetdetect" = dontDistribute super."charsetdetect"; + "chart-histogram" = dontDistribute super."chart-histogram"; + "chaselev-deque" = dontDistribute super."chaselev-deque"; + "chatter" = dontDistribute super."chatter"; + "chatty" = dontDistribute super."chatty"; + "chatty-text" = dontDistribute super."chatty-text"; + "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; + "check-pvp" = dontDistribute super."check-pvp"; + "checked" = dontDistribute super."checked"; + "chell-hunit" = dontDistribute super."chell-hunit"; + "chesshs" = dontDistribute super."chesshs"; + "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; + "chp" = dontDistribute super."chp"; + "chp-mtl" = dontDistribute super."chp-mtl"; + "chp-plus" = dontDistribute super."chp-plus"; + "chp-spec" = dontDistribute super."chp-spec"; + "chp-transformers" = dontDistribute super."chp-transformers"; + "chronograph" = dontDistribute super."chronograph"; + "chu2" = dontDistribute super."chu2"; + "chuchu" = dontDistribute super."chuchu"; + "chunks" = dontDistribute super."chunks"; + "chunky" = dontDistribute super."chunky"; + "church-list" = dontDistribute super."church-list"; + "cil" = dontDistribute super."cil"; + "cinvoke" = dontDistribute super."cinvoke"; + "cio" = dontDistribute super."cio"; + "cipher-rc5" = dontDistribute super."cipher-rc5"; + "ciphersaber2" = dontDistribute super."ciphersaber2"; + "circ" = dontDistribute super."circ"; + "cirru-parser" = dontDistribute super."cirru-parser"; + "citation-resolve" = dontDistribute super."citation-resolve"; + "citeproc-hs" = dontDistribute super."citeproc-hs"; + "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter"; + "cityhash" = dontDistribute super."cityhash"; + "cjk" = dontDistribute super."cjk"; + "clac" = dontDistribute super."clac"; + "clafer" = dontDistribute super."clafer"; + "claferIG" = dontDistribute super."claferIG"; + "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; + "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; + "clash" = dontDistribute super."clash"; + "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "classify" = dontDistribute super."classify"; + "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; + "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; + "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; + "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks"; + "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap"; + "cld2" = dontDistribute super."cld2"; + "clean-home" = dontDistribute super."clean-home"; + "clean-unions" = dontDistribute super."clean-unions"; + "cless" = dontDistribute super."cless"; + "clevercss" = dontDistribute super."clevercss"; + "cli" = dontDistribute super."cli"; + "click-clack" = dontDistribute super."click-clack"; + "clifford" = dontDistribute super."clifford"; + "clippard" = dontDistribute super."clippard"; + "clipper" = dontDistribute super."clipper"; + "clippings" = dontDistribute super."clippings"; + "clist" = dontDistribute super."clist"; + "clocked" = dontDistribute super."clocked"; + "clogparse" = dontDistribute super."clogparse"; + "clone-all" = dontDistribute super."clone-all"; + "closure" = dontDistribute super."closure"; + "cloud-haskell" = dontDistribute super."cloud-haskell"; + "cloudfront-signer" = dontDistribute super."cloudfront-signer"; + "cloudyfs" = dontDistribute super."cloudyfs"; + "cltw" = dontDistribute super."cltw"; + "clua" = dontDistribute super."clua"; + "clumpiness" = dontDistribute super."clumpiness"; + "cluss" = dontDistribute super."cluss"; + "clustertools" = dontDistribute super."clustertools"; + "clutterhs" = dontDistribute super."clutterhs"; + "cmaes" = dontDistribute super."cmaes"; + "cmath" = dontDistribute super."cmath"; + "cmathml3" = dontDistribute super."cmathml3"; + "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs-browser" = dontDistribute super."cmdargs-browser"; + "cmdlib" = dontDistribute super."cmdlib"; + "cmdtheline" = dontDistribute super."cmdtheline"; + "cml" = dontDistribute super."cml"; + "cmonad" = dontDistribute super."cmonad"; + "cmu" = dontDistribute super."cmu"; + "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; + "cndict" = dontDistribute super."cndict"; + "codec" = dontDistribute super."codec"; + "codec-libevent" = dontDistribute super."codec-libevent"; + "codec-mbox" = dontDistribute super."codec-mbox"; + "codecov-haskell" = dontDistribute super."codecov-haskell"; + "codemonitor" = dontDistribute super."codemonitor"; + "codepad" = dontDistribute super."codepad"; + "codo-notation" = dontDistribute super."codo-notation"; + "cofunctor" = dontDistribute super."cofunctor"; + "cognimeta-utils" = dontDistribute super."cognimeta-utils"; + "coinbase-exchange" = dontDistribute super."coinbase-exchange"; + "colada" = dontDistribute super."colada"; + "colchis" = dontDistribute super."colchis"; + "collada-output" = dontDistribute super."collada-output"; + "collada-types" = dontDistribute super."collada-types"; + "collapse-util" = dontDistribute super."collapse-util"; + "collection-json" = dontDistribute super."collection-json"; + "collections" = dontDistribute super."collections"; + "collections-api" = dontDistribute super."collections-api"; + "collections-base-instances" = dontDistribute super."collections-base-instances"; + "colock" = dontDistribute super."colock"; + "colorize-haskell" = dontDistribute super."colorize-haskell"; + "colors" = dontDistribute super."colors"; + "coltrane" = dontDistribute super."coltrane"; + "com" = dontDistribute super."com"; + "combinat" = dontDistribute super."combinat"; + "combinat-diagrams" = dontDistribute super."combinat-diagrams"; + "combinator-interactive" = dontDistribute super."combinator-interactive"; + "combinatorial-problems" = dontDistribute super."combinatorial-problems"; + "combinatorics" = dontDistribute super."combinatorics"; + "combobuffer" = dontDistribute super."combobuffer"; + "comfort-graph" = dontDistribute super."comfort-graph"; + "command" = dontDistribute super."command"; + "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; + "commodities" = dontDistribute super."commodities"; + "commsec" = dontDistribute super."commsec"; + "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; + "comonad-extras" = dontDistribute super."comonad-extras"; + "comonad-random" = dontDistribute super."comonad-random"; + "compact-map" = dontDistribute super."compact-map"; + "compact-socket" = dontDistribute super."compact-socket"; + "compact-string" = dontDistribute super."compact-string"; + "compact-string-fix" = dontDistribute super."compact-string-fix"; + "compare-type" = dontDistribute super."compare-type"; + "compdata-automata" = dontDistribute super."compdata-automata"; + "compdata-dags" = dontDistribute super."compdata-dags"; + "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = dontDistribute super."compensated"; + "competition" = dontDistribute super."competition"; + "compilation" = dontDistribute super."compilation"; + "complex-generic" = dontDistribute super."complex-generic"; + "complex-integrate" = dontDistribute super."complex-integrate"; + "complexity" = dontDistribute super."complexity"; + "compose-ltr" = dontDistribute super."compose-ltr"; + "compose-trans" = dontDistribute super."compose-trans"; + "compression" = dontDistribute super."compression"; + "compstrat" = dontDistribute super."compstrat"; + "comptrans" = dontDistribute super."comptrans"; + "computational-algebra" = dontDistribute super."computational-algebra"; + "computations" = dontDistribute super."computations"; + "conceit" = dontDistribute super."conceit"; + "concorde" = dontDistribute super."concorde"; + "concraft" = dontDistribute super."concraft"; + "concraft-hr" = dontDistribute super."concraft-hr"; + "concraft-pl" = dontDistribute super."concraft-pl"; + "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser"; + "concrete-typerep" = dontDistribute super."concrete-typerep"; + "concurrent-barrier" = dontDistribute super."concurrent-barrier"; + "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = dontDistribute super."concurrent-extra"; + "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; + "concurrent-sa" = dontDistribute super."concurrent-sa"; + "concurrent-split" = dontDistribute super."concurrent-split"; + "concurrent-state" = dontDistribute super."concurrent-state"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; + "concurrentoutput" = dontDistribute super."concurrentoutput"; + "cond" = dontDistribute super."cond"; + "condor" = dontDistribute super."condor"; + "condorcet" = dontDistribute super."condorcet"; + "conductive-base" = dontDistribute super."conductive-base"; + "conductive-clock" = dontDistribute super."conductive-clock"; + "conductive-hsc3" = dontDistribute super."conductive-hsc3"; + "conductive-song" = dontDistribute super."conductive-song"; + "conduit-audio" = dontDistribute super."conduit-audio"; + "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; + "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; + "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; + "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; + "conf" = dontDistribute super."conf"; + "config-select" = dontDistribute super."config-select"; + "config-value" = dontDistribute super."config-value"; + "configifier" = dontDistribute super."configifier"; + "configuration" = dontDistribute super."configuration"; + "configuration-tools" = dontDistribute super."configuration-tools"; + "confsolve" = dontDistribute super."confsolve"; + "congruence-relation" = dontDistribute super."congruence-relation"; + "conjugateGradient" = dontDistribute super."conjugateGradient"; + "conjure" = dontDistribute super."conjure"; + "conlogger" = dontDistribute super."conlogger"; + "connection-pool" = dontDistribute super."connection-pool"; + "consistent" = dontDistribute super."consistent"; + "console-program" = dontDistribute super."console-program"; + "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; + "constrained-categories" = dontDistribute super."constrained-categories"; + "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; + "constructible" = dontDistribute super."constructible"; + "constructive-algebra" = dontDistribute super."constructive-algebra"; + "consumers" = dontDistribute super."consumers"; + "container" = dontDistribute super."container"; + "container-classes" = dontDistribute super."container-classes"; + "containers-benchmark" = dontDistribute super."containers-benchmark"; + "containers-deepseq" = dontDistribute super."containers-deepseq"; + "context-free-grammar" = dontDistribute super."context-free-grammar"; + "context-stack" = dontDistribute super."context-stack"; + "continue" = dontDistribute super."continue"; + "continued-fractions" = dontDistribute super."continued-fractions"; + "continuum" = dontDistribute super."continuum"; + "continuum-client" = dontDistribute super."continuum-client"; + "control-event" = dontDistribute super."control-event"; + "control-monad-attempt" = dontDistribute super."control-monad-attempt"; + "control-monad-exception" = dontDistribute super."control-monad-exception"; + "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd"; + "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf"; + "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl"; + "control-monad-failure" = dontDistribute super."control-monad-failure"; + "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl"; + "control-monad-omega" = dontDistribute super."control-monad-omega"; + "control-monad-queue" = dontDistribute super."control-monad-queue"; + "control-timeout" = dontDistribute super."control-timeout"; + "contstuff" = dontDistribute super."contstuff"; + "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf"; + "contstuff-transformers" = dontDistribute super."contstuff-transformers"; + "converge" = dontDistribute super."converge"; + "conversion" = dontDistribute super."conversion"; + "conversion-bytestring" = dontDistribute super."conversion-bytestring"; + "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive"; + "conversion-text" = dontDistribute super."conversion-text"; + "convert" = dontDistribute super."convert"; + "convertible-ascii" = dontDistribute super."convertible-ascii"; + "convertible-text" = dontDistribute super."convertible-text"; + "cookbook" = dontDistribute super."cookbook"; + "coordinate" = dontDistribute super."coordinate"; + "copilot" = dontDistribute super."copilot"; + "copilot-c99" = dontDistribute super."copilot-c99"; + "copilot-cbmc" = dontDistribute super."copilot-cbmc"; + "copilot-core" = dontDistribute super."copilot-core"; + "copilot-language" = dontDistribute super."copilot-language"; + "copilot-libraries" = dontDistribute super."copilot-libraries"; + "copilot-sbv" = dontDistribute super."copilot-sbv"; + "copilot-theorem" = dontDistribute super."copilot-theorem"; + "copr" = dontDistribute super."copr"; + "core" = dontDistribute super."core"; + "core-haskell" = dontDistribute super."core-haskell"; + "corebot-bliki" = dontDistribute super."corebot-bliki"; + "coroutine-enumerator" = dontDistribute super."coroutine-enumerator"; + "coroutine-iteratee" = dontDistribute super."coroutine-iteratee"; + "coroutine-object" = dontDistribute super."coroutine-object"; + "couch-hs" = dontDistribute super."couch-hs"; + "couch-simple" = dontDistribute super."couch-simple"; + "couchdb-conduit" = dontDistribute super."couchdb-conduit"; + "couchdb-enumerator" = dontDistribute super."couchdb-enumerator"; + "count" = dontDistribute super."count"; + "countable" = dontDistribute super."countable"; + "counter" = dontDistribute super."counter"; + "court" = dontDistribute super."court"; + "coverage" = dontDistribute super."coverage"; + "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; + "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; + "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; + "cpsa" = dontDistribute super."cpsa"; + "cpuid" = dontDistribute super."cpuid"; + "cpuperf" = dontDistribute super."cpuperf"; + "cpython" = dontDistribute super."cpython"; + "cqrs" = dontDistribute super."cqrs"; + "cqrs-core" = dontDistribute super."cqrs-core"; + "cqrs-example" = dontDistribute super."cqrs-example"; + "cqrs-memory" = dontDistribute super."cqrs-memory"; + "cqrs-postgresql" = dontDistribute super."cqrs-postgresql"; + "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3"; + "cqrs-test" = dontDistribute super."cqrs-test"; + "cqrs-testkit" = dontDistribute super."cqrs-testkit"; + "cqrs-types" = dontDistribute super."cqrs-types"; + "cr" = dontDistribute super."cr"; + "crack" = dontDistribute super."crack"; + "craftwerk" = dontDistribute super."craftwerk"; + "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; + "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "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-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; + "crypto-random-effect" = dontDistribute super."crypto-random-effect"; + "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptsy-api" = dontDistribute super."cryptsy-api"; + "crystalfontz" = dontDistribute super."crystalfontz"; + "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; + "csound-catalog" = dontDistribute super."csound-catalog"; + "csound-expression" = dontDistribute super."csound-expression"; + "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic"; + "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes"; + "csound-expression-typed" = dontDistribute super."csound-expression-typed"; + "csound-sampler" = dontDistribute super."csound-sampler"; + "csp" = dontDistribute super."csp"; + "cspmchecker" = dontDistribute super."cspmchecker"; + "css" = dontDistribute super."css"; + "csv-enumerator" = dontDistribute super."csv-enumerator"; + "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-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"; + "d3js" = dontDistribute super."d3js"; + "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; + "daemons" = dontDistribute super."daemons"; + "dag" = dontDistribute super."dag"; + "damnpacket" = dontDistribute super."damnpacket"; + "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-extra" = dontDistribute super."data-default-extra"; + "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; + "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; + "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; + "data-default-instances-text" = dontDistribute super."data-default-instances-text"; + "data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers"; + "data-default-instances-vector" = dontDistribute super."data-default-instances-vector"; + "data-dispersal" = dontDistribute super."data-dispersal"; + "data-dword" = dontDistribute super."data-dword"; + "data-easy" = dontDistribute super."data-easy"; + "data-embed" = dontDistribute super."data-embed"; + "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; + "data-extra" = dontDistribute super."data-extra"; + "data-filepath" = dontDistribute super."data-filepath"; + "data-fin" = dontDistribute super."data-fin"; + "data-fin-simple" = dontDistribute super."data-fin-simple"; + "data-fix" = dontDistribute super."data-fix"; + "data-fix-cse" = dontDistribute super."data-fix-cse"; + "data-flags" = dontDistribute super."data-flags"; + "data-flagset" = dontDistribute super."data-flagset"; + "data-fresh" = dontDistribute super."data-fresh"; + "data-interval" = dontDistribute super."data-interval"; + "data-ivar" = dontDistribute super."data-ivar"; + "data-json-token" = dontDistribute super."data-json-token"; + "data-kiln" = dontDistribute super."data-kiln"; + "data-layer" = dontDistribute super."data-layer"; + "data-layout" = dontDistribute super."data-layout"; + "data-lens" = dontDistribute super."data-lens"; + "data-lens-fd" = dontDistribute super."data-lens-fd"; + "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-template" = dontDistribute super."data-lens-template"; + "data-list-sequences" = dontDistribute super."data-list-sequences"; + "data-map-multikey" = dontDistribute super."data-map-multikey"; + "data-named" = dontDistribute super."data-named"; + "data-nat" = dontDistribute super."data-nat"; + "data-object" = dontDistribute super."data-object"; + "data-object-json" = dontDistribute super."data-object-json"; + "data-object-yaml" = dontDistribute super."data-object-yaml"; + "data-or" = dontDistribute super."data-or"; + "data-partition" = dontDistribute super."data-partition"; + "data-pprint" = dontDistribute super."data-pprint"; + "data-quotientref" = dontDistribute super."data-quotientref"; + "data-r-tree" = dontDistribute super."data-r-tree"; + "data-ref" = dontDistribute super."data-ref"; + "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; + "data-result" = dontDistribute super."data-result"; + "data-rev" = dontDistribute super."data-rev"; + "data-rope" = dontDistribute super."data-rope"; + "data-rtuple" = dontDistribute super."data-rtuple"; + "data-size" = dontDistribute super."data-size"; + "data-spacepart" = dontDistribute super."data-spacepart"; + "data-store" = dontDistribute super."data-store"; + "data-stringmap" = dontDistribute super."data-stringmap"; + "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-tensor" = dontDistribute super."data-tensor"; + "data-textual" = dontDistribute super."data-textual"; + "data-timeout" = dontDistribute super."data-timeout"; + "data-transform" = dontDistribute super."data-transform"; + "data-treify" = dontDistribute super."data-treify"; + "data-type" = dontDistribute super."data-type"; + "data-util" = dontDistribute super."data-util"; + "data-variant" = dontDistribute super."data-variant"; + "database-migrate" = dontDistribute super."database-migrate"; + "database-study" = dontDistribute super."database-study"; + "dataenc" = dontDistribute super."dataenc"; + "dataflow" = dontDistribute super."dataflow"; + "datalog" = dontDistribute super."datalog"; + "datapacker" = dontDistribute super."datapacker"; + "dataurl" = dontDistribute super."dataurl"; + "date-cache" = dontDistribute super."date-cache"; + "dates" = dontDistribute super."dates"; + "datetime" = dontDistribute super."datetime"; + "datetime-sb" = dontDistribute super."datetime-sb"; + "dawdle" = dontDistribute super."dawdle"; + "dawg" = dontDistribute super."dawg"; + "dbcleaner" = dontDistribute super."dbcleaner"; + "dbf" = dontDistribute super."dbf"; + "dbjava" = dontDistribute super."dbjava"; + "dbmigrations" = doDistribute super."dbmigrations_1_0"; + "dbus-client" = dontDistribute super."dbus-client"; + "dbus-core" = dontDistribute super."dbus-core"; + "dbus-qq" = dontDistribute super."dbus-qq"; + "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; + "dclabel" = dontDistribute super."dclabel"; + "dclabel-eci11" = dontDistribute super."dclabel-eci11"; + "ddc-base" = dontDistribute super."ddc-base"; + "ddc-build" = dontDistribute super."ddc-build"; + "ddc-code" = dontDistribute super."ddc-code"; + "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-eval" = dontDistribute super."ddc-core-eval"; + "ddc-core-flow" = dontDistribute super."ddc-core-flow"; + "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; + "ddc-core-salt" = dontDistribute super."ddc-core-salt"; + "ddc-core-simpl" = dontDistribute super."ddc-core-simpl"; + "ddc-core-tetra" = dontDistribute super."ddc-core-tetra"; + "ddc-driver" = dontDistribute super."ddc-driver"; + "ddc-interface" = dontDistribute super."ddc-interface"; + "ddc-source-tetra" = dontDistribute super."ddc-source-tetra"; + "ddc-tools" = dontDistribute super."ddc-tools"; + "ddc-war" = dontDistribute super."ddc-war"; + "ddci-core" = dontDistribute super."ddci-core"; + "dead-code-detection" = dontDistribute super."dead-code-detection"; + "dead-simple-json" = dontDistribute super."dead-simple-json"; + "debian-binary" = dontDistribute super."debian-binary"; + "debian-build" = dontDistribute super."debian-build"; + "debug-diff" = dontDistribute super."debug-diff"; + "debug-time" = dontDistribute super."debug-time"; + "decepticons" = dontDistribute super."decepticons"; + "decode-utf8" = dontDistribute super."decode-utf8"; + "decoder-conduit" = dontDistribute super."decoder-conduit"; + "dedukti" = dontDistribute super."dedukti"; + "deepcontrol" = dontDistribute super."deepcontrol"; + "deeplearning-hs" = dontDistribute super."deeplearning-hs"; + "deepseq-bounded" = dontDistribute super."deepseq-bounded"; + "deepseq-magic" = dontDistribute super."deepseq-magic"; + "deepseq-th" = dontDistribute super."deepseq-th"; + "deepzoom" = dontDistribute super."deepzoom"; + "defargs" = dontDistribute super."defargs"; + "definitive-base" = dontDistribute super."definitive-base"; + "definitive-filesystem" = dontDistribute super."definitive-filesystem"; + "definitive-graphics" = dontDistribute super."definitive-graphics"; + "definitive-parser" = dontDistribute super."definitive-parser"; + "definitive-reactive" = dontDistribute super."definitive-reactive"; + "definitive-sound" = dontDistribute super."definitive-sound"; + "deiko-config" = dontDistribute super."deiko-config"; + "deka" = dontDistribute super."deka"; + "deka-tests" = dontDistribute super."deka-tests"; + "delaunay" = dontDistribute super."delaunay"; + "delicious" = dontDistribute super."delicious"; + "delimited-text" = dontDistribute super."delimited-text"; + "delimiter-separated" = dontDistribute super."delimiter-separated"; + "delta" = dontDistribute super."delta"; + "delta-h" = dontDistribute super."delta-h"; + "demarcate" = dontDistribute super."demarcate"; + "denominate" = dontDistribute super."denominate"; + "dependent-state" = dontDistribute super."dependent-state"; + "depends" = dontDistribute super."depends"; + "dephd" = dontDistribute super."dephd"; + "dequeue" = dontDistribute super."dequeue"; + "derangement" = dontDistribute super."derangement"; + "derivation-trees" = dontDistribute super."derivation-trees"; + "derive-IG" = dontDistribute super."derive-IG"; + "derive-enumerable" = dontDistribute super."derive-enumerable"; + "derive-gadt" = dontDistribute super."derive-gadt"; + "derive-monoid" = dontDistribute super."derive-monoid"; + "derive-topdown" = dontDistribute super."derive-topdown"; + "derive-trie" = dontDistribute super."derive-trie"; + "deriving-compat" = dontDistribute super."deriving-compat"; + "derp" = dontDistribute super."derp"; + "derp-lib" = dontDistribute super."derp-lib"; + "descrilo" = dontDistribute super."descrilo"; + "despair" = dontDistribute super."despair"; + "deterministic-game-engine" = dontDistribute super."deterministic-game-engine"; + "detrospector" = dontDistribute super."detrospector"; + "deunicode" = dontDistribute super."deunicode"; + "devil" = dontDistribute super."devil"; + "dewdrop" = dontDistribute super."dewdrop"; + "dfrac" = dontDistribute super."dfrac"; + "dfsbuild" = dontDistribute super."dfsbuild"; + "dgim" = dontDistribute super."dgim"; + "dgs" = dontDistribute super."dgs"; + "dia-base" = dontDistribute super."dia-base"; + "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-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-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; + "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; + "dicom" = dontDistribute super."dicom"; + "dictparser" = dontDistribute super."dictparser"; + "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; + "diff-parse" = dontDistribute super."diff-parse"; + "diffarray" = dontDistribute super."diffarray"; + "diffcabal" = dontDistribute super."diffcabal"; + "diffdump" = dontDistribute super."diffdump"; + "digamma" = dontDistribute super."digamma"; + "digest-pure" = dontDistribute super."digest-pure"; + "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; + "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; + "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; + "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp"; + "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty"; + "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; + "digit" = dontDistribute super."digit"; + "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "dimensional-codata" = dontDistribute super."dimensional-codata"; + "dimensional-tf" = dontDistribute super."dimensional-tf"; + "dingo-core" = dontDistribute super."dingo-core"; + "dingo-example" = dontDistribute super."dingo-example"; + "dingo-widgets" = dontDistribute super."dingo-widgets"; + "diophantine" = dontDistribute super."diophantine"; + "diplomacy" = dontDistribute super."diplomacy"; + "diplomacy-server" = dontDistribute super."diplomacy-server"; + "direct-binary-files" = dontDistribute super."direct-binary-files"; + "direct-daemonize" = dontDistribute super."direct-daemonize"; + "direct-fastcgi" = dontDistribute super."direct-fastcgi"; + "direct-http" = dontDistribute super."direct-http"; + "direct-murmur-hash" = dontDistribute super."direct-murmur-hash"; + "direct-plugins" = dontDistribute super."direct-plugins"; + "directed-cubical" = dontDistribute super."directed-cubical"; + "directory-layout" = dontDistribute super."directory-layout"; + "directory-listing-webpage-parser" = dontDistribute super."directory-listing-webpage-parser"; + "dirfiles" = dontDistribute super."dirfiles"; + "dirstream" = dontDistribute super."dirstream"; + "disassembler" = dontDistribute super."disassembler"; + "discordian-calendar" = dontDistribute super."discordian-calendar"; + "discount" = dontDistribute super."discount"; + "discrete-space-map" = dontDistribute super."discrete-space-map"; + "discrimination" = dontDistribute super."discrimination"; + "disjoint-set" = dontDistribute super."disjoint-set"; + "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; + "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; + "distributed-process" = doDistribute super."distributed-process_0_5_5_1"; + "distributed-process-async" = dontDistribute super."distributed-process-async"; + "distributed-process-azure" = dontDistribute super."distributed-process-azure"; + "distributed-process-client-server" = dontDistribute super."distributed-process-client-server"; + "distributed-process-ekg" = dontDistribute super."distributed-process-ekg"; + "distributed-process-execution" = dontDistribute super."distributed-process-execution"; + "distributed-process-extras" = dontDistribute super."distributed-process-extras"; + "distributed-process-lifted" = dontDistribute super."distributed-process-lifted"; + "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control"; + "distributed-process-p2p" = dontDistribute super."distributed-process-p2p"; + "distributed-process-platform" = dontDistribute super."distributed-process-platform"; + "distributed-process-registry" = dontDistribute super."distributed-process-registry"; + "distributed-process-simplelocalnet" = dontDistribute super."distributed-process-simplelocalnet"; + "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor"; + "distributed-process-task" = dontDistribute super."distributed-process-task"; + "distributed-process-tests" = dontDistribute super."distributed-process-tests"; + "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distribution" = dontDistribute super."distribution"; + "distribution-plot" = dontDistribute super."distribution-plot"; + "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" = dontDistribute super."doctest-discover"; + "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; + "doctest-prop" = dontDistribute super."doctest-prop"; + "dom-lt" = dontDistribute super."dom-lt"; + "dom-parser" = dontDistribute super."dom-parser"; + "dom-selector" = dontDistribute super."dom-selector"; + "domain-auth" = dontDistribute super."domain-auth"; + "dominion" = dontDistribute super."dominion"; + "domplate" = dontDistribute super."domplate"; + "dot2graphml" = dontDistribute super."dot2graphml"; + "dotfs" = dontDistribute super."dotfs"; + "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; + "double-metaphone" = dontDistribute super."double-metaphone"; + "dove" = dontDistribute super."dove"; + "dow" = dontDistribute super."dow"; + "download" = dontDistribute super."download"; + "download-curl" = dontDistribute super."download-curl"; + "download-media-content" = dontDistribute super."download-media-content"; + "dozenal" = dontDistribute super."dozenal"; + "dozens" = dontDistribute super."dozens"; + "dph-base" = dontDistribute super."dph-base"; + "dph-examples" = dontDistribute super."dph-examples"; + "dph-lifted-base" = dontDistribute super."dph-lifted-base"; + "dph-lifted-copy" = dontDistribute super."dph-lifted-copy"; + "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg"; + "dph-par" = dontDistribute super."dph-par"; + "dph-prim-interface" = dontDistribute super."dph-prim-interface"; + "dph-prim-par" = dontDistribute super."dph-prim-par"; + "dph-prim-seq" = dontDistribute super."dph-prim-seq"; + "dph-seq" = dontDistribute super."dph-seq"; + "dpkg" = dontDistribute super."dpkg"; + "drClickOn" = dontDistribute super."drClickOn"; + "draw-poker" = dontDistribute super."draw-poker"; + "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; + "dropbox-sdk" = dontDistribute super."dropbox-sdk"; + "dropsolve" = dontDistribute super."dropsolve"; + "ds-kanren" = dontDistribute super."ds-kanren"; + "dsh-sql" = dontDistribute super."dsh-sql"; + "dsmc" = dontDistribute super."dsmc"; + "dsmc-tools" = dontDistribute super."dsmc-tools"; + "dson" = dontDistribute super."dson"; + "dson-parsec" = dontDistribute super."dson-parsec"; + "dsp" = dontDistribute super."dsp"; + "dstring" = dontDistribute super."dstring"; + "dtab" = dontDistribute super."dtab"; + "dtd" = dontDistribute super."dtd"; + "dtd-text" = dontDistribute super."dtd-text"; + "dtd-types" = dontDistribute super."dtd-types"; + "dtrace" = dontDistribute super."dtrace"; + "dtw" = dontDistribute super."dtw"; + "dump" = dontDistribute super."dump"; + "duplo" = dontDistribute super."duplo"; + "dvda" = dontDistribute super."dvda"; + "dvdread" = dontDistribute super."dvdread"; + "dvi-processing" = dontDistribute super."dvi-processing"; + "dvorak" = dontDistribute super."dvorak"; + "dwarf" = dontDistribute super."dwarf"; + "dwarf-el" = dontDistribute super."dwarf-el"; + "dwarfadt" = dontDistribute super."dwarfadt"; + "dx9base" = dontDistribute super."dx9base"; + "dx9d3d" = dontDistribute super."dx9d3d"; + "dx9d3dx" = dontDistribute super."dx9d3dx"; + "dynamic-cabal" = dontDistribute super."dynamic-cabal"; + "dynamic-graph" = dontDistribute super."dynamic-graph"; + "dynamic-linker-template" = dontDistribute super."dynamic-linker-template"; + "dynamic-loader" = dontDistribute super."dynamic-loader"; + "dynamic-mvector" = dontDistribute super."dynamic-mvector"; + "dynamic-object" = dontDistribute super."dynamic-object"; + "dynamic-plot" = dontDistribute super."dynamic-plot"; + "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynobud" = dontDistribute super."dynobud"; + "dywapitchtrack" = dontDistribute super."dywapitchtrack"; + "dzen-utils" = dontDistribute super."dzen-utils"; + "eager-sockets" = dontDistribute super."eager-sockets"; + "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; + "easyjson" = dontDistribute super."easyjson"; + "easyplot" = dontDistribute super."easyplot"; + "easyrender" = dontDistribute super."easyrender"; + "ebeats" = dontDistribute super."ebeats"; + "ebnf-bff" = dontDistribute super."ebnf-bff"; + "ec2-signature" = dontDistribute super."ec2-signature"; + "ecdsa" = dontDistribute super."ecdsa"; + "ecma262" = dontDistribute super."ecma262"; + "ecu" = dontDistribute super."ecu"; + "ed25519" = dontDistribute super."ed25519"; + "ed25519-donna" = dontDistribute super."ed25519-donna"; + "eddie" = dontDistribute super."eddie"; + "edenmodules" = dontDistribute super."edenmodules"; + "edenskel" = dontDistribute super."edenskel"; + "edentv" = dontDistribute super."edentv"; + "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; + "edit-lenses" = dontDistribute super."edit-lenses"; + "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; + "editable" = dontDistribute super."editable"; + "editline" = dontDistribute super."editline"; + "effect-monad" = dontDistribute super."effect-monad"; + "effective-aspects" = dontDistribute super."effective-aspects"; + "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; + "effects" = dontDistribute super."effects"; + "effects-parser" = dontDistribute super."effects-parser"; + "effin" = dontDistribute super."effin"; + "egison" = dontDistribute super."egison"; + "egison-quote" = dontDistribute super."egison-quote"; + "egison-tutorial" = dontDistribute super."egison-tutorial"; + "ehaskell" = dontDistribute super."ehaskell"; + "ehs" = dontDistribute super."ehs"; + "eibd-client-simple" = dontDistribute super."eibd-client-simple"; + "eigen" = dontDistribute super."eigen"; + "eithers" = dontDistribute super."eithers"; + "ekg-bosun" = dontDistribute super."ekg-bosun"; + "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-log" = dontDistribute super."ekg-log"; + "ekg-push" = dontDistribute super."ekg-push"; + "ekg-rrd" = dontDistribute super."ekg-rrd"; + "ekg-statsd" = dontDistribute super."ekg-statsd"; + "electrum-mnemonic" = dontDistribute super."electrum-mnemonic"; + "elerea" = dontDistribute super."elerea"; + "elerea-examples" = dontDistribute super."elerea-examples"; + "elerea-sdl" = dontDistribute super."elerea-sdl"; + "elevator" = dontDistribute super."elevator"; + "elf" = dontDistribute super."elf"; + "elision" = dontDistribute super."elision"; + "elm-build-lib" = dontDistribute super."elm-build-lib"; + "elm-compiler" = dontDistribute super."elm-compiler"; + "elm-get" = dontDistribute super."elm-get"; + "elm-init" = dontDistribute super."elm-init"; + "elm-make" = dontDistribute super."elm-make"; + "elm-package" = dontDistribute super."elm-package"; + "elm-reactor" = dontDistribute super."elm-reactor"; + "elm-repl" = dontDistribute super."elm-repl"; + "elm-server" = dontDistribute super."elm-server"; + "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; + "elocrypt" = dontDistribute super."elocrypt"; + "emacs-keys" = dontDistribute super."emacs-keys"; + "email" = dontDistribute super."email"; + "email-header" = dontDistribute super."email-header"; + "email-postmark" = dontDistribute super."email-postmark"; + "email-validator" = dontDistribute super."email-validator"; + "embeddock" = dontDistribute super."embeddock"; + "embeddock-example" = dontDistribute super."embeddock-example"; + "embroidery" = dontDistribute super."embroidery"; + "emgm" = dontDistribute super."emgm"; + "empty" = dontDistribute super."empty"; + "encoding" = dontDistribute super."encoding"; + "endo" = dontDistribute super."endo"; + "engine-io-growler" = dontDistribute super."engine-io-growler"; + "engine-io-snap" = dontDistribute super."engine-io-snap"; + "engineering-units" = dontDistribute super."engineering-units"; + "enumerable" = dontDistribute super."enumerable"; + "enumerate" = dontDistribute super."enumerate"; + "enumeration" = dontDistribute super."enumeration"; + "enumerator-fd" = dontDistribute super."enumerator-fd"; + "enumerator-tf" = dontDistribute super."enumerator-tf"; + "enumfun" = dontDistribute super."enumfun"; + "enummapmap" = dontDistribute super."enummapmap"; + "enummapset" = dontDistribute super."enummapset"; + "enummapset-th" = dontDistribute super."enummapset-th"; + "enumset" = dontDistribute super."enumset"; + "env-parser" = dontDistribute super."env-parser"; + "envparse" = dontDistribute super."envparse"; + "epanet-haskell" = dontDistribute super."epanet-haskell"; + "epass" = dontDistribute super."epass"; + "epic" = dontDistribute super."epic"; + "epoll" = dontDistribute super."epoll"; + "eprocess" = dontDistribute super."eprocess"; + "epub" = dontDistribute super."epub"; + "epub-metadata" = dontDistribute super."epub-metadata"; + "epub-tools" = dontDistribute super."epub-tools"; + "epubname" = dontDistribute super."epubname"; + "equal-files" = dontDistribute super."equal-files"; + "equational-reasoning" = dontDistribute super."equational-reasoning"; + "erd" = dontDistribute super."erd"; + "erf-native" = dontDistribute super."erf-native"; + "erlang" = dontDistribute super."erlang"; + "eros" = dontDistribute super."eros"; + "eros-client" = dontDistribute super."eros-client"; + "eros-http" = dontDistribute super."eros-http"; + "errno" = dontDistribute super."errno"; + "error-analyze" = dontDistribute super."error-analyze"; + "error-continuations" = dontDistribute super."error-continuations"; + "error-list" = dontDistribute super."error-list"; + "error-loc" = dontDistribute super."error-loc"; + "error-location" = dontDistribute super."error-location"; + "error-message" = dontDistribute super."error-message"; + "error-util" = dontDistribute super."error-util"; + "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; + "ersatz" = dontDistribute super."ersatz"; + "ersatz-toysat" = dontDistribute super."ersatz-toysat"; + "ert" = dontDistribute super."ert"; + "esotericbot" = dontDistribute super."esotericbot"; + "ess" = dontDistribute super."ess"; + "estimator" = dontDistribute super."estimator"; + "estimators" = dontDistribute super."estimators"; + "estreps" = dontDistribute super."estreps"; + "eternal" = dontDistribute super."eternal"; + "ether" = doDistribute super."ether_0_3_1_1"; + "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; + "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; + "ethereum-rlp" = dontDistribute super."ethereum-rlp"; + "ety" = dontDistribute super."ety"; + "euler" = dontDistribute super."euler"; + "euphoria" = dontDistribute super."euphoria"; + "eurofxref" = dontDistribute super."eurofxref"; + "event-driven" = dontDistribute super."event-driven"; + "event-handlers" = dontDistribute super."event-handlers"; + "event-list" = dontDistribute super."event-list"; + "event-monad" = dontDistribute super."event-monad"; + "eventloop" = dontDistribute super."eventloop"; + "eventstore" = doDistribute super."eventstore_0_10_0_2"; + "every-bit-counts" = dontDistribute super."every-bit-counts"; + "ewe" = dontDistribute super."ewe"; + "ex-pool" = dontDistribute super."ex-pool"; + "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "exception-hierarchy" = dontDistribute super."exception-hierarchy"; + "exception-mailer" = dontDistribute super."exception-mailer"; + "exception-monads-fd" = dontDistribute super."exception-monads-fd"; + "exception-monads-tf" = dontDistribute super."exception-monads-tf"; + "exception-mtl" = dontDistribute super."exception-mtl"; + "exherbo-cabal" = dontDistribute super."exherbo-cabal"; + "exif" = dontDistribute super."exif"; + "exinst" = dontDistribute super."exinst"; + "exinst-aeson" = dontDistribute super."exinst-aeson"; + "exinst-bytes" = dontDistribute super."exinst-bytes"; + "exinst-deepseq" = dontDistribute super."exinst-deepseq"; + "exinst-hashable" = dontDistribute super."exinst-hashable"; + "existential" = dontDistribute super."existential"; + "exists" = dontDistribute super."exists"; + "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; + "exp-pairs" = dontDistribute super."exp-pairs"; + "expand" = dontDistribute super."expand"; + "expat-enumerator" = dontDistribute super."expat-enumerator"; + "expiring-mvar" = dontDistribute super."expiring-mvar"; + "explain" = dontDistribute super."explain"; + "explicit-determinant" = dontDistribute super."explicit-determinant"; + "explicit-iomodes" = dontDistribute super."explicit-iomodes"; + "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring"; + "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text"; + "explicit-sharing" = dontDistribute super."explicit-sharing"; + "explore" = dontDistribute super."explore"; + "exposed-containers" = dontDistribute super."exposed-containers"; + "expression-parser" = dontDistribute super."expression-parser"; + "extcore" = dontDistribute super."extcore"; + "extemp" = dontDistribute super."extemp"; + "extended-categories" = dontDistribute super."extended-categories"; + "extended-reals" = dontDistribute super."extended-reals"; + "extensible" = dontDistribute super."extensible"; + "extensible-data" = dontDistribute super."extensible-data"; + "external-sort" = dontDistribute super."external-sort"; + "extractelf" = dontDistribute super."extractelf"; + "ez-couch" = dontDistribute super."ez-couch"; + "faceted" = dontDistribute super."faceted"; + "factory" = dontDistribute super."factory"; + "factual-api" = dontDistribute super."factual-api"; + "fad" = dontDistribute super."fad"; + "failable-list" = dontDistribute super."failable-list"; + "failure" = dontDistribute super."failure"; + "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; + "faker" = dontDistribute super."faker"; + "falling-turnip" = dontDistribute super."falling-turnip"; + "fallingblocks" = dontDistribute super."fallingblocks"; + "family-tree" = dontDistribute super."family-tree"; + "fast-digits" = dontDistribute super."fast-digits"; + "fast-math" = dontDistribute super."fast-math"; + "fast-tags" = dontDistribute super."fast-tags"; + "fast-tagsoup" = dontDistribute super."fast-tagsoup"; + "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fastbayes" = dontDistribute super."fastbayes"; + "fastcgi" = dontDistribute super."fastcgi"; + "fastedit" = dontDistribute super."fastedit"; + "fastirc" = dontDistribute super."fastirc"; + "fault-tree" = dontDistribute super."fault-tree"; + "fay-geoposition" = dontDistribute super."fay-geoposition"; + "fay-hsx" = dontDistribute super."fay-hsx"; + "fay-ref" = dontDistribute super."fay-ref"; + "fca" = dontDistribute super."fca"; + "fcache" = dontDistribute super."fcache"; + "fcd" = dontDistribute super."fcd"; + "fckeditor" = dontDistribute super."fckeditor"; + "fclabels-monadlib" = dontDistribute super."fclabels-monadlib"; + "fdo-trash" = dontDistribute super."fdo-trash"; + "fec" = dontDistribute super."fec"; + "fedora-packages" = dontDistribute super."fedora-packages"; + "feed-cli" = dontDistribute super."feed-cli"; + "feed-collect" = dontDistribute super."feed-collect"; + "feed-crawl" = dontDistribute super."feed-crawl"; + "feed-translator" = dontDistribute super."feed-translator"; + "feed2lj" = dontDistribute super."feed2lj"; + "feed2twitter" = dontDistribute super."feed2twitter"; + "feldspar-compiler" = dontDistribute super."feldspar-compiler"; + "feldspar-language" = dontDistribute super."feldspar-language"; + "feldspar-signal" = dontDistribute super."feldspar-signal"; + "fen2s" = dontDistribute super."fen2s"; + "fences" = dontDistribute super."fences"; + "fenfire" = dontDistribute super."fenfire"; + "fez-conf" = dontDistribute super."fez-conf"; + "ffeed" = dontDistribute super."ffeed"; + "fficxx" = dontDistribute super."fficxx"; + "fficxx-runtime" = dontDistribute super."fficxx-runtime"; + "ffmpeg-light" = dontDistribute super."ffmpeg-light"; + "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; + "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; + "fgl-visualize" = dontDistribute super."fgl-visualize"; + "fibon" = dontDistribute super."fibon"; + "fibonacci" = dontDistribute super."fibonacci"; + "fields" = dontDistribute super."fields"; + "fields-json" = dontDistribute super."fields-json"; + "fieldwise" = dontDistribute super."fieldwise"; + "fig" = dontDistribute super."fig"; + "file-collection" = dontDistribute super."file-collection"; + "file-command-qq" = dontDistribute super."file-command-qq"; + "filediff" = dontDistribute super."filediff"; + "filepath-io-access" = dontDistribute super."filepath-io-access"; + "filepather" = dontDistribute super."filepather"; + "filestore" = dontDistribute super."filestore"; + "filesystem-conduit" = dontDistribute super."filesystem-conduit"; + "filesystem-enumerator" = dontDistribute super."filesystem-enumerator"; + "filesystem-trees" = dontDistribute super."filesystem-trees"; + "filtrable" = dontDistribute super."filtrable"; + "final" = dontDistribute super."final"; + "find-clumpiness" = dontDistribute super."find-clumpiness"; + "find-conduit" = dontDistribute super."find-conduit"; + "fingertree-tf" = dontDistribute super."fingertree-tf"; + "finite-field" = dontDistribute super."finite-field"; + "finite-typelits" = dontDistribute super."finite-typelits"; + "first-and-last" = dontDistribute super."first-and-last"; + "first-class-patterns" = dontDistribute super."first-class-patterns"; + "firstify" = dontDistribute super."firstify"; + "fishfood" = dontDistribute super."fishfood"; + "fit" = dontDistribute super."fit"; + "fitsio" = dontDistribute super."fitsio"; + "fix-imports" = dontDistribute super."fix-imports"; + "fix-parser-simple" = dontDistribute super."fix-parser-simple"; + "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit"; + "fixed-length" = dontDistribute super."fixed-length"; + "fixed-point" = dontDistribute super."fixed-point"; + "fixed-point-vector" = dontDistribute super."fixed-point-vector"; + "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space"; + "fixed-precision" = dontDistribute super."fixed-precision"; + "fixed-storable-array" = dontDistribute super."fixed-storable-array"; + "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; + "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixedprec" = dontDistribute super."fixedprec"; + "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; + "fixfile" = dontDistribute super."fixfile"; + "fixhs" = dontDistribute super."fixhs"; + "fixplate" = dontDistribute super."fixplate"; + "fixpoint" = dontDistribute super."fixpoint"; + "fixtime" = dontDistribute super."fixtime"; + "fizz-buzz" = dontDistribute super."fizz-buzz"; + "flaccuraterip" = dontDistribute super."flaccuraterip"; + "flamethrower" = dontDistribute super."flamethrower"; + "flamingra" = dontDistribute super."flamingra"; + "flat-maybe" = dontDistribute super."flat-maybe"; + "flat-mcmc" = dontDistribute super."flat-mcmc"; + "flat-tex" = dontDistribute super."flat-tex"; + "flexible-time" = dontDistribute super."flexible-time"; + "flexible-unlit" = dontDistribute super."flexible-unlit"; + "flexiwrap" = dontDistribute super."flexiwrap"; + "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck"; + "flickr" = dontDistribute super."flickr"; + "flippers" = dontDistribute super."flippers"; + "flite" = dontDistribute super."flite"; + "flo" = dontDistribute super."flo"; + "float-binstring" = dontDistribute super."float-binstring"; + "floating-bits" = dontDistribute super."floating-bits"; + "floatshow" = dontDistribute super."floatshow"; + "flow2dot" = dontDistribute super."flow2dot"; + "flowdock-api" = dontDistribute super."flowdock-api"; + "flowdock-rest" = dontDistribute super."flowdock-rest"; + "flower" = dontDistribute super."flower"; + "flowlocks-framework" = dontDistribute super."flowlocks-framework"; + "flowsim" = dontDistribute super."flowsim"; + "fltkhs" = dontDistribute super."fltkhs"; + "fltkhs-demos" = dontDistribute super."fltkhs-demos"; + "fltkhs-fluid-demos" = dontDistribute super."fltkhs-fluid-demos"; + "fltkhs-fluid-examples" = dontDistribute super."fltkhs-fluid-examples"; + "fltkhs-hello-world" = dontDistribute super."fltkhs-hello-world"; + "fluent-logger" = dontDistribute super."fluent-logger"; + "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; + "fluidsynth" = dontDistribute super."fluidsynth"; + "fmark" = dontDistribute super."fmark"; + "fn" = doDistribute super."fn_0_2_0_2"; + "fn-extra" = doDistribute super."fn-extra_0_2_0_1"; + "fold-debounce" = dontDistribute super."fold-debounce"; + "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl" = doDistribute super."foldl_1_1_5"; + "foldl-incremental" = dontDistribute super."foldl-incremental"; + "foldl-transduce" = dontDistribute super."foldl-transduce"; + "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; + "folds" = dontDistribute super."folds"; + "folds-common" = dontDistribute super."folds-common"; + "follower" = dontDistribute super."follower"; + "foma" = dontDistribute super."foma"; + "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6"; + "foo" = dontDistribute super."foo"; + "for-free" = dontDistribute super."for-free"; + "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "fordo" = dontDistribute super."fordo"; + "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; + "foreign-var" = dontDistribute super."foreign-var"; + "forger" = dontDistribute super."forger"; + "forkable-monad" = dontDistribute super."forkable-monad"; + "formal" = dontDistribute super."formal"; + "format" = dontDistribute super."format"; + "format-status" = dontDistribute super."format-status"; + "formattable" = dontDistribute super."formattable"; + "forml" = dontDistribute super."forml"; + "formlets" = dontDistribute super."formlets"; + "formlets-hsp" = dontDistribute super."formlets-hsp"; + "formura" = dontDistribute super."formura"; + "forth-hll" = dontDistribute super."forth-hll"; + "foscam-directory" = dontDistribute super."foscam-directory"; + "foscam-filename" = dontDistribute super."foscam-filename"; + "foscam-sort" = dontDistribute super."foscam-sort"; + "fountain" = dontDistribute super."fountain"; + "fpco-api" = dontDistribute super."fpco-api"; + "fpipe" = dontDistribute super."fpipe"; + "fpnla" = dontDistribute super."fpnla"; + "fpnla-examples" = dontDistribute super."fpnla-examples"; + "fptest" = dontDistribute super."fptest"; + "fquery" = dontDistribute super."fquery"; + "fractal" = dontDistribute super."fractal"; + "fractals" = dontDistribute super."fractals"; + "fraction" = dontDistribute super."fraction"; + "frag" = dontDistribute super."frag"; + "frame" = dontDistribute super."frame"; + "frame-markdown" = dontDistribute super."frame-markdown"; + "franchise" = dontDistribute super."franchise"; + "free-concurrent" = dontDistribute super."free-concurrent"; + "free-functors" = dontDistribute super."free-functors"; + "free-game" = dontDistribute super."free-game"; + "free-http" = dontDistribute super."free-http"; + "free-operational" = dontDistribute super."free-operational"; + "free-theorems" = dontDistribute super."free-theorems"; + "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples"; + "free-theorems-seq" = dontDistribute super."free-theorems-seq"; + "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui"; + "free-theorems-webui" = dontDistribute super."free-theorems-webui"; + "free-vl" = dontDistribute super."free-vl"; + "freekick2" = dontDistribute super."freekick2"; + "freer" = dontDistribute super."freer"; + "freesect" = dontDistribute super."freesect"; + "freesound" = dontDistribute super."freesound"; + "freetype-simple" = dontDistribute super."freetype-simple"; + "freetype2" = dontDistribute super."freetype2"; + "fresh" = dontDistribute super."fresh"; + "friday" = dontDistribute super."friday"; + "friday-devil" = dontDistribute super."friday-devil"; + "friday-juicypixels" = dontDistribute super."friday-juicypixels"; + "friday-scale-dct" = dontDistribute super."friday-scale-dct"; + "friendly-time" = dontDistribute super."friendly-time"; + "frown" = dontDistribute super."frown"; + "frp-arduino" = dontDistribute super."frp-arduino"; + "frpnow" = dontDistribute super."frpnow"; + "frpnow-gloss" = dontDistribute super."frpnow-gloss"; + "frpnow-gtk" = dontDistribute super."frpnow-gtk"; + "frquotes" = dontDistribute super."frquotes"; + "fs-events" = dontDistribute super."fs-events"; + "fsharp" = dontDistribute super."fsharp"; + "fsmActions" = dontDistribute super."fsmActions"; + "fst" = dontDistribute super."fst"; + "fsutils" = dontDistribute super."fsutils"; + "fswatcher" = dontDistribute super."fswatcher"; + "ftdi" = dontDistribute super."ftdi"; + "ftp-conduit" = dontDistribute super."ftp-conduit"; + "ftphs" = dontDistribute super."ftphs"; + "ftree" = dontDistribute super."ftree"; + "ftshell" = dontDistribute super."ftshell"; + "fugue" = dontDistribute super."fugue"; + "full-sessions" = dontDistribute super."full-sessions"; + "full-text-search" = dontDistribute super."full-text-search"; + "fullstop" = dontDistribute super."fullstop"; + "funbot" = dontDistribute super."funbot"; + "funbot-client" = dontDistribute super."funbot-client"; + "funbot-ext-events" = dontDistribute super."funbot-ext-events"; + "funbot-git-hook" = dontDistribute super."funbot-git-hook"; + "funcons-tools" = dontDistribute super."funcons-tools"; + "function-combine" = dontDistribute super."function-combine"; + "function-instances-algebra" = dontDistribute super."function-instances-algebra"; + "functional-arrow" = dontDistribute super."functional-arrow"; + "functional-kmp" = dontDistribute super."functional-kmp"; + "functor-apply" = dontDistribute super."functor-apply"; + "functor-combo" = dontDistribute super."functor-combo"; + "functor-infix" = dontDistribute super."functor-infix"; + "functor-monadic" = dontDistribute super."functor-monadic"; + "functor-utils" = dontDistribute super."functor-utils"; + "functorm" = dontDistribute super."functorm"; + "functors" = dontDistribute super."functors"; + "funion" = dontDistribute super."funion"; + "funpat" = dontDistribute super."funpat"; + "funsat" = dontDistribute super."funsat"; + "fusion" = dontDistribute super."fusion"; + "futun" = dontDistribute super."futun"; + "future" = dontDistribute super."future"; + "future-resource" = dontDistribute super."future-resource"; + "fuzzy" = dontDistribute super."fuzzy"; + "fuzzy-timings" = dontDistribute super."fuzzy-timings"; + "fuzzytime" = dontDistribute super."fuzzytime"; + "fwgl" = dontDistribute super."fwgl"; + "fwgl-glfw" = dontDistribute super."fwgl-glfw"; + "fwgl-javascript" = dontDistribute super."fwgl-javascript"; + "g-npm" = dontDistribute super."g-npm"; + "gact" = dontDistribute super."gact"; + "game-of-life" = dontDistribute super."game-of-life"; + "game-probability" = dontDistribute super."game-probability"; + "game-tree" = dontDistribute super."game-tree"; + "gameclock" = dontDistribute super."gameclock"; + "gamma" = dontDistribute super."gamma"; + "gang-of-threads" = dontDistribute super."gang-of-threads"; + "garepinoh" = dontDistribute super."garepinoh"; + "garsia-wachs" = dontDistribute super."garsia-wachs"; + "gbu" = dontDistribute super."gbu"; + "gc" = dontDistribute super."gc"; + "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai"; + "gconf" = dontDistribute super."gconf"; + "gdiff" = dontDistribute super."gdiff"; + "gdiff-ig" = dontDistribute super."gdiff-ig"; + "gdiff-th" = dontDistribute super."gdiff-th"; + "gdo" = dontDistribute super."gdo"; + "gearbox" = dontDistribute super."gearbox"; + "geek" = dontDistribute super."geek"; + "geek-server" = dontDistribute super."geek-server"; + "gelatin" = dontDistribute super."gelatin"; + "gemstone" = dontDistribute super."gemstone"; + "gencheck" = dontDistribute super."gencheck"; + "gender" = dontDistribute super."gender"; + "genders" = dontDistribute super."genders"; + "general-prelude" = dontDistribute super."general-prelude"; + "generator" = dontDistribute super."generator"; + "generators" = dontDistribute super."generators"; + "generic-accessors" = dontDistribute super."generic-accessors"; + "generic-binary" = dontDistribute super."generic-binary"; + "generic-church" = dontDistribute super."generic-church"; + "generic-deepseq" = dontDistribute super."generic-deepseq"; + "generic-deriving" = doDistribute super."generic-deriving_1_9_0"; + "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; + "generic-maybe" = dontDistribute super."generic-maybe"; + "generic-pretty" = dontDistribute super."generic-pretty"; + "generic-server" = dontDistribute super."generic-server"; + "generic-storable" = dontDistribute super."generic-storable"; + "generic-tree" = dontDistribute super."generic-tree"; + "generic-xml" = dontDistribute super."generic-xml"; + "genericserialize" = dontDistribute super."genericserialize"; + "genetics" = dontDistribute super."genetics"; + "geni-gui" = dontDistribute super."geni-gui"; + "geni-util" = dontDistribute super."geni-util"; + "geniconvert" = dontDistribute super."geniconvert"; + "genifunctors" = dontDistribute super."genifunctors"; + "geniplate" = dontDistribute super."geniplate"; + "geniserver" = dontDistribute super."geniserver"; + "genprog" = dontDistribute super."genprog"; + "gentlemark" = dontDistribute super."gentlemark"; + "geo-resolver" = dontDistribute super."geo-resolver"; + "geo-uk" = dontDistribute super."geo-uk"; + "geocalc" = dontDistribute super."geocalc"; + "geocode-google" = dontDistribute super."geocode-google"; + "geodetic" = dontDistribute super."geodetic"; + "geodetics" = dontDistribute super."geodetics"; + "geohash" = dontDistribute super."geohash"; + "geoip2" = dontDistribute super."geoip2"; + "geojson" = dontDistribute super."geojson"; + "geom2d" = dontDistribute super."geom2d"; + "getemx" = dontDistribute super."getemx"; + "getflag" = dontDistribute super."getflag"; + "getopt-simple" = dontDistribute super."getopt-simple"; + "gf" = dontDistribute super."gf"; + "ggtsTC" = dontDistribute super."ggtsTC"; + "ghc-core" = dontDistribute super."ghc-core"; + "ghc-core-html" = dontDistribute super."ghc-core-html"; + "ghc-datasize" = dontDistribute super."ghc-datasize"; + "ghc-dump-tree" = dontDistribute super."ghc-dump-tree"; + "ghc-dup" = dontDistribute super."ghc-dup"; + "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; + "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; + "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-imported-from" = dontDistribute super."ghc-imported-from"; + "ghc-make" = dontDistribute super."ghc-make"; + "ghc-man-completion" = dontDistribute super."ghc-man-completion"; + "ghc-options" = dontDistribute super."ghc-options"; + "ghc-parmake" = dontDistribute super."ghc-parmake"; + "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; + "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; + "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; + "ghc-server" = dontDistribute super."ghc-server"; + "ghc-simple" = dontDistribute super."ghc-simple"; + "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; + "ghc-syb" = dontDistribute super."ghc-syb"; + "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-vis" = dontDistribute super."ghc-vis"; + "ghci-diagrams" = dontDistribute super."ghci-diagrams"; + "ghci-haskeline" = dontDistribute super."ghci-haskeline"; + "ghci-lib" = dontDistribute super."ghci-lib"; + "ghci-ng" = dontDistribute super."ghci-ng"; + "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; + "ghcjs-dom" = dontDistribute super."ghcjs-dom"; + "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; + "ghcjs-websockets" = dontDistribute super."ghcjs-websockets"; + "ghclive" = dontDistribute super."ghclive"; + "ghczdecode" = dontDistribute super."ghczdecode"; + "ght" = dontDistribute super."ght"; + "gi-atk" = dontDistribute super."gi-atk"; + "gi-cairo" = dontDistribute super."gi-cairo"; + "gi-gdk" = dontDistribute super."gi-gdk"; + "gi-gdkpixbuf" = dontDistribute super."gi-gdkpixbuf"; + "gi-gio" = dontDistribute super."gi-gio"; + "gi-girepository" = dontDistribute super."gi-girepository"; + "gi-glib" = dontDistribute super."gi-glib"; + "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gtk" = dontDistribute super."gi-gtk"; + "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; + "gi-notify" = dontDistribute super."gi-notify"; + "gi-pango" = dontDistribute super."gi-pango"; + "gi-poppler" = dontDistribute super."gi-poppler"; + "gi-soup" = dontDistribute super."gi-soup"; + "gi-vte" = dontDistribute super."gi-vte"; + "gi-webkit" = dontDistribute super."gi-webkit"; + "gi-webkit2" = dontDistribute super."gi-webkit2"; + "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "gimlh" = dontDistribute super."gimlh"; + "ginger" = dontDistribute super."ginger"; + "ginsu" = dontDistribute super."ginsu"; + "gist" = dontDistribute super."gist"; + "git-all" = dontDistribute super."git-all"; + "git-annex" = doDistribute super."git-annex_6_20160114"; + "git-checklist" = dontDistribute super."git-checklist"; + "git-date" = dontDistribute super."git-date"; + "git-embed" = dontDistribute super."git-embed"; + "git-freq" = dontDistribute super."git-freq"; + "git-gpush" = dontDistribute super."git-gpush"; + "git-jump" = dontDistribute super."git-jump"; + "git-monitor" = dontDistribute super."git-monitor"; + "git-object" = dontDistribute super."git-object"; + "git-repair" = dontDistribute super."git-repair"; + "git-sanity" = dontDistribute super."git-sanity"; + "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; + "gitcache" = dontDistribute super."gitcache"; + "gitdo" = dontDistribute super."gitdo"; + "github-backup" = dontDistribute super."github-backup"; + "github-post-receive" = dontDistribute super."github-post-receive"; + "github-utils" = dontDistribute super."github-utils"; + "gitignore" = dontDistribute super."gitignore"; + "gitit" = dontDistribute super."gitit"; + "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; + "gitlib-cross" = dontDistribute super."gitlib-cross"; + "gitlib-s3" = dontDistribute super."gitlib-s3"; + "gitlib-sample" = dontDistribute super."gitlib-sample"; + "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; + "gl-capture" = dontDistribute super."gl-capture"; + "glade" = dontDistribute super."glade"; + "gladexml-accessor" = dontDistribute super."gladexml-accessor"; + "glambda" = dontDistribute super."glambda"; + "glapp" = dontDistribute super."glapp"; + "glasso" = dontDistribute super."glasso"; + "glicko" = dontDistribute super."glicko"; + "glider-nlp" = dontDistribute super."glider-nlp"; + "glintcollider" = dontDistribute super."glintcollider"; + "gll" = dontDistribute super."gll"; + "global" = dontDistribute super."global"; + "global-config" = dontDistribute super."global-config"; + "global-lock" = dontDistribute super."global-lock"; + "global-variables" = dontDistribute super."global-variables"; + "glome-hs" = dontDistribute super."glome-hs"; + "gloss" = dontDistribute super."gloss"; + "gloss-accelerate" = dontDistribute super."gloss-accelerate"; + "gloss-algorithms" = dontDistribute super."gloss-algorithms"; + "gloss-banana" = dontDistribute super."gloss-banana"; + "gloss-devil" = dontDistribute super."gloss-devil"; + "gloss-examples" = dontDistribute super."gloss-examples"; + "gloss-game" = dontDistribute super."gloss-game"; + "gloss-juicy" = dontDistribute super."gloss-juicy"; + "gloss-raster" = dontDistribute super."gloss-raster"; + "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate"; + "gloss-rendering" = dontDistribute super."gloss-rendering"; + "gloss-sodium" = dontDistribute super."gloss-sodium"; + "glpk-hs" = dontDistribute super."glpk-hs"; + "glue" = dontDistribute super."glue"; + "glue-common" = dontDistribute super."glue-common"; + "glue-core" = dontDistribute super."glue-core"; + "glue-ekg" = dontDistribute super."glue-ekg"; + "glue-example" = dontDistribute super."glue-example"; + "gluturtle" = dontDistribute super."gluturtle"; + "gmap" = dontDistribute super."gmap"; + "gmndl" = dontDistribute super."gmndl"; + "gnome-desktop" = dontDistribute super."gnome-desktop"; + "gnome-keyring" = dontDistribute super."gnome-keyring"; + "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; + "gnuplot" = dontDistribute super."gnuplot"; + "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; + "goatee" = dontDistribute super."goatee"; + "goatee-gtk" = dontDistribute super."goatee-gtk"; + "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gogol" = dontDistribute super."gogol"; + "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer"; + "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller"; + "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer"; + "gogol-admin-directory" = dontDistribute super."gogol-admin-directory"; + "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration"; + "gogol-admin-reports" = dontDistribute super."gogol-admin-reports"; + "gogol-adsense" = dontDistribute super."gogol-adsense"; + "gogol-adsense-host" = dontDistribute super."gogol-adsense-host"; + "gogol-affiliates" = dontDistribute super."gogol-affiliates"; + "gogol-analytics" = dontDistribute super."gogol-analytics"; + "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise"; + "gogol-android-publisher" = dontDistribute super."gogol-android-publisher"; + "gogol-appengine" = dontDistribute super."gogol-appengine"; + "gogol-apps-activity" = dontDistribute super."gogol-apps-activity"; + "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar"; + "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing"; + "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller"; + "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks"; + "gogol-appstate" = dontDistribute super."gogol-appstate"; + "gogol-autoscaler" = dontDistribute super."gogol-autoscaler"; + "gogol-bigquery" = dontDistribute super."gogol-bigquery"; + "gogol-billing" = dontDistribute super."gogol-billing"; + "gogol-blogger" = dontDistribute super."gogol-blogger"; + "gogol-books" = dontDistribute super."gogol-books"; + "gogol-civicinfo" = dontDistribute super."gogol-civicinfo"; + "gogol-classroom" = dontDistribute super."gogol-classroom"; + "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace"; + "gogol-compute" = dontDistribute super."gogol-compute"; + "gogol-container" = dontDistribute super."gogol-container"; + "gogol-core" = dontDistribute super."gogol-core"; + "gogol-customsearch" = dontDistribute super."gogol-customsearch"; + "gogol-dataflow" = dontDistribute super."gogol-dataflow"; + "gogol-datastore" = dontDistribute super."gogol-datastore"; + "gogol-debugger" = dontDistribute super."gogol-debugger"; + "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager"; + "gogol-dfareporting" = dontDistribute super."gogol-dfareporting"; + "gogol-discovery" = dontDistribute super."gogol-discovery"; + "gogol-dns" = dontDistribute super."gogol-dns"; + "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids"; + "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search"; + "gogol-drive" = dontDistribute super."gogol-drive"; + "gogol-fitness" = dontDistribute super."gogol-fitness"; + "gogol-fonts" = dontDistribute super."gogol-fonts"; + "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch"; + "gogol-fusiontables" = dontDistribute super."gogol-fusiontables"; + "gogol-games" = dontDistribute super."gogol-games"; + "gogol-games-configuration" = dontDistribute super."gogol-games-configuration"; + "gogol-games-management" = dontDistribute super."gogol-games-management"; + "gogol-genomics" = dontDistribute super."gogol-genomics"; + "gogol-gmail" = dontDistribute super."gogol-gmail"; + "gogol-groups-migration" = dontDistribute super."gogol-groups-migration"; + "gogol-groups-settings" = dontDistribute super."gogol-groups-settings"; + "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit"; + "gogol-latencytest" = dontDistribute super."gogol-latencytest"; + "gogol-logging" = dontDistribute super."gogol-logging"; + "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate"; + "gogol-maps-engine" = dontDistribute super."gogol-maps-engine"; + "gogol-mirror" = dontDistribute super."gogol-mirror"; + "gogol-monitoring" = dontDistribute super."gogol-monitoring"; + "gogol-oauth2" = dontDistribute super."gogol-oauth2"; + "gogol-pagespeed" = dontDistribute super."gogol-pagespeed"; + "gogol-partners" = dontDistribute super."gogol-partners"; + "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner"; + "gogol-plus" = dontDistribute super."gogol-plus"; + "gogol-plus-domains" = dontDistribute super."gogol-plus-domains"; + "gogol-prediction" = dontDistribute super."gogol-prediction"; + "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon"; + "gogol-pubsub" = dontDistribute super."gogol-pubsub"; + "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress"; + "gogol-replicapool" = dontDistribute super."gogol-replicapool"; + "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater"; + "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager"; + "gogol-resourceviews" = dontDistribute super."gogol-resourceviews"; + "gogol-shopping-content" = dontDistribute super."gogol-shopping-content"; + "gogol-siteverification" = dontDistribute super."gogol-siteverification"; + "gogol-spectrum" = dontDistribute super."gogol-spectrum"; + "gogol-sqladmin" = dontDistribute super."gogol-sqladmin"; + "gogol-storage" = dontDistribute super."gogol-storage"; + "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer"; + "gogol-tagmanager" = dontDistribute super."gogol-tagmanager"; + "gogol-taskqueue" = dontDistribute super."gogol-taskqueue"; + "gogol-translate" = dontDistribute super."gogol-translate"; + "gogol-urlshortener" = dontDistribute super."gogol-urlshortener"; + "gogol-useraccounts" = dontDistribute super."gogol-useraccounts"; + "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools"; + "gogol-youtube" = dontDistribute super."gogol-youtube"; + "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; + "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; + "gooey" = dontDistribute super."gooey"; + "google-dictionary" = dontDistribute super."google-dictionary"; + "google-drive" = dontDistribute super."google-drive"; + "google-html5-slide" = dontDistribute super."google-html5-slide"; + "google-mail-filters" = dontDistribute super."google-mail-filters"; + "google-oauth2" = dontDistribute super."google-oauth2"; + "google-search" = dontDistribute super."google-search"; + "googleplus" = dontDistribute super."googleplus"; + "googlepolyline" = dontDistribute super."googlepolyline"; + "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; + "gpah" = dontDistribute super."gpah"; + "gpcsets" = dontDistribute super."gpcsets"; + "gpolyline" = dontDistribute super."gpolyline"; + "gps" = dontDistribute super."gps"; + "gps2htmlReport" = dontDistribute super."gps2htmlReport"; + "gpx-conduit" = dontDistribute super."gpx-conduit"; + "graceful" = dontDistribute super."graceful"; + "grammar-combinators" = dontDistribute super."grammar-combinators"; + "grapefruit-examples" = dontDistribute super."grapefruit-examples"; + "grapefruit-frp" = dontDistribute super."grapefruit-frp"; + "grapefruit-records" = dontDistribute super."grapefruit-records"; + "grapefruit-ui" = dontDistribute super."grapefruit-ui"; + "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk"; + "graph-core" = doDistribute super."graph-core_0_2_2_0"; + "graph-generators" = dontDistribute super."graph-generators"; + "graph-matchings" = dontDistribute super."graph-matchings"; + "graph-rewriting" = dontDistribute super."graph-rewriting"; + "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl"; + "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl"; + "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope"; + "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout"; + "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski"; + "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies"; + "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs"; + "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww"; + "graph-serialize" = dontDistribute super."graph-serialize"; + "graph-utils" = dontDistribute super."graph-utils"; + "graph-visit" = dontDistribute super."graph-visit"; + "graphbuilder" = dontDistribute super."graphbuilder"; + "graphene" = dontDistribute super."graphene"; + "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators"; + "graphics-formats-collada" = dontDistribute super."graphics-formats-collada"; + "graphicsFormats" = dontDistribute super."graphicsFormats"; + "graphicstools" = dontDistribute super."graphicstools"; + "graphmod" = dontDistribute super."graphmod"; + "graphql" = dontDistribute super."graphql"; + "graphtype" = dontDistribute super."graphtype"; + "grasp" = dontDistribute super."grasp"; + "gray-code" = dontDistribute super."gray-code"; + "gray-extended" = dontDistribute super."gray-extended"; + "graylog" = dontDistribute super."graylog"; + "greencard" = dontDistribute super."greencard"; + "greencard-lib" = dontDistribute super."greencard-lib"; + "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; + "greplicate" = dontDistribute super."greplicate"; + "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; + "gridland" = dontDistribute super."gridland"; + "grm" = dontDistribute super."grm"; + "groundhog-inspector" = dontDistribute super."groundhog-inspector"; + "group-with" = dontDistribute super."group-with"; + "groupoid" = dontDistribute super."groupoid"; + "gruff" = dontDistribute super."gruff"; + "gruff-examples" = dontDistribute super."gruff-examples"; + "gsc-weighting" = dontDistribute super."gsc-weighting"; + "gsl-random" = dontDistribute super."gsl-random"; + "gsl-random-fu" = dontDistribute super."gsl-random-fu"; + "gsmenu" = dontDistribute super."gsmenu"; + "gstreamer" = dontDistribute super."gstreamer"; + "gt-tools" = dontDistribute super."gt-tools"; + "gtfs" = dontDistribute super."gtfs"; + "gtk-helpers" = dontDistribute super."gtk-helpers"; + "gtk-jsinput" = dontDistribute super."gtk-jsinput"; + "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; + "gtk-mac-integration" = dontDistribute super."gtk-mac-integration"; + "gtk-serialized-event" = dontDistribute super."gtk-serialized-event"; + "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view"; + "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list"; + "gtk-toy" = dontDistribute super."gtk-toy"; + "gtk-traymanager" = dontDistribute super."gtk-traymanager"; + "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade"; + "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib"; + "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs"; + "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk"; + "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext"; + "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2"; + "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; + "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; + "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; + "gtkglext" = dontDistribute super."gtkglext"; + "gtkimageview" = dontDistribute super."gtkimageview"; + "gtkrsync" = dontDistribute super."gtkrsync"; + "gtksourceview2" = dontDistribute super."gtksourceview2"; + "gtksourceview3" = dontDistribute super."gtksourceview3"; + "guarded-rewriting" = dontDistribute super."guarded-rewriting"; + "guess-combinator" = dontDistribute super."guess-combinator"; + "gulcii" = dontDistribute super."gulcii"; + "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis"; + "gyah-bin" = dontDistribute super."gyah-bin"; + "h-booru" = dontDistribute super."h-booru"; + "h-gpgme" = dontDistribute super."h-gpgme"; + "h2048" = dontDistribute super."h2048"; + "hArduino" = dontDistribute super."hArduino"; + "hBDD" = dontDistribute super."hBDD"; + "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD"; + "hBDD-CUDD" = dontDistribute super."hBDD-CUDD"; + "hCsound" = dontDistribute super."hCsound"; + "hDFA" = dontDistribute super."hDFA"; + "hF2" = dontDistribute super."hF2"; + "hGelf" = dontDistribute super."hGelf"; + "hLLVM" = dontDistribute super."hLLVM"; + "hMollom" = dontDistribute super."hMollom"; + "hPDB-examples" = dontDistribute super."hPDB-examples"; + "hPushover" = dontDistribute super."hPushover"; + "hR" = dontDistribute super."hR"; + "hRESP" = dontDistribute super."hRESP"; + "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; + "hSimpleDB" = dontDistribute super."hSimpleDB"; + "hTalos" = dontDistribute super."hTalos"; + "hTensor" = dontDistribute super."hTensor"; + "hVOIDP" = dontDistribute super."hVOIDP"; + "hXmixer" = dontDistribute super."hXmixer"; + "haar" = dontDistribute super."haar"; + "hacanon-light" = dontDistribute super."hacanon-light"; + "hack" = dontDistribute super."hack"; + "hack-contrib" = dontDistribute super."hack-contrib"; + "hack-contrib-press" = dontDistribute super."hack-contrib-press"; + "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack"; + "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi"; + "hack-handler-cgi" = dontDistribute super."hack-handler-cgi"; + "hack-handler-epoll" = dontDistribute super."hack-handler-epoll"; + "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp"; + "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi"; + "hack-handler-happstack" = dontDistribute super."hack-handler-happstack"; + "hack-handler-hyena" = dontDistribute super."hack-handler-hyena"; + "hack-handler-kibro" = dontDistribute super."hack-handler-kibro"; + "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver"; + "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath"; + "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession"; + "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip"; + "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp"; + "hack2" = dontDistribute super."hack2"; + "hack2-contrib" = dontDistribute super."hack2-contrib"; + "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra"; + "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server"; + "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http"; + "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server"; + "hack2-handler-warp" = dontDistribute super."hack2-handler-warp"; + "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; + "hackage-diff" = dontDistribute super."hackage-diff"; + "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-proxy" = dontDistribute super."hackage-proxy"; + "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; + "hackage-security" = dontDistribute super."hackage-security"; + "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; + "hackage-server" = dontDistribute super."hackage-server"; + "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage2hwn" = dontDistribute super."hackage2hwn"; + "hackage2twitter" = dontDistribute super."hackage2twitter"; + "hackager" = dontDistribute super."hackager"; + "hackernews" = dontDistribute super."hackernews"; + "hackertyper" = dontDistribute super."hackertyper"; + "hackport" = dontDistribute super."hackport"; + "hactor" = dontDistribute super."hactor"; + "hactors" = dontDistribute super."hactors"; + "haddock" = dontDistribute super."haddock"; + "haddock-leksah" = dontDistribute super."haddock-leksah"; + "hadoop-formats" = dontDistribute super."hadoop-formats"; + "hadoop-rpc" = dontDistribute super."hadoop-rpc"; + "hadoop-tools" = dontDistribute super."hadoop-tools"; + "haeredes" = dontDistribute super."haeredes"; + "haggis" = dontDistribute super."haggis"; + "haha" = dontDistribute super."haha"; + "hahp" = dontDistribute super."hahp"; + "haiji" = dontDistribute super."haiji"; + "hailgun" = dontDistribute super."hailgun"; + "hailgun-send" = dontDistribute super."hailgun-send"; + "hails" = dontDistribute super."hails"; + "hails-bin" = dontDistribute super."hails-bin"; + "hairy" = dontDistribute super."hairy"; + "hakaru" = dontDistribute super."hakaru"; + "hake" = dontDistribute super."hake"; + "hakismet" = dontDistribute super."hakismet"; + "hako" = dontDistribute super."hako"; + "hakyll-R" = dontDistribute super."hakyll-R"; + "hakyll-agda" = dontDistribute super."hakyll-agda"; + "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; + "hakyll-contrib" = dontDistribute super."hakyll-contrib"; + "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation"; + "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; + "hakyll-convert" = dontDistribute super."hakyll-convert"; + "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; + "hakyll-sass" = dontDistribute super."hakyll-sass"; + "halberd" = dontDistribute super."halberd"; + "halfs" = dontDistribute super."halfs"; + "halipeto" = dontDistribute super."halipeto"; + "halive" = dontDistribute super."halive"; + "halma" = dontDistribute super."halma"; + "haltavista" = dontDistribute super."haltavista"; + "hamid" = dontDistribute super."hamid"; + "hampp" = dontDistribute super."hampp"; + "hamtmap" = dontDistribute super."hamtmap"; + "hamusic" = dontDistribute super."hamusic"; + "handa-gdata" = dontDistribute super."handa-gdata"; + "handa-geodata" = dontDistribute super."handa-geodata"; + "handa-opengl" = dontDistribute super."handa-opengl"; + "handle-like" = dontDistribute super."handle-like"; + "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; + "hangman" = dontDistribute super."hangman"; + "hannahci" = dontDistribute super."hannahci"; + "hans" = dontDistribute super."hans"; + "hans-pcap" = dontDistribute super."hans-pcap"; + "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; + "happindicator" = dontDistribute super."happindicator"; + "happindicator3" = dontDistribute super."happindicator3"; + "happraise" = dontDistribute super."happraise"; + "happs-hsp" = dontDistribute super."happs-hsp"; + "happs-hsp-template" = dontDistribute super."happs-hsp-template"; + "happs-tutorial" = dontDistribute super."happs-tutorial"; + "happstack" = dontDistribute super."happstack"; + "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-contrib" = dontDistribute super."happstack-contrib"; + "happstack-data" = dontDistribute super."happstack-data"; + "happstack-dlg" = dontDistribute super."happstack-dlg"; + "happstack-facebook" = dontDistribute super."happstack-facebook"; + "happstack-fastcgi" = dontDistribute super."happstack-fastcgi"; + "happstack-fay" = dontDistribute super."happstack-fay"; + "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax"; + "happstack-foundation" = dontDistribute super."happstack-foundation"; + "happstack-hamlet" = dontDistribute super."happstack-hamlet"; + "happstack-heist" = dontDistribute super."happstack-heist"; + "happstack-helpers" = dontDistribute super."happstack-helpers"; + "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate"; + "happstack-ixset" = dontDistribute super."happstack-ixset"; + "happstack-lite" = dontDistribute super."happstack-lite"; + "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; + "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; + "happstack-state" = dontDistribute super."happstack-state"; + "happstack-static-routing" = dontDistribute super."happstack-static-routing"; + "happstack-util" = dontDistribute super."happstack-util"; + "happstack-yui" = dontDistribute super."happstack-yui"; + "happy-meta" = dontDistribute super."happy-meta"; + "happybara" = dontDistribute super."happybara"; + "happybara-webkit" = dontDistribute super."happybara-webkit"; + "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "har" = dontDistribute super."har"; + "harchive" = dontDistribute super."harchive"; + "hardware-edsl" = dontDistribute super."hardware-edsl"; + "hark" = dontDistribute super."hark"; + "harmony" = dontDistribute super."harmony"; + "haroonga" = dontDistribute super."haroonga"; + "haroonga-httpd" = dontDistribute super."haroonga-httpd"; + "harpy" = dontDistribute super."harpy"; + "has" = dontDistribute super."has"; + "has-th" = dontDistribute super."has-th"; + "hascal" = dontDistribute super."hascal"; + "hascat" = dontDistribute super."hascat"; + "hascat-lib" = dontDistribute super."hascat-lib"; + "hascat-setup" = dontDistribute super."hascat-setup"; + "hascat-system" = dontDistribute super."hascat-system"; + "hash" = dontDistribute super."hash"; + "hashable-generics" = dontDistribute super."hashable-generics"; + "hashabler" = dontDistribute super."hashabler"; + "hashed-storage" = dontDistribute super."hashed-storage"; + "hashids" = dontDistribute super."hashids"; + "hashring" = dontDistribute super."hashring"; + "hashtables-plus" = dontDistribute super."hashtables-plus"; + "hasim" = dontDistribute super."hasim"; + "hask" = dontDistribute super."hask"; + "hask-home" = dontDistribute super."hask-home"; + "haskades" = dontDistribute super."haskades"; + "haskakafka" = dontDistribute super."haskakafka"; + "haskanoid" = dontDistribute super."haskanoid"; + "haskarrow" = dontDistribute super."haskarrow"; + "haskbot-core" = dontDistribute super."haskbot-core"; + "haskdeep" = dontDistribute super."haskdeep"; + "haskdogs" = dontDistribute super."haskdogs"; + "haskeem" = dontDistribute super."haskeem"; + "haskeline" = doDistribute super."haskeline_0_7_2_2"; + "haskeline-class" = dontDistribute super."haskeline-class"; + "haskell-aliyun" = dontDistribute super."haskell-aliyun"; + "haskell-awk" = dontDistribute super."haskell-awk"; + "haskell-bcrypt" = dontDistribute super."haskell-bcrypt"; + "haskell-brainfuck" = dontDistribute super."haskell-brainfuck"; + "haskell-cnc" = dontDistribute super."haskell-cnc"; + "haskell-coffee" = dontDistribute super."haskell-coffee"; + "haskell-compression" = dontDistribute super."haskell-compression"; + "haskell-course-preludes" = dontDistribute super."haskell-course-preludes"; + "haskell-docs" = dontDistribute super."haskell-docs"; + "haskell-exp-parser" = dontDistribute super."haskell-exp-parser"; + "haskell-formatter" = dontDistribute super."haskell-formatter"; + "haskell-ftp" = dontDistribute super."haskell-ftp"; + "haskell-generate" = dontDistribute super."haskell-generate"; + "haskell-gi" = dontDistribute super."haskell-gi"; + "haskell-gi-base" = dontDistribute super."haskell-gi-base"; + "haskell-import-graph" = dontDistribute super."haskell-import-graph"; + "haskell-in-space" = dontDistribute super."haskell-in-space"; + "haskell-kubernetes" = dontDistribute super."haskell-kubernetes"; + "haskell-modbus" = dontDistribute super."haskell-modbus"; + "haskell-mpfr" = dontDistribute super."haskell-mpfr"; + "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = dontDistribute super."haskell-names"; + "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; + "haskell-platform-test" = dontDistribute super."haskell-platform-test"; + "haskell-plot" = dontDistribute super."haskell-plot"; + "haskell-qrencode" = dontDistribute super."haskell-qrencode"; + "haskell-read-editor" = dontDistribute super."haskell-read-editor"; + "haskell-reflect" = dontDistribute super."haskell-reflect"; + "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; + "haskell-token-utils" = dontDistribute super."haskell-token-utils"; + "haskell-tor" = dontDistribute super."haskell-tor"; + "haskell-type-exts" = dontDistribute super."haskell-type-exts"; + "haskell-typescript" = dontDistribute super."haskell-typescript"; + "haskell-tyrant" = dontDistribute super."haskell-tyrant"; + "haskell-updater" = dontDistribute super."haskell-updater"; + "haskell-xmpp" = dontDistribute super."haskell-xmpp"; + "haskell2010" = dontDistribute super."haskell2010"; + "haskell98" = dontDistribute super."haskell98"; + "haskell98libraries" = dontDistribute super."haskell98libraries"; + "haskelldb" = dontDistribute super."haskelldb"; + "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc"; + "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl"; + "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf"; + "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers"; + "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted"; + "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic"; + "haskelldb-flat" = dontDistribute super."haskelldb-flat"; + "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc"; + "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql"; + "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc"; + "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql"; + "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3"; + "haskelldb-hsql" = dontDistribute super."haskelldb-hsql"; + "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql"; + "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc"; + "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle"; + "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql"; + "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite"; + "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3"; + "haskelldb-th" = dontDistribute super."haskelldb-th"; + "haskelldb-wx" = dontDistribute super."haskelldb-wx"; + "haskellscrabble" = dontDistribute super."haskellscrabble"; + "haskellscript" = dontDistribute super."haskellscript"; + "haskelm" = dontDistribute super."haskelm"; + "haskgame" = dontDistribute super."haskgame"; + "haskheap" = dontDistribute super."haskheap"; + "haskhol-core" = dontDistribute super."haskhol-core"; + "haskmon" = dontDistribute super."haskmon"; + "haskoin" = dontDistribute super."haskoin"; + "haskoin-core" = dontDistribute super."haskoin-core"; + "haskoin-crypto" = dontDistribute super."haskoin-crypto"; + "haskoin-node" = dontDistribute super."haskoin-node"; + "haskoin-protocol" = dontDistribute super."haskoin-protocol"; + "haskoin-script" = dontDistribute super."haskoin-script"; + "haskoin-util" = dontDistribute super."haskoin-util"; + "haskoin-wallet" = dontDistribute super."haskoin-wallet"; + "haskoon" = dontDistribute super."haskoon"; + "haskoon-httpspec" = dontDistribute super."haskoon-httpspec"; + "haskoon-salvia" = dontDistribute super."haskoon-salvia"; + "haskore" = dontDistribute super."haskore"; + "haskore-realtime" = dontDistribute super."haskore-realtime"; + "haskore-supercollider" = dontDistribute super."haskore-supercollider"; + "haskore-synthesizer" = dontDistribute super."haskore-synthesizer"; + "haskore-vintage" = dontDistribute super."haskore-vintage"; + "hasktags" = dontDistribute super."hasktags"; + "haslo" = dontDistribute super."haslo"; + "hasloGUI" = dontDistribute super."hasloGUI"; + "hasparql-client" = dontDistribute super."hasparql-client"; + "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_19_6"; + "hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative"; + "hasql-pool" = dontDistribute super."hasql-pool"; + "hasql-postgres" = dontDistribute super."hasql-postgres"; + "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; + "hasql-th" = dontDistribute super."hasql-th"; + "hasql-transaction" = dontDistribute super."hasql-transaction"; + "hastache-aeson" = dontDistribute super."hastache-aeson"; + "haste" = dontDistribute super."haste"; + "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-markup" = dontDistribute super."haste-markup"; + "haste-perch" = dontDistribute super."haste-perch"; + "hastily" = dontDistribute super."hastily"; + "hat" = dontDistribute super."hat"; + "hatex-guide" = dontDistribute super."hatex-guide"; + "hath" = dontDistribute super."hath"; + "hatt" = dontDistribute super."hatt"; + "haverer" = dontDistribute super."haverer"; + "hawitter" = dontDistribute super."hawitter"; + "haxl-amazonka" = dontDistribute super."haxl-amazonka"; + "haxl-facebook" = dontDistribute super."haxl-facebook"; + "haxparse" = dontDistribute super."haxparse"; + "haxr-th" = dontDistribute super."haxr-th"; + "haxy" = dontDistribute super."haxy"; + "hayland" = dontDistribute super."hayland"; + "hayoo-cli" = dontDistribute super."hayoo-cli"; + "hback" = dontDistribute super."hback"; + "hbayes" = dontDistribute super."hbayes"; + "hbb" = dontDistribute super."hbb"; + "hbcd" = dontDistribute super."hbcd"; + "hbeat" = dontDistribute super."hbeat"; + "hblas" = dontDistribute super."hblas"; + "hblock" = dontDistribute super."hblock"; + "hbro" = dontDistribute super."hbro"; + "hbro-contrib" = dontDistribute super."hbro-contrib"; + "hburg" = dontDistribute super."hburg"; + "hcc" = dontDistribute super."hcc"; + "hcg-minus" = dontDistribute super."hcg-minus"; + "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo"; + "hcheat" = dontDistribute super."hcheat"; + "hchesslib" = dontDistribute super."hchesslib"; + "hcltest" = dontDistribute super."hcltest"; + "hcoap" = dontDistribute super."hcoap"; + "hcron" = dontDistribute super."hcron"; + "hcube" = dontDistribute super."hcube"; + "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; + "hdbc-aeson" = dontDistribute super."hdbc-aeson"; + "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; + "hdbc-tuple" = dontDistribute super."hdbc-tuple"; + "hdbi" = dontDistribute super."hdbi"; + "hdbi-conduit" = dontDistribute super."hdbi-conduit"; + "hdbi-postgresql" = dontDistribute super."hdbi-postgresql"; + "hdbi-sqlite" = dontDistribute super."hdbi-sqlite"; + "hdbi-tests" = dontDistribute super."hdbi-tests"; + "hdf" = dontDistribute super."hdf"; + "hdigest" = dontDistribute super."hdigest"; + "hdirect" = dontDistribute super."hdirect"; + "hdis86" = dontDistribute super."hdis86"; + "hdiscount" = dontDistribute super."hdiscount"; + "hdm" = dontDistribute super."hdm"; + "hdph" = dontDistribute super."hdph"; + "hdph-closure" = dontDistribute super."hdph-closure"; + "hdr-histogram" = dontDistribute super."hdr-histogram"; + "headergen" = dontDistribute super."headergen"; + "heapsort" = dontDistribute super."heapsort"; + "hecc" = dontDistribute super."hecc"; + "hedis-config" = dontDistribute super."hedis-config"; + "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-pile" = dontDistribute super."hedis-pile"; + "hedis-simple" = dontDistribute super."hedis-simple"; + "hedis-tags" = dontDistribute super."hedis-tags"; + "hedn" = dontDistribute super."hedn"; + "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; + "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"; + "herf-time" = dontDistribute super."herf-time"; + "hermit" = dontDistribute super."hermit"; + "hermit-syb" = dontDistribute super."hermit-syb"; + "hero-club-five-tenets" = dontDistribute super."hero-club-five-tenets"; + "heroku" = dontDistribute super."heroku"; + "heroku-persistent" = dontDistribute super."heroku-persistent"; + "herringbone" = dontDistribute super."herringbone"; + "herringbone-embed" = dontDistribute super."herringbone-embed"; + "herringbone-wai" = dontDistribute super."herringbone-wai"; + "hesh" = dontDistribute super."hesh"; + "hesql" = dontDistribute super."hesql"; + "hetero-map" = dontDistribute super."hetero-map"; + "hetris" = dontDistribute super."hetris"; + "heukarya" = dontDistribute super."heukarya"; + "hevolisa" = dontDistribute super."hevolisa"; + "hevolisa-dph" = dontDistribute super."hevolisa-dph"; + "hexdump" = dontDistribute super."hexdump"; + "hexif" = dontDistribute super."hexif"; + "hexpat-iteratee" = dontDistribute super."hexpat-iteratee"; + "hexpat-lens" = dontDistribute super."hexpat-lens"; + "hexpat-pickle" = dontDistribute super."hexpat-pickle"; + "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic"; + "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup"; + "hexpr" = dontDistribute super."hexpr"; + "hexquote" = dontDistribute super."hexquote"; + "heyefi" = dontDistribute super."heyefi"; + "hfann" = dontDistribute super."hfann"; + "hfd" = dontDistribute super."hfd"; + "hfiar" = dontDistribute super."hfiar"; + "hfmt" = dontDistribute super."hfmt"; + "hfoil" = dontDistribute super."hfoil"; + "hformat" = dontDistribute super."hformat"; + "hfov" = dontDistribute super."hfov"; + "hfractal" = dontDistribute super."hfractal"; + "hfusion" = dontDistribute super."hfusion"; + "hg-buildpackage" = dontDistribute super."hg-buildpackage"; + "hgal" = dontDistribute super."hgal"; + "hgalib" = dontDistribute super."hgalib"; + "hgdbmi" = dontDistribute super."hgdbmi"; + "hgearman" = dontDistribute super."hgearman"; + "hgen" = dontDistribute super."hgen"; + "hgeometric" = dontDistribute super."hgeometric"; + "hgeometry" = dontDistribute super."hgeometry"; + "hgithub" = dontDistribute super."hgithub"; + "hgl-example" = dontDistribute super."hgl-example"; + "hgom" = dontDistribute super."hgom"; + "hgopher" = dontDistribute super."hgopher"; + "hgrev" = dontDistribute super."hgrev"; + "hgrib" = dontDistribute super."hgrib"; + "hharp" = dontDistribute super."hharp"; + "hi" = dontDistribute super."hi"; + "hi3status" = dontDistribute super."hi3status"; + "hiccup" = dontDistribute super."hiccup"; + "hichi" = dontDistribute super."hichi"; + "hieraclus" = dontDistribute super."hieraclus"; + "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; + "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions"; + "hierarchy" = dontDistribute super."hierarchy"; + "hiernotify" = dontDistribute super."hiernotify"; + "highWaterMark" = dontDistribute super."highWaterMark"; + "higher-leveldb" = dontDistribute super."higher-leveldb"; + "higherorder" = dontDistribute super."higherorder"; + "highlight-versions" = dontDistribute super."highlight-versions"; + "highlighter" = dontDistribute super."highlighter"; + "highlighter2" = dontDistribute super."highlighter2"; + "hills" = dontDistribute super."hills"; + "himerge" = dontDistribute super."himerge"; + "himg" = dontDistribute super."himg"; + "himpy" = dontDistribute super."himpy"; + "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"; + "hinquire" = dontDistribute super."hinquire"; + "hinstaller" = dontDistribute super."hinstaller"; + "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"; + "hjcase" = dontDistribute super."hjcase"; + "hjpath" = dontDistribute super."hjpath"; + "hjs" = dontDistribute super."hjs"; + "hjson" = dontDistribute super."hjson"; + "hjson-query" = dontDistribute super."hjson-query"; + "hjsonpointer" = dontDistribute super."hjsonpointer"; + "hjsonschema" = dontDistribute super."hjsonschema"; + "hkdf" = dontDistribute super."hkdf"; + "hlatex" = dontDistribute super."hlatex"; + "hlbfgsb" = dontDistribute super."hlbfgsb"; + "hlcm" = dontDistribute super."hlcm"; + "hleap" = dontDistribute super."hleap"; + "hledger-chart" = dontDistribute super."hledger-chart"; + "hledger-diff" = dontDistribute super."hledger-diff"; + "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-vty" = dontDistribute super."hledger-vty"; + "hlibBladeRF" = dontDistribute super."hlibBladeRF"; + "hlibev" = dontDistribute super."hlibev"; + "hlibfam" = dontDistribute super."hlibfam"; + "hlogger" = dontDistribute super."hlogger"; + "hlongurl" = dontDistribute super."hlongurl"; + "hls" = dontDistribute super."hls"; + "hlwm" = dontDistribute super."hlwm"; + "hly" = dontDistribute super."hly"; + "hmark" = dontDistribute super."hmark"; + "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix-banded" = dontDistribute super."hmatrix-banded"; + "hmatrix-csv" = dontDistribute super."hmatrix-csv"; + "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; + "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; + "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; + "hmatrix-repa" = dontDistribute super."hmatrix-repa"; + "hmatrix-special" = dontDistribute super."hmatrix-special"; + "hmatrix-static" = dontDistribute super."hmatrix-static"; + "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc"; + "hmatrix-syntax" = dontDistribute super."hmatrix-syntax"; + "hmatrix-tests" = dontDistribute super."hmatrix-tests"; + "hmeap" = dontDistribute super."hmeap"; + "hmeap-utils" = dontDistribute super."hmeap-utils"; + "hmemdb" = dontDistribute super."hmemdb"; + "hmenu" = dontDistribute super."hmenu"; + "hmidi" = dontDistribute super."hmidi"; + "hmk" = dontDistribute super."hmk"; + "hmm" = dontDistribute super."hmm"; + "hmm-hmatrix" = dontDistribute super."hmm-hmatrix"; + "hmp3" = dontDistribute super."hmp3"; + "hmpfr" = dontDistribute super."hmpfr"; + "hmt" = dontDistribute super."hmt"; + "hmt-diagrams" = dontDistribute super."hmt-diagrams"; + "hmumps" = dontDistribute super."hmumps"; + "hnetcdf" = dontDistribute super."hnetcdf"; + "hnix" = dontDistribute super."hnix"; + "hnn" = dontDistribute super."hnn"; + "hnop" = dontDistribute super."hnop"; + "ho-rewriting" = dontDistribute super."ho-rewriting"; + "hoauth" = dontDistribute super."hoauth"; + "hob" = dontDistribute super."hob"; + "hobbes" = dontDistribute super."hobbes"; + "hobbits" = dontDistribute super."hobbits"; + "hoe" = dontDistribute super."hoe"; + "hofix-mtl" = dontDistribute super."hofix-mtl"; + "hog" = dontDistribute super."hog"; + "hogg" = dontDistribute super."hogg"; + "hogre" = dontDistribute super."hogre"; + "hogre-examples" = dontDistribute super."hogre-examples"; + "hois" = dontDistribute super."hois"; + "hoist-error" = dontDistribute super."hoist-error"; + "hold-em" = dontDistribute super."hold-em"; + "hole" = dontDistribute super."hole"; + "holey-format" = dontDistribute super."holey-format"; + "homeomorphic" = dontDistribute super."homeomorphic"; + "hommage" = dontDistribute super."hommage"; + "hommage-ds" = dontDistribute super."hommage-ds"; + "homplexity" = dontDistribute super."homplexity"; + "honi" = dontDistribute super."honi"; + "honk" = dontDistribute super."honk"; + "hoobuddy" = dontDistribute super."hoobuddy"; + "hood" = dontDistribute super."hood"; + "hood-off" = dontDistribute super."hood-off"; + "hood2" = dontDistribute super."hood2"; + "hoodie" = dontDistribute super."hoodie"; + "hoodle" = dontDistribute super."hoodle"; + "hoodle-builder" = dontDistribute super."hoodle-builder"; + "hoodle-core" = dontDistribute super."hoodle-core"; + "hoodle-extra" = dontDistribute super."hoodle-extra"; + "hoodle-parser" = dontDistribute super."hoodle-parser"; + "hoodle-publish" = dontDistribute super."hoodle-publish"; + "hoodle-render" = dontDistribute super."hoodle-render"; + "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle-index" = dontDistribute super."hoogle-index"; + "hooks-dir" = dontDistribute super."hooks-dir"; + "hoovie" = dontDistribute super."hoovie"; + "hopencc" = dontDistribute super."hopencc"; + "hopencl" = dontDistribute super."hopencl"; + "hopfield" = dontDistribute super."hopfield"; + "hopfield-networks" = dontDistribute super."hopfield-networks"; + "hopfli" = dontDistribute super."hopfli"; + "hoppy-generator" = dontDistribute super."hoppy-generator"; + "hoppy-runtime" = dontDistribute super."hoppy-runtime"; + "hoppy-std" = dontDistribute super."hoppy-std"; + "hops" = dontDistribute super."hops"; + "hoq" = dontDistribute super."hoq"; + "horizon" = dontDistribute super."horizon"; + "hosc" = dontDistribute super."hosc"; + "hosc-json" = dontDistribute super."hosc-json"; + "hosc-utils" = dontDistribute super."hosc-utils"; + "hosts-server" = dontDistribute super."hosts-server"; + "hothasktags" = dontDistribute super."hothasktags"; + "hotswap" = dontDistribute super."hotswap"; + "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "hp2any-core" = dontDistribute super."hp2any-core"; + "hp2any-graph" = dontDistribute super."hp2any-graph"; + "hp2any-manager" = dontDistribute super."hp2any-manager"; + "hp2html" = dontDistribute super."hp2html"; + "hp2pretty" = dontDistribute super."hp2pretty"; + "hpack" = dontDistribute super."hpack"; + "hpaco" = dontDistribute super."hpaco"; + "hpaco-lib" = dontDistribute super."hpaco-lib"; + "hpage" = dontDistribute super."hpage"; + "hpapi" = dontDistribute super."hpapi"; + "hpaste" = dontDistribute super."hpaste"; + "hpasteit" = dontDistribute super."hpasteit"; + "hpc-strobe" = dontDistribute super."hpc-strobe"; + "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; + "hplayground" = dontDistribute super."hplayground"; + "hplaylist" = dontDistribute super."hplaylist"; + "hpodder" = dontDistribute super."hpodder"; + "hpp" = dontDistribute super."hpp"; + "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc-fork" = dontDistribute super."hprotoc-fork"; + "hps" = dontDistribute super."hps"; + "hps-cairo" = dontDistribute super."hps-cairo"; + "hps-kmeans" = dontDistribute super."hps-kmeans"; + "hpuz" = dontDistribute super."hpuz"; + "hpygments" = dontDistribute super."hpygments"; + "hpylos" = dontDistribute super."hpylos"; + "hpyrg" = dontDistribute super."hpyrg"; + "hquantlib" = dontDistribute super."hquantlib"; + "hquery" = dontDistribute super."hquery"; + "hranker" = dontDistribute super."hranker"; + "hreader" = dontDistribute super."hreader"; + "hricket" = dontDistribute super."hricket"; + "hruby" = dontDistribute super."hruby"; + "hs-GeoIP" = dontDistribute super."hs-GeoIP"; + "hs-blake2" = dontDistribute super."hs-blake2"; + "hs-captcha" = dontDistribute super."hs-captcha"; + "hs-carbon" = dontDistribute super."hs-carbon"; + "hs-carbon-examples" = dontDistribute super."hs-carbon-examples"; + "hs-cdb" = dontDistribute super."hs-cdb"; + "hs-dotnet" = dontDistribute super."hs-dotnet"; + "hs-duktape" = dontDistribute super."hs-duktape"; + "hs-excelx" = dontDistribute super."hs-excelx"; + "hs-ffmpeg" = dontDistribute super."hs-ffmpeg"; + "hs-fltk" = dontDistribute super."hs-fltk"; + "hs-gchart" = dontDistribute super."hs-gchart"; + "hs-gen-iface" = dontDistribute super."hs-gen-iface"; + "hs-gizapp" = dontDistribute super."hs-gizapp"; + "hs-inspector" = dontDistribute super."hs-inspector"; + "hs-java" = dontDistribute super."hs-java"; + "hs-json-rpc" = dontDistribute super."hs-json-rpc"; + "hs-logo" = dontDistribute super."hs-logo"; + "hs-mesos" = dontDistribute super."hs-mesos"; + "hs-nombre-generator" = dontDistribute super."hs-nombre-generator"; + "hs-pgms" = dontDistribute super."hs-pgms"; + "hs-php-session" = dontDistribute super."hs-php-session"; + "hs-pkg-config" = dontDistribute super."hs-pkg-config"; + "hs-pkpass" = dontDistribute super."hs-pkpass"; + "hs-re" = dontDistribute super."hs-re"; + "hs-scrape" = dontDistribute super."hs-scrape"; + "hs-twitter" = dontDistribute super."hs-twitter"; + "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver"; + "hs-vcard" = dontDistribute super."hs-vcard"; + "hs2048" = dontDistribute super."hs2048"; + "hs2bf" = dontDistribute super."hs2bf"; + "hs2dot" = dontDistribute super."hs2dot"; + "hsConfigure" = dontDistribute super."hsConfigure"; + "hsSqlite3" = dontDistribute super."hsSqlite3"; + "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsay" = dontDistribute super."hsay"; + "hsb2hs" = dontDistribute super."hsb2hs"; + "hsbackup" = dontDistribute super."hsbackup"; + "hsbencher" = dontDistribute super."hsbencher"; + "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed"; + "hsbencher-fusion" = dontDistribute super."hsbencher-fusion"; + "hsc2hs" = dontDistribute super."hsc2hs"; + "hsc3" = dontDistribute super."hsc3"; + "hsc3-auditor" = dontDistribute super."hsc3-auditor"; + "hsc3-cairo" = dontDistribute super."hsc3-cairo"; + "hsc3-data" = dontDistribute super."hsc3-data"; + "hsc3-db" = dontDistribute super."hsc3-db"; + "hsc3-dot" = dontDistribute super."hsc3-dot"; + "hsc3-forth" = dontDistribute super."hsc3-forth"; + "hsc3-graphs" = dontDistribute super."hsc3-graphs"; + "hsc3-lang" = dontDistribute super."hsc3-lang"; + "hsc3-lisp" = dontDistribute super."hsc3-lisp"; + "hsc3-plot" = dontDistribute super."hsc3-plot"; + "hsc3-process" = dontDistribute super."hsc3-process"; + "hsc3-rec" = dontDistribute super."hsc3-rec"; + "hsc3-rw" = dontDistribute super."hsc3-rw"; + "hsc3-server" = dontDistribute super."hsc3-server"; + "hsc3-sf" = dontDistribute super."hsc3-sf"; + "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile"; + "hsc3-unsafe" = dontDistribute super."hsc3-unsafe"; + "hsc3-utils" = dontDistribute super."hsc3-utils"; + "hscamwire" = dontDistribute super."hscamwire"; + "hscassandra" = dontDistribute super."hscassandra"; + "hscd" = dontDistribute super."hscd"; + "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; + "hscope" = dontDistribute super."hscope"; + "hscrtmpl" = dontDistribute super."hscrtmpl"; + "hscuid" = dontDistribute super."hscuid"; + "hscurses" = dontDistribute super."hscurses"; + "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex"; + "hsdev" = dontDistribute super."hsdev"; + "hsdif" = dontDistribute super."hsdif"; + "hsdip" = dontDistribute super."hsdip"; + "hsdns" = dontDistribute super."hsdns"; + "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsemail-ns" = dontDistribute super."hsemail-ns"; + "hsenv" = dontDistribute super."hsenv"; + "hserv" = dontDistribute super."hserv"; + "hset" = dontDistribute super."hset"; + "hsfacter" = dontDistribute super."hsfacter"; + "hsfcsh" = dontDistribute super."hsfcsh"; + "hsfilt" = dontDistribute super."hsfilt"; + "hsgnutls" = dontDistribute super."hsgnutls"; + "hsgnutls-yj" = dontDistribute super."hsgnutls-yj"; + "hsgsom" = dontDistribute super."hsgsom"; + "hsgtd" = dontDistribute super."hsgtd"; + "hsharc" = dontDistribute super."hsharc"; + "hsilop" = dontDistribute super."hsilop"; + "hsimport" = dontDistribute super."hsimport"; + "hsini" = dontDistribute super."hsini"; + "hskeleton" = dontDistribute super."hskeleton"; + "hslackbuilder" = dontDistribute super."hslackbuilder"; + "hslibsvm" = dontDistribute super."hslibsvm"; + "hslinks" = dontDistribute super."hslinks"; + "hslogger-reader" = dontDistribute super."hslogger-reader"; + "hslogger-template" = dontDistribute super."hslogger-template"; + "hslogger4j" = dontDistribute super."hslogger4j"; + "hslogstash" = dontDistribute super."hslogstash"; + "hsmagick" = dontDistribute super."hsmagick"; + "hsmisc" = dontDistribute super."hsmisc"; + "hsmtpclient" = dontDistribute super."hsmtpclient"; + "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector"; + "hsnock" = dontDistribute super."hsnock"; + "hsnoise" = dontDistribute super."hsnoise"; + "hsns" = dontDistribute super."hsns"; + "hsnsq" = dontDistribute super."hsnsq"; + "hsntp" = dontDistribute super."hsntp"; + "hsoptions" = dontDistribute super."hsoptions"; + "hsp-cgi" = dontDistribute super."hsp-cgi"; + "hsparklines" = dontDistribute super."hsparklines"; + "hsparql" = dontDistribute super."hsparql"; + "hspear" = dontDistribute super."hspear"; + "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; + "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; + "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-experimental" = dontDistribute super."hspec-experimental"; + "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-monad-control" = dontDistribute super."hspec-monad-control"; + "hspec-server" = dontDistribute super."hspec-server"; + "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; + "hspec-test-framework" = dontDistribute super."hspec-test-framework"; + "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; + "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_4"; + "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"; + "hstats" = dontDistribute super."hstats"; + "hstest" = dontDistribute super."hstest"; + "hstidy" = dontDistribute super."hstidy"; + "hstorchat" = dontDistribute super."hstorchat"; + "hstradeking" = dontDistribute super."hstradeking"; + "hstyle" = dontDistribute super."hstyle"; + "hstzaar" = dontDistribute super."hstzaar"; + "hsubconvert" = dontDistribute super."hsubconvert"; + "hsverilog" = dontDistribute super."hsverilog"; + "hswip" = dontDistribute super."hswip"; + "hsx" = dontDistribute super."hsx"; + "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsyscall" = dontDistribute super."hsyscall"; + "hszephyr" = dontDistribute super."hszephyr"; + "htags" = dontDistribute super."htags"; + "htar" = dontDistribute super."htar"; + "htiled" = dontDistribute super."htiled"; + "htime" = dontDistribute super."htime"; + "html-email-validate" = dontDistribute super."html-email-validate"; + "html-entities" = dontDistribute super."html-entities"; + "html-kure" = dontDistribute super."html-kure"; + "html-minimalist" = dontDistribute super."html-minimalist"; + "html-rules" = dontDistribute super."html-rules"; + "html-tokenizer" = dontDistribute super."html-tokenizer"; + "html-truncate" = dontDistribute super."html-truncate"; + "html2hamlet" = dontDistribute super."html2hamlet"; + "html5-entity" = dontDistribute super."html5-entity"; + "htodo" = dontDistribute super."htodo"; + "htoml" = dontDistribute super."htoml"; + "htrace" = dontDistribute super."htrace"; + "hts" = dontDistribute super."hts"; + "htsn" = dontDistribute super."htsn"; + "htsn-common" = dontDistribute super."htsn-common"; + "htsn-import" = dontDistribute super."htsn-import"; + "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client-auth" = dontDistribute super."http-client-auth"; + "http-client-conduit" = dontDistribute super."http-client-conduit"; + "http-client-lens" = dontDistribute super."http-client-lens"; + "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; + "http-client-streams" = dontDistribute super."http-client-streams"; + "http-conduit-browser" = dontDistribute super."http-conduit-browser"; + "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-encodings" = dontDistribute super."http-encodings"; + "http-enumerator" = dontDistribute super."http-enumerator"; + "http-kinder" = dontDistribute super."http-kinder"; + "http-kit" = dontDistribute super."http-kit"; + "http-listen" = dontDistribute super."http-listen"; + "http-monad" = dontDistribute super."http-monad"; + "http-proxy" = dontDistribute super."http-proxy"; + "http-querystring" = dontDistribute super."http-querystring"; + "http-server" = dontDistribute super."http-server"; + "http-shed" = dontDistribute super."http-shed"; + "http-test" = dontDistribute super."http-test"; + "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_4_5"; + "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; + "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; + "httpspec" = dontDistribute super."httpspec"; + "htune" = dontDistribute super."htune"; + "htzaar" = dontDistribute super."htzaar"; + "hub" = dontDistribute super."hub"; + "hubigraph" = dontDistribute super."hubigraph"; + "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; + "huffman" = dontDistribute super."huffman"; + "hugs2yc" = dontDistribute super."hugs2yc"; + "hulk" = dontDistribute super."hulk"; + "hums" = dontDistribute super."hums"; + "hunch" = dontDistribute super."hunch"; + "hunit-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"; + "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"; + "hylolib" = dontDistribute super."hylolib"; + "hylotab" = dontDistribute super."hylotab"; + "hyloutils" = dontDistribute super."hyloutils"; + "hyperdrive" = dontDistribute super."hyperdrive"; + "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperpublic" = dontDistribute super."hyperpublic"; + "hyphenate" = dontDistribute super."hyphenate"; + "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; + "hzk" = dontDistribute super."hzk"; + "i18n" = dontDistribute super."i18n"; + "iCalendar" = dontDistribute super."iCalendar"; + "iException" = dontDistribute super."iException"; + "iap-verifier" = dontDistribute super."iap-verifier"; + "ib-api" = dontDistribute super."ib-api"; + "iban" = dontDistribute super."iban"; + "ibus-hs" = dontDistribute super."ibus-hs"; + "ideas" = dontDistribute super."ideas"; + "ideas-math" = dontDistribute super."ideas-math"; + "idempotent" = dontDistribute super."idempotent"; + "identifiers" = dontDistribute super."identifiers"; + "idiii" = dontDistribute super."idiii"; + "idna" = dontDistribute super."idna"; + "idna2008" = dontDistribute super."idna2008"; + "idris" = dontDistribute super."idris"; + "ieee" = dontDistribute super."ieee"; + "ieee-utils" = dontDistribute super."ieee-utils"; + "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix"; + "ieee754-parser" = dontDistribute super."ieee754-parser"; + "ifcxt" = dontDistribute super."ifcxt"; + "iff" = dontDistribute super."iff"; + "ifscs" = dontDistribute super."ifscs"; + "ige-mac-integration" = dontDistribute super."ige-mac-integration"; + "igraph" = dontDistribute super."igraph"; + "igrf" = dontDistribute super."igrf"; + "ihaskell-display" = dontDistribute super."ihaskell-display"; + "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; + "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; + "ihaskell-plot" = dontDistribute super."ihaskell-plot"; + "ihaskell-widgets" = dontDistribute super."ihaskell-widgets"; + "ihttp" = dontDistribute super."ihttp"; + "illuminate" = dontDistribute super."illuminate"; + "image-type" = dontDistribute super."image-type"; + "imagefilters" = dontDistribute super."imagefilters"; + "imagemagick" = dontDistribute super."imagemagick"; + "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; + "imapget" = dontDistribute super."imapget"; + "imbib" = dontDistribute super."imbib"; + "imgurder" = dontDistribute super."imgurder"; + "imm" = dontDistribute super."imm"; + "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; + "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; + "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; + "implicit-params" = dontDistribute super."implicit-params"; + "imports" = dontDistribute super."imports"; + "impossible" = dontDistribute super."impossible"; + "improve" = dontDistribute super."improve"; + "inc-ref" = dontDistribute super."inc-ref"; + "inch" = dontDistribute super."inch"; + "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-sat-solver" = dontDistribute super."incremental-sat-solver"; + "increments" = dontDistribute super."increments"; + "indentation" = dontDistribute super."indentation"; + "indentparser" = dontDistribute super."indentparser"; + "index-core" = dontDistribute super."index-core"; + "indexed" = dontDistribute super."indexed"; + "indexed-do-notation" = dontDistribute super."indexed-do-notation"; + "indexed-extras" = dontDistribute super."indexed-extras"; + "indexed-free" = dontDistribute super."indexed-free"; + "indian-language-font-converter" = dontDistribute super."indian-language-font-converter"; + "indices" = dontDistribute super."indices"; + "indieweb-algorithms" = dontDistribute super."indieweb-algorithms"; + "inf-interval" = dontDistribute super."inf-interval"; + "infer-upstream" = dontDistribute super."infer-upstream"; + "infernu" = dontDistribute super."infernu"; + "infinite-search" = dontDistribute super."infinite-search"; + "infinity" = dontDistribute super."infinity"; + "infix" = dontDistribute super."infix"; + "inflist" = dontDistribute super."inflist"; + "influxdb" = dontDistribute super."influxdb"; + "informative" = dontDistribute super."informative"; + "inilist" = dontDistribute super."inilist"; + "inject" = dontDistribute super."inject"; + "inject-function" = dontDistribute super."inject-function"; + "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; + "inserts" = dontDistribute super."inserts"; + "inspection-proxy" = dontDistribute super."inspection-proxy"; + "instant-aeson" = dontDistribute super."instant-aeson"; + "instant-bytes" = dontDistribute super."instant-bytes"; + "instant-deepseq" = dontDistribute super."instant-deepseq"; + "instant-generics" = dontDistribute super."instant-generics"; + "instant-hashable" = dontDistribute super."instant-hashable"; + "instant-zipper" = dontDistribute super."instant-zipper"; + "instinct" = dontDistribute super."instinct"; + "instrument-chord" = dontDistribute super."instrument-chord"; + "int-cast" = dontDistribute super."int-cast"; + "integer-pure" = dontDistribute super."integer-pure"; + "intel-aes" = dontDistribute super."intel-aes"; + "interchangeable" = dontDistribute super."interchangeable"; + "interleavableGen" = dontDistribute super."interleavableGen"; + "interleavableIO" = dontDistribute super."interleavableIO"; + "interleave" = dontDistribute super."interleave"; + "interlude" = dontDistribute super."interlude"; + "intern" = dontDistribute super."intern"; + "internetmarke" = dontDistribute super."internetmarke"; + "interpol" = dontDistribute super."interpol"; + "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; + "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; + "interpolation" = dontDistribute super."interpolation"; + "intricacy" = dontDistribute super."intricacy"; + "intset" = dontDistribute super."intset"; + "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-quoter" = dontDistribute super."ip-quoter"; + "ipatch" = dontDistribute super."ipatch"; + "ipc" = dontDistribute super."ipc"; + "ipcvar" = dontDistribute super."ipcvar"; + "ipopt-hs" = dontDistribute super."ipopt-hs"; + "ipprint" = dontDistribute super."ipprint"; + "iptables-helpers" = dontDistribute super."iptables-helpers"; + "iptadmin" = dontDistribute super."iptadmin"; + "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-colors" = dontDistribute super."irc-colors"; + "irc-core" = dontDistribute super."irc-core"; + "irc-dcc" = dontDistribute super."irc-dcc"; + "irc-fun-bot" = dontDistribute super."irc-fun-bot"; + "irc-fun-client" = dontDistribute super."irc-fun-client"; + "irc-fun-color" = dontDistribute super."irc-fun-color"; + "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; + "ircbot" = dontDistribute super."ircbot"; + "ircbouncer" = dontDistribute super."ircbouncer"; + "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; + "iron-mq" = dontDistribute super."iron-mq"; + "ironforge" = dontDistribute super."ironforge"; + "is" = dontDistribute super."is"; + "isdicom" = dontDistribute super."isdicom"; + "isevaluated" = dontDistribute super."isevaluated"; + "isiz" = dontDistribute super."isiz"; + "ismtp" = dontDistribute super."ismtp"; + "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; + "isohunt" = dontDistribute super."isohunt"; + "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-backend-c" = dontDistribute super."ivory-backend-c"; + "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "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-stdlib" = dontDistribute super."ivory-stdlib"; + "ivy-web" = dontDistribute super."ivy-web"; + "ixdopp" = dontDistribute super."ixdopp"; + "ixmonad" = dontDistribute super."ixmonad"; + "iyql" = dontDistribute super."iyql"; + "j2hs" = dontDistribute super."j2hs"; + "ja-base-extra" = dontDistribute super."ja-base-extra"; + "jack" = dontDistribute super."jack"; + "jack-bindings" = dontDistribute super."jack-bindings"; + "jackminimix" = dontDistribute super."jackminimix"; + "jacobi-roots" = dontDistribute super."jacobi-roots"; + "jail" = dontDistribute super."jail"; + "jailbreak-cabal" = dontDistribute super."jailbreak-cabal"; + "jalaali" = dontDistribute super."jalaali"; + "jalla" = dontDistribute super."jalla"; + "jammittools" = dontDistribute super."jammittools"; + "jarfind" = dontDistribute super."jarfind"; + "java-bridge" = dontDistribute super."java-bridge"; + "java-bridge-extras" = dontDistribute super."java-bridge-extras"; + "java-character" = dontDistribute super."java-character"; + "java-poker" = dontDistribute super."java-poker"; + "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; + "javasf" = dontDistribute super."javasf"; + "javav" = dontDistribute super."javav"; + "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; + "jdi" = dontDistribute super."jdi"; + "jespresso" = dontDistribute super."jespresso"; + "jobqueue" = dontDistribute super."jobqueue"; + "join" = dontDistribute super."join"; + "joinlist" = dontDistribute super."joinlist"; + "jonathanscard" = dontDistribute super."jonathanscard"; + "jort" = dontDistribute super."jort"; + "jose" = dontDistribute super."jose"; + "jpeg" = dontDistribute super."jpeg"; + "js-good-parts" = dontDistribute super."js-good-parts"; + "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-hello" = dontDistribute super."jsaddle-hello"; + "jsc" = dontDistribute super."jsc"; + "jsmw" = dontDistribute super."jsmw"; + "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; + "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_11"; + "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-litobj" = dontDistribute super."json-litobj"; + "json-pointer" = dontDistribute super."json-pointer"; + "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; + "json-python" = dontDistribute super."json-python"; + "json-qq" = dontDistribute super."json-qq"; + "json-rpc" = dontDistribute super."json-rpc"; + "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-sop" = dontDistribute super."json-sop"; + "json-state" = dontDistribute super."json-state"; + "json-stream" = dontDistribute super."json-stream"; + "json-togo" = dontDistribute super."json-togo"; + "json-tools" = dontDistribute super."json-tools"; + "json-types" = dontDistribute super."json-types"; + "json2" = dontDistribute super."json2"; + "json2-hdbc" = dontDistribute super."json2-hdbc"; + "json2-types" = dontDistribute super."json2-types"; + "json2yaml" = dontDistribute super."json2yaml"; + "jsonresume" = dontDistribute super."jsonresume"; + "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit"; + "jsonschema-gen" = dontDistribute super."jsonschema-gen"; + "jsonsql" = dontDistribute super."jsonsql"; + "jsontsv" = dontDistribute super."jsontsv"; + "jspath" = dontDistribute super."jspath"; + "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"; + "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; + "kansas-lava" = dontDistribute super."kansas-lava"; + "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; + "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio"; + "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; + "karakuri" = dontDistribute super."karakuri"; + "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; + "katt" = dontDistribute super."katt"; + "kazura-queue" = dontDistribute super."kazura-queue"; + "kbq-gu" = dontDistribute super."kbq-gu"; + "kd-tree" = dontDistribute super."kd-tree"; + "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keera-callbacks" = dontDistribute super."keera-callbacks"; + "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; + "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; + "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk"; + "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel"; + "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel"; + "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config"; + "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk"; + "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view"; + "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk"; + "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs"; + "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk"; + "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network"; + "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling"; + "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx"; + "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa"; + "keera-hails-reactivelenses" = dontDistribute super."keera-hails-reactivelenses"; + "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues"; + "keera-posture" = dontDistribute super."keera-posture"; + "keiretsu" = dontDistribute super."keiretsu"; + "kevin" = dontDistribute super."kevin"; + "keyed" = dontDistribute super."keyed"; + "keyring" = dontDistribute super."keyring"; + "keystore" = dontDistribute super."keystore"; + "keyvaluehash" = dontDistribute super."keyvaluehash"; + "keyword-args" = dontDistribute super."keyword-args"; + "kibro" = dontDistribute super."kibro"; + "kicad-data" = dontDistribute super."kicad-data"; + "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser"; + "kickchan" = dontDistribute super."kickchan"; + "kif-parser" = dontDistribute super."kif-parser"; + "kinds" = dontDistribute super."kinds"; + "kit" = dontDistribute super."kit"; + "kmeans-par" = dontDistribute super."kmeans-par"; + "kmeans-vector" = dontDistribute super."kmeans-vector"; + "knots" = dontDistribute super."knots"; + "koellner-phonetic" = dontDistribute super."koellner-phonetic"; + "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; + "korfu" = dontDistribute super."korfu"; + "kqueue" = dontDistribute super."kqueue"; + "krpc" = dontDistribute super."krpc"; + "ks-test" = dontDistribute super."ks-test"; + "ktx" = dontDistribute super."ktx"; + "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate"; + "kyotocabinet" = dontDistribute super."kyotocabinet"; + "l-bfgs-b" = dontDistribute super."l-bfgs-b"; + "labeled-graph" = dontDistribute super."labeled-graph"; + "labeled-tree" = dontDistribute super."labeled-tree"; + "laborantin-hs" = dontDistribute super."laborantin-hs"; + "labyrinth" = dontDistribute super."labyrinth"; + "labyrinth-server" = dontDistribute super."labyrinth-server"; + "lackey" = dontDistribute super."lackey"; + "lagrangian" = dontDistribute super."lagrangian"; + "laika" = dontDistribute super."laika"; + "lambda-ast" = dontDistribute super."lambda-ast"; + "lambda-bridge" = dontDistribute super."lambda-bridge"; + "lambda-canvas" = dontDistribute super."lambda-canvas"; + "lambda-devs" = dontDistribute super."lambda-devs"; + "lambda-options" = dontDistribute super."lambda-options"; + "lambda-placeholders" = dontDistribute super."lambda-placeholders"; + "lambda-toolbox" = dontDistribute super."lambda-toolbox"; + "lambda2js" = dontDistribute super."lambda2js"; + "lambdaBase" = dontDistribute super."lambdaBase"; + "lambdaFeed" = dontDistribute super."lambdaFeed"; + "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = dontDistribute super."lambdabot"; + "lambdabot-core" = dontDistribute super."lambdabot-core"; + "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins"; + "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins"; + "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins"; + "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins"; + "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins"; + "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins"; + "lambdabot-trusted" = dontDistribute super."lambdabot-trusted"; + "lambdabot-utils" = dontDistribute super."lambdabot-utils"; + "lambdacat" = dontDistribute super."lambdacat"; + "lambdacms-core" = dontDistribute super."lambdacms-core"; + "lambdacms-media" = dontDistribute super."lambdacms-media"; + "lambdacube" = dontDistribute super."lambdacube"; + "lambdacube-bullet" = dontDistribute super."lambdacube-bullet"; + "lambdacube-compiler" = dontDistribute super."lambdacube-compiler"; + "lambdacube-core" = dontDistribute super."lambdacube-core"; + "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; + "lambdacube-engine" = dontDistribute super."lambdacube-engine"; + "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = dontDistribute super."lambdacube-gl"; + "lambdacube-ir" = dontDistribute super."lambdacube-ir"; + "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; + "lambdatwit" = dontDistribute super."lambdatwit"; + "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-c-quote" = dontDistribute super."language-c-quote"; + "language-cil" = dontDistribute super."language-cil"; + "language-css" = dontDistribute super."language-css"; + "language-dot" = dontDistribute super."language-dot"; + "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; + "language-eiffel" = dontDistribute super."language-eiffel"; + "language-fortran" = dontDistribute super."language-fortran"; + "language-gcl" = dontDistribute super."language-gcl"; + "language-go" = dontDistribute super."language-go"; + "language-guess" = dontDistribute super."language-guess"; + "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-kort" = dontDistribute super."language-kort"; + "language-lua" = dontDistribute super."language-lua"; + "language-lua-qq" = dontDistribute super."language-lua-qq"; + "language-mixal" = dontDistribute super."language-mixal"; + "language-objc" = dontDistribute super."language-objc"; + "language-openscad" = dontDistribute super."language-openscad"; + "language-pig" = dontDistribute super."language-pig"; + "language-puppet" = dontDistribute super."language-puppet"; + "language-python" = dontDistribute super."language-python"; + "language-python-colour" = dontDistribute super."language-python-colour"; + "language-python-test" = dontDistribute super."language-python-test"; + "language-qux" = dontDistribute super."language-qux"; + "language-sh" = dontDistribute super."language-sh"; + "language-slice" = dontDistribute super."language-slice"; + "language-spelling" = dontDistribute super."language-spelling"; + "language-sqlite" = dontDistribute super."language-sqlite"; + "language-thrift" = doDistribute super."language-thrift_0_7_0_1"; + "language-typescript" = dontDistribute super."language-typescript"; + "language-vhdl" = dontDistribute super."language-vhdl"; + "lat" = dontDistribute super."lat"; + "latest-npm-version" = dontDistribute super."latest-npm-version"; + "latex" = dontDistribute super."latex"; + "launchpad-control" = dontDistribute super."launchpad-control"; + "lax" = dontDistribute super."lax"; + "layers" = dontDistribute super."layers"; + "layers-game" = dontDistribute super."layers-game"; + "layout" = dontDistribute super."layout"; + "layout-bootstrap" = dontDistribute super."layout-bootstrap"; + "lazy-io" = dontDistribute super."lazy-io"; + "lazyarray" = dontDistribute super."lazyarray"; + "lazyio" = dontDistribute super."lazyio"; + "lazysmallcheck" = dontDistribute super."lazysmallcheck"; + "lazysplines" = dontDistribute super."lazysplines"; + "lbfgs" = dontDistribute super."lbfgs"; + "lcs" = dontDistribute super."lcs"; + "lda" = dontDistribute super."lda"; + "ldap-client" = dontDistribute super."ldap-client"; + "ldif" = dontDistribute super."ldif"; + "leaf" = dontDistribute super."leaf"; + "leaky" = dontDistribute super."leaky"; + "leankit-api" = dontDistribute super."leankit-api"; + "leapseconds-announced" = dontDistribute super."leapseconds-announced"; + "learn" = dontDistribute super."learn"; + "learn-physics" = dontDistribute super."learn-physics"; + "learn-physics-examples" = dontDistribute super."learn-physics-examples"; + "learning-hmm" = dontDistribute super."learning-hmm"; + "leetify" = dontDistribute super."leetify"; + "leksah" = dontDistribute super."leksah"; + "leksah-server" = dontDistribute super."leksah-server"; + "lendingclub" = dontDistribute super."lendingclub"; + "lens-datetime" = dontDistribute super."lens-datetime"; + "lens-prelude" = dontDistribute super."lens-prelude"; + "lens-properties" = dontDistribute super."lens-properties"; + "lens-sop" = dontDistribute super."lens-sop"; + "lens-text-encoding" = dontDistribute super."lens-text-encoding"; + "lens-time" = dontDistribute super."lens-time"; + "lens-tutorial" = dontDistribute super."lens-tutorial"; + "lens-utils" = dontDistribute super."lens-utils"; + "lenses" = dontDistribute super."lenses"; + "lensref" = dontDistribute super."lensref"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; + "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; + "levmar" = dontDistribute super."levmar"; + "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; + "lgtk" = dontDistribute super."lgtk"; + "lha" = dontDistribute super."lha"; + "lhae" = dontDistribute super."lhae"; + "lhc" = dontDistribute super."lhc"; + "lhe" = dontDistribute super."lhe"; + "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl"; + "lhs2html" = dontDistribute super."lhs2html"; + "lhslatex" = dontDistribute super."lhslatex"; + "libGenI" = dontDistribute super."libGenI"; + "libarchive-conduit" = dontDistribute super."libarchive-conduit"; + "libconfig" = dontDistribute super."libconfig"; + "libcspm" = dontDistribute super."libcspm"; + "libexpect" = dontDistribute super."libexpect"; + "libffi" = dontDistribute super."libffi"; + "libgraph" = dontDistribute super."libgraph"; + "libhbb" = dontDistribute super."libhbb"; + "libjenkins" = dontDistribute super."libjenkins"; + "liblastfm" = dontDistribute super."liblastfm"; + "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; + "libltdl" = dontDistribute super."libltdl"; + "libmpd" = dontDistribute super."libmpd"; + "libnvvm" = dontDistribute super."libnvvm"; + "liboleg" = dontDistribute super."liboleg"; + "libpafe" = dontDistribute super."libpafe"; + "libpq" = dontDistribute super."libpq"; + "librandomorg" = dontDistribute super."librandomorg"; + "libravatar" = dontDistribute super."libravatar"; + "libssh2" = dontDistribute super."libssh2"; + "libssh2-conduit" = dontDistribute super."libssh2-conduit"; + "libstackexchange" = dontDistribute super."libstackexchange"; + "libsystemd-daemon" = dontDistribute super."libsystemd-daemon"; + "libtagc" = dontDistribute super."libtagc"; + "libvirt-hs" = dontDistribute super."libvirt-hs"; + "libvorbis" = dontDistribute super."libvorbis"; + "libxls" = dontDistribute super."libxls"; + "libxml" = dontDistribute super."libxml"; + "libxml-enumerator" = dontDistribute super."libxml-enumerator"; + "libxslt" = dontDistribute super."libxslt"; + "life" = dontDistribute super."life"; + "lift-generics" = dontDistribute super."lift-generics"; + "lifted-threads" = dontDistribute super."lifted-threads"; + "lifter" = dontDistribute super."lifter"; + "ligature" = dontDistribute super."ligature"; + "ligd" = dontDistribute super."ligd"; + "lighttpd-conf" = dontDistribute super."lighttpd-conf"; + "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq"; + "lilypond" = dontDistribute super."lilypond"; + "limp" = dontDistribute super."limp"; + "limp-cbc" = dontDistribute super."limp-cbc"; + "lin-alg" = dontDistribute super."lin-alg"; + "linda" = dontDistribute super."linda"; + "lindenmayer" = dontDistribute super."lindenmayer"; + "line-break" = dontDistribute super."line-break"; + "line2pdf" = dontDistribute super."line2pdf"; + "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; + "linear-circuit" = dontDistribute super."linear-circuit"; + "linear-grammar" = dontDistribute super."linear-grammar"; + "linear-maps" = dontDistribute super."linear-maps"; + "linear-opengl" = dontDistribute super."linear-opengl"; + "linear-vect" = dontDistribute super."linear-vect"; + "linearEqSolver" = dontDistribute super."linearEqSolver"; + "linearscan" = dontDistribute super."linearscan"; + "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; + "linebreak" = dontDistribute super."linebreak"; + "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; + "linkchk" = dontDistribute super."linkchk"; + "linkcore" = dontDistribute super."linkcore"; + "linkedhashmap" = dontDistribute super."linkedhashmap"; + "linklater" = dontDistribute super."linklater"; + "linode" = dontDistribute super."linode"; + "linux-blkid" = dontDistribute super."linux-blkid"; + "linux-cgroup" = dontDistribute super."linux-cgroup"; + "linux-evdev" = dontDistribute super."linux-evdev"; + "linux-inotify" = dontDistribute super."linux-inotify"; + "linux-kmod" = dontDistribute super."linux-kmod"; + "linux-mount" = dontDistribute super."linux-mount"; + "linux-perf" = dontDistribute super."linux-perf"; + "linux-ptrace" = dontDistribute super."linux-ptrace"; + "linux-xattr" = dontDistribute super."linux-xattr"; + "linx-gateway" = dontDistribute super."linx-gateway"; + "lio" = dontDistribute super."lio"; + "lio-eci11" = dontDistribute super."lio-eci11"; + "lio-fs" = dontDistribute super."lio-fs"; + "lio-simple" = dontDistribute super."lio-simple"; + "lipsum-gen" = dontDistribute super."lipsum-gen"; + "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; + "liquidhaskell" = dontDistribute super."liquidhaskell"; + "lispparser" = dontDistribute super."lispparser"; + "list-extras" = dontDistribute super."list-extras"; + "list-grouping" = dontDistribute super."list-grouping"; + "list-mux" = dontDistribute super."list-mux"; + "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; + "list-t-html-parser" = dontDistribute super."list-t-html-parser"; + "list-t-http-client" = dontDistribute super."list-t-http-client"; + "list-t-libcurl" = dontDistribute super."list-t-libcurl"; + "list-t-text" = dontDistribute super."list-t-text"; + "list-tries" = dontDistribute super."list-tries"; + "list-zip-def" = dontDistribute super."list-zip-def"; + "listlike-instances" = dontDistribute super."listlike-instances"; + "lists" = dontDistribute super."lists"; + "listsafe" = dontDistribute super."listsafe"; + "lit" = dontDistribute super."lit"; + "literals" = dontDistribute super."literals"; + "live-sequencer" = dontDistribute super."live-sequencer"; + "ll-picosat" = dontDistribute super."ll-picosat"; + "llrbtree" = dontDistribute super."llrbtree"; + "llsd" = dontDistribute super."llsd"; + "llvm" = dontDistribute super."llvm"; + "llvm-analysis" = dontDistribute super."llvm-analysis"; + "llvm-base" = dontDistribute super."llvm-base"; + "llvm-base-types" = dontDistribute super."llvm-base-types"; + "llvm-base-util" = dontDistribute super."llvm-base-util"; + "llvm-data-interop" = dontDistribute super."llvm-data-interop"; + "llvm-extra" = dontDistribute super."llvm-extra"; + "llvm-ffi" = dontDistribute super."llvm-ffi"; + "llvm-general" = dontDistribute super."llvm-general"; + "llvm-general-pure" = dontDistribute super."llvm-general-pure"; + "llvm-general-quote" = dontDistribute super."llvm-general-quote"; + "llvm-ht" = dontDistribute super."llvm-ht"; + "llvm-pkg-config" = dontDistribute super."llvm-pkg-config"; + "llvm-pretty" = dontDistribute super."llvm-pretty"; + "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser"; + "llvm-tf" = dontDistribute super."llvm-tf"; + "llvm-tools" = dontDistribute super."llvm-tools"; + "lmdb" = dontDistribute super."lmdb"; + "lmonad" = dontDistribute super."lmonad"; + "lmonad-yesod" = dontDistribute super."lmonad-yesod"; + "loadavg" = dontDistribute super."loadavg"; + "local-address" = dontDistribute super."local-address"; + "local-search" = dontDistribute super."local-search"; + "located-base" = dontDistribute super."located-base"; + "locators" = dontDistribute super."locators"; + "loch" = dontDistribute super."loch"; + "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; + "lockfree-queue" = dontDistribute super."lockfree-queue"; + "log" = dontDistribute super."log"; + "log-effect" = dontDistribute super."log-effect"; + "log2json" = dontDistribute super."log2json"; + "logfloat" = dontDistribute super."logfloat"; + "logger" = dontDistribute super."logger"; + "logging" = dontDistribute super."logging"; + "logging-effect" = dontDistribute super."logging-effect"; + "logging-facade-journald" = dontDistribute super."logging-facade-journald"; + "logic-TPTP" = dontDistribute super."logic-TPTP"; + "logic-classes" = dontDistribute super."logic-classes"; + "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; + "logplex-parse" = dontDistribute super."logplex-parse"; + "logsink" = dontDistribute super."logsink"; + "lojban" = dontDistribute super."lojban"; + "lojbanParser" = dontDistribute super."lojbanParser"; + "lojbanXiragan" = dontDistribute super."lojbanXiragan"; + "lojysamban" = dontDistribute super."lojysamban"; + "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; + "loli" = dontDistribute super."loli"; + "lookup-tables" = dontDistribute super."lookup-tables"; + "loop-effin" = dontDistribute super."loop-effin"; + "loop-while" = dontDistribute super."loop-while"; + "loops" = dontDistribute super."loops"; + "loopy" = dontDistribute super."loopy"; + "lord" = dontDistribute super."lord"; + "lorem" = dontDistribute super."lorem"; + "loris" = dontDistribute super."loris"; + "loshadka" = dontDistribute super."loshadka"; + "lostcities" = dontDistribute super."lostcities"; + "lowgl" = dontDistribute super."lowgl"; + "lp-diagrams" = dontDistribute super."lp-diagrams"; + "lp-diagrams-svg" = dontDistribute super."lp-diagrams-svg"; + "ls-usb" = dontDistribute super."ls-usb"; + "lscabal" = dontDistribute super."lscabal"; + "lss" = dontDistribute super."lss"; + "lsystem" = dontDistribute super."lsystem"; + "ltk" = dontDistribute super."ltk"; + "ltl" = dontDistribute super."ltl"; + "lua-bytecode" = dontDistribute super."lua-bytecode"; + "luachunk" = dontDistribute super."luachunk"; + "luautils" = dontDistribute super."luautils"; + "lub" = dontDistribute super."lub"; + "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucienne" = dontDistribute super."lucienne"; + "luhn" = dontDistribute super."luhn"; + "lui" = dontDistribute super."lui"; + "luka" = dontDistribute super."luka"; + "luminance" = doDistribute super."luminance_0_9_1_2"; + "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; + "lushtags" = dontDistribute super."lushtags"; + "luthor" = dontDistribute super."luthor"; + "lvish" = dontDistribute super."lvish"; + "lvmlib" = dontDistribute super."lvmlib"; + "lvmrun" = dontDistribute super."lvmrun"; + "lxc" = dontDistribute super."lxc"; + "lye" = dontDistribute super."lye"; + "lz4" = dontDistribute super."lz4"; + "lzma" = dontDistribute super."lzma"; + "lzma-clib" = dontDistribute super."lzma-clib"; + "lzma-enumerator" = dontDistribute super."lzma-enumerator"; + "lzma-streams" = dontDistribute super."lzma-streams"; + "maam" = dontDistribute super."maam"; + "mac" = dontDistribute super."mac"; + "maccatcher" = dontDistribute super."maccatcher"; + "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; + "machines-zlib" = dontDistribute super."machines-zlib"; + "macho" = dontDistribute super."macho"; + "maclight" = dontDistribute super."maclight"; + "macosx-make-standalone" = dontDistribute super."macosx-make-standalone"; + "mage" = dontDistribute super."mage"; + "magico" = dontDistribute super."magico"; + "magma" = dontDistribute super."magma"; + "mahoro" = dontDistribute super."mahoro"; + "maid" = dontDistribute super."maid"; + "mailbox-count" = dontDistribute super."mailbox-count"; + "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; + "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = dontDistribute super."mainland-pretty"; + "majordomo" = dontDistribute super."majordomo"; + "majority" = dontDistribute super."majority"; + "make-hard-links" = dontDistribute super."make-hard-links"; + "make-package" = dontDistribute super."make-package"; + "makedo" = dontDistribute super."makedo"; + "manatee" = dontDistribute super."manatee"; + "manatee-all" = dontDistribute super."manatee-all"; + "manatee-anything" = dontDistribute super."manatee-anything"; + "manatee-browser" = dontDistribute super."manatee-browser"; + "manatee-core" = dontDistribute super."manatee-core"; + "manatee-curl" = dontDistribute super."manatee-curl"; + "manatee-editor" = dontDistribute super."manatee-editor"; + "manatee-filemanager" = dontDistribute super."manatee-filemanager"; + "manatee-imageviewer" = dontDistribute super."manatee-imageviewer"; + "manatee-ircclient" = dontDistribute super."manatee-ircclient"; + "manatee-mplayer" = dontDistribute super."manatee-mplayer"; + "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer"; + "manatee-processmanager" = dontDistribute super."manatee-processmanager"; + "manatee-reader" = dontDistribute super."manatee-reader"; + "manatee-template" = dontDistribute super."manatee-template"; + "manatee-terminal" = dontDistribute super."manatee-terminal"; + "manatee-welcome" = dontDistribute super."manatee-welcome"; + "mancala" = dontDistribute super."mancala"; + "mandulia" = dontDistribute super."mandulia"; + "manifold-random" = dontDistribute super."manifold-random"; + "manifolds" = dontDistribute super."manifolds"; + "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"; + "matchers" = dontDistribute super."matchers"; + "mathblog" = dontDistribute super."mathblog"; + "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; + "mathlink" = dontDistribute super."mathlink"; + "matlab" = dontDistribute super."matlab"; + "matrix-market" = dontDistribute super."matrix-market"; + "matrix-market-pure" = dontDistribute super."matrix-market-pure"; + "matsuri" = dontDistribute super."matsuri"; + "maude" = dontDistribute super."maude"; + "maxent" = dontDistribute super."maxent"; + "maxsharing" = dontDistribute super."maxsharing"; + "maybe-justify" = dontDistribute super."maybe-justify"; + "maybench" = dontDistribute super."maybench"; + "mbox-tools" = dontDistribute super."mbox-tools"; + "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; + "mcmc-samplers" = dontDistribute super."mcmc-samplers"; + "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; + "mcpi" = dontDistribute super."mcpi"; + "mdapi" = dontDistribute super."mdapi"; + "mdcat" = dontDistribute super."mdcat"; + "mdo" = dontDistribute super."mdo"; + "mdp" = dontDistribute super."mdp"; + "mecab" = dontDistribute super."mecab"; + "mecha" = dontDistribute super."mecha"; + "mediawiki" = dontDistribute super."mediawiki"; + "mediawiki2latex" = dontDistribute super."mediawiki2latex"; + "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; + "meep" = dontDistribute super."meep"; + "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = doDistribute super."megaparsec_4_3_0"; + "meldable-heap" = dontDistribute super."meldable-heap"; + "melody" = dontDistribute super."melody"; + "memcache" = dontDistribute super."memcache"; + "memcache-conduit" = dontDistribute super."memcache-conduit"; + "memcache-haskell" = dontDistribute super."memcache-haskell"; + "memcached" = dontDistribute super."memcached"; + "memexml" = dontDistribute super."memexml"; + "memo-ptr" = dontDistribute super."memo-ptr"; + "memo-sqlite" = dontDistribute super."memo-sqlite"; + "memscript" = dontDistribute super."memscript"; + "mersenne-random" = dontDistribute super."mersenne-random"; + "messente" = dontDistribute super."messente"; + "meta-misc" = dontDistribute super."meta-misc"; + "meta-par" = dontDistribute super."meta-par"; + "meta-par-accelerate" = dontDistribute super."meta-par-accelerate"; + "metadata" = dontDistribute super."metadata"; + "metamorphic" = dontDistribute super."metamorphic"; + "metaplug" = dontDistribute super."metaplug"; + "metric" = dontDistribute super."metric"; + "metricsd-client" = dontDistribute super."metricsd-client"; + "metronome" = dontDistribute super."metronome"; + "mezzolens" = dontDistribute super."mezzolens"; + "mfsolve" = dontDistribute super."mfsolve"; + "mgeneric" = dontDistribute super."mgeneric"; + "mi" = dontDistribute super."mi"; + "microbench" = dontDistribute super."microbench"; + "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens-each" = dontDistribute super."microlens-each"; + "microtimer" = dontDistribute super."microtimer"; + "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; + "midi" = dontDistribute super."midi"; + "midi-alsa" = dontDistribute super."midi-alsa"; + "midi-music-box" = dontDistribute super."midi-music-box"; + "midi-util" = dontDistribute super."midi-util"; + "midimory" = dontDistribute super."midimory"; + "midisurface" = dontDistribute super."midisurface"; + "mighttpd" = dontDistribute super."mighttpd"; + "mighttpd2" = dontDistribute super."mighttpd2"; + "mikmod" = dontDistribute super."mikmod"; + "miku" = dontDistribute super."miku"; + "milena" = dontDistribute super."milena"; + "mime" = dontDistribute super."mime"; + "mime-directory" = dontDistribute super."mime-directory"; + "mime-string" = dontDistribute super."mime-string"; + "mines" = dontDistribute super."mines"; + "minesweeper" = dontDistribute super."minesweeper"; + "miniball" = dontDistribute super."miniball"; + "miniforth" = dontDistribute super."miniforth"; + "minilens" = dontDistribute super."minilens"; + "minimal-configuration" = dontDistribute super."minimal-configuration"; + "minimorph" = dontDistribute super."minimorph"; + "minimung" = dontDistribute super."minimung"; + "minions" = dontDistribute super."minions"; + "minioperational" = dontDistribute super."minioperational"; + "miniplex" = dontDistribute super."miniplex"; + "minirotate" = dontDistribute super."minirotate"; + "minisat" = dontDistribute super."minisat"; + "ministg" = dontDistribute super."ministg"; + "miniutter" = dontDistribute super."miniutter"; + "minst-idx" = dontDistribute super."minst-idx"; + "mirror-tweet" = dontDistribute super."mirror-tweet"; + "missing-py2" = dontDistribute super."missing-py2"; + "mix-arrows" = dontDistribute super."mix-arrows"; + "mixed-strategies" = dontDistribute super."mixed-strategies"; + "mkbndl" = dontDistribute super."mkbndl"; + "mkcabal" = dontDistribute super."mkcabal"; + "ml-w" = dontDistribute super."ml-w"; + "mlist" = dontDistribute super."mlist"; + "mmtl" = dontDistribute super."mmtl"; + "mmtl-base" = dontDistribute super."mmtl-base"; + "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-exception" = dontDistribute super."monad-exception"; + "monad-fork" = dontDistribute super."monad-fork"; + "monad-gen" = dontDistribute super."monad-gen"; + "monad-interleave" = dontDistribute super."monad-interleave"; + "monad-levels" = dontDistribute super."monad-levels"; + "monad-loops-stm" = dontDistribute super."monad-loops-stm"; + "monad-lrs" = dontDistribute super."monad-lrs"; + "monad-memo" = dontDistribute super."monad-memo"; + "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; + "monad-open" = dontDistribute super."monad-open"; + "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; + "monad-param" = dontDistribute super."monad-param"; + "monad-ran" = dontDistribute super."monad-ran"; + "monad-resumption" = dontDistribute super."monad-resumption"; + "monad-state" = dontDistribute super."monad-state"; + "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-stlike-io" = dontDistribute super."monad-stlike-io"; + "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; + "monad-supply" = dontDistribute super."monad-supply"; + "monad-task" = dontDistribute super."monad-task"; + "monad-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"; + "monadplus" = dontDistribute super."monadplus"; + "monads-fd" = dontDistribute super."monads-fd"; + "monadtransform" = dontDistribute super."monadtransform"; + "monarch" = dontDistribute super."monarch"; + "mongodb-queue" = dontDistribute super."mongodb-queue"; + "mongrel2-handler" = dontDistribute super."mongrel2-handler"; + "monitor" = dontDistribute super."monitor"; + "mono-foldable" = dontDistribute super."mono-foldable"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-owns" = dontDistribute super."monoid-owns"; + "monoid-record" = dontDistribute super."monoid-record"; + "monoid-statistics" = dontDistribute super."monoid-statistics"; + "monoid-transformer" = dontDistribute super."monoid-transformer"; + "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"; + "mosaico-lib" = dontDistribute super."mosaico-lib"; + "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; + "mp" = dontDistribute super."mp"; + "mp3decoder" = dontDistribute super."mp3decoder"; + "mpdmate" = dontDistribute super."mpdmate"; + "mpppc" = dontDistribute super."mpppc"; + "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; + "mprover" = dontDistribute super."mprover"; + "mps" = dontDistribute super."mps"; + "mpvguihs" = dontDistribute super."mpvguihs"; + "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; + "ms" = dontDistribute super."ms"; + "msgpack" = dontDistribute super."msgpack"; + "msgpack-aeson" = dontDistribute super."msgpack-aeson"; + "msgpack-idl" = dontDistribute super."msgpack-idl"; + "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; + "msu" = dontDistribute super."msu"; + "mtgoxapi" = dontDistribute super."mtgoxapi"; + "mtl-c" = dontDistribute super."mtl-c"; + "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-tf" = dontDistribute super."mtl-tf"; + "mtl-unleashed" = dontDistribute super."mtl-unleashed"; + "mtlparse" = dontDistribute super."mtlparse"; + "mtlx" = dontDistribute super."mtlx"; + "mtp" = dontDistribute super."mtp"; + "mtree" = dontDistribute super."mtree"; + "mucipher" = dontDistribute super."mucipher"; + "mudbath" = dontDistribute super."mudbath"; + "muesli" = dontDistribute super."muesli"; + "mueval" = dontDistribute super."mueval"; + "mulang" = dontDistribute super."mulang"; + "multext-east-msd" = dontDistribute super."multext-east-msd"; + "multi-cabal" = dontDistribute super."multi-cabal"; + "multiaddr" = dontDistribute super."multiaddr"; + "multifocal" = dontDistribute super."multifocal"; + "multihash" = dontDistribute super."multihash"; + "multipart-names" = dontDistribute super."multipart-names"; + "multipass" = dontDistribute super."multipass"; + "multiplate-simplified" = dontDistribute super."multiplate-simplified"; + "multiplicity" = dontDistribute super."multiplicity"; + "multirec" = dontDistribute super."multirec"; + "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; + "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset-comb" = dontDistribute super."multiset-comb"; + "multisetrewrite" = dontDistribute super."multisetrewrite"; + "multistate" = dontDistribute super."multistate"; + "muon" = dontDistribute super."muon"; + "murder" = dontDistribute super."murder"; + "murmur3" = dontDistribute super."murmur3"; + "murmurhash3" = dontDistribute super."murmurhash3"; + "music-articulation" = dontDistribute super."music-articulation"; + "music-diatonic" = dontDistribute super."music-diatonic"; + "music-dynamics" = dontDistribute super."music-dynamics"; + "music-dynamics-literal" = dontDistribute super."music-dynamics-literal"; + "music-graphics" = dontDistribute super."music-graphics"; + "music-parts" = dontDistribute super."music-parts"; + "music-pitch" = dontDistribute super."music-pitch"; + "music-pitch-literal" = dontDistribute super."music-pitch-literal"; + "music-preludes" = dontDistribute super."music-preludes"; + "music-score" = dontDistribute super."music-score"; + "music-sibelius" = dontDistribute super."music-sibelius"; + "music-suite" = dontDistribute super."music-suite"; + "music-util" = dontDistribute super."music-util"; + "musicbrainz-email" = dontDistribute super."musicbrainz-email"; + "musicxml" = dontDistribute super."musicxml"; + "musicxml2" = dontDistribute super."musicxml2"; + "mustache-haskell" = dontDistribute super."mustache-haskell"; + "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-iter" = dontDistribute super."mutable-iter"; + "mute-unmute" = dontDistribute super."mute-unmute"; + "mvc" = dontDistribute super."mvc"; + "mvc-updates" = dontDistribute super."mvc-updates"; + "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = doDistribute super."mwc-probability_1_0_3"; + "mwc-random-monad" = dontDistribute super."mwc-random-monad"; + "myTestlll" = dontDistribute super."myTestlll"; + "mybitcoin-sci" = dontDistribute super."mybitcoin-sci"; + "myo" = dontDistribute super."myo"; + "mysnapsession" = dontDistribute super."mysnapsession"; + "mysnapsession-example" = dontDistribute super."mysnapsession-example"; + "mysql-effect" = dontDistribute super."mysql-effect"; + "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi"; + "mysql-simple-typed" = dontDistribute super."mysql-simple-typed"; + "mzv" = dontDistribute super."mzv"; + "n-m" = dontDistribute super."n-m"; + "nagios-perfdata" = dontDistribute super."nagios-perfdata"; + "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg"; + "named-formlet" = dontDistribute super."named-formlet"; + "named-lock" = dontDistribute super."named-lock"; + "named-records" = dontDistribute super."named-records"; + "namelist" = dontDistribute super."namelist"; + "names" = dontDistribute super."names"; + "names-th" = dontDistribute super."names-th"; + "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; + "nano-hmac" = dontDistribute super."nano-hmac"; + "nano-md5" = dontDistribute super."nano-md5"; + "nanoAgda" = dontDistribute super."nanoAgda"; + "nanocurses" = dontDistribute super."nanocurses"; + "nanomsg" = dontDistribute super."nanomsg"; + "nanomsg-haskell" = dontDistribute super."nanomsg-haskell"; + "nanoparsec" = dontDistribute super."nanoparsec"; + "nanq" = dontDistribute super."nanq"; + "narc" = dontDistribute super."narc"; + "nat" = dontDistribute super."nat"; + "nats-queue" = dontDistribute super."nats-queue"; + "natural-number" = dontDistribute super."natural-number"; + "natural-numbers" = dontDistribute super."natural-numbers"; + "natural-transformation" = dontDistribute super."natural-transformation"; + "naturalcomp" = dontDistribute super."naturalcomp"; + "naturals" = dontDistribute super."naturals"; + "naver-translate" = dontDistribute super."naver-translate"; + "nbt" = dontDistribute super."nbt"; + "nc-indicators" = dontDistribute super."nc-indicators"; + "ncurses" = dontDistribute super."ncurses"; + "neat" = dontDistribute super."neat"; + "needle" = dontDistribute super."needle"; + "neet" = dontDistribute super."neet"; + "nehe-tuts" = dontDistribute super."nehe-tuts"; + "neil" = dontDistribute super."neil"; + "neither" = dontDistribute super."neither"; + "nemesis" = dontDistribute super."nemesis"; + "nemesis-titan" = dontDistribute super."nemesis-titan"; + "nerf" = dontDistribute super."nerf"; + "nero" = dontDistribute super."nero"; + "nero-wai" = dontDistribute super."nero-wai"; + "nero-warp" = dontDistribute super."nero-warp"; + "nested-routes" = dontDistribute super."nested-routes"; + "nested-sets" = dontDistribute super."nested-sets"; + "nestedmap" = dontDistribute super."nestedmap"; + "net-concurrent" = dontDistribute super."net-concurrent"; + "netclock" = dontDistribute super."netclock"; + "netcore" = dontDistribute super."netcore"; + "netlines" = dontDistribute super."netlines"; + "netlink" = dontDistribute super."netlink"; + "netlist" = dontDistribute super."netlist"; + "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl"; + "netpbm" = dontDistribute super."netpbm"; + "netrc" = dontDistribute super."netrc"; + "netspec" = dontDistribute super."netspec"; + "netstring-enumerator" = dontDistribute super."netstring-enumerator"; + "nettle-frp" = dontDistribute super."nettle-frp"; + "nettle-netkit" = dontDistribute super."nettle-netkit"; + "nettle-openflow" = dontDistribute super."nettle-openflow"; + "netwire" = dontDistribute super."netwire"; + "netwire-input" = dontDistribute super."netwire-input"; + "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; + "network-address" = dontDistribute super."network-address"; + "network-api-support" = dontDistribute super."network-api-support"; + "network-bitcoin" = dontDistribute super."network-bitcoin"; + "network-builder" = dontDistribute super."network-builder"; + "network-bytestring" = dontDistribute super."network-bytestring"; + "network-conduit" = dontDistribute super."network-conduit"; + "network-connection" = dontDistribute super."network-connection"; + "network-data" = dontDistribute super."network-data"; + "network-dbus" = dontDistribute super."network-dbus"; + "network-dns" = dontDistribute super."network-dns"; + "network-enumerator" = dontDistribute super."network-enumerator"; + "network-fancy" = dontDistribute super."network-fancy"; + "network-interfacerequest" = dontDistribute super."network-interfacerequest"; + "network-ip" = dontDistribute super."network-ip"; + "network-metrics" = dontDistribute super."network-metrics"; + "network-minihttp" = dontDistribute super."network-minihttp"; + "network-msg" = dontDistribute super."network-msg"; + "network-netpacket" = dontDistribute super."network-netpacket"; + "network-pgi" = dontDistribute super."network-pgi"; + "network-rpca" = dontDistribute super."network-rpca"; + "network-server" = dontDistribute super."network-server"; + "network-service" = dontDistribute super."network-service"; + "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; + "network-simple-tls" = dontDistribute super."network-simple-tls"; + "network-socket-options" = dontDistribute super."network-socket-options"; + "network-stream" = dontDistribute super."network-stream"; + "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport-amqp" = dontDistribute super."network-transport-amqp"; + "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; + "network-uri-static" = dontDistribute super."network-uri-static"; + "network-wai-router" = dontDistribute super."network-wai-router"; + "network-websocket" = dontDistribute super."network-websocket"; + "networked-game" = dontDistribute super."networked-game"; + "newports" = dontDistribute super."newports"; + "newsynth" = dontDistribute super."newsynth"; + "newt" = dontDistribute super."newt"; + "newtype-deriving" = dontDistribute super."newtype-deriving"; + "newtype-th" = dontDistribute super."newtype-th"; + "newtyper" = dontDistribute super."newtyper"; + "nextstep-plist" = dontDistribute super."nextstep-plist"; + "nf" = dontDistribute super."nf"; + "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; + "nibblestring" = dontDistribute super."nibblestring"; + "nicify" = dontDistribute super."nicify"; + "nicify-lib" = dontDistribute super."nicify-lib"; + "nicovideo-translator" = dontDistribute super."nicovideo-translator"; + "nikepub" = dontDistribute super."nikepub"; + "nimber" = dontDistribute super."nimber"; + "nist-beacon" = dontDistribute super."nist-beacon"; + "nitro" = dontDistribute super."nitro"; + "nix-eval" = dontDistribute super."nix-eval"; + "nixfromnpm" = dontDistribute super."nixfromnpm"; + "nixos-types" = dontDistribute super."nixos-types"; + "nkjp" = dontDistribute super."nkjp"; + "nlp-scores" = dontDistribute super."nlp-scores"; + "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts"; + "nm" = dontDistribute super."nm"; + "nme" = dontDistribute super."nme"; + "nntp" = dontDistribute super."nntp"; + "no-buffering-workaround" = dontDistribute super."no-buffering-workaround"; + "no-role-annots" = dontDistribute super."no-role-annots"; + "nofib-analyse" = dontDistribute super."nofib-analyse"; + "nofib-analyze" = dontDistribute super."nofib-analyze"; + "noise" = dontDistribute super."noise"; + "non-empty" = dontDistribute super."non-empty"; + "non-negative" = dontDistribute super."non-negative"; + "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; + "nonfree" = dontDistribute super."nonfree"; + "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; + "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; + "noodle" = dontDistribute super."noodle"; + "normaldistribution" = dontDistribute super."normaldistribution"; + "not-gloss" = dontDistribute super."not-gloss"; + "not-gloss-examples" = dontDistribute super."not-gloss-examples"; + "not-in-base" = dontDistribute super."not-in-base"; + "notcpp" = dontDistribute super."notcpp"; + "notmuch-haskell" = dontDistribute super."notmuch-haskell"; + "notmuch-web" = dontDistribute super."notmuch-web"; + "notzero" = dontDistribute super."notzero"; + "np-extras" = dontDistribute super."np-extras"; + "np-linear" = dontDistribute super."np-linear"; + "nptools" = dontDistribute super."nptools"; + "nth-prime" = dontDistribute super."nth-prime"; + "nthable" = dontDistribute super."nthable"; + "ntp-control" = dontDistribute super."ntp-control"; + "null-canvas" = dontDistribute super."null-canvas"; + "nullary" = dontDistribute super."nullary"; + "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; + "numbering" = dontDistribute super."numbering"; + "numerals" = dontDistribute super."numerals"; + "numerals-base" = dontDistribute super."numerals-base"; + "numeric-limits" = dontDistribute super."numeric-limits"; + "numeric-prelude" = dontDistribute super."numeric-prelude"; + "numeric-qq" = dontDistribute super."numeric-qq"; + "numeric-quest" = dontDistribute super."numeric-quest"; + "numeric-ranges" = dontDistribute super."numeric-ranges"; + "numeric-tools" = dontDistribute super."numeric-tools"; + "numericpeano" = dontDistribute super."numericpeano"; + "nums" = dontDistribute super."nums"; + "numtype" = dontDistribute super."numtype"; + "numtype-tf" = dontDistribute super."numtype-tf"; + "nurbs" = dontDistribute super."nurbs"; + "nvim-hs" = dontDistribute super."nvim-hs"; + "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib"; + "nyan" = dontDistribute super."nyan"; + "nylas" = dontDistribute super."nylas"; + "nymphaea" = dontDistribute super."nymphaea"; + "oanda-rest-api" = dontDistribute super."oanda-rest-api"; + "oauthenticated" = dontDistribute super."oauthenticated"; + "obdd" = dontDistribute super."obdd"; + "oberon0" = dontDistribute super."oberon0"; + "obj" = dontDistribute super."obj"; + "objectid" = dontDistribute super."objectid"; + "objective" = doDistribute super."objective_1_0_5"; + "observable-sharing" = dontDistribute super."observable-sharing"; + "octane" = dontDistribute super."octane"; + "octohat" = dontDistribute super."octohat"; + "octopus" = dontDistribute super."octopus"; + "oculus" = dontDistribute super."oculus"; + "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = dontDistribute super."oeis"; + "off-simple" = dontDistribute super."off-simple"; + "ohloh-hs" = dontDistribute super."ohloh-hs"; + "oi" = dontDistribute super."oi"; + "oidc-client" = dontDistribute super."oidc-client"; + "ois-input-manager" = dontDistribute super."ois-input-manager"; + "old-version" = dontDistribute super."old-version"; + "olwrapper" = dontDistribute super."olwrapper"; + "omaketex" = dontDistribute super."omaketex"; + "omega" = dontDistribute super."omega"; + "omnicodec" = dontDistribute super."omnicodec"; + "on-a-horse" = dontDistribute super."on-a-horse"; + "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "one-liner" = dontDistribute super."one-liner"; + "one-time-password" = dontDistribute super."one-time-password"; + "oneOfN" = dontDistribute super."oneOfN"; + "oneormore" = dontDistribute super."oneormore"; + "only" = dontDistribute super."only"; + "onu-course" = dontDistribute super."onu-course"; + "opaleye-classy" = dontDistribute super."opaleye-classy"; + "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; + "opaleye-trans" = dontDistribute super."opaleye-trans"; + "open-haddock" = dontDistribute super."open-haddock"; + "open-pandoc" = dontDistribute super."open-pandoc"; + "open-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"; + "opml-conduit" = doDistribute super."opml-conduit_0_4_0_1"; + "opn" = dontDistribute super."opn"; + "optimal-blocks" = dontDistribute super."optimal-blocks"; + "optimization" = dontDistribute super."optimization"; + "optimusprime" = dontDistribute super."optimusprime"; + "option" = dontDistribute super."option"; + "optional" = dontDistribute super."optional"; + "options-time" = dontDistribute super."options-time"; + "optparse-declarative" = dontDistribute super."optparse-declarative"; + "optparse-generic" = dontDistribute super."optparse-generic"; + "orc" = dontDistribute super."orc"; + "orchestrate" = dontDistribute super."orchestrate"; + "orchid" = dontDistribute super."orchid"; + "orchid-demo" = dontDistribute super."orchid-demo"; + "ord-adhoc" = dontDistribute super."ord-adhoc"; + "order-maintenance" = dontDistribute super."order-maintenance"; + "order-statistic-tree" = dontDistribute super."order-statistic-tree"; + "order-statistics" = dontDistribute super."order-statistics"; + "ordered" = dontDistribute super."ordered"; + "orders" = dontDistribute super."orders"; + "ordrea" = dontDistribute super."ordrea"; + "organize-imports" = dontDistribute super."organize-imports"; + "orgmode" = dontDistribute super."orgmode"; + "orgmode-parse" = dontDistribute super."orgmode-parse"; + "origami" = dontDistribute super."origami"; + "os-release" = dontDistribute super."os-release"; + "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; + "osm-download" = dontDistribute super."osm-download"; + "oso2pdf" = dontDistribute super."oso2pdf"; + "osx-ar" = dontDistribute super."osx-ar"; + "ot" = dontDistribute super."ot"; + "ottparse-pretty" = dontDistribute super."ottparse-pretty"; + "overloaded-records" = dontDistribute super."overloaded-records"; + "overture" = dontDistribute super."overture"; + "pack" = dontDistribute super."pack"; + "package-o-tron" = dontDistribute super."package-o-tron"; + "package-vt" = dontDistribute super."package-vt"; + "packdeps" = dontDistribute super."packdeps"; + "packed-dawg" = dontDistribute super."packed-dawg"; + "packedstring" = dontDistribute super."packedstring"; + "packer" = dontDistribute super."packer"; + "packman" = dontDistribute super."packman"; + "packunused" = dontDistribute super."packunused"; + "pacman-memcache" = dontDistribute super."pacman-memcache"; + "padKONTROL" = dontDistribute super."padKONTROL"; + "pagarme" = dontDistribute super."pagarme"; + "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palindromes" = dontDistribute super."palindromes"; + "pam" = dontDistribute super."pam"; + "panda" = dontDistribute super."panda"; + "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; + "pandoc-crossref" = dontDistribute super."pandoc-crossref"; + "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; + "pandoc-include" = dontDistribute super."pandoc-include"; + "pandoc-japanese-filters" = dontDistribute super."pandoc-japanese-filters"; + "pandoc-lens" = dontDistribute super."pandoc-lens"; + "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "papillon" = dontDistribute super."papillon"; + "pappy" = dontDistribute super."pappy"; + "para" = dontDistribute super."para"; + "paragon" = dontDistribute super."paragon"; + "parallel-tasks" = dontDistribute super."parallel-tasks"; + "parallel-tree-search" = dontDistribute super."parallel-tree-search"; + "parameterized-data" = dontDistribute super."parameterized-data"; + "parco" = dontDistribute super."parco"; + "parco-attoparsec" = dontDistribute super."parco-attoparsec"; + "parco-parsec" = dontDistribute super."parco-parsec"; + "parcom-lib" = dontDistribute super."parcom-lib"; + "parconc-examples" = dontDistribute super."parconc-examples"; + "parport" = dontDistribute super."parport"; + "parse-dimacs" = dontDistribute super."parse-dimacs"; + "parse-help" = dontDistribute super."parse-help"; + "parsec-extra" = dontDistribute super."parsec-extra"; + "parsec-numbers" = dontDistribute super."parsec-numbers"; + "parsec-parsers" = dontDistribute super."parsec-parsers"; + "parsec-permutation" = dontDistribute super."parsec-permutation"; + "parsec-tagsoup" = dontDistribute super."parsec-tagsoup"; + "parsec-trace" = dontDistribute super."parsec-trace"; + "parsec-utils" = dontDistribute super."parsec-utils"; + "parsec1" = dontDistribute super."parsec1"; + "parsec2" = dontDistribute super."parsec2"; + "parsec3" = dontDistribute super."parsec3"; + "parsec3-numbers" = dontDistribute super."parsec3-numbers"; + "parsedate" = dontDistribute super."parsedate"; + "parsek" = dontDistribute super."parsek"; + "parsely" = dontDistribute super."parsely"; + "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; + "parsergen" = dontDistribute super."parsergen"; + "parsestar" = dontDistribute super."parsestar"; + "parsimony" = dontDistribute super."parsimony"; + "partial" = dontDistribute super."partial"; + "partial-lens" = dontDistribute super."partial-lens"; + "partial-uri" = dontDistribute super."partial-uri"; + "partly" = dontDistribute super."partly"; + "passage" = dontDistribute super."passage"; + "passwords" = dontDistribute super."passwords"; + "pastis" = dontDistribute super."pastis"; + "pasty" = dontDistribute super."pasty"; + "patch-combinators" = dontDistribute super."patch-combinators"; + "patch-image" = dontDistribute super."patch-image"; + "path-io" = doDistribute super."path-io_0_2_0"; + "pathfinding" = dontDistribute super."pathfinding"; + "pathfindingcore" = dontDistribute super."pathfindingcore"; + "pathtype" = dontDistribute super."pathtype"; + "patronscraper" = dontDistribute super."patronscraper"; + "patterns" = dontDistribute super."patterns"; + "paymill" = dontDistribute super."paymill"; + "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops"; + "paypal-api" = dontDistribute super."paypal-api"; + "pb" = dontDistribute super."pb"; + "pbc4hs" = dontDistribute super."pbc4hs"; + "pbkdf" = dontDistribute super."pbkdf"; + "pcap-conduit" = dontDistribute super."pcap-conduit"; + "pcap-enumerator" = dontDistribute super."pcap-enumerator"; + "pcd-loader" = dontDistribute super."pcd-loader"; + "pcf" = dontDistribute super."pcf"; + "pcg-random" = dontDistribute super."pcg-random"; + "pcre-less" = dontDistribute super."pcre-less"; + "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; + "pdf2line" = dontDistribute super."pdf2line"; + "pdfsplit" = dontDistribute super."pdfsplit"; + "pdynload" = dontDistribute super."pdynload"; + "peakachu" = dontDistribute super."peakachu"; + "peano" = dontDistribute super."peano"; + "peano-inf" = dontDistribute super."peano-inf"; + "pec" = dontDistribute super."pec"; + "pecoff" = dontDistribute super."pecoff"; + "peg" = dontDistribute super."peg"; + "peggy" = dontDistribute super."peggy"; + "pell" = dontDistribute super."pell"; + "penn-treebank" = dontDistribute super."penn-treebank"; + "penny" = dontDistribute super."penny"; + "penny-bin" = dontDistribute super."penny-bin"; + "penny-lib" = dontDistribute super."penny-lib"; + "peparser" = dontDistribute super."peparser"; + "perceptron" = dontDistribute super."perceptron"; + "perdure" = dontDistribute super."perdure"; + "period" = dontDistribute super."period"; + "perm" = dontDistribute super."perm"; + "permutation" = dontDistribute super."permutation"; + "permute" = dontDistribute super."permute"; + "persist2er" = dontDistribute super."persist2er"; + "persistable-record" = dontDistribute super."persistable-record"; + "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-equivalence" = dontDistribute super."persistent-equivalence"; + "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; + "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; + "persistent-iproute" = dontDistribute super."persistent-iproute"; + "persistent-map" = dontDistribute super."persistent-map"; + "persistent-odbc" = dontDistribute super."persistent-odbc"; + "persistent-protobuf" = dontDistribute super."persistent-protobuf"; + "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; + "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-vector" = dontDistribute super."persistent-vector"; + "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; + "persona" = dontDistribute super."persona"; + "persona-idp" = dontDistribute super."persona-idp"; + "pesca" = dontDistribute super."pesca"; + "peyotls" = dontDistribute super."peyotls"; + "peyotls-codec" = dontDistribute super."peyotls-codec"; + "pez" = dontDistribute super."pez"; + "pg-harness" = dontDistribute super."pg-harness"; + "pg-harness-client" = dontDistribute super."pg-harness-client"; + "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pgdl" = dontDistribute super."pgdl"; + "pgm" = dontDistribute super."pgm"; + "pgsql-simple" = dontDistribute super."pgsql-simple"; + "pgstream" = dontDistribute super."pgstream"; + "phasechange" = dontDistribute super."phasechange"; + "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; + "phone-numbers" = dontDistribute super."phone-numbers"; + "phone-push" = dontDistribute super."phone-push"; + "phonetic-code" = dontDistribute super."phonetic-code"; + "phooey" = dontDistribute super."phooey"; + "photoname" = dontDistribute super."photoname"; + "phraskell" = dontDistribute super."phraskell"; + "phybin" = dontDistribute super."phybin"; + "pi-calculus" = dontDistribute super."pi-calculus"; + "pia-forward" = dontDistribute super."pia-forward"; + "pianola" = dontDistribute super."pianola"; + "picologic" = dontDistribute super."picologic"; + "picosat" = dontDistribute super."picosat"; + "piet" = dontDistribute super."piet"; + "piki" = dontDistribute super."piki"; + "pinboard" = dontDistribute super."pinboard"; + "pinchot" = doDistribute super."pinchot_0_6_0_0"; + "pipe-enumerator" = dontDistribute super."pipe-enumerator"; + "pipeclip" = dontDistribute super."pipeclip"; + "pipes-async" = dontDistribute super."pipes-async"; + "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-bzip" = dontDistribute super."pipes-bzip"; + "pipes-cacophony" = doDistribute super."pipes-cacophony_0_1_3"; + "pipes-cellular" = dontDistribute super."pipes-cellular"; + "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; + "pipes-cereal" = dontDistribute super."pipes-cereal"; + "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-conduit" = dontDistribute super."pipes-conduit"; + "pipes-core" = dontDistribute super."pipes-core"; + "pipes-courier" = dontDistribute super."pipes-courier"; + "pipes-errors" = dontDistribute super."pipes-errors"; + "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-files" = dontDistribute super."pipes-files"; + "pipes-interleave" = dontDistribute super."pipes-interleave"; + "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-network-tls" = dontDistribute super."pipes-network-tls"; + "pipes-p2p" = dontDistribute super."pipes-p2p"; + "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; + "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; + "pipes-vector" = dontDistribute super."pipes-vector"; + "pipes-websockets" = dontDistribute super."pipes-websockets"; + "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; + "pipes-zlib" = dontDistribute super."pipes-zlib"; + "pisigma" = dontDistribute super."pisigma"; + "pit" = dontDistribute super."pit"; + "pitchtrack" = dontDistribute super."pitchtrack"; + "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pkcs1" = dontDistribute super."pkcs1"; + "pkcs7" = dontDistribute super."pkcs7"; + "pkggraph" = dontDistribute super."pkggraph"; + "pktree" = dontDistribute super."pktree"; + "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; + "planar-graph" = dontDistribute super."planar-graph"; + "plat" = dontDistribute super."plat"; + "playlists" = dontDistribute super."playlists"; + "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; + "plivo" = dontDistribute super."plivo"; + "plot-lab" = dontDistribute super."plot-lab"; + "plotfont" = dontDistribute super."plotfont"; + "plotserver-api" = dontDistribute super."plotserver-api"; + "plugins" = dontDistribute super."plugins"; + "plugins-auto" = dontDistribute super."plugins-auto"; + "plugins-multistage" = dontDistribute super."plugins-multistage"; + "plumbers" = dontDistribute super."plumbers"; + "ply-loader" = dontDistribute super."ply-loader"; + "png-file" = dontDistribute super."png-file"; + "pngload" = dontDistribute super."pngload"; + "pngload-fixed" = dontDistribute super."pngload-fixed"; + "pnm" = dontDistribute super."pnm"; + "pocket-dns" = dontDistribute super."pocket-dns"; + "pointfree" = dontDistribute super."pointfree"; + "pointful" = dontDistribute super."pointful"; + "pointless-fun" = dontDistribute super."pointless-fun"; + "pointless-haskell" = dontDistribute super."pointless-haskell"; + "pointless-lenses" = dontDistribute super."pointless-lenses"; + "pointless-rewrite" = dontDistribute super."pointless-rewrite"; + "poker-eval" = dontDistribute super."poker-eval"; + "pokitdok" = dontDistribute super."pokitdok"; + "polar" = dontDistribute super."polar"; + "polar-configfile" = dontDistribute super."polar-configfile"; + "polar-shader" = dontDistribute super."polar-shader"; + "polh-lexicon" = dontDistribute super."polh-lexicon"; + "polimorf" = dontDistribute super."polimorf"; + "poll" = dontDistribute super."poll"; + "poly-control" = dontDistribute super."poly-control"; + "polyToMonoid" = dontDistribute super."polyToMonoid"; + "polymap" = dontDistribute super."polymap"; + "polynom" = dontDistribute super."polynom"; + "polynomial" = dontDistribute super."polynomial"; + "polynomials-bernstein" = dontDistribute super."polynomials-bernstein"; + "polyseq" = dontDistribute super."polyseq"; + "polysoup" = dontDistribute super."polysoup"; + "polytypeable" = dontDistribute super."polytypeable"; + "polytypeable-utils" = dontDistribute super."polytypeable-utils"; + "ponder" = dontDistribute super."ponder"; + "pong-server" = dontDistribute super."pong-server"; + "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver"; + "pontarius-xmpp" = dontDistribute super."pontarius-xmpp"; + "pontarius-xpmn" = dontDistribute super."pontarius-xpmn"; + "pony" = dontDistribute super."pony"; + "pool" = dontDistribute super."pool"; + "pool-conduit" = dontDistribute super."pool-conduit"; + "pooled-io" = dontDistribute super."pooled-io"; + "pop3-client" = dontDistribute super."pop3-client"; + "popenhs" = dontDistribute super."popenhs"; + "poppler" = dontDistribute super."poppler"; + "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache"; + "portable-lines" = dontDistribute super."portable-lines"; + "portaudio" = dontDistribute super."portaudio"; + "porte" = dontDistribute super."porte"; + "porter" = dontDistribute super."porter"; + "ports" = dontDistribute super."ports"; + "ports-tools" = dontDistribute super."ports-tools"; + "positive" = dontDistribute super."positive"; + "posix-acl" = dontDistribute super."posix-acl"; + "posix-escape" = dontDistribute super."posix-escape"; + "posix-filelock" = dontDistribute super."posix-filelock"; + "posix-paths" = dontDistribute super."posix-paths"; + "posix-pty" = dontDistribute super."posix-pty"; + "posix-timer" = dontDistribute super."posix-timer"; + "posix-waitpid" = dontDistribute super."posix-waitpid"; + "possible" = dontDistribute super."possible"; + "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_7_9"; + "postgresql-config" = dontDistribute super."postgresql-config"; + "postgresql-connector" = dontDistribute super."postgresql-connector"; + "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; + "postgresql-cube" = dontDistribute super."postgresql-cube"; + "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; + "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration"; + "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; + "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; + "postgresql-typed" = dontDistribute super."postgresql-typed"; + "postgrest" = dontDistribute super."postgrest"; + "postie" = dontDistribute super."postie"; + "postmark" = dontDistribute super."postmark"; + "postmaster" = dontDistribute super."postmaster"; + "potato-tool" = dontDistribute super."potato-tool"; + "potrace" = dontDistribute super."potrace"; + "potrace-diagrams" = dontDistribute super."potrace-diagrams"; + "powermate" = dontDistribute super."powermate"; + "powerpc" = dontDistribute super."powerpc"; + "ppm" = dontDistribute super."ppm"; + "pqc" = dontDistribute super."pqc"; + "pqueue-mtl" = dontDistribute super."pqueue-mtl"; + "practice-room" = dontDistribute super."practice-room"; + "precis" = dontDistribute super."precis"; + "predicates" = dontDistribute super."predicates"; + "prednote-test" = dontDistribute super."prednote-test"; + "prefork" = dontDistribute super."prefork"; + "pregame" = dontDistribute super."pregame"; + "prelude-edsl" = dontDistribute super."prelude-edsl"; + "prelude-generalize" = dontDistribute super."prelude-generalize"; + "prelude-plus" = dontDistribute super."prelude-plus"; + "prelude-prime" = dontDistribute super."prelude-prime"; + "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "preprocess-haskell" = dontDistribute super."preprocess-haskell"; + "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = dontDistribute super."present"; + "press" = dontDistribute super."press"; + "presto-hdbc" = dontDistribute super."presto-hdbc"; + "prettify" = dontDistribute super."prettify"; + "pretty-compact" = dontDistribute super."pretty-compact"; + "pretty-error" = dontDistribute super."pretty-error"; + "pretty-hex" = dontDistribute super."pretty-hex"; + "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-sop" = dontDistribute super."pretty-sop"; + "pretty-tree" = dontDistribute super."pretty-tree"; + "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-uniq" = dontDistribute super."prim-uniq"; + "primitive-simd" = dontDistribute super."primitive-simd"; + "primula-board" = dontDistribute super."primula-board"; + "primula-bot" = dontDistribute super."primula-bot"; + "print-debugger" = dontDistribute super."print-debugger"; + "printf-mauke" = dontDistribute super."printf-mauke"; + "printxosd" = dontDistribute super."printxosd"; + "priority-queue" = dontDistribute super."priority-queue"; + "priority-sync" = dontDistribute super."priority-sync"; + "privileged-concurrency" = dontDistribute super."privileged-concurrency"; + "prizm" = dontDistribute super."prizm"; + "probability" = dontDistribute super."probability"; + "probable" = dontDistribute super."probable"; + "proc" = dontDistribute super."proc"; + "process-conduit" = dontDistribute super."process-conduit"; + "process-extras" = doDistribute super."process-extras_0_3_3_7"; + "process-iterio" = dontDistribute super."process-iterio"; + "process-leksah" = dontDistribute super."process-leksah"; + "process-listlike" = dontDistribute super."process-listlike"; + "process-progress" = dontDistribute super."process-progress"; + "process-qq" = dontDistribute super."process-qq"; + "process-streaming" = dontDistribute super."process-streaming"; + "processing" = dontDistribute super."processing"; + "processor-creative-kit" = dontDistribute super."processor-creative-kit"; + "procrastinating-structure" = dontDistribute super."procrastinating-structure"; + "procrastinating-variable" = dontDistribute super."procrastinating-variable"; + "procstat" = dontDistribute super."procstat"; + "proctest" = dontDistribute super."proctest"; + "product-profunctors" = doDistribute super."product-profunctors_0_6_3_1"; + "prof2dot" = dontDistribute super."prof2dot"; + "prof2pretty" = dontDistribute super."prof2pretty"; + "profiteur" = dontDistribute super."profiteur"; + "progress" = dontDistribute super."progress"; + "progressbar" = dontDistribute super."progressbar"; + "progression" = dontDistribute super."progression"; + "progressive" = dontDistribute super."progressive"; + "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; + "projection" = dontDistribute super."projection"; + "prolog" = dontDistribute super."prolog"; + "prolog-graph" = dontDistribute super."prolog-graph"; + "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; + "promise" = dontDistribute super."promise"; + "promises" = dontDistribute super."promises"; + "propane" = dontDistribute super."propane"; + "propellor" = dontDistribute super."propellor"; + "properties" = dontDistribute super."properties"; + "property-list" = dontDistribute super."property-list"; + "proplang" = dontDistribute super."proplang"; + "props" = dontDistribute super."props"; + "prosper" = dontDistribute super."prosper"; + "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers-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"; + "proxied" = dontDistribute super."proxied"; + "proxy-kindness" = dontDistribute super."proxy-kindness"; + "psc-ide" = doDistribute super."psc-ide_0_5_0"; + "pseudo-boolean" = dontDistribute super."pseudo-boolean"; + "pseudo-trie" = dontDistribute super."pseudo-trie"; + "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; + "pub" = dontDistribute super."pub"; + "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; + "publicsuffixlist" = dontDistribute super."publicsuffixlist"; + "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate"; + "pubnub" = dontDistribute super."pubnub"; + "pubsub" = dontDistribute super."pubsub"; + "puffytools" = dontDistribute super."puffytools"; + "pugixml" = dontDistribute super."pugixml"; + "pugs-DrIFT" = dontDistribute super."pugs-DrIFT"; + "pugs-HsSyck" = dontDistribute super."pugs-HsSyck"; + "pugs-compat" = dontDistribute super."pugs-compat"; + "pugs-hsregex" = dontDistribute super."pugs-hsregex"; + "pulse-simple" = dontDistribute super."pulse-simple"; + "punkt" = dontDistribute super."punkt"; + "punycode" = dontDistribute super."punycode"; + "puppetresources" = dontDistribute super."puppetresources"; + "pure-fft" = dontDistribute super."pure-fft"; + "pure-priority-queue" = dontDistribute super."pure-priority-queue"; + "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; + "pure-zlib" = dontDistribute super."pure-zlib"; + "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "push-notify" = dontDistribute super."push-notify"; + "push-notify-ccs" = dontDistribute super."push-notify-ccs"; + "push-notify-general" = dontDistribute super."push-notify-general"; + "pusher-haskell" = dontDistribute super."pusher-haskell"; + "pushme" = dontDistribute super."pushme"; + "putlenses" = dontDistribute super."putlenses"; + "puzzle-draw" = dontDistribute super."puzzle-draw"; + "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline"; + "pvd" = dontDistribute super."pvd"; + "pwstore-cli" = dontDistribute super."pwstore-cli"; + "pxsl-tools" = dontDistribute super."pxsl-tools"; + "pyffi" = dontDistribute super."pyffi"; + "pyfi" = dontDistribute super."pyfi"; + "python-pickle" = dontDistribute super."python-pickle"; + "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator"; + "qd" = dontDistribute super."qd"; + "qd-vec" = dontDistribute super."qd-vec"; + "qed" = dontDistribute super."qed"; + "qhull-simple" = dontDistribute super."qhull-simple"; + "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; + "quadratic-irrational" = dontDistribute super."quadratic-irrational"; + "quantfin" = dontDistribute super."quantfin"; + "quantities" = dontDistribute super."quantities"; + "quantum-arrow" = dontDistribute super."quantum-arrow"; + "qudb" = dontDistribute super."qudb"; + "quenya-verb" = dontDistribute super."quenya-verb"; + "querystring-pickle" = dontDistribute super."querystring-pickle"; + "queue" = dontDistribute super."queue"; + "queuelike" = dontDistribute super."queuelike"; + "quick-generator" = dontDistribute super."quick-generator"; + "quick-schema" = dontDistribute super."quick-schema"; + "quickcheck-poly" = dontDistribute super."quickcheck-poly"; + "quickcheck-properties" = dontDistribute super."quickcheck-properties"; + "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; + "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad"; + "quickcheck-regex" = dontDistribute super."quickcheck-regex"; + "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng"; + "quickcheck-rematch" = dontDistribute super."quickcheck-rematch"; + "quickcheck-script" = dontDistribute super."quickcheck-script"; + "quickcheck-simple" = dontDistribute super."quickcheck-simple"; + "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver"; + "quicklz" = dontDistribute super."quicklz"; + "quickpull" = dontDistribute super."quickpull"; + "quickset" = dontDistribute super."quickset"; + "quickspec" = dontDistribute super."quickspec"; + "quicktest" = dontDistribute super."quicktest"; + "quickwebapp" = dontDistribute super."quickwebapp"; + "quiver" = dontDistribute super."quiver"; + "quiver-bytestring" = dontDistribute super."quiver-bytestring"; + "quiver-cell" = dontDistribute super."quiver-cell"; + "quiver-csv" = dontDistribute super."quiver-csv"; + "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-http" = dontDistribute super."quiver-http"; + "quoridor-hs" = dontDistribute super."quoridor-hs"; + "qux" = dontDistribute super."qux"; + "rabocsv2qif" = dontDistribute super."rabocsv2qif"; + "rad" = dontDistribute super."rad"; + "radian" = dontDistribute super."radian"; + "radium" = dontDistribute super."radium"; + "radium-formula-parser" = dontDistribute super."radium-formula-parser"; + "radix" = dontDistribute super."radix"; + "rados-haskell" = dontDistribute super."rados-haskell"; + "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; + "rake" = dontDistribute super."rake"; + "rakhana" = dontDistribute super."rakhana"; + "ralist" = dontDistribute super."ralist"; + "rallod" = dontDistribute super."rallod"; + "raml" = dontDistribute super."raml"; + "rand-vars" = dontDistribute super."rand-vars"; + "randfile" = dontDistribute super."randfile"; + "random-access-list" = dontDistribute super."random-access-list"; + "random-derive" = dontDistribute super."random-derive"; + "random-eff" = dontDistribute super."random-eff"; + "random-effin" = dontDistribute super."random-effin"; + "random-extras" = dontDistribute super."random-extras"; + "random-hypergeometric" = dontDistribute super."random-hypergeometric"; + "random-stream" = dontDistribute super."random-stream"; + "random-tree" = dontDistribute super."random-tree"; + "random-variates" = dontDistribute super."random-variates"; + "randomgen" = dontDistribute super."randomgen"; + "randproc" = dontDistribute super."randproc"; + "randsolid" = dontDistribute super."randsolid"; + "range-space" = dontDistribute super."range-space"; + "rangemin" = dontDistribute super."rangemin"; + "ranges" = dontDistribute super."ranges"; + "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; + "rate-limit" = dontDistribute super."rate-limit"; + "ratel" = dontDistribute super."ratel"; + "ratel-wai" = dontDistribute super."ratel-wai"; + "ratio-int" = dontDistribute super."ratio-int"; + "raven-haskell" = dontDistribute super."raven-haskell"; + "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "rawstring-qm" = dontDistribute super."rawstring-qm"; + "razom-text-util" = dontDistribute super."razom-text-util"; + "rbr" = dontDistribute super."rbr"; + "rclient" = dontDistribute super."rclient"; + "rcu" = dontDistribute super."rcu"; + "rdf4h" = dontDistribute super."rdf4h"; + "rdioh" = dontDistribute super."rdioh"; + "rdtsc" = dontDistribute super."rdtsc"; + "rdtsc-enolan" = dontDistribute super."rdtsc-enolan"; + "re2" = dontDistribute super."re2"; + "react-flux" = dontDistribute super."react-flux"; + "react-haskell" = dontDistribute super."react-haskell"; + "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"; + "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"; + "reedsolomon" = dontDistribute super."reedsolomon"; + "reenact" = dontDistribute super."reenact"; + "reexport-crypto-random" = dontDistribute super."reexport-crypto-random"; + "ref" = dontDistribute super."ref"; + "ref-mtl" = dontDistribute super."ref-mtl"; + "ref-tf" = dontDistribute super."ref-tf"; + "refcount" = dontDistribute super."refcount"; + "reference" = dontDistribute super."reference"; + "references" = dontDistribute super."references"; + "refh" = dontDistribute super."refh"; + "refined" = dontDistribute super."refined"; + "reflection-extras" = dontDistribute super."reflection-extras"; + "reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; + "reflex" = dontDistribute super."reflex"; + "reflex-animation" = dontDistribute super."reflex-animation"; + "reflex-dom" = dontDistribute super."reflex-dom"; + "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; + "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; + "regex-deriv" = dontDistribute super."regex-deriv"; + "regex-dfa" = dontDistribute super."regex-dfa"; + "regex-easy" = dontDistribute super."regex-easy"; + "regex-genex" = dontDistribute super."regex-genex"; + "regex-parsec" = dontDistribute super."regex-parsec"; + "regex-pderiv" = dontDistribute super."regex-pderiv"; + "regex-posix-unittest" = dontDistribute super."regex-posix-unittest"; + "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes"; + "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter"; + "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; + "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; + "regex-tre" = dontDistribute super."regex-tre"; + "regex-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"; + "regress" = dontDistribute super."regress"; + "regular" = dontDistribute super."regular"; + "regular-extras" = dontDistribute super."regular-extras"; + "regular-web" = dontDistribute super."regular-web"; + "regular-xmlpickler" = dontDistribute super."regular-xmlpickler"; + "reheat" = dontDistribute super."reheat"; + "rehoo" = dontDistribute super."rehoo"; + "rei" = dontDistribute super."rei"; + "reified-records" = dontDistribute super."reified-records"; + "reify" = dontDistribute super."reify"; + "relacion" = dontDistribute super."relacion"; + "relation" = dontDistribute super."relation"; + "relational-postgresql8" = dontDistribute super."relational-postgresql8"; + "relational-query" = dontDistribute super."relational-query"; + "relational-query-HDBC" = dontDistribute super."relational-query-HDBC"; + "relational-record" = dontDistribute super."relational-record"; + "relational-record-examples" = dontDistribute super."relational-record-examples"; + "relational-schemas" = dontDistribute super."relational-schemas"; + "relative-date" = dontDistribute super."relative-date"; + "relit" = dontDistribute super."relit"; + "rematch" = dontDistribute super."rematch"; + "rematch-text" = dontDistribute super."rematch-text"; + "remote" = dontDistribute super."remote"; + "remote-debugger" = dontDistribute super."remote-debugger"; + "remote-json" = dontDistribute super."remote-json"; + "remote-json-client" = dontDistribute super."remote-json-client"; + "remote-json-server" = dontDistribute super."remote-json-server"; + "remote-monad" = dontDistribute super."remote-monad"; + "remotion" = dontDistribute super."remotion"; + "renderable" = dontDistribute super."renderable"; + "reord" = dontDistribute super."reord"; + "reorderable" = dontDistribute super."reorderable"; + "repa-array" = dontDistribute super."repa-array"; + "repa-bytestring" = dontDistribute super."repa-bytestring"; + "repa-convert" = dontDistribute super."repa-convert"; + "repa-eval" = dontDistribute super."repa-eval"; + "repa-examples" = dontDistribute super."repa-examples"; + "repa-fftw" = dontDistribute super."repa-fftw"; + "repa-flow" = dontDistribute super."repa-flow"; + "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; + "repa-plugin" = dontDistribute super."repa-plugin"; + "repa-scalar" = dontDistribute super."repa-scalar"; + "repa-series" = dontDistribute super."repa-series"; + "repa-sndfile" = dontDistribute super."repa-sndfile"; + "repa-stream" = dontDistribute super."repa-stream"; + "repa-v4l2" = dontDistribute super."repa-v4l2"; + "repl" = dontDistribute super."repl"; + "repl-toolkit" = dontDistribute super."repl-toolkit"; + "repline" = dontDistribute super."repline"; + "repo-based-blog" = dontDistribute super."repo-based-blog"; + "repr" = dontDistribute super."repr"; + "repr-tree-syb" = dontDistribute super."repr-tree-syb"; + "representable-functors" = dontDistribute super."representable-functors"; + "representable-profunctors" = dontDistribute super."representable-profunctors"; + "representable-tries" = dontDistribute super."representable-tries"; + "request-monad" = dontDistribute super."request-monad"; + "reserve" = dontDistribute super."reserve"; + "resistor-cube" = dontDistribute super."resistor-cube"; + "resource-effect" = dontDistribute super."resource-effect"; + "resource-embed" = dontDistribute super."resource-embed"; + "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; + "resource-pool-monad" = dontDistribute super."resource-pool-monad"; + "resource-simple" = dontDistribute super."resource-simple"; + "respond" = dontDistribute super."respond"; + "rest-core" = doDistribute super."rest-core_0_37"; + "rest-example" = dontDistribute super."rest-example"; + "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "restful-snap" = dontDistribute super."restful-snap"; + "restricted-workers" = dontDistribute super."restricted-workers"; + "restyle" = dontDistribute super."restyle"; + "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb-model" = dontDistribute super."rethinkdb-model"; + "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retryer" = dontDistribute super."retryer"; + "revdectime" = dontDistribute super."revdectime"; + "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-geocoding" = dontDistribute super."reverse-geocoding"; + "reversi" = dontDistribute super."reversi"; + "rewrite" = dontDistribute super."rewrite"; + "rewriting" = dontDistribute super."rewriting"; + "rex" = dontDistribute super."rex"; + "rezoom" = dontDistribute super."rezoom"; + "rfc3339" = dontDistribute super."rfc3339"; + "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; + "richreports" = dontDistribute super."richreports"; + "riemann" = dontDistribute super."riemann"; + "riff" = dontDistribute super."riff"; + "ring-buffer" = dontDistribute super."ring-buffer"; + "riot" = dontDistribute super."riot"; + "ripple" = dontDistribute super."ripple"; + "ripple-federation" = dontDistribute super."ripple-federation"; + "risc386" = dontDistribute super."risc386"; + "rivers" = dontDistribute super."rivers"; + "rivet" = dontDistribute super."rivet"; + "rivet-core" = dontDistribute super."rivet-core"; + "rivet-migration" = dontDistribute super."rivet-migration"; + "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; + "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; + "rmonad" = dontDistribute super."rmonad"; + "rncryptor" = dontDistribute super."rncryptor"; + "rng-utils" = dontDistribute super."rng-utils"; + "robin" = dontDistribute super."robin"; + "robot" = dontDistribute super."robot"; + "robots-txt" = dontDistribute super."robots-txt"; + "rocksdb-haskell" = dontDistribute super."rocksdb-haskell"; + "roguestar" = dontDistribute super."roguestar"; + "roguestar-engine" = dontDistribute super."roguestar-engine"; + "roguestar-gl" = dontDistribute super."roguestar-gl"; + "roguestar-glut" = dontDistribute super."roguestar-glut"; + "rollbar" = dontDistribute super."rollbar"; + "roller" = dontDistribute super."roller"; + "rolling-queue" = dontDistribute super."rolling-queue"; + "roman-numerals" = dontDistribute super."roman-numerals"; + "romkan" = dontDistribute super."romkan"; + "roots" = dontDistribute super."roots"; + "rope" = dontDistribute super."rope"; + "rosa" = dontDistribute super."rosa"; + "rose-trie" = dontDistribute super."rose-trie"; + "roshask" = dontDistribute super."roshask"; + "rosso" = dontDistribute super."rosso"; + "rot13" = dontDistribute super."rot13"; + "rotating-log" = dontDistribute super."rotating-log"; + "rounding" = dontDistribute super."rounding"; + "roundtrip" = dontDistribute super."roundtrip"; + "roundtrip-aeson" = dontDistribute super."roundtrip-aeson"; + "roundtrip-string" = dontDistribute super."roundtrip-string"; + "roundtrip-xml" = dontDistribute super."roundtrip-xml"; + "route-generator" = dontDistribute super."route-generator"; + "route-planning" = dontDistribute super."route-planning"; + "rowrecord" = dontDistribute super."rowrecord"; + "rpc" = dontDistribute super."rpc"; + "rpc-framework" = dontDistribute super."rpc-framework"; + "rpf" = dontDistribute super."rpf"; + "rpm" = dontDistribute super."rpm"; + "rsagl" = dontDistribute super."rsagl"; + "rsagl-frp" = dontDistribute super."rsagl-frp"; + "rsagl-math" = dontDistribute super."rsagl-math"; + "rspp" = dontDistribute super."rspp"; + "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; + "rss2irc" = dontDistribute super."rss2irc"; + "rtcm" = dontDistribute super."rtcm"; + "rtld" = dontDistribute super."rtld"; + "rtlsdr" = dontDistribute super."rtlsdr"; + "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; + "rtorrent-state" = dontDistribute super."rtorrent-state"; + "rubberband" = dontDistribute super."rubberband"; + "ruby-marshal" = dontDistribute super."ruby-marshal"; + "ruby-qq" = dontDistribute super."ruby-qq"; + "ruff" = dontDistribute super."ruff"; + "ruler" = dontDistribute super."ruler"; + "ruler-core" = dontDistribute super."ruler-core"; + "rungekutta" = dontDistribute super."rungekutta"; + "runghc" = dontDistribute super."runghc"; + "rwlock" = dontDistribute super."rwlock"; + "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; + "safe-access" = dontDistribute super."safe-access"; + "safe-failure" = dontDistribute super."safe-failure"; + "safe-failure-cme" = dontDistribute super."safe-failure-cme"; + "safe-freeze" = dontDistribute super."safe-freeze"; + "safe-globals" = dontDistribute super."safe-globals"; + "safe-lazy-io" = dontDistribute super."safe-lazy-io"; + "safe-length" = dontDistribute super."safe-length"; + "safe-plugins" = dontDistribute super."safe-plugins"; + "safe-printf" = dontDistribute super."safe-printf"; + "safeint" = dontDistribute super."safeint"; + "safer-file-handles" = dontDistribute super."safer-file-handles"; + "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; + "safer-file-handles-text" = dontDistribute super."safer-file-handles-text"; + "saferoute" = dontDistribute super."saferoute"; + "sai-shape-syb" = dontDistribute super."sai-shape-syb"; + "saltine" = dontDistribute super."saltine"; + "saltine-quickcheck" = dontDistribute super."saltine-quickcheck"; + "salvia" = dontDistribute super."salvia"; + "salvia-demo" = dontDistribute super."salvia-demo"; + "salvia-extras" = dontDistribute super."salvia-extras"; + "salvia-protocol" = dontDistribute super."salvia-protocol"; + "salvia-sessions" = dontDistribute super."salvia-sessions"; + "salvia-websocket" = dontDistribute super."salvia-websocket"; + "sample-frame" = dontDistribute super."sample-frame"; + "sample-frame-np" = dontDistribute super."sample-frame-np"; + "sampling" = dontDistribute super."sampling"; + "samtools" = dontDistribute super."samtools"; + "samtools-conduit" = dontDistribute super."samtools-conduit"; + "samtools-enumerator" = dontDistribute super."samtools-enumerator"; + "samtools-iteratee" = dontDistribute super."samtools-iteratee"; + "sandlib" = dontDistribute super."sandlib"; + "sarasvati" = dontDistribute super."sarasvati"; + "sasl" = dontDistribute super."sasl"; + "sat" = dontDistribute super."sat"; + "sat-micro-hs" = dontDistribute super."sat-micro-hs"; + "satchmo" = dontDistribute super."satchmo"; + "satchmo-backends" = dontDistribute super."satchmo-backends"; + "satchmo-examples" = dontDistribute super."satchmo-examples"; + "satchmo-funsat" = dontDistribute super."satchmo-funsat"; + "satchmo-minisat" = dontDistribute super."satchmo-minisat"; + "satchmo-toysat" = dontDistribute super."satchmo-toysat"; + "sbp" = dontDistribute super."sbp"; + "sbvPlugin" = dontDistribute super."sbvPlugin"; + "sc3-rdu" = dontDistribute super."sc3-rdu"; + "scalable-server" = dontDistribute super."scalable-server"; + "scaleimage" = dontDistribute super."scaleimage"; + "scalp-webhooks" = dontDistribute super."scalp-webhooks"; + "scalpel" = doDistribute super."scalpel_0_2_1_1"; + "scan" = dontDistribute super."scan"; + "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scat" = dontDistribute super."scat"; + "scc" = dontDistribute super."scc"; + "scenegraph" = dontDistribute super."scenegraph"; + "scgi" = dontDistribute super."scgi"; + "schedevr" = dontDistribute super."schedevr"; + "schedule-planner" = dontDistribute super."schedule-planner"; + "schedyield" = dontDistribute super."schedyield"; + "scholdoc" = dontDistribute super."scholdoc"; + "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc"; + "scholdoc-texmath" = dontDistribute super."scholdoc-texmath"; + "scholdoc-types" = dontDistribute super."scholdoc-types"; + "schonfinkeling" = dontDistribute super."schonfinkeling"; + "sci-ratio" = dontDistribute super."sci-ratio"; + "science-constants" = dontDistribute super."science-constants"; + "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scion" = dontDistribute super."scion"; + "scion-browser" = dontDistribute super."scion-browser"; + "scons2dot" = dontDistribute super."scons2dot"; + "scope" = dontDistribute super."scope"; + "scope-cairo" = dontDistribute super."scope-cairo"; + "scottish" = dontDistribute super."scottish"; + "scotty" = doDistribute super."scotty_0_10_2"; + "scotty-binding-play" = dontDistribute super."scotty-binding-play"; + "scotty-blaze" = dontDistribute super."scotty-blaze"; + "scotty-cookie" = dontDistribute super."scotty-cookie"; + "scotty-fay" = dontDistribute super."scotty-fay"; + "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-rest" = dontDistribute super."scotty-rest"; + "scotty-session" = dontDistribute super."scotty-session"; + "scotty-tls" = dontDistribute super."scotty-tls"; + "scp-streams" = dontDistribute super."scp-streams"; + "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrobble" = dontDistribute super."scrobble"; + "scroll" = dontDistribute super."scroll"; + "scrz" = dontDistribute super."scrz"; + "scyther-proof" = dontDistribute super."scyther-proof"; + "sde-solver" = dontDistribute super."sde-solver"; + "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; + "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; + "sdl2-compositor" = dontDistribute super."sdl2-compositor"; + "sdl2-image" = dontDistribute super."sdl2-image"; + "sdl2-ttf" = dontDistribute super."sdl2-ttf"; + "sdnv" = dontDistribute super."sdnv"; + "sdr" = dontDistribute super."sdr"; + "seacat" = dontDistribute super."seacat"; + "seal-module" = dontDistribute super."seal-module"; + "search" = dontDistribute super."search"; + "sec" = dontDistribute super."sec"; + "secdh" = dontDistribute super."secdh"; + "seclib" = dontDistribute super."seclib"; + "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; + "secp256k1" = dontDistribute super."secp256k1"; + "secret-santa" = dontDistribute super."secret-santa"; + "secret-sharing" = dontDistribute super."secret-sharing"; + "secrm" = dontDistribute super."secrm"; + "secure-sockets" = dontDistribute super."secure-sockets"; + "sednaDBXML" = dontDistribute super."sednaDBXML"; + "select" = dontDistribute super."select"; + "selectors" = dontDistribute super."selectors"; + "selenium" = dontDistribute super."selenium"; + "selenium-server" = dontDistribute super."selenium-server"; + "selfrestart" = dontDistribute super."selfrestart"; + "selinux" = dontDistribute super."selinux"; + "semaphore-plus" = dontDistribute super."semaphore-plus"; + "semi-iso" = dontDistribute super."semi-iso"; + "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; + "semigroups-actions" = dontDistribute super."semigroups-actions"; + "semiring" = dontDistribute super."semiring"; + "semiring-simple" = dontDistribute super."semiring-simple"; + "semver-range" = dontDistribute super."semver-range"; + "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; + "sensenet" = dontDistribute super."sensenet"; + "sentry" = dontDistribute super."sentry"; + "senza" = dontDistribute super."senza"; + "separated" = dontDistribute super."separated"; + "seqaid" = dontDistribute super."seqaid"; + "seqid" = dontDistribute super."seqid"; + "seqid-streams" = dontDistribute super."seqid-streams"; + "seqloc-datafiles" = dontDistribute super."seqloc-datafiles"; + "sequence" = dontDistribute super."sequence"; + "sequent-core" = dontDistribute super."sequent-core"; + "sequential-index" = dontDistribute super."sequential-index"; + "sequor" = dontDistribute super."sequor"; + "serial" = dontDistribute super."serial"; + "serial-test-generators" = dontDistribute super."serial-test-generators"; + "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; + "serv-wai" = dontDistribute super."serv-wai"; + "servant-cassava" = dontDistribute super."servant-cassava"; + "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-lucid" = dontDistribute super."servant-lucid"; + "servant-mock" = dontDistribute super."servant-mock"; + "servant-pandoc" = dontDistribute super."servant-pandoc"; + "servant-pool" = dontDistribute super."servant-pool"; + "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-response" = dontDistribute super."servant-response"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; + "sessions" = dontDistribute super."sessions"; + "set-cover" = dontDistribute super."set-cover"; + "set-extra" = doDistribute super."set-extra_1_3_2"; + "set-with" = dontDistribute super."set-with"; + "setdown" = dontDistribute super."setdown"; + "setgame" = dontDistribute super."setgame"; + "setops" = dontDistribute super."setops"; + "setters" = dontDistribute super."setters"; + "settings" = dontDistribute super."settings"; + "sexp" = dontDistribute super."sexp"; + "sexp-grammar" = dontDistribute super."sexp-grammar"; + "sexp-show" = dontDistribute super."sexp-show"; + "sexpr" = dontDistribute super."sexpr"; + "sext" = dontDistribute super."sext"; + "sfml-audio" = dontDistribute super."sfml-audio"; + "sfmt" = dontDistribute super."sfmt"; + "sgd" = dontDistribute super."sgd"; + "sgf" = dontDistribute super."sgf"; + "sgrep" = dontDistribute super."sgrep"; + "sha-streams" = dontDistribute super."sha-streams"; + "shadower" = dontDistribute super."shadower"; + "shadowsocks" = dontDistribute super."shadowsocks"; + "shady-gen" = dontDistribute super."shady-gen"; + "shady-graphics" = dontDistribute super."shady-graphics"; + "shake-cabal-build" = dontDistribute super."shake-cabal-build"; + "shake-extras" = dontDistribute super."shake-extras"; + "shake-minify" = dontDistribute super."shake-minify"; + "shake-pack" = dontDistribute super."shake-pack"; + "shake-persist" = dontDistribute super."shake-persist"; + "shaker" = dontDistribute super."shaker"; + "shakespeare-babel" = dontDistribute super."shakespeare-babel"; + "shakespeare-css" = dontDistribute super."shakespeare-css"; + "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; + "shakespeare-js" = dontDistribute super."shakespeare-js"; + "shakespeare-text" = dontDistribute super."shakespeare-text"; + "shana" = dontDistribute super."shana"; + "shapefile" = dontDistribute super."shapefile"; + "shapely-data" = dontDistribute super."shapely-data"; + "sharc-timbre" = dontDistribute super."sharc-timbre"; + "shared-buffer" = dontDistribute super."shared-buffer"; + "shared-fields" = dontDistribute super."shared-fields"; + "shared-memory" = dontDistribute super."shared-memory"; + "sharedio" = dontDistribute super."sharedio"; + "she" = dontDistribute super."she"; + "shelduck" = dontDistribute super."shelduck"; + "shell-escape" = dontDistribute super."shell-escape"; + "shell-monad" = dontDistribute super."shell-monad"; + "shell-pipe" = dontDistribute super."shell-pipe"; + "shellish" = dontDistribute super."shellish"; + "shellmate" = dontDistribute super."shellmate"; + "shelly-extra" = dontDistribute super."shelly-extra"; + "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" = dontDistribute super."simple-log"; + "simple-log-syslog" = dontDistribute super."simple-log-syslog"; + "simple-neural-networks" = dontDistribute super."simple-neural-networks"; + "simple-nix" = dontDistribute super."simple-nix"; + "simple-observer" = dontDistribute super."simple-observer"; + "simple-pascal" = dontDistribute super."simple-pascal"; + "simple-pipe" = dontDistribute super."simple-pipe"; + "simple-rope" = dontDistribute super."simple-rope"; + "simple-server" = dontDistribute super."simple-server"; + "simple-sessions" = dontDistribute super."simple-sessions"; + "simple-sql-parser" = dontDistribute super."simple-sql-parser"; + "simple-stacked-vm" = dontDistribute super."simple-stacked-vm"; + "simple-tabular" = dontDistribute super."simple-tabular"; + "simple-vec3" = dontDistribute super."simple-vec3"; + "simpleargs" = dontDistribute super."simpleargs"; + "simpleirc" = dontDistribute super."simpleirc"; + "simpleirc-lens" = dontDistribute super."simpleirc-lens"; + "simplenote" = dontDistribute super."simplenote"; + "simpleprelude" = dontDistribute super."simpleprelude"; + "simplesmtpclient" = dontDistribute super."simplesmtpclient"; + "simplessh" = dontDistribute super."simplessh"; + "simplest-sqlite" = dontDistribute super."simplest-sqlite"; + "simplex" = dontDistribute super."simplex"; + "simplex-basic" = dontDistribute super."simplex-basic"; + "simseq" = dontDistribute super."simseq"; + "simtreelo" = dontDistribute super."simtreelo"; + "sindre" = dontDistribute super."sindre"; + "singleton-nats" = dontDistribute super."singleton-nats"; + "sink" = dontDistribute super."sink"; + "sirkel" = dontDistribute super."sirkel"; + "sitemap" = dontDistribute super."sitemap"; + "sized" = dontDistribute super."sized"; + "sized-types" = dontDistribute super."sized-types"; + "sized-vector" = dontDistribute super."sized-vector"; + "sizes" = dontDistribute super."sizes"; + "sjsp" = dontDistribute super."sjsp"; + "skeleton" = dontDistribute super."skeleton"; + "skell" = dontDistribute super."skell"; + "skemmtun" = dontDistribute super."skemmtun"; + "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"; + "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; + "slidemews" = dontDistribute super."slidemews"; + "sloane" = dontDistribute super."sloane"; + "slot-lambda" = dontDistribute super."slot-lambda"; + "sloth" = dontDistribute super."sloth"; + "smallarray" = dontDistribute super."smallarray"; + "smallcheck-laws" = dontDistribute super."smallcheck-laws"; + "smallcheck-lens" = dontDistribute super."smallcheck-lens"; + "smallcheck-series" = dontDistribute super."smallcheck-series"; + "smallpt-hs" = dontDistribute super."smallpt-hs"; + "smallstring" = dontDistribute super."smallstring"; + "smaoin" = dontDistribute super."smaoin"; + "smartGroup" = dontDistribute super."smartGroup"; + "smartcheck" = dontDistribute super."smartcheck"; + "smartconstructor" = dontDistribute super."smartconstructor"; + "smartword" = dontDistribute super."smartword"; + "sme" = dontDistribute super."sme"; + "smt-lib" = dontDistribute super."smt-lib"; + "smtlib2" = dontDistribute super."smtlib2"; + "smtp-mail-ng" = dontDistribute super."smtp-mail-ng"; + "smtp2mta" = dontDistribute super."smtp2mta"; + "smtps-gmail" = dontDistribute super."smtps-gmail"; + "snake-game" = dontDistribute super."snake-game"; + "snap-accept" = dontDistribute super."snap-accept"; + "snap-app" = dontDistribute super."snap-app"; + "snap-auth-cli" = dontDistribute super."snap-auth-cli"; + "snap-blaze" = dontDistribute super."snap-blaze"; + "snap-blaze-clay" = dontDistribute super."snap-blaze-clay"; + "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities"; + "snap-cors" = dontDistribute super."snap-cors"; + "snap-elm" = dontDistribute super."snap-elm"; + "snap-error-collector" = dontDistribute super."snap-error-collector"; + "snap-extras" = dontDistribute super."snap-extras"; + "snap-language" = dontDistribute super."snap-language"; + "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic"; + "snap-loader-static" = dontDistribute super."snap-loader-static"; + "snap-predicates" = dontDistribute super."snap-predicates"; + "snap-testing" = dontDistribute super."snap-testing"; + "snap-utils" = dontDistribute super."snap-utils"; + "snap-web-routes" = dontDistribute super."snap-web-routes"; + "snaplet-acid-state" = dontDistribute super."snaplet-acid-state"; + "snaplet-actionlog" = dontDistribute super."snaplet-actionlog"; + "snaplet-amqp" = dontDistribute super."snaplet-amqp"; + "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid"; + "snaplet-coffee" = dontDistribute super."snaplet-coffee"; + "snaplet-css-min" = dontDistribute super."snaplet-css-min"; + "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; + "snaplet-hasql" = dontDistribute super."snaplet-hasql"; + "snaplet-haxl" = dontDistribute super."snaplet-haxl"; + "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; + "snaplet-hslogger" = dontDistribute super."snaplet-hslogger"; + "snaplet-i18n" = dontDistribute super."snaplet-i18n"; + "snaplet-influxdb" = dontDistribute super."snaplet-influxdb"; + "snaplet-lss" = dontDistribute super."snaplet-lss"; + "snaplet-mandrill" = dontDistribute super."snaplet-mandrill"; + "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB"; + "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic"; + "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple"; + "snaplet-oauth" = dontDistribute super."snaplet-oauth"; + "snaplet-persistent" = dontDistribute super."snaplet-persistent"; + "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple"; + "snaplet-postmark" = dontDistribute super."snaplet-postmark"; + "snaplet-purescript" = dontDistribute super."snaplet-purescript"; + "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha"; + "snaplet-redis" = dontDistribute super."snaplet-redis"; + "snaplet-redson" = dontDistribute super."snaplet-redson"; + "snaplet-rest" = dontDistribute super."snaplet-rest"; + "snaplet-riak" = dontDistribute super."snaplet-riak"; + "snaplet-sass" = dontDistribute super."snaplet-sass"; + "snaplet-sedna" = dontDistribute super."snaplet-sedna"; + "snaplet-ses-html" = dontDistribute super."snaplet-ses-html"; + "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple"; + "snaplet-stripe" = dontDistribute super."snaplet-stripe"; + "snaplet-tasks" = dontDistribute super."snaplet-tasks"; + "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions"; + "snaplet-wordpress" = dontDistribute super."snaplet-wordpress"; + "snappy" = dontDistribute super."snappy"; + "snappy-conduit" = dontDistribute super."snappy-conduit"; + "snappy-framing" = dontDistribute super."snappy-framing"; + "snappy-iteratee" = dontDistribute super."snappy-iteratee"; + "sndfile-enumerators" = dontDistribute super."sndfile-enumerators"; + "sneakyterm" = dontDistribute super."sneakyterm"; + "sneathlane-haste" = dontDistribute super."sneathlane-haste"; + "snippet-extractor" = dontDistribute super."snippet-extractor"; + "snm" = dontDistribute super."snm"; + "snow-white" = dontDistribute super."snow-white"; + "snowball" = dontDistribute super."snowball"; + "snowglobe" = dontDistribute super."snowglobe"; + "sock2stream" = dontDistribute super."sock2stream"; + "sockaddr" = dontDistribute super."sockaddr"; + "socket-activation" = dontDistribute super."socket-activation"; + "socket-sctp" = dontDistribute super."socket-sctp"; + "socketio" = dontDistribute super."socketio"; + "socketson" = dontDistribute super."socketson"; + "soegtk" = dontDistribute super."soegtk"; + "sonic-visualiser" = dontDistribute super."sonic-visualiser"; + "sophia" = dontDistribute super."sophia"; + "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; + "sorted" = dontDistribute super."sorted"; + "sorting" = dontDistribute super."sorting"; + "sorty" = dontDistribute super."sorty"; + "sound-collage" = dontDistribute super."sound-collage"; + "sounddelay" = dontDistribute super."sounddelay"; + "source-code-server" = dontDistribute super."source-code-server"; + "sousit" = dontDistribute super."sousit"; + "sox" = dontDistribute super."sox"; + "soxlib" = dontDistribute super."soxlib"; + "soyuz" = dontDistribute super."soyuz"; + "spacefill" = dontDistribute super."spacefill"; + "spacepart" = dontDistribute super."spacepart"; + "spaceprobe" = dontDistribute super."spaceprobe"; + "spanout" = dontDistribute super."spanout"; + "sparse" = dontDistribute super."sparse"; + "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; + "sparsebit" = dontDistribute super."sparsebit"; + "sparsecheck" = dontDistribute super."sparsecheck"; + "sparser" = dontDistribute super."sparser"; + "spata" = dontDistribute super."spata"; + "spatial-math" = dontDistribute super."spatial-math"; + "spawn" = dontDistribute super."spawn"; + "spe" = dontDistribute super."spe"; + "special-functors" = dontDistribute super."special-functors"; + "special-keys" = dontDistribute super."special-keys"; + "specialize-th" = dontDistribute super."specialize-th"; + "species" = dontDistribute super."species"; + "speculation-transformers" = dontDistribute super."speculation-transformers"; + "spelling-suggest" = dontDistribute super."spelling-suggest"; + "sphero" = dontDistribute super."sphero"; + "sphinx-cli" = dontDistribute super."sphinx-cli"; + "spice" = dontDistribute super."spice"; + "spike" = dontDistribute super."spike"; + "spine" = dontDistribute super."spine"; + "spir-v" = dontDistribute super."spir-v"; + "splay" = dontDistribute super."splay"; + "splaytree" = dontDistribute super."splaytree"; + "spline3" = dontDistribute super."spline3"; + "splines" = dontDistribute super."splines"; + "split-channel" = dontDistribute super."split-channel"; + "split-record" = dontDistribute super."split-record"; + "split-tchan" = dontDistribute super."split-tchan"; + "splitter" = dontDistribute super."splitter"; + "splot" = dontDistribute super."splot"; + "spool" = dontDistribute super."spool"; + "spoonutil" = dontDistribute super."spoonutil"; + "spoty" = dontDistribute super."spoty"; + "spreadsheet" = dontDistribute super."spreadsheet"; + "spritz" = dontDistribute super."spritz"; + "spsa" = dontDistribute super."spsa"; + "spy" = dontDistribute super."spy"; + "sql-simple" = dontDistribute super."sql-simple"; + "sql-simple-mysql" = dontDistribute super."sql-simple-mysql"; + "sql-simple-pool" = dontDistribute super."sql-simple-pool"; + "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql"; + "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite"; + "sql-words" = dontDistribute super."sql-words"; + "sqlite" = dontDistribute super."sqlite"; + "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed"; + "sqlvalue-list" = dontDistribute super."sqlvalue-list"; + "squeeze" = dontDistribute super."squeeze"; + "sr-extra" = dontDistribute super."sr-extra"; + "srcinst" = dontDistribute super."srcinst"; + "srec" = dontDistribute super."srec"; + "sscgi" = dontDistribute super."sscgi"; + "ssh" = dontDistribute super."ssh"; + "sshd-lint" = dontDistribute super."sshd-lint"; + "sshtun" = dontDistribute super."sshtun"; + "sssp" = dontDistribute super."sssp"; + "sstable" = dontDistribute super."sstable"; + "ssv" = dontDistribute super."ssv"; + "stable-heap" = dontDistribute super."stable-heap"; + "stable-maps" = dontDistribute super."stable-maps"; + "stable-marriage" = dontDistribute super."stable-marriage"; + "stable-memo" = dontDistribute super."stable-memo"; + "stable-tree" = dontDistribute super."stable-tree"; + "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; + "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; + "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; + "standalone-haddock" = dontDistribute super."standalone-haddock"; + "star-to-star" = dontDistribute super."star-to-star"; + "star-to-star-contra" = dontDistribute super."star-to-star-contra"; + "starling" = dontDistribute super."starling"; + "starrover2" = dontDistribute super."starrover2"; + "stash" = dontDistribute super."stash"; + "state" = dontDistribute super."state"; + "state-record" = dontDistribute super."state-record"; + "statechart" = dontDistribute super."statechart"; + "stateful-mtl" = dontDistribute super."stateful-mtl"; + "statethread" = dontDistribute super."statethread"; + "statgrab" = dontDistribute super."statgrab"; + "static-hash" = dontDistribute super."static-hash"; + "static-resources" = dontDistribute super."static-resources"; + "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; + "statistics-fusion" = dontDistribute super."statistics-fusion"; + "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; + "stats" = dontDistribute super."stats"; + "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; + "statsd-datadog" = dontDistribute super."statsd-datadog"; + "statvfs" = dontDistribute super."statvfs"; + "stb-image" = dontDistribute super."stb-image"; + "stb-truetype" = dontDistribute super."stb-truetype"; + "stdata" = dontDistribute super."stdata"; + "stdf" = dontDistribute super."stdf"; + "steambrowser" = dontDistribute super."steambrowser"; + "steeloverseer" = dontDistribute super."steeloverseer"; + "stemmer" = dontDistribute super."stemmer"; + "step-function" = dontDistribute super."step-function"; + "stepwise" = dontDistribute super."stepwise"; + "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; + "stitch" = dontDistribute super."stitch"; + "stm-channelize" = dontDistribute super."stm-channelize"; + "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-firehose" = dontDistribute super."stm-firehose"; + "stm-io-hooks" = dontDistribute super."stm-io-hooks"; + "stm-lifted" = dontDistribute super."stm-lifted"; + "stm-linkedlist" = dontDistribute super."stm-linkedlist"; + "stm-orelse-io" = dontDistribute super."stm-orelse-io"; + "stm-promise" = dontDistribute super."stm-promise"; + "stm-queue-extras" = dontDistribute super."stm-queue-extras"; + "stm-sbchan" = dontDistribute super."stm-sbchan"; + "stm-split" = dontDistribute super."stm-split"; + "stm-tlist" = dontDistribute super."stm-tlist"; + "stmcontrol" = dontDistribute super."stmcontrol"; + "stomp-conduit" = dontDistribute super."stomp-conduit"; + "stomp-patterns" = dontDistribute super."stomp-patterns"; + "stomp-queue" = dontDistribute super."stomp-queue"; + "stompl" = dontDistribute super."stompl"; + "stopwatch" = dontDistribute super."stopwatch"; + "storable" = dontDistribute super."storable"; + "storable-record" = dontDistribute super."storable-record"; + "storable-static-array" = dontDistribute super."storable-static-array"; + "storable-tuple" = dontDistribute super."storable-tuple"; + "storablevector" = dontDistribute super."storablevector"; + "storablevector-carray" = dontDistribute super."storablevector-carray"; + "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; + "str" = dontDistribute super."str"; + "stratum-tool" = dontDistribute super."stratum-tool"; + "stream-fusion" = dontDistribute super."stream-fusion"; + "stream-monad" = dontDistribute super."stream-monad"; + "streamed" = dontDistribute super."streamed"; + "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; + "streaming-utils" = dontDistribute super."streaming-utils"; + "streaming-wai" = dontDistribute super."streaming-wai"; + "strict-base-types" = doDistribute super."strict-base-types_0_4_0"; + "strict-concurrency" = dontDistribute super."strict-concurrency"; + "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin"; + "strict-identity" = dontDistribute super."strict-identity"; + "strict-io" = dontDistribute super."strict-io"; + "strictify" = dontDistribute super."strictify"; + "strictly" = dontDistribute super."strictly"; + "string" = dontDistribute super."string"; + "string-conv" = dontDistribute super."string-conv"; + "string-convert" = dontDistribute super."string-convert"; + "string-quote" = dontDistribute super."string-quote"; + "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; + "stringlike" = dontDistribute super."stringlike"; + "stringprep" = dontDistribute super."stringprep"; + "strings" = dontDistribute super."strings"; + "stringtable-atom" = dontDistribute super."stringtable-atom"; + "strio" = dontDistribute super."strio"; + "stripe" = dontDistribute super."stripe"; + "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_2"; + "strive" = dontDistribute super."strive"; + "strptime" = dontDistribute super."strptime"; + "structs" = dontDistribute super."structs"; + "structural-induction" = dontDistribute super."structural-induction"; + "structured-haskell-mode" = dontDistribute super."structured-haskell-mode"; + "structured-mongoDB" = dontDistribute super."structured-mongoDB"; + "structures" = dontDistribute super."structures"; + "stunclient" = dontDistribute super."stunclient"; + "stunts" = dontDistribute super."stunts"; + "stylized" = dontDistribute super."stylized"; + "sub-state" = dontDistribute super."sub-state"; + "subhask" = dontDistribute super."subhask"; + "subleq-toolchain" = dontDistribute super."subleq-toolchain"; + "subnet" = dontDistribute super."subnet"; + "subtitleParser" = dontDistribute super."subtitleParser"; + "subtitles" = dontDistribute super."subtitles"; + "suffixarray" = dontDistribute super."suffixarray"; + "suffixtree" = dontDistribute super."suffixtree"; + "sugarhaskell" = dontDistribute super."sugarhaskell"; + "suitable" = dontDistribute super."suitable"; + "sump" = dontDistribute super."sump"; + "sundown" = dontDistribute super."sundown"; + "sunlight" = dontDistribute super."sunlight"; + "sunroof-compiler" = dontDistribute super."sunroof-compiler"; + "sunroof-examples" = dontDistribute super."sunroof-examples"; + "sunroof-server" = dontDistribute super."sunroof-server"; + "super-user-spark" = dontDistribute super."super-user-spark"; + "supercollider-ht" = dontDistribute super."supercollider-ht"; + "supercollider-midi" = dontDistribute super."supercollider-midi"; + "superdoc" = dontDistribute super."superdoc"; + "supero" = dontDistribute super."supero"; + "supervisor" = dontDistribute super."supervisor"; + "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; + "svg2q" = dontDistribute super."svg2q"; + "svgcairo" = dontDistribute super."svgcairo"; + "svgutils" = dontDistribute super."svgutils"; + "svm" = dontDistribute super."svm"; + "svm-light-utils" = dontDistribute super."svm-light-utils"; + "svm-simple" = dontDistribute super."svm-simple"; + "svndump" = dontDistribute super."svndump"; + "swagger2" = doDistribute super."swagger2_1_2_1"; + "swapper" = dontDistribute super."swapper"; + "swearjure" = dontDistribute super."swearjure"; + "swf" = dontDistribute super."swf"; + "swift-lda" = dontDistribute super."swift-lda"; + "swish" = dontDistribute super."swish"; + "sws" = dontDistribute super."sws"; + "syb-extras" = dontDistribute super."syb-extras"; + "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; + "sylvia" = dontDistribute super."sylvia"; + "sym" = dontDistribute super."sym"; + "sym-plot" = dontDistribute super."sym-plot"; + "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; + "sync" = dontDistribute super."sync"; + "synchronous-channels" = dontDistribute super."synchronous-channels"; + "syncthing-hs" = dontDistribute super."syncthing-hs"; + "synt" = dontDistribute super."synt"; + "syntactic" = dontDistribute super."syntactic"; + "syntactical" = dontDistribute super."syntactical"; + "syntax" = dontDistribute super."syntax"; + "syntax-attoparsec" = dontDistribute super."syntax-attoparsec"; + "syntax-example" = dontDistribute super."syntax-example"; + "syntax-example-json" = dontDistribute super."syntax-example-json"; + "syntax-pretty" = dontDistribute super."syntax-pretty"; + "syntax-printer" = dontDistribute super."syntax-printer"; + "syntax-trees" = dontDistribute super."syntax-trees"; + "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn"; + "synthesizer" = dontDistribute super."synthesizer"; + "synthesizer-alsa" = dontDistribute super."synthesizer-alsa"; + "synthesizer-core" = dontDistribute super."synthesizer-core"; + "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional"; + "synthesizer-filter" = dontDistribute super."synthesizer-filter"; + "synthesizer-inference" = dontDistribute super."synthesizer-inference"; + "synthesizer-llvm" = dontDistribute super."synthesizer-llvm"; + "synthesizer-midi" = dontDistribute super."synthesizer-midi"; + "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient"; + "sys-process" = dontDistribute super."sys-process"; + "system-canonicalpath" = dontDistribute super."system-canonicalpath"; + "system-command" = dontDistribute super."system-command"; + "system-gpio" = dontDistribute super."system-gpio"; + "system-inotify" = dontDistribute super."system-inotify"; + "system-lifted" = dontDistribute super."system-lifted"; + "system-random-effect" = dontDistribute super."system-random-effect"; + "system-time-monotonic" = dontDistribute super."system-time-monotonic"; + "system-util" = dontDistribute super."system-util"; + "system-uuid" = dontDistribute super."system-uuid"; + "systemd" = dontDistribute super."systemd"; + "t-regex" = dontDistribute super."t-regex"; + "ta" = dontDistribute super."ta"; + "table" = dontDistribute super."table"; + "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-transformer" = dontDistribute super."tagged-transformer"; + "tagging" = dontDistribute super."tagging"; + "taggy" = dontDistribute super."taggy"; + "taggy-lens" = dontDistribute super."taggy-lens"; + "taglib" = dontDistribute super."taglib"; + "taglib-api" = dontDistribute super."taglib-api"; + "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "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-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; + "tasty-integrate" = dontDistribute super."tasty-integrate"; + "tasty-laws" = dontDistribute super."tasty-laws"; + "tasty-lens" = dontDistribute super."tasty-lens"; + "tasty-program" = dontDistribute super."tasty-program"; + "tateti-tateti" = dontDistribute super."tateti-tateti"; + "tau" = dontDistribute super."tau"; + "tbox" = dontDistribute super."tbox"; + "tcache-AWS" = dontDistribute super."tcache-AWS"; + "tccli" = dontDistribute super."tccli"; + "tce-conf" = dontDistribute super."tce-conf"; + "tconfig" = dontDistribute super."tconfig"; + "tcp" = dontDistribute super."tcp"; + "tdd-util" = dontDistribute super."tdd-util"; + "tdoc" = dontDistribute super."tdoc"; + "teams" = dontDistribute super."teams"; + "teeth" = dontDistribute super."teeth"; + "telegram" = dontDistribute super."telegram"; + "telegram-api" = dontDistribute super."telegram-api"; + "teleport" = dontDistribute super."teleport"; + "template-default" = dontDistribute super."template-default"; + "template-haskell-util" = dontDistribute super."template-haskell-util"; + "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; + "templatepg" = dontDistribute super."templatepg"; + "templater" = dontDistribute super."templater"; + "tempodb" = dontDistribute super."tempodb"; + "temporal-csound" = dontDistribute super."temporal-csound"; + "temporal-media" = dontDistribute super."temporal-media"; + "temporal-music-notation" = dontDistribute super."temporal-music-notation"; + "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo"; + "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western"; + "temporary-resourcet" = dontDistribute super."temporary-resourcet"; + "tempus" = dontDistribute super."tempus"; + "tempus-fugit" = dontDistribute super."tempus-fugit"; + "tensor" = dontDistribute super."tensor"; + "term-rewriting" = dontDistribute super."term-rewriting"; + "termbox-bindings" = dontDistribute super."termbox-bindings"; + "termination-combinators" = dontDistribute super."termination-combinators"; + "terminfo" = doDistribute super."terminfo_0_4_0_2"; + "terminfo-hs" = dontDistribute super."terminfo-hs"; + "termplot" = dontDistribute super."termplot"; + "terntup" = dontDistribute super."terntup"; + "terrahs" = dontDistribute super."terrahs"; + "tersmu" = dontDistribute super."tersmu"; + "test-framework-doctest" = dontDistribute super."test-framework-doctest"; + "test-framework-golden" = dontDistribute super."test-framework-golden"; + "test-framework-program" = dontDistribute super."test-framework-program"; + "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck"; + "test-framework-sandbox" = dontDistribute super."test-framework-sandbox"; + "test-framework-skip" = dontDistribute super."test-framework-skip"; + "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat"; + "test-invariant" = dontDistribute super."test-invariant"; + "test-pkg" = dontDistribute super."test-pkg"; + "test-sandbox" = dontDistribute super."test-sandbox"; + "test-sandbox-compose" = dontDistribute super."test-sandbox-compose"; + "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit"; + "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; + "test-shouldbe" = dontDistribute super."test-shouldbe"; + "testPkg" = dontDistribute super."testPkg"; + "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; + "testloop" = dontDistribute super."testloop"; + "testpack" = dontDistribute super."testpack"; + "testpattern" = dontDistribute super."testpattern"; + "testrunner" = dontDistribute super."testrunner"; + "tetris" = dontDistribute super."tetris"; + "tex2txt" = dontDistribute super."tex2txt"; + "texrunner" = dontDistribute super."texrunner"; + "text-and-plots" = dontDistribute super."text-and-plots"; + "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-translit" = dontDistribute super."text-icu-translit"; + "text-json-qq" = dontDistribute super."text-json-qq"; + "text-latin1" = dontDistribute super."text-latin1"; + "text-ldap" = dontDistribute super."text-ldap"; + "text-locale-encoding" = dontDistribute super."text-locale-encoding"; + "text-normal" = dontDistribute super."text-normal"; + "text-position" = dontDistribute super."text-position"; + "text-postgresql" = dontDistribute super."text-postgresql"; + "text-printer" = dontDistribute super."text-printer"; + "text-regex-replace" = dontDistribute super."text-regex-replace"; + "text-region" = dontDistribute super."text-region"; + "text-register-machine" = dontDistribute super."text-register-machine"; + "text-render" = dontDistribute super."text-render"; + "text-show-instances" = dontDistribute super."text-show-instances"; + "text-stream-decode" = dontDistribute super."text-stream-decode"; + "text-utf7" = dontDistribute super."text-utf7"; + "text-xml-generic" = dontDistribute super."text-xml-generic"; + "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text1" = dontDistribute super."text1"; + "textPlot" = dontDistribute super."textPlot"; + "textmatetags" = dontDistribute super."textmatetags"; + "textocat-api" = dontDistribute super."textocat-api"; + "texts" = dontDistribute super."texts"; + "textual" = dontDistribute super."textual"; + "tfp" = dontDistribute super."tfp"; + "tfp-th" = dontDistribute super."tfp-th"; + "tftp" = dontDistribute super."tftp"; + "tga" = dontDistribute super."tga"; + "th-alpha" = dontDistribute super."th-alpha"; + "th-build" = dontDistribute super."th-build"; + "th-cas" = dontDistribute super."th-cas"; + "th-context" = dontDistribute super."th-context"; + "th-fold" = dontDistribute super."th-fold"; + "th-inline-io-action" = dontDistribute super."th-inline-io-action"; + "th-instance-reification" = dontDistribute super."th-instance-reification"; + "th-instances" = dontDistribute super."th-instances"; + "th-kinds" = dontDistribute super."th-kinds"; + "th-kinds-fork" = dontDistribute super."th-kinds-fork"; + "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-printf" = dontDistribute super."th-printf"; + "th-sccs" = dontDistribute super."th-sccs"; + "th-traced" = dontDistribute super."th-traced"; + "th-typegraph" = dontDistribute super."th-typegraph"; + "themoviedb" = dontDistribute super."themoviedb"; + "themplate" = dontDistribute super."themplate"; + "theoremquest" = dontDistribute super."theoremquest"; + "theoremquest-client" = dontDistribute super."theoremquest-client"; + "thespian" = dontDistribute super."thespian"; + "theta-functions" = dontDistribute super."theta-functions"; + "thih" = dontDistribute super."thih"; + "thimk" = dontDistribute super."thimk"; + "thorn" = dontDistribute super."thorn"; + "thread-local-storage" = dontDistribute super."thread-local-storage"; + "threadPool" = dontDistribute super."threadPool"; + "threadmanager" = dontDistribute super."threadmanager"; + "threads-pool" = dontDistribute super."threads-pool"; + "threads-supervisor" = dontDistribute super."threads-supervisor"; + "threadscope" = dontDistribute super."threadscope"; + "threefish" = dontDistribute super."threefish"; + "threepenny-gui" = dontDistribute super."threepenny-gui"; + "thrift" = dontDistribute super."thrift"; + "thrist" = dontDistribute super."thrist"; + "throttle" = dontDistribute super."throttle"; + "thumbnail" = dontDistribute super."thumbnail"; + "tianbar" = dontDistribute super."tianbar"; + "tic-tac-toe" = dontDistribute super."tic-tac-toe"; + "tickle" = dontDistribute super."tickle"; + "tictactoe3d" = dontDistribute super."tictactoe3d"; + "tidal" = dontDistribute super."tidal"; + "tidal-midi" = dontDistribute super."tidal-midi"; + "tidal-vis" = dontDistribute super."tidal-vis"; + "tie-knot" = dontDistribute super."tie-knot"; + "tiempo" = dontDistribute super."tiempo"; + "tiger" = dontDistribute super."tiger"; + "tight-apply" = dontDistribute super."tight-apply"; + "tightrope" = dontDistribute super."tightrope"; + "tighttp" = dontDistribute super."tighttp"; + "tilings" = dontDistribute super."tilings"; + "timberc" = dontDistribute super."timberc"; + "time-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-patterns" = dontDistribute super."time-patterns"; + "time-qq" = dontDistribute super."time-qq"; + "time-recurrence" = dontDistribute super."time-recurrence"; + "time-series" = dontDistribute super."time-series"; + "time-w3c" = dontDistribute super."time-w3c"; + "timecalc" = dontDistribute super."timecalc"; + "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; + "timemap" = dontDistribute super."timemap"; + "timeout" = dontDistribute super."timeout"; + "timeout-control" = dontDistribute super."timeout-control"; + "timeout-with-results" = dontDistribute super."timeout-with-results"; + "timeparsers" = dontDistribute super."timeparsers"; + "timeplot" = dontDistribute super."timeplot"; + "timers" = dontDistribute super."timers"; + "timers-updatable" = dontDistribute super."timers-updatable"; + "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; + "timestamper" = dontDistribute super."timestamper"; + "timezone-olson-th" = dontDistribute super."timezone-olson-th"; + "timing-convenience" = dontDistribute super."timing-convenience"; + "tinyMesh" = dontDistribute super."tinyMesh"; + "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"; + "tracker" = dontDistribute super."tracker"; + "trajectory" = dontDistribute super."trajectory"; + "transactional-events" = dontDistribute super."transactional-events"; + "transf" = dontDistribute super."transf"; + "transformations" = dontDistribute super."transformations"; + "transformers-abort" = dontDistribute super."transformers-abort"; + "transformers-compose" = dontDistribute super."transformers-compose"; + "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-free" = dontDistribute super."transformers-free"; + "transformers-runnable" = dontDistribute super."transformers-runnable"; + "transformers-supply" = dontDistribute super."transformers-supply"; + "transient" = dontDistribute super."transient"; + "translatable-intset" = dontDistribute super."translatable-intset"; + "translate" = dontDistribute super."translate"; + "travis" = dontDistribute super."travis"; + "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; + "trawl" = dontDistribute super."trawl"; + "traypoweroff" = dontDistribute super."traypoweroff"; + "tree-fun" = dontDistribute super."tree-fun"; + "tree-monad" = dontDistribute super."tree-monad"; + "treemap-html" = dontDistribute super."treemap-html"; + "treemap-html-tools" = dontDistribute super."treemap-html-tools"; + "treersec" = dontDistribute super."treersec"; + "treeviz" = dontDistribute super."treeviz"; + "tremulous-query" = dontDistribute super."tremulous-query"; + "trhsx" = dontDistribute super."trhsx"; + "triangulation" = dontDistribute super."triangulation"; + "trimpolya" = dontDistribute super."trimpolya"; + "tripLL" = dontDistribute super."tripLL"; + "trivia" = dontDistribute super."trivia"; + "trivial-constraint" = dontDistribute super."trivial-constraint"; + "tropical" = dontDistribute super."tropical"; + "truelevel" = dontDistribute super."truelevel"; + "trurl" = dontDistribute super."trurl"; + "truthful" = dontDistribute super."truthful"; + "tsession" = dontDistribute super."tsession"; + "tsession-happstack" = dontDistribute super."tsession-happstack"; + "tskiplist" = dontDistribute super."tskiplist"; + "tslib" = dontDistribute super."tslib"; + "tslogger" = dontDistribute super."tslogger"; + "tsp-viz" = dontDistribute super."tsp-viz"; + "tsparse" = dontDistribute super."tsparse"; + "tst" = dontDistribute super."tst"; + "tsvsql" = dontDistribute super."tsvsql"; + "tttool" = doDistribute super."tttool_1_5_1"; + "tubes" = dontDistribute super."tubes"; + "tuntap" = dontDistribute super."tuntap"; + "tup-functor" = dontDistribute super."tup-functor"; + "tuple" = dontDistribute super."tuple"; + "tuple-gen" = dontDistribute super."tuple-gen"; + "tuple-generic" = dontDistribute super."tuple-generic"; + "tuple-hlist" = dontDistribute super."tuple-hlist"; + "tuple-lenses" = dontDistribute super."tuple-lenses"; + "tuple-morph" = dontDistribute super."tuple-morph"; + "tupleinstances" = dontDistribute super."tupleinstances"; + "turing" = dontDistribute super."turing"; + "turing-music" = dontDistribute super."turing-music"; + "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; + "turni" = dontDistribute super."turni"; + "turtle-options" = dontDistribute super."turtle-options"; + "tweak" = dontDistribute super."tweak"; + "twee" = dontDistribute super."twee"; + "twentefp" = dontDistribute super."twentefp"; + "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; + "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees"; + "twentefp-graphs" = dontDistribute super."twentefp-graphs"; + "twentefp-number" = dontDistribute super."twentefp-number"; + "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; + "twentefp-trees" = dontDistribute super."twentefp-trees"; + "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "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-natural" = dontDistribute super."type-natural"; + "type-ord" = dontDistribute super."type-ord"; + "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; + "type-prelude" = dontDistribute super."type-prelude"; + "type-settheory" = dontDistribute super."type-settheory"; + "type-spine" = dontDistribute super."type-spine"; + "type-structure" = dontDistribute super."type-structure"; + "type-sub-th" = dontDistribute super."type-sub-th"; + "type-unary" = dontDistribute super."type-unary"; + "typeable-th" = dontDistribute super."typeable-th"; + "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; + "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; + "typedquery" = dontDistribute super."typedquery"; + "typehash" = dontDistribute super."typehash"; + "typelevel" = dontDistribute super."typelevel"; + "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typeof" = dontDistribute super."typeof"; + "typeparams" = dontDistribute super."typeparams"; + "typesafe-endian" = dontDistribute super."typesafe-endian"; + "typescript-docs" = dontDistribute super."typescript-docs"; + "typical" = dontDistribute super."typical"; + "typography-geometry" = dontDistribute super."typography-geometry"; + "uAgda" = dontDistribute super."uAgda"; + "ua-parser" = dontDistribute super."ua-parser"; + "uacpid" = dontDistribute super."uacpid"; + "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"; + "ungadtagger" = dontDistribute super."ungadtagger"; + "uni-events" = dontDistribute super."uni-events"; + "uni-graphs" = dontDistribute super."uni-graphs"; + "uni-htk" = dontDistribute super."uni-htk"; + "uni-posixutil" = dontDistribute super."uni-posixutil"; + "uni-reactor" = dontDistribute super."uni-reactor"; + "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph"; + "uni-util" = dontDistribute super."uni-util"; + "unicode" = dontDistribute super."unicode"; + "unicode-names" = dontDistribute super."unicode-names"; + "unicode-normalization" = dontDistribute super."unicode-normalization"; + "unicode-prelude" = dontDistribute super."unicode-prelude"; + "unicode-properties" = dontDistribute super."unicode-properties"; + "unicode-show" = dontDistribute super."unicode-show"; + "unicode-symbols" = dontDistribute super."unicode-symbols"; + "unicoder" = dontDistribute super."unicoder"; + "uniform-io" = dontDistribute super."uniform-io"; + "uniform-pair" = dontDistribute super."uniform-pair"; + "union-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"; + "units" = dontDistribute super."units"; + "units-attoparsec" = dontDistribute super."units-attoparsec"; + "units-defs" = dontDistribute super."units-defs"; + "units-parser" = dontDistribute super."units-parser"; + "unittyped" = dontDistribute super."unittyped"; + "universal-binary" = dontDistribute super."universal-binary"; + "universe-th" = dontDistribute super."universe-th"; + "unix-fcntl" = dontDistribute super."unix-fcntl"; + "unix-handle" = dontDistribute super."unix-handle"; + "unix-io-extra" = dontDistribute super."unix-io-extra"; + "unix-memory" = dontDistribute super."unix-memory"; + "unix-process-conduit" = dontDistribute super."unix-process-conduit"; + "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = dontDistribute super."unlambda"; + "unlit" = dontDistribute super."unlit"; + "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; + "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; + "unpack-funcs" = dontDistribute super."unpack-funcs"; + "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; + "unsafe" = dontDistribute super."unsafe"; + "unsafe-promises" = dontDistribute super."unsafe-promises"; + "unsafely" = dontDistribute super."unsafely"; + "unsafeperformst" = dontDistribute super."unsafeperformst"; + "unscramble" = dontDistribute super."unscramble"; + "unusable-pkg" = dontDistribute super."unusable-pkg"; + "uom-plugin" = dontDistribute super."uom-plugin"; + "up" = dontDistribute super."up"; + "up-grade" = dontDistribute super."up-grade"; + "uploadcare" = dontDistribute super."uploadcare"; + "upskirt" = dontDistribute super."upskirt"; + "ureader" = dontDistribute super."ureader"; + "urembed" = dontDistribute super."urembed"; + "uri" = dontDistribute super."uri"; + "uri-bytestring" = doDistribute super."uri-bytestring_0_1_9_2"; + "uri-conduit" = dontDistribute super."uri-conduit"; + "uri-enumerator" = dontDistribute super."uri-enumerator"; + "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; + "uri-template" = dontDistribute super."uri-template"; + "url-generic" = dontDistribute super."url-generic"; + "urlcheck" = dontDistribute super."urlcheck"; + "urldecode" = dontDistribute super."urldecode"; + "urldisp-happstack" = dontDistribute super."urldisp-happstack"; + "urlencoded" = dontDistribute super."urlencoded"; + "urn" = dontDistribute super."urn"; + "urxml" = dontDistribute super."urxml"; + "usb" = dontDistribute super."usb"; + "usb-enumerator" = dontDistribute super."usb-enumerator"; + "usb-hid" = dontDistribute super."usb-hid"; + "usb-id-database" = dontDistribute super."usb-id-database"; + "usb-iteratee" = dontDistribute super."usb-iteratee"; + "usb-safe" = dontDistribute super."usb-safe"; + "users" = doDistribute super."users_0_4_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_4_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0"; + "users-test" = doDistribute super."users-test_0_4_0_0"; + "utc" = dontDistribute super."utc"; + "utf8-env" = dontDistribute super."utf8-env"; + "utf8-prelude" = dontDistribute super."utf8-prelude"; + "uu-cco" = dontDistribute super."uu-cco"; + "uu-cco-examples" = dontDistribute super."uu-cco-examples"; + "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing"; + "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib"; + "uu-options" = dontDistribute super."uu-options"; + "uu-tc" = dontDistribute super."uu-tc"; + "uuagc" = dontDistribute super."uuagc"; + "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap"; + "uuagc-cabal" = dontDistribute super."uuagc-cabal"; + "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; + "uuagd" = dontDistribute super."uuagd"; + "uuid-aeson" = dontDistribute super."uuid-aeson"; + "uuid-le" = dontDistribute super."uuid-le"; + "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uulib" = dontDistribute super."uulib"; + "uvector" = dontDistribute super."uvector"; + "uvector-algorithms" = dontDistribute super."uvector-algorithms"; + "uxadt" = dontDistribute super."uxadt"; + "uzbl-with-source" = dontDistribute super."uzbl-with-source"; + "v4l2" = dontDistribute super."v4l2"; + "v4l2-examples" = dontDistribute super."v4l2-examples"; + "vacuum" = dontDistribute super."vacuum"; + "vacuum-cairo" = dontDistribute super."vacuum-cairo"; + "vacuum-graphviz" = dontDistribute super."vacuum-graphviz"; + "vacuum-opengl" = dontDistribute super."vacuum-opengl"; + "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph"; + "vado" = dontDistribute super."vado"; + "valid-names" = dontDistribute super."valid-names"; + "validate" = dontDistribute super."validate"; + "validated-literals" = dontDistribute super."validated-literals"; + "validations" = dontDistribute super."validations"; + "value-supply" = dontDistribute super."value-supply"; + "vampire" = dontDistribute super."vampire"; + "var" = dontDistribute super."var"; + "varan" = dontDistribute super."varan"; + "variable-precision" = dontDistribute super."variable-precision"; + "variables" = dontDistribute super."variables"; + "varying" = dontDistribute super."varying"; + "vaultaire-common" = dontDistribute super."vaultaire-common"; + "vcache" = dontDistribute super."vcache"; + "vcache-trie" = dontDistribute super."vcache-trie"; + "vcard" = dontDistribute super."vcard"; + "vcd" = dontDistribute super."vcd"; + "vcs-revision" = dontDistribute super."vcs-revision"; + "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; + "vcsgui" = dontDistribute super."vcsgui"; + "vcswrapper" = dontDistribute super."vcswrapper"; + "vect" = dontDistribute super."vect"; + "vect-floating" = dontDistribute super."vect-floating"; + "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; + "vect-opengl" = dontDistribute super."vect-opengl"; + "vector-binary" = dontDistribute super."vector-binary"; + "vector-binary-instances" = doDistribute super."vector-binary-instances_0_2_3_0"; + "vector-bytestring" = dontDistribute super."vector-bytestring"; + "vector-clock" = dontDistribute super."vector-clock"; + "vector-conduit" = dontDistribute super."vector-conduit"; + "vector-functorlazy" = dontDistribute super."vector-functorlazy"; + "vector-heterogenous" = dontDistribute super."vector-heterogenous"; + "vector-instances-collections" = dontDistribute super."vector-instances-collections"; + "vector-mmap" = dontDistribute super."vector-mmap"; + "vector-random" = dontDistribute super."vector-random"; + "vector-read-instances" = dontDistribute super."vector-read-instances"; + "vector-sized" = dontDistribute super."vector-sized"; + "vector-space-map" = dontDistribute super."vector-space-map"; + "vector-space-opengl" = dontDistribute super."vector-space-opengl"; + "vector-space-points" = dontDistribute super."vector-space-points"; + "vector-static" = dontDistribute super."vector-static"; + "vector-strategies" = dontDistribute super."vector-strategies"; + "verbalexpressions" = dontDistribute super."verbalexpressions"; + "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; + "verilog" = dontDistribute super."verilog"; + "versions" = dontDistribute super."versions"; + "vhdl" = dontDistribute super."vhdl"; + "views" = dontDistribute super."views"; + "vigilance" = dontDistribute super."vigilance"; + "vimeta" = dontDistribute super."vimeta"; + "vimus" = dontDistribute super."vimus"; + "vintage-basic" = dontDistribute super."vintage-basic"; + "vinyl-gl" = dontDistribute super."vinyl-gl"; + "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-utils" = dontDistribute super."vinyl-utils"; + "vinyl-vectors" = dontDistribute super."vinyl-vectors"; + "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; + "vision" = dontDistribute super."vision"; + "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; + "visual-prof" = dontDistribute super."visual-prof"; + "vivid" = dontDistribute super."vivid"; + "vk-aws-route53" = dontDistribute super."vk-aws-route53"; + "vk-posix-pty" = dontDistribute super."vk-posix-pty"; + "vocabulary-kadma" = dontDistribute super."vocabulary-kadma"; + "vorbiscomment" = dontDistribute super."vorbiscomment"; + "vowpal-utils" = dontDistribute super."vowpal-utils"; + "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; + "vte" = dontDistribute super."vte"; + "vtegtk3" = dontDistribute super."vtegtk3"; + "vty-examples" = dontDistribute super."vty-examples"; + "vty-menu" = dontDistribute super."vty-menu"; + "vty-ui" = dontDistribute super."vty-ui"; + "vty-ui-extras" = dontDistribute super."vty-ui-extras"; + "vulkan" = dontDistribute super."vulkan"; + "wacom-daemon" = dontDistribute super."wacom-daemon"; + "waddle" = dontDistribute super."waddle"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; + "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; + "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; + "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; + "wai-graceful" = dontDistribute super."wai-graceful"; + "wai-handler-devel" = dontDistribute super."wai-handler-devel"; + "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; + "wai-handler-snap" = dontDistribute super."wai-handler-snap"; + "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; + "wai-hastache" = dontDistribute super."wai-hastache"; + "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; + "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; + "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; + "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; + "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; + "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; + "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-metrics" = doDistribute super."wai-middleware-metrics_0_2_2"; + "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; + "wai-middleware-route" = dontDistribute super."wai-middleware-route"; + "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-request-spec" = dontDistribute super."wai-request-spec"; + "wai-responsible" = dontDistribute super."wai-responsible"; + "wai-router" = dontDistribute super."wai-router"; + "wai-session-alt" = dontDistribute super."wai-session-alt"; + "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; + "wai-static-cache" = dontDistribute super."wai-static-cache"; + "wai-static-pages" = dontDistribute super."wai-static-pages"; + "wai-test" = dontDistribute super."wai-test"; + "wai-thrift" = dontDistribute super."wai-thrift"; + "wai-throttler" = dontDistribute super."wai-throttler"; + "wait-handle" = dontDistribute super."wait-handle"; + "waitfree" = dontDistribute super."waitfree"; + "warc" = dontDistribute super."warc"; + "warp" = doDistribute super."warp_3_2_2"; + "warp-dynamic" = dontDistribute super."warp-dynamic"; + "warp-static" = dontDistribute super."warp-static"; + "warp-tls-uid" = dontDistribute super."warp-tls-uid"; + "watchdog" = dontDistribute super."watchdog"; + "watcher" = dontDistribute super."watcher"; + "watchit" = dontDistribute super."watchit"; + "wavconvert" = dontDistribute super."wavconvert"; + "wavesurfer" = dontDistribute super."wavesurfer"; + "wavy" = dontDistribute super."wavy"; + "wcwidth" = dontDistribute super."wcwidth"; + "weather-api" = dontDistribute super."weather-api"; + "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell"; + "web-css" = dontDistribute super."web-css"; + "web-encodings" = dontDistribute super."web-encodings"; + "web-mongrel2" = dontDistribute super."web-mongrel2"; + "web-page" = dontDistribute super."web-page"; + "web-routes-mtl" = dontDistribute super."web-routes-mtl"; + "web-routes-quasi" = dontDistribute super."web-routes-quasi"; + "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-transformers" = dontDistribute super."web-routes-transformers"; + "webapi" = dontDistribute super."webapi"; + "webapp" = dontDistribute super."webapp"; + "webcrank" = dontDistribute super."webcrank"; + "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; + "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; + "webidl" = dontDistribute super."webidl"; + "webify" = dontDistribute super."webify"; + "webkit" = dontDistribute super."webkit"; + "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore"; + "webkitgtk3" = dontDistribute super."webkitgtk3"; + "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore"; + "webrtc-vad" = dontDistribute super."webrtc-vad"; + "webserver" = dontDistribute super."webserver"; + "websnap" = dontDistribute super."websnap"; + "webwire" = dontDistribute super."webwire"; + "wedding-announcement" = dontDistribute super."wedding-announcement"; + "wedged" = dontDistribute super."wedged"; + "weighted-regexp" = dontDistribute super."weighted-regexp"; + "weighted-search" = dontDistribute super."weighted-search"; + "welshy" = dontDistribute super."welshy"; + "werewolf" = dontDistribute super."werewolf"; + "wheb-mongo" = dontDistribute super."wheb-mongo"; + "wheb-redis" = dontDistribute super."wheb-redis"; + "wheb-strapped" = dontDistribute super."wheb-strapped"; + "while-lang-parser" = dontDistribute super."while-lang-parser"; + "whim" = dontDistribute super."whim"; + "whiskers" = dontDistribute super."whiskers"; + "whitespace" = dontDistribute super."whitespace"; + "whois" = dontDistribute super."whois"; + "why3" = dontDistribute super."why3"; + "wigner-symbols" = dontDistribute super."wigner-symbols"; + "wikipedia4epub" = dontDistribute super."wikipedia4epub"; + "win-hp-path" = dontDistribute super."win-hp-path"; + "windowslive" = dontDistribute super."windowslive"; + "winerror" = dontDistribute super."winerror"; + "winio" = dontDistribute super."winio"; + "wiring" = dontDistribute super."wiring"; + "with-location" = dontDistribute super."with-location"; + "witness" = dontDistribute super."witness"; + "witty" = dontDistribute super."witty"; + "wkt" = dontDistribute super."wkt"; + "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm"; + "wlc-hs" = dontDistribute super."wlc-hs"; + "wobsurv" = dontDistribute super."wobsurv"; + "woffex" = dontDistribute super."woffex"; + "wol" = dontDistribute super."wol"; + "wolf" = dontDistribute super."wolf"; + "woot" = dontDistribute super."woot"; + "word24" = dontDistribute super."word24"; + "wordcloud" = dontDistribute super."wordcloud"; + "wordexp" = dontDistribute super."wordexp"; + "words" = dontDistribute super."words"; + "wordsearch" = dontDistribute super."wordsearch"; + "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; + "wp-archivebot" = dontDistribute super."wp-archivebot"; + "wraparound" = dontDistribute super."wraparound"; + "wraxml" = dontDistribute super."wraxml"; + "wreq-sb" = dontDistribute super."wreq-sb"; + "wright" = dontDistribute super."wright"; + "wsdl" = dontDistribute super."wsdl"; + "wsedit" = dontDistribute super."wsedit"; + "wtk" = dontDistribute super."wtk"; + "wtk-gtk" = dontDistribute super."wtk-gtk"; + "wumpus-basic" = dontDistribute super."wumpus-basic"; + "wumpus-core" = dontDistribute super."wumpus-core"; + "wumpus-drawing" = dontDistribute super."wumpus-drawing"; + "wumpus-microprint" = dontDistribute super."wumpus-microprint"; + "wumpus-tree" = dontDistribute super."wumpus-tree"; + "wuss" = dontDistribute super."wuss"; + "wx" = dontDistribute super."wx"; + "wxAsteroids" = dontDistribute super."wxAsteroids"; + "wxFruit" = dontDistribute super."wxFruit"; + "wxc" = dontDistribute super."wxc"; + "wxcore" = dontDistribute super."wxcore"; + "wxdirect" = dontDistribute super."wxdirect"; + "wxhnotepad" = dontDistribute super."wxhnotepad"; + "wxturtle" = dontDistribute super."wxturtle"; + "wybor" = dontDistribute super."wybor"; + "wyvern" = dontDistribute super."wyvern"; + "x-dsp" = dontDistribute super."x-dsp"; + "x11-xim" = dontDistribute super."x11-xim"; + "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-util" = dontDistribute super."x509-util"; + "xattr" = dontDistribute super."xattr"; + "xbattbar" = dontDistribute super."xbattbar"; + "xcb-types" = dontDistribute super."xcb-types"; + "xcffib" = dontDistribute super."xcffib"; + "xchat-plugin" = dontDistribute super."xchat-plugin"; + "xcp" = dontDistribute super."xcp"; + "xdg-userdirs" = dontDistribute super."xdg-userdirs"; + "xdot" = dontDistribute super."xdot"; + "xfconf" = dontDistribute super."xfconf"; + "xhaskell-library" = dontDistribute super."xhaskell-library"; + "xhb" = dontDistribute super."xhb"; + "xhb-atom-cache" = dontDistribute super."xhb-atom-cache"; + "xhb-ewmh" = dontDistribute super."xhb-ewmh"; + "xhtml" = doDistribute super."xhtml_3000_2_1"; + "xhtml-combinators" = dontDistribute super."xhtml-combinators"; + "xilinx-lava" = dontDistribute super."xilinx-lava"; + "xine" = dontDistribute super."xine"; + "xing-api" = dontDistribute super."xing-api"; + "xinput-conduit" = dontDistribute super."xinput-conduit"; + "xkbcommon" = dontDistribute super."xkbcommon"; + "xkcd" = dontDistribute super."xkcd"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; + "xlsx-templater" = dontDistribute super."xlsx-templater"; + "xml-basic" = dontDistribute super."xml-basic"; + "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-enumerator" = dontDistribute super."xml-enumerator"; + "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; + "xml-extractors" = dontDistribute super."xml-extractors"; + "xml-helpers" = dontDistribute super."xml-helpers"; + "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens"; + "xml-monad" = dontDistribute super."xml-monad"; + "xml-parsec" = dontDistribute super."xml-parsec"; + "xml-picklers" = dontDistribute super."xml-picklers"; + "xml-pipe" = dontDistribute super."xml-pipe"; + "xml-prettify" = dontDistribute super."xml-prettify"; + "xml-push" = dontDistribute super."xml-push"; + "xml-query" = dontDistribute super."xml-query"; + "xml-query-xml-conduit" = dontDistribute super."xml-query-xml-conduit"; + "xml-query-xml-types" = dontDistribute super."xml-query-xml-types"; + "xml2html" = dontDistribute super."xml2html"; + "xml2json" = dontDistribute super."xml2json"; + "xml2x" = dontDistribute super."xml2x"; + "xmltv" = dontDistribute super."xmltv"; + "xmms2-client" = dontDistribute super."xmms2-client"; + "xmms2-client-glib" = dontDistribute super."xmms2-client-glib"; + "xmobar" = dontDistribute super."xmobar"; + "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch"; + "xmonad-contrib" = dontDistribute super."xmonad-contrib"; + "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch"; + "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl"; + "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper"; + "xmonad-eval" = dontDistribute super."xmonad-eval"; + "xmonad-extras" = dontDistribute super."xmonad-extras"; + "xmonad-screenshot" = dontDistribute super."xmonad-screenshot"; + "xmonad-utils" = dontDistribute super."xmonad-utils"; + "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper"; + "xmonad-windownames" = dontDistribute super."xmonad-windownames"; + "xmpipe" = dontDistribute super."xmpipe"; + "xorshift" = dontDistribute super."xorshift"; + "xosd" = dontDistribute super."xosd"; + "xournal-builder" = dontDistribute super."xournal-builder"; + "xournal-convert" = dontDistribute super."xournal-convert"; + "xournal-parser" = dontDistribute super."xournal-parser"; + "xournal-render" = dontDistribute super."xournal-render"; + "xournal-types" = dontDistribute super."xournal-types"; + "xsact" = dontDistribute super."xsact"; + "xsd" = dontDistribute super."xsd"; + "xsha1" = dontDistribute super."xsha1"; + "xslt" = dontDistribute super."xslt"; + "xtc" = dontDistribute super."xtc"; + "xtest" = dontDistribute super."xtest"; + "xturtle" = dontDistribute super."xturtle"; + "xxhash" = dontDistribute super."xxhash"; + "y0l0bot" = dontDistribute super."y0l0bot"; + "yabi" = dontDistribute super."yabi"; + "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; + "yahoo-web-search" = dontDistribute super."yahoo-web-search"; + "yajl" = dontDistribute super."yajl"; + "yajl-enumerator" = dontDistribute super."yajl-enumerator"; + "yall" = dontDistribute super."yall"; + "yamemo" = dontDistribute super."yamemo"; + "yaml-config" = dontDistribute super."yaml-config"; + "yaml-light-lens" = dontDistribute super."yaml-light-lens"; + "yaml-rpc" = dontDistribute super."yaml-rpc"; + "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty"; + "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap"; + "yaml-union" = dontDistribute super."yaml-union"; + "yaml2owl" = dontDistribute super."yaml2owl"; + "yamlkeysdiff" = dontDistribute super."yamlkeysdiff"; + "yampa-canvas" = dontDistribute super."yampa-canvas"; + "yampa-glfw" = dontDistribute super."yampa-glfw"; + "yampa-glut" = dontDistribute super."yampa-glut"; + "yampa2048" = dontDistribute super."yampa2048"; + "yaop" = dontDistribute super."yaop"; + "yap" = dontDistribute super."yap"; + "yarr" = dontDistribute super."yarr"; + "yarr-image-io" = dontDistribute super."yarr-image-io"; + "yate" = dontDistribute super."yate"; + "yavie" = dontDistribute super."yavie"; + "ycextra" = dontDistribute super."ycextra"; + "yeganesh" = dontDistribute super."yeganesh"; + "yeller" = dontDistribute super."yeller"; + "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-pam" = dontDistribute super."yesod-auth-pam"; + "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; + "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; + "yesod-comments" = dontDistribute super."yesod-comments"; + "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; + "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-crud" = dontDistribute super."yesod-crud"; + "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; + "yesod-csp" = dontDistribute super."yesod-csp"; + "yesod-datatables" = dontDistribute super."yesod-datatables"; + "yesod-dsl" = dontDistribute super."yesod-dsl"; + "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; + "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-json" = dontDistribute super."yesod-json"; + "yesod-links" = dontDistribute super."yesod-links"; + "yesod-lucid" = dontDistribute super."yesod-lucid"; + "yesod-markdown" = dontDistribute super."yesod-markdown"; + "yesod-media-simple" = dontDistribute super."yesod-media-simple"; + "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_5"; + "yesod-paginate" = dontDistribute super."yesod-paginate"; + "yesod-pagination" = dontDistribute super."yesod-pagination"; + "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-platform" = dontDistribute super."yesod-platform"; + "yesod-pnotify" = dontDistribute super."yesod-pnotify"; + "yesod-pure" = dontDistribute super."yesod-pure"; + "yesod-purescript" = dontDistribute super."yesod-purescript"; + "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; + "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; + "yesod-routes" = dontDistribute super."yesod-routes"; + "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; + "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript"; + "yesod-rst" = dontDistribute super."yesod-rst"; + "yesod-s3" = dontDistribute super."yesod-s3"; + "yesod-sass" = dontDistribute super."yesod-sass"; + "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test-json" = dontDistribute super."yesod-test-json"; + "yesod-tls" = dontDistribute super."yesod-tls"; + "yesod-transloadit" = dontDistribute super."yesod-transloadit"; + "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; + "yesod-worker" = dontDistribute super."yesod-worker"; + "yet-another-logger" = dontDistribute super."yet-another-logger"; + "yhccore" = dontDistribute super."yhccore"; + "yi-contrib" = dontDistribute super."yi-contrib"; + "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; + "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-monokai" = dontDistribute super."yi-monokai"; + "yi-snippet" = dontDistribute super."yi-snippet"; + "yi-solarized" = dontDistribute super."yi-solarized"; + "yi-spolsky" = dontDistribute super."yi-spolsky"; + "yi-vty" = dontDistribute super."yi-vty"; + "yices" = dontDistribute super."yices"; + "yices-easy" = dontDistribute super."yices-easy"; + "yices-painless" = dontDistribute super."yices-painless"; + "yjftp" = dontDistribute super."yjftp"; + "yjftp-libs" = dontDistribute super."yjftp-libs"; + "yjsvg" = dontDistribute super."yjsvg"; + "yjtools" = dontDistribute super."yjtools"; + "yocto" = dontDistribute super."yocto"; + "yoctoparsec" = dontDistribute super."yoctoparsec"; + "yoko" = dontDistribute super."yoko"; + "york-lava" = dontDistribute super."york-lava"; + "youtube" = dontDistribute super."youtube"; + "yql" = dontDistribute super."yql"; + "yst" = dontDistribute super."yst"; + "yuiGrid" = dontDistribute super."yuiGrid"; + "yuuko" = dontDistribute super."yuuko"; + "yxdb-utils" = dontDistribute super."yxdb-utils"; + "z3" = dontDistribute super."z3"; + "zalgo" = dontDistribute super."zalgo"; + "zampolit" = dontDistribute super."zampolit"; + "zasni-gerna" = dontDistribute super."zasni-gerna"; + "zcache" = dontDistribute super."zcache"; + "zenc" = dontDistribute super."zenc"; + "zendesk-api" = dontDistribute super."zendesk-api"; + "zeno" = dontDistribute super."zeno"; + "zerobin" = dontDistribute super."zerobin"; + "zeromq-haskell" = dontDistribute super."zeromq-haskell"; + "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; + "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; + "zeroth" = dontDistribute super."zeroth"; + "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zip" = dontDistribute super."zip"; + "zip-conduit" = dontDistribute super."zip-conduit"; + "zipedit" = dontDistribute super."zipedit"; + "zipkin" = dontDistribute super."zipkin"; + "zipper" = dontDistribute super."zipper"; + "zippers" = dontDistribute super."zippers"; + "zippo" = dontDistribute super."zippo"; + "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zmcat" = dontDistribute super."zmcat"; + "zmidi-core" = dontDistribute super."zmidi-core"; + "zmidi-score" = dontDistribute super."zmidi-score"; + "zmqat" = dontDistribute super."zmqat"; + "zoneinfo" = dontDistribute super."zoneinfo"; + "zoom" = dontDistribute super."zoom"; + "zoom-cache" = dontDistribute super."zoom-cache"; + "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm"; + "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile"; + "zoom-refs" = dontDistribute super."zoom-refs"; + "zot" = dontDistribute super."zot"; + "zsh-battery" = dontDistribute super."zsh-battery"; + "ztail" = dontDistribute super."ztail"; + +} diff --git a/pkgs/development/haskell-modules/configuration-lts-5.8.nix b/pkgs/development/haskell-modules/configuration-lts-5.8.nix new file mode 100644 index 00000000000..1b0650aebb8 --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-5.8.nix @@ -0,0 +1,7788 @@ +{ pkgs }: + +with import ./lib.nix { inherit pkgs; }; + +self: super: { + + # core libraries provided by the compiler + Cabal = null; + array = null; + base = null; + bin-package-db = null; + binary = null; + bytestring = null; + containers = null; + deepseq = null; + directory = null; + filepath = null; + ghc-prim = null; + hoopl = null; + hpc = null; + integer-gmp = null; + pretty = null; + process = null; + rts = null; + template-haskell = null; + time = null; + transformers = null; + unix = null; + + # lts-5.8 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"; + "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-executable" = dontDistribute super."Agda-executable"; + "AhoCorasick" = dontDistribute super."AhoCorasick"; + "AlgorithmW" = dontDistribute super."AlgorithmW"; + "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms"; + "Allure" = dontDistribute super."Allure"; + "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter"; + "Animas" = dontDistribute super."Animas"; + "Annotations" = dontDistribute super."Annotations"; + "Ansi2Html" = dontDistribute super."Ansi2Html"; + "ApplePush" = dontDistribute super."ApplePush"; + "AppleScript" = dontDistribute super."AppleScript"; + "ApproxFun-hs" = dontDistribute super."ApproxFun-hs"; + "ArrayRef" = dontDistribute super."ArrayRef"; + "ArrowVHDL" = dontDistribute super."ArrowVHDL"; + "AspectAG" = dontDistribute super."AspectAG"; + "AttoBencode" = dontDistribute super."AttoBencode"; + "AttoJson" = dontDistribute super."AttoJson"; + "Attrac" = dontDistribute super."Attrac"; + "Aurochs" = dontDistribute super."Aurochs"; + "AutoForms" = dontDistribute super."AutoForms"; + "AvlTree" = dontDistribute super."AvlTree"; + "BASIC" = dontDistribute super."BASIC"; + "BCMtools" = dontDistribute super."BCMtools"; + "BNFC" = dontDistribute super."BNFC"; + "BNFC-meta" = dontDistribute super."BNFC-meta"; + "Baggins" = dontDistribute super."Baggins"; + "Bang" = dontDistribute super."Bang"; + "Barracuda" = dontDistribute super."Barracuda"; + "Befunge93" = dontDistribute super."Befunge93"; + "BenchmarkHistory" = dontDistribute super."BenchmarkHistory"; + "BerkeleyDB" = dontDistribute super."BerkeleyDB"; + "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; + "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BigPixel" = dontDistribute super."BigPixel"; + "Binpack" = dontDistribute super."Binpack"; + "Biobase" = dontDistribute super."Biobase"; + "BiobaseBlast" = dontDistribute super."BiobaseBlast"; + "BiobaseDotP" = dontDistribute super."BiobaseDotP"; + "BiobaseFR3D" = dontDistribute super."BiobaseFR3D"; + "BiobaseFasta" = dontDistribute super."BiobaseFasta"; + "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; + "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; + "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; + "BiobaseTurner" = dontDistribute super."BiobaseTurner"; + "BiobaseTypes" = dontDistribute super."BiobaseTypes"; + "BiobaseVienna" = dontDistribute super."BiobaseVienna"; + "BiobaseXNA" = dontDistribute super."BiobaseXNA"; + "BirdPP" = dontDistribute super."BirdPP"; + "BitSyntax" = dontDistribute super."BitSyntax"; + "Bitly" = dontDistribute super."Bitly"; + "Blobs" = dontDistribute super."Blobs"; + "BluePrintCSS" = dontDistribute super."BluePrintCSS"; + "Blueprint" = dontDistribute super."Blueprint"; + "Bookshelf" = dontDistribute super."Bookshelf"; + "Bravo" = dontDistribute super."Bravo"; + "BufferedSocket" = dontDistribute super."BufferedSocket"; + "Buster" = dontDistribute super."Buster"; + "CBOR" = dontDistribute super."CBOR"; + "CC-delcont" = dontDistribute super."CC-delcont"; + "CC-delcont-alt" = dontDistribute super."CC-delcont-alt"; + "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe"; + "CC-delcont-exc" = dontDistribute super."CC-delcont-exc"; + "CC-delcont-ref" = dontDistribute super."CC-delcont-ref"; + "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf"; + "CCA" = dontDistribute super."CCA"; + "CHXHtml" = dontDistribute super."CHXHtml"; + "CLASE" = dontDistribute super."CLASE"; + "CLI" = dontDistribute super."CLI"; + "CMCompare" = dontDistribute super."CMCompare"; + "CMQ" = dontDistribute super."CMQ"; + "COrdering" = dontDistribute super."COrdering"; + "CPBrainfuck" = dontDistribute super."CPBrainfuck"; + "CPL" = dontDistribute super."CPL"; + "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage"; + "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules"; + "CSPM-Frontend" = dontDistribute super."CSPM-Frontend"; + "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter"; + "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog"; + "CSPM-cspm" = dontDistribute super."CSPM-cspm"; + "CTRex" = dontDistribute super."CTRex"; + "CV" = dontDistribute super."CV"; + "CabalSearch" = dontDistribute super."CabalSearch"; + "Capabilities" = dontDistribute super."Capabilities"; + "Cardinality" = dontDistribute super."Cardinality"; + "CarneadesDSL" = dontDistribute super."CarneadesDSL"; + "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; + "Cascade" = dontDistribute super."Cascade"; + "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; + "Chart-diagrams" = dontDistribute super."Chart-diagrams"; + "Chart-gtk" = dontDistribute super."Chart-gtk"; + "Chart-simple" = dontDistribute super."Chart-simple"; + "CheatSheet" = dontDistribute super."CheatSheet"; + "Checked" = dontDistribute super."Checked"; + "Chitra" = dontDistribute super."Chitra"; + "ChristmasTree" = dontDistribute super."ChristmasTree"; + "CirruParser" = dontDistribute super."CirruParser"; + "ClassLaws" = dontDistribute super."ClassLaws"; + "ClassyPrelude" = dontDistribute super."ClassyPrelude"; + "Clean" = dontDistribute super."Clean"; + "Clipboard" = dontDistribute super."Clipboard"; + "Coadjute" = dontDistribute super."Coadjute"; + "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; + "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; + "Combinatorrent" = dontDistribute super."Combinatorrent"; + "Command" = dontDistribute super."Command"; + "Commando" = dontDistribute super."Commando"; + "ComonadSheet" = dontDistribute super."ComonadSheet"; + "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; + "Concurrential" = dontDistribute super."Concurrential"; + "Condor" = dontDistribute super."Condor"; + "ConfigFileTH" = dontDistribute super."ConfigFileTH"; + "Configger" = dontDistribute super."Configger"; + "Configurable" = dontDistribute super."Configurable"; + "ConsStream" = dontDistribute super."ConsStream"; + "Conscript" = dontDistribute super."Conscript"; + "ConstraintKinds" = dontDistribute super."ConstraintKinds"; + "Consumer" = dontDistribute super."Consumer"; + "ContArrow" = dontDistribute super."ContArrow"; + "ContextAlgebra" = dontDistribute super."ContextAlgebra"; + "Contract" = dontDistribute super."Contract"; + "Control-Engine" = dontDistribute super."Control-Engine"; + "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass"; + "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2"; + "CoreDump" = dontDistribute super."CoreDump"; + "CoreErlang" = dontDistribute super."CoreErlang"; + "CoreFoundation" = dontDistribute super."CoreFoundation"; + "Coroutine" = dontDistribute super."Coroutine"; + "CouchDB" = dontDistribute super."CouchDB"; + "Craft3e" = dontDistribute super."Craft3e"; + "Crypto" = dontDistribute super."Crypto"; + "CurryDB" = dontDistribute super."CurryDB"; + "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DBlimited" = dontDistribute super."DBlimited"; + "DBus" = dontDistribute super."DBus"; + "DCFL" = dontDistribute super."DCFL"; + "DMuCheck" = dontDistribute super."DMuCheck"; + "DOM" = dontDistribute super."DOM"; + "DP" = dontDistribute super."DP"; + "DPM" = dontDistribute super."DPM"; + "DSA" = dontDistribute super."DSA"; + "DSH" = dontDistribute super."DSH"; + "DSTM" = dontDistribute super."DSTM"; + "DTC" = dontDistribute super."DTC"; + "Dangerous" = dontDistribute super."Dangerous"; + "Dao" = dontDistribute super."Dao"; + "DarcsHelpers" = dontDistribute super."DarcsHelpers"; + "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent"; + "Data-Rope" = dontDistribute super."Data-Rope"; + "DataTreeView" = dontDistribute super."DataTreeView"; + "Deadpan-DDP" = dontDistribute super."Deadpan-DDP"; + "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers"; + "DecisionTree" = dontDistribute super."DecisionTree"; + "DeepArrow" = dontDistribute super."DeepArrow"; + "DefendTheKing" = dontDistribute super."DefendTheKing"; + "DescriptiveKeys" = dontDistribute super."DescriptiveKeys"; + "Dflow" = dontDistribute super."Dflow"; + "DifferenceLogic" = dontDistribute super."DifferenceLogic"; + "DifferentialEvolution" = dontDistribute super."DifferentialEvolution"; + "Digit" = dontDistribute super."Digit"; + "DigitalOcean" = dontDistribute super."DigitalOcean"; + "DimensionalHash" = dontDistribute super."DimensionalHash"; + "DirectSound" = dontDistribute super."DirectSound"; + "DisTract" = dontDistribute super."DisTract"; + "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem"; + "Dish" = dontDistribute super."Dish"; + "Dist" = dontDistribute super."Dist"; + "DistanceTransform" = dontDistribute super."DistanceTransform"; + "DistanceUnits" = dontDistribute super."DistanceUnits"; + "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment"; + "DocTest" = dontDistribute super."DocTest"; + "Docs" = dontDistribute super."Docs"; + "DrHylo" = dontDistribute super."DrHylo"; + "DrIFT" = dontDistribute super."DrIFT"; + "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized"; + "Dung" = dontDistribute super."Dung"; + "Dust" = dontDistribute super."Dust"; + "Dust-crypto" = dontDistribute super."Dust-crypto"; + "Dust-tools" = dontDistribute super."Dust-tools"; + "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap"; + "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp"; + "DysFRP" = dontDistribute super."DysFRP"; + "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; + "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; + "EEConfig" = dontDistribute super."EEConfig"; + "EdisonAPI" = dontDistribute super."EdisonAPI"; + "EdisonCore" = dontDistribute super."EdisonCore"; + "EditTimeReport" = dontDistribute super."EditTimeReport"; + "EitherT" = dontDistribute super."EitherT"; + "Elm" = dontDistribute super."Elm"; + "Emping" = dontDistribute super."Emping"; + "Encode" = dontDistribute super."Encode"; + "EnumContainers" = dontDistribute super."EnumContainers"; + "EnumMap" = dontDistribute super."EnumMap"; + "Eq" = dontDistribute super."Eq"; + "EqualitySolver" = dontDistribute super."EqualitySolver"; + "EsounD" = dontDistribute super."EsounD"; + "EstProgress" = dontDistribute super."EstProgress"; + "EtaMOO" = dontDistribute super."EtaMOO"; + "Etage" = dontDistribute super."Etage"; + "Etage-Graph" = dontDistribute super."Etage-Graph"; + "Eternal10Seconds" = dontDistribute super."Eternal10Seconds"; + "Etherbunny" = dontDistribute super."Etherbunny"; + "EuroIT" = dontDistribute super."EuroIT"; + "Euterpea" = dontDistribute super."Euterpea"; + "EventSocket" = dontDistribute super."EventSocket"; + "Extra" = dontDistribute super."Extra"; + "FComp" = dontDistribute super."FComp"; + "FM-SBLEX" = dontDistribute super."FM-SBLEX"; + "FModExRaw" = dontDistribute super."FModExRaw"; + "FPretty" = dontDistribute super."FPretty"; + "FTGL" = dontDistribute super."FTGL"; + "FTGL-bytestring" = dontDistribute super."FTGL-bytestring"; + "FTPLine" = dontDistribute super."FTPLine"; + "Facts" = dontDistribute super."Facts"; + "FailureT" = dontDistribute super."FailureT"; + "FastxPipe" = dontDistribute super."FastxPipe"; + "FermatsLastMargin" = dontDistribute super."FermatsLastMargin"; + "FerryCore" = dontDistribute super."FerryCore"; + "Feval" = dontDistribute super."Feval"; + "FieldTrip" = dontDistribute super."FieldTrip"; + "FileManip" = dontDistribute super."FileManip"; + "FileManipCompat" = dontDistribute super."FileManipCompat"; + "FilePather" = dontDistribute super."FilePather"; + "FileSystem" = dontDistribute super."FileSystem"; + "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo"; + "Finance-Treasury" = dontDistribute super."Finance-Treasury"; + "FiniteMap" = dontDistribute super."FiniteMap"; + "FirstOrderTheory" = dontDistribute super."FirstOrderTheory"; + "FixedPoint-simple" = dontDistribute super."FixedPoint-simple"; + "Flippi" = dontDistribute super."Flippi"; + "Focus" = dontDistribute super."Focus"; + "Folly" = dontDistribute super."Folly"; + "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; + "ForkableT" = dontDistribute super."ForkableT"; + "FormalGrammars" = dontDistribute super."FormalGrammars"; + "Foster" = dontDistribute super."Foster"; + "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; + "Fractaler" = dontDistribute super."Fractaler"; + "Frank" = dontDistribute super."Frank"; + "FreeTypeGL" = dontDistribute super."FreeTypeGL"; + "FunGEn" = dontDistribute super."FunGEn"; + "Fungi" = dontDistribute super."Fungi"; + "GA" = dontDistribute super."GA"; + "GGg" = dontDistribute super."GGg"; + "GHood" = dontDistribute super."GHood"; + "GLFW" = dontDistribute super."GLFW"; + "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; + "GLFW-task" = dontDistribute super."GLFW-task"; + "GLHUI" = dontDistribute super."GLHUI"; + "GLM" = dontDistribute super."GLM"; + "GLMatrix" = dontDistribute super."GLMatrix"; + "GLUtil" = dontDistribute super."GLUtil"; + "GPX" = dontDistribute super."GPX"; + "GPipe-Collada" = dontDistribute super."GPipe-Collada"; + "GPipe-Examples" = dontDistribute super."GPipe-Examples"; + "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad"; + "GTALib" = dontDistribute super."GTALib"; + "Gamgine" = dontDistribute super."Gamgine"; + "Ganymede" = dontDistribute super."Ganymede"; + "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration"; + "GeBoP" = dontDistribute super."GeBoP"; + "GenI" = dontDistribute super."GenI"; + "GenSmsPdu" = dontDistribute super."GenSmsPdu"; + "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe"; + "GenussFold" = dontDistribute super."GenussFold"; + "GeoIp" = dontDistribute super."GeoIp"; + "GeocoderOpenCage" = dontDistribute super."GeocoderOpenCage"; + "Geodetic" = dontDistribute super."Geodetic"; + "GeomPredicates" = dontDistribute super."GeomPredicates"; + "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE"; + "GiST" = dontDistribute super."GiST"; + "Gifcurry" = dontDistribute super."Gifcurry"; + "GiveYouAHead" = dontDistribute super."GiveYouAHead"; + "GlomeTrace" = dontDistribute super."GlomeTrace"; + "GlomeVec" = dontDistribute super."GlomeVec"; + "GlomeView" = dontDistribute super."GlomeView"; + "GoogleChart" = dontDistribute super."GoogleChart"; + "GoogleDirections" = dontDistribute super."GoogleDirections"; + "GoogleSB" = dontDistribute super."GoogleSB"; + "GoogleSuggest" = dontDistribute super."GoogleSuggest"; + "GoogleTranslate" = dontDistribute super."GoogleTranslate"; + "GotoT-transformers" = dontDistribute super."GotoT-transformers"; + "GrammarProducts" = dontDistribute super."GrammarProducts"; + "Graph500" = dontDistribute super."Graph500"; + "GraphHammer" = dontDistribute super."GraphHammer"; + "GraphHammer-examples" = dontDistribute super."GraphHammer-examples"; + "Graphalyze" = dontDistribute super."Graphalyze"; + "Grempa" = dontDistribute super."Grempa"; + "GroteTrap" = dontDistribute super."GroteTrap"; + "Grow" = dontDistribute super."Grow"; + "GrowlNotify" = dontDistribute super."GrowlNotify"; + "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics"; + "GtkGLTV" = dontDistribute super."GtkGLTV"; + "GtkTV" = dontDistribute super."GtkTV"; + "GuiHaskell" = dontDistribute super."GuiHaskell"; + "GuiTV" = dontDistribute super."GuiTV"; + "HARM" = dontDistribute super."HARM"; + "HAppS-Data" = dontDistribute super."HAppS-Data"; + "HAppS-IxSet" = dontDistribute super."HAppS-IxSet"; + "HAppS-Server" = dontDistribute super."HAppS-Server"; + "HAppS-State" = dontDistribute super."HAppS-State"; + "HAppS-Util" = dontDistribute super."HAppS-Util"; + "HAppSHelpers" = dontDistribute super."HAppSHelpers"; + "HCL" = dontDistribute super."HCL"; + "HCard" = dontDistribute super."HCard"; + "HDBC-mysql" = dontDistribute super."HDBC-mysql"; + "HDBC-odbc" = dontDistribute super."HDBC-odbc"; + "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore"; + "HDBC-session" = dontDistribute super."HDBC-session"; + "HDRUtils" = dontDistribute super."HDRUtils"; + "HERA" = dontDistribute super."HERA"; + "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; + "HFuse" = dontDistribute super."HFuse"; + "HGL" = dontDistribute super."HGL"; + "HGamer3D" = dontDistribute super."HGamer3D"; + "HGamer3D-API" = dontDistribute super."HGamer3D-API"; + "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio"; + "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding"; + "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding"; + "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding"; + "HGamer3D-Common" = dontDistribute super."HGamer3D-Common"; + "HGamer3D-Data" = dontDistribute super."HGamer3D-Data"; + "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding"; + "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI"; + "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D"; + "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem"; + "HGamer3D-Network" = dontDistribute super."HGamer3D-Network"; + "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding"; + "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding"; + "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding"; + "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding"; + "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent"; + "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire"; + "HGraphStorage" = dontDistribute super."HGraphStorage"; + "HHDL" = dontDistribute super."HHDL"; + "HJScript" = dontDistribute super."HJScript"; + "HJVM" = dontDistribute super."HJVM"; + "HJavaScript" = dontDistribute super."HJavaScript"; + "HLearn-algebra" = dontDistribute super."HLearn-algebra"; + "HLearn-approximation" = dontDistribute super."HLearn-approximation"; + "HLearn-classification" = dontDistribute super."HLearn-classification"; + "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; + "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HListPP" = dontDistribute super."HListPP"; + "HLogger" = dontDistribute super."HLogger"; + "HMM" = dontDistribute super."HMM"; + "HMap" = dontDistribute super."HMap"; + "HNM" = dontDistribute super."HNM"; + "HODE" = dontDistribute super."HODE"; + "HOpenCV" = dontDistribute super."HOpenCV"; + "HPath" = dontDistribute super."HPath"; + "HPi" = dontDistribute super."HPi"; + "HPlot" = dontDistribute super."HPlot"; + "HPong" = dontDistribute super."HPong"; + "HROOT" = dontDistribute super."HROOT"; + "HROOT-core" = dontDistribute super."HROOT-core"; + "HROOT-graf" = dontDistribute super."HROOT-graf"; + "HROOT-hist" = dontDistribute super."HROOT-hist"; + "HROOT-io" = dontDistribute super."HROOT-io"; + "HROOT-math" = dontDistribute super."HROOT-math"; + "HRay" = dontDistribute super."HRay"; + "HSFFIG" = dontDistribute super."HSFFIG"; + "HSGEP" = dontDistribute super."HSGEP"; + "HSH" = dontDistribute super."HSH"; + "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSlippyMap" = dontDistribute super."HSlippyMap"; + "HSmarty" = dontDistribute super."HSmarty"; + "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; + "HSvm" = dontDistribute super."HSvm"; + "HTTP-Simple" = dontDistribute super."HTTP-Simple"; + "HTab" = dontDistribute super."HTab"; + "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit-Diff" = dontDistribute super."HUnit-Diff"; + "HUnit-Plus" = dontDistribute super."HUnit-Plus"; + "HUnit-approx" = dontDistribute super."HUnit-approx"; + "HXMPP" = dontDistribute super."HXMPP"; + "HXQ" = dontDistribute super."HXQ"; + "HaLeX" = dontDistribute super."HaLeX"; + "HaMinitel" = dontDistribute super."HaMinitel"; + "HaPy" = dontDistribute super."HaPy"; + "HaTeX-meta" = dontDistribute super."HaTeX-meta"; + "HaTeX-qq" = dontDistribute super."HaTeX-qq"; + "HaVSA" = dontDistribute super."HaVSA"; + "Hach" = dontDistribute super."Hach"; + "HackMail" = dontDistribute super."HackMail"; + "Haggressive" = dontDistribute super."Haggressive"; + "HandlerSocketClient" = dontDistribute super."HandlerSocketClient"; + "Hangman" = dontDistribute super."Hangman"; + "HarmTrace" = dontDistribute super."HarmTrace"; + "HarmTrace-Base" = dontDistribute super."HarmTrace-Base"; + "HasGP" = dontDistribute super."HasGP"; + "Haschoo" = dontDistribute super."Haschoo"; + "Hashell" = dontDistribute super."Hashell"; + "HaskRel" = dontDistribute super."HaskRel"; + "HaskellForMaths" = dontDistribute super."HaskellForMaths"; + "HaskellLM" = dontDistribute super."HaskellLM"; + "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellTorrent" = dontDistribute super."HaskellTorrent"; + "HaskellTutorials" = dontDistribute super."HaskellTutorials"; + "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; + "Hawk" = dontDistribute super."Hawk"; + "Hayoo" = dontDistribute super."Hayoo"; + "Hclip" = dontDistribute super."Hclip"; + "Hedi" = dontDistribute super."Hedi"; + "HerbiePlugin" = dontDistribute super."HerbiePlugin"; + "Hermes" = dontDistribute super."Hermes"; + "Hieroglyph" = dontDistribute super."Hieroglyph"; + "HiggsSet" = dontDistribute super."HiggsSet"; + "Hipmunk" = dontDistribute super."Hipmunk"; + "HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; + "Hish" = dontDistribute super."Hish"; + "Histogram" = dontDistribute super."Histogram"; + "Hmpf" = dontDistribute super."Hmpf"; + "Hoed" = dontDistribute super."Hoed"; + "HoleyMonoid" = dontDistribute super."HoleyMonoid"; + "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution"; + "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce"; + "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine"; + "Holumbus-Storage" = dontDistribute super."Holumbus-Storage"; + "Homology" = dontDistribute super."Homology"; + "HongoDB" = dontDistribute super."HongoDB"; + "HostAndPort" = dontDistribute super."HostAndPort"; + "Hricket" = dontDistribute super."Hricket"; + "Hs2lib" = dontDistribute super."Hs2lib"; + "HsASA" = dontDistribute super."HsASA"; + "HsHaruPDF" = dontDistribute super."HsHaruPDF"; + "HsHyperEstraier" = dontDistribute super."HsHyperEstraier"; + "HsJudy" = dontDistribute super."HsJudy"; + "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system"; + "HsParrot" = dontDistribute super."HsParrot"; + "HsPerl5" = dontDistribute super."HsPerl5"; + "HsSVN" = dontDistribute super."HsSVN"; + "HsTools" = dontDistribute super."HsTools"; + "Hsed" = dontDistribute super."Hsed"; + "Hsmtlib" = dontDistribute super."Hsmtlib"; + "HueAPI" = dontDistribute super."HueAPI"; + "HulkImport" = dontDistribute super."HulkImport"; + "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres"; + "IDynamic" = dontDistribute super."IDynamic"; + "IFS" = dontDistribute super."IFS"; + "INblobs" = dontDistribute super."INblobs"; + "IOR" = dontDistribute super."IOR"; + "IORefCAS" = dontDistribute super."IORefCAS"; + "IOSpec" = dontDistribute super."IOSpec"; + "IcoGrid" = dontDistribute super."IcoGrid"; + "Imlib" = dontDistribute super."Imlib"; + "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; + "IndentParser" = dontDistribute super."IndentParser"; + "IndexedList" = dontDistribute super."IndexedList"; + "InfixApplicative" = dontDistribute super."InfixApplicative"; + "Interpolation" = dontDistribute super."Interpolation"; + "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "Irc" = dontDistribute super."Irc"; + "IrrHaskell" = dontDistribute super."IrrHaskell"; + "IsNull" = dontDistribute super."IsNull"; + "JSON-Combinator" = dontDistribute super."JSON-Combinator"; + "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples"; + "JSONb" = dontDistribute super."JSONb"; + "JYU-Utils" = dontDistribute super."JYU-Utils"; + "JackMiniMix" = dontDistribute super."JackMiniMix"; + "Javasf" = dontDistribute super."Javasf"; + "Javav" = dontDistribute super."Javav"; + "JsContracts" = dontDistribute super."JsContracts"; + "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JunkDB" = dontDistribute super."JunkDB"; + "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; + "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables"; + "JustParse" = dontDistribute super."JustParse"; + "KMP" = dontDistribute super."KMP"; + "KSP" = dontDistribute super."KSP"; + "Kalman" = dontDistribute super."Kalman"; + "KdTree" = dontDistribute super."KdTree"; + "Ketchup" = dontDistribute super."Ketchup"; + "KiCS" = dontDistribute super."KiCS"; + "KiCS-debugger" = dontDistribute super."KiCS-debugger"; + "KiCS-prophecy" = dontDistribute super."KiCS-prophecy"; + "Kleislify" = dontDistribute super."Kleislify"; + "Konf" = dontDistribute super."Konf"; + "Kriens" = dontDistribute super."Kriens"; + "KyotoCabinet" = dontDistribute super."KyotoCabinet"; + "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; + "LDAP" = dontDistribute super."LDAP"; + "LRU" = dontDistribute super."LRU"; + "LTree" = dontDistribute super."LTree"; + "LambdaCalculator" = dontDistribute super."LambdaCalculator"; + "LambdaHack" = dontDistribute super."LambdaHack"; + "LambdaINet" = dontDistribute super."LambdaINet"; + "LambdaNet" = dontDistribute super."LambdaNet"; + "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; + "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdajudge" = dontDistribute super."Lambdajudge"; + "Lambdaya" = dontDistribute super."Lambdaya"; + "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; + "Lastik" = dontDistribute super."Lastik"; + "Lattices" = dontDistribute super."Lattices"; + "Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2"; + "LazyVault" = dontDistribute super."LazyVault"; + "Level0" = dontDistribute super."Level0"; + "LibClang" = dontDistribute super."LibClang"; + "Limit" = dontDistribute super."Limit"; + "LinearSplit" = dontDistribute super."LinearSplit"; + "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; + "LinkChecker" = dontDistribute super."LinkChecker"; + "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; + "ListZipper" = dontDistribute super."ListZipper"; + "Logic" = dontDistribute super."Logic"; + "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; + "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI"; + "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network"; + "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes"; + "LslPlus" = dontDistribute super."LslPlus"; + "Lucu" = dontDistribute super."Lucu"; + "MASMGen" = dontDistribute super."MASMGen"; + "MC-Fold-DP" = dontDistribute super."MC-Fold-DP"; + "MHask" = dontDistribute super."MHask"; + "MSQueue" = dontDistribute super."MSQueue"; + "MTGBuilder" = dontDistribute super."MTGBuilder"; + "MagicHaskeller" = dontDistribute super."MagicHaskeller"; + "MailchimpSimple" = dontDistribute super."MailchimpSimple"; + "MaybeT" = dontDistribute super."MaybeT"; + "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf"; + "MaybeT-transformers" = dontDistribute super."MaybeT-transformers"; + "MazesOfMonad" = dontDistribute super."MazesOfMonad"; + "MeanShift" = dontDistribute super."MeanShift"; + "Measure" = dontDistribute super."Measure"; + "MetaHDBC" = dontDistribute super."MetaHDBC"; + "MetaObject" = dontDistribute super."MetaObject"; + "Metrics" = dontDistribute super."Metrics"; + "Mhailist" = dontDistribute super."Mhailist"; + "Michelangelo" = dontDistribute super."Michelangelo"; + "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator"; + "MiniAgda" = dontDistribute super."MiniAgda"; + "MissingK" = dontDistribute super."MissingK"; + "MissingM" = dontDistribute super."MissingM"; + "MissingPy" = dontDistribute super."MissingPy"; + "Modulo" = dontDistribute super."Modulo"; + "Moe" = dontDistribute super."Moe"; + "MoeDict" = dontDistribute super."MoeDict"; + "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl"; + "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign"; + "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; + "MonadCompose" = dontDistribute super."MonadCompose"; + "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; + "MonadStack" = dontDistribute super."MonadStack"; + "Monadius" = dontDistribute super."Monadius"; + "Monaris" = dontDistribute super."Monaris"; + "Monatron" = dontDistribute super."Monatron"; + "Monatron-IO" = dontDistribute super."Monatron-IO"; + "Monocle" = dontDistribute super."Monocle"; + "MorseCode" = dontDistribute super."MorseCode"; + "MuCheck" = dontDistribute super."MuCheck"; + "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit"; + "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec"; + "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck"; + "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck"; + "Munkres" = dontDistribute super."Munkres"; + "Munkres-simple" = dontDistribute super."Munkres-simple"; + "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid"; + "MyPrimes" = dontDistribute super."MyPrimes"; + "NGrams" = dontDistribute super."NGrams"; + "NTRU" = dontDistribute super."NTRU"; + "NXT" = dontDistribute super."NXT"; + "NXTDSL" = dontDistribute super."NXTDSL"; + "NanoProlog" = dontDistribute super."NanoProlog"; + "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets"; + "NaturalSort" = dontDistribute super."NaturalSort"; + "NearContextAlgebra" = dontDistribute super."NearContextAlgebra"; + "Neks" = dontDistribute super."Neks"; + "NestedFunctor" = dontDistribute super."NestedFunctor"; + "NestedSampling" = dontDistribute super."NestedSampling"; + "NetSNMP" = dontDistribute super."NetSNMP"; + "NewBinary" = dontDistribute super."NewBinary"; + "Ninjas" = dontDistribute super."Ninjas"; + "NoSlow" = dontDistribute super."NoSlow"; + "NoTrace" = dontDistribute super."NoTrace"; + "Noise" = dontDistribute super."Noise"; + "Nomyx" = dontDistribute super."Nomyx"; + "Nomyx-Core" = dontDistribute super."Nomyx-Core"; + "Nomyx-Language" = dontDistribute super."Nomyx-Language"; + "Nomyx-Rules" = dontDistribute super."Nomyx-Rules"; + "Nomyx-Web" = dontDistribute super."Nomyx-Web"; + "NonEmpty" = dontDistribute super."NonEmpty"; + "NonEmptyList" = dontDistribute super."NonEmptyList"; + "NumLazyByteString" = dontDistribute super."NumLazyByteString"; + "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; + "Numbers" = dontDistribute super."Numbers"; + "Nussinov78" = dontDistribute super."Nussinov78"; + "Nutri" = dontDistribute super."Nutri"; + "OGL" = dontDistribute super."OGL"; + "OSM" = dontDistribute super."OSM"; + "OTP" = dontDistribute super."OTP"; + "Object" = dontDistribute super."Object"; + "ObjectIO" = dontDistribute super."ObjectIO"; + "Obsidian" = dontDistribute super."Obsidian"; + "OddWord" = dontDistribute super."OddWord"; + "Omega" = dontDistribute super."Omega"; + "OneTuple" = dontDistribute super."OneTuple"; + "OpenAFP" = dontDistribute super."OpenAFP"; + "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils"; + "OpenAL" = dontDistribute super."OpenAL"; + "OpenCL" = dontDistribute super."OpenCL"; + "OpenCLRaw" = dontDistribute super."OpenCLRaw"; + "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; + "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw21" = dontDistribute super."OpenGLRaw21"; + "OpenSCAD" = dontDistribute super."OpenSCAD"; + "OpenVG" = dontDistribute super."OpenVG"; + "OpenVGRaw" = dontDistribute super."OpenVGRaw"; + "Operads" = dontDistribute super."Operads"; + "OptDir" = dontDistribute super."OptDir"; + "OrPatterns" = dontDistribute super."OrPatterns"; + "OrchestrateDB" = dontDistribute super."OrchestrateDB"; + "OrderedBits" = dontDistribute super."OrderedBits"; + "Ordinals" = dontDistribute super."Ordinals"; + "PArrows" = dontDistribute super."PArrows"; + "PBKDF2" = dontDistribute super."PBKDF2"; + "PCLT" = dontDistribute super."PCLT"; + "PCLT-DB" = dontDistribute super."PCLT-DB"; + "PDBtools" = dontDistribute super."PDBtools"; + "PTQ" = dontDistribute super."PTQ"; + "PUH-Project" = dontDistribute super."PUH-Project"; + "PageIO" = dontDistribute super."PageIO"; + "Paillier" = dontDistribute super."Paillier"; + "PandocAgda" = dontDistribute super."PandocAgda"; + "Paraiso" = dontDistribute super."Paraiso"; + "Parry" = dontDistribute super."Parry"; + "ParsecTools" = dontDistribute super."ParsecTools"; + "ParserFunction" = dontDistribute super."ParserFunction"; + "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; + "PasswordGenerator" = dontDistribute super."PasswordGenerator"; + "PastePipe" = dontDistribute super."PastePipe"; + "Pathfinder" = dontDistribute super."Pathfinder"; + "Peano" = dontDistribute super."Peano"; + "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; + "PerfectHash" = dontDistribute super."PerfectHash"; + "PermuteEffects" = dontDistribute super."PermuteEffects"; + "Phsu" = dontDistribute super."Phsu"; + "Pipe" = dontDistribute super."Pipe"; + "Piso" = dontDistribute super."Piso"; + "PlayHangmanGame" = dontDistribute super."PlayHangmanGame"; + "PlayingCards" = dontDistribute super."PlayingCards"; + "Plot-ho-matic" = dontDistribute super."Plot-ho-matic"; + "PlslTools" = dontDistribute super."PlslTools"; + "Plural" = dontDistribute super."Plural"; + "Pollutocracy" = dontDistribute super."Pollutocracy"; + "PortFusion" = dontDistribute super."PortFusion"; + "PortMidi" = dontDistribute super."PortMidi"; + "PostgreSQL" = dontDistribute super."PostgreSQL"; + "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; + "Printf-TH" = dontDistribute super."Printf-TH"; + "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; + "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; + "PropLogic" = dontDistribute super."PropLogic"; + "Proper" = dontDistribute super."Proper"; + "ProxN" = dontDistribute super."ProxN"; + "Pugs" = dontDistribute super."Pugs"; + "Pup-Events" = dontDistribute super."Pup-Events"; + "Pup-Events-Client" = dontDistribute super."Pup-Events-Client"; + "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo"; + "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; + "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; + "QIO" = dontDistribute super."QIO"; + "QuadEdge" = dontDistribute super."QuadEdge"; + "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; + "QuickAnnotate" = dontDistribute super."QuickAnnotate"; + "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; + "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; + "QuickCheck-safe" = dontDistribute super."QuickCheck-safe"; + "QuickPlot" = dontDistribute super."QuickPlot"; + "Quickson" = dontDistribute super."Quickson"; + "R-pandoc" = dontDistribute super."R-pandoc"; + "RANSAC" = dontDistribute super."RANSAC"; + "RBTree" = dontDistribute super."RBTree"; + "RESTng" = dontDistribute super."RESTng"; + "RFC1751" = dontDistribute super."RFC1751"; + "RJson" = dontDistribute super."RJson"; + "RMP" = dontDistribute super."RMP"; + "RNAFold" = dontDistribute super."RNAFold"; + "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; + "RNAdesign" = dontDistribute super."RNAdesign"; + "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = doDistribute super."RNAlien_1_0_0"; + "RNAwolf" = dontDistribute super."RNAwolf"; + "Raincat" = dontDistribute super."Raincat"; + "Random123" = dontDistribute super."Random123"; + "RandomDotOrg" = dontDistribute super."RandomDotOrg"; + "Randometer" = dontDistribute super."Randometer"; + "Range" = dontDistribute super."Range"; + "Ranged-sets" = dontDistribute super."Ranged-sets"; + "Ranka" = dontDistribute super."Ranka"; + "Rasenschach" = dontDistribute super."Rasenschach"; + "Redmine" = dontDistribute super."Redmine"; + "Ref" = dontDistribute super."Ref"; + "Referees" = dontDistribute super."Referees"; + "RepLib" = dontDistribute super."RepLib"; + "ReplicateEffects" = dontDistribute super."ReplicateEffects"; + "ReviewBoard" = dontDistribute super."ReviewBoard"; + "RichConditional" = dontDistribute super."RichConditional"; + "RollingDirectory" = dontDistribute super."RollingDirectory"; + "RoyalMonad" = dontDistribute super."RoyalMonad"; + "RxHaskell" = dontDistribute super."RxHaskell"; + "SBench" = dontDistribute super."SBench"; + "SConfig" = dontDistribute super."SConfig"; + "SDL" = dontDistribute super."SDL"; + "SDL-gfx" = dontDistribute super."SDL-gfx"; + "SDL-image" = dontDistribute super."SDL-image"; + "SDL-mixer" = dontDistribute super."SDL-mixer"; + "SDL-mpeg" = dontDistribute super."SDL-mpeg"; + "SDL-ttf" = dontDistribute super."SDL-ttf"; + "SDL2-ttf" = dontDistribute super."SDL2-ttf"; + "SFML" = dontDistribute super."SFML"; + "SFML-control" = dontDistribute super."SFML-control"; + "SFont" = dontDistribute super."SFont"; + "SG" = dontDistribute super."SG"; + "SGdemo" = dontDistribute super."SGdemo"; + "SHA2" = dontDistribute super."SHA2"; + "SMTPClient" = dontDistribute super."SMTPClient"; + "SNet" = dontDistribute super."SNet"; + "SQLDeps" = dontDistribute super."SQLDeps"; + "STL" = dontDistribute super."STL"; + "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = dontDistribute super."SVGFonts"; + "SVGPath" = dontDistribute super."SVGPath"; + "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; + "SableCC2Hs" = dontDistribute super."SableCC2Hs"; + "Safe" = dontDistribute super."Safe"; + "Salsa" = dontDistribute super."Salsa"; + "Saturnin" = dontDistribute super."Saturnin"; + "SciFlow" = dontDistribute super."SciFlow"; + "ScratchFs" = dontDistribute super."ScratchFs"; + "Scurry" = dontDistribute super."Scurry"; + "Semantique" = dontDistribute super."Semantique"; + "Semigroup" = dontDistribute super."Semigroup"; + "SeqAlign" = dontDistribute super."SeqAlign"; + "SessionLogger" = dontDistribute super."SessionLogger"; + "ShellCheck" = dontDistribute super."ShellCheck"; + "Shellac" = dontDistribute super."Shellac"; + "Shellac-compatline" = dontDistribute super."Shellac-compatline"; + "Shellac-editline" = dontDistribute super."Shellac-editline"; + "Shellac-haskeline" = dontDistribute super."Shellac-haskeline"; + "Shellac-readline" = dontDistribute super."Shellac-readline"; + "ShowF" = dontDistribute super."ShowF"; + "Shrub" = dontDistribute super."Shrub"; + "Shu-thing" = dontDistribute super."Shu-thing"; + "SimpleAES" = dontDistribute super."SimpleAES"; + "SimpleEA" = dontDistribute super."SimpleEA"; + "SimpleGL" = dontDistribute super."SimpleGL"; + "SimpleH" = dontDistribute super."SimpleH"; + "SimpleLog" = dontDistribute super."SimpleLog"; + "SimpleServer" = dontDistribute super."SimpleServer"; + "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; + "Smooth" = dontDistribute super."Smooth"; + "SmtLib" = dontDistribute super."SmtLib"; + "Snusmumrik" = dontDistribute super."Snusmumrik"; + "SoOSiM" = dontDistribute super."SoOSiM"; + "SoccerFun" = dontDistribute super."SoccerFun"; + "SoccerFunGL" = dontDistribute super."SoccerFunGL"; + "Sonnex" = dontDistribute super."Sonnex"; + "SourceGraph" = dontDistribute super."SourceGraph"; + "Southpaw" = dontDistribute super."Southpaw"; + "SpaceInvaders" = dontDistribute super."SpaceInvaders"; + "SpacePrivateers" = dontDistribute super."SpacePrivateers"; + "SpinCounter" = dontDistribute super."SpinCounter"; + "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; + "SpreadsheetML" = dontDistribute super."SpreadsheetML"; + "Sprig" = dontDistribute super."Sprig"; + "Stasis" = dontDistribute super."Stasis"; + "StateVar-transformer" = dontDistribute super."StateVar-transformer"; + "StatisticalMethods" = dontDistribute super."StatisticalMethods"; + "Stomp" = dontDistribute super."Stomp"; + "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; + "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "StrappedTemplates" = dontDistribute super."StrappedTemplates"; + "StrategyLib" = dontDistribute super."StrategyLib"; + "Stream" = dontDistribute super."Stream"; + "StrictBench" = dontDistribute super."StrictBench"; + "SuffixStructures" = dontDistribute super."SuffixStructures"; + "SybWidget" = dontDistribute super."SybWidget"; + "SyntaxMacros" = dontDistribute super."SyntaxMacros"; + "Sysmon" = dontDistribute super."Sysmon"; + "TBC" = dontDistribute super."TBC"; + "TBit" = dontDistribute super."TBit"; + "THEff" = dontDistribute super."THEff"; + "TTTAS" = dontDistribute super."TTTAS"; + "TV" = dontDistribute super."TV"; + "TYB" = dontDistribute super."TYB"; + "TableAlgebra" = dontDistribute super."TableAlgebra"; + "Tables" = dontDistribute super."Tables"; + "Tablify" = dontDistribute super."Tablify"; + "Tainted" = dontDistribute super."Tainted"; + "Takusen" = dontDistribute super."Takusen"; + "Tape" = dontDistribute super."Tape"; + "TeaHS" = dontDistribute super."TeaHS"; + "Tensor" = dontDistribute super."Tensor"; + "TernaryTrees" = dontDistribute super."TernaryTrees"; + "TestExplode" = dontDistribute super."TestExplode"; + "Theora" = dontDistribute super."Theora"; + "Thingie" = dontDistribute super."Thingie"; + "ThreadObjects" = dontDistribute super."ThreadObjects"; + "Thrift" = dontDistribute super."Thrift"; + "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe"; + "TicTacToe" = dontDistribute super."TicTacToe"; + "TigerHash" = dontDistribute super."TigerHash"; + "TimePiece" = dontDistribute super."TimePiece"; + "TinyLaunchbury" = dontDistribute super."TinyLaunchbury"; + "TinyURL" = dontDistribute super."TinyURL"; + "Titim" = dontDistribute super."Titim"; + "Top" = dontDistribute super."Top"; + "Tournament" = dontDistribute super."Tournament"; + "TraceUtils" = dontDistribute super."TraceUtils"; + "TransformersStepByStep" = dontDistribute super."TransformersStepByStep"; + "Transhare" = dontDistribute super."Transhare"; + "TreeCounter" = dontDistribute super."TreeCounter"; + "TreeStructures" = dontDistribute super."TreeStructures"; + "TreeT" = dontDistribute super."TreeT"; + "Treiber" = dontDistribute super."Treiber"; + "TrendGraph" = dontDistribute super."TrendGraph"; + "TrieMap" = dontDistribute super."TrieMap"; + "Twofish" = dontDistribute super."Twofish"; + "TypeClass" = dontDistribute super."TypeClass"; + "TypeCompose" = dontDistribute super."TypeCompose"; + "TypeIlluminator" = dontDistribute super."TypeIlluminator"; + "TypeNat" = dontDistribute super."TypeNat"; + "TypingTester" = dontDistribute super."TypingTester"; + "UISF" = dontDistribute super."UISF"; + "UMM" = dontDistribute super."UMM"; + "URLT" = dontDistribute super."URLT"; + "URLb" = dontDistribute super."URLb"; + "UTFTConverter" = dontDistribute super."UTFTConverter"; + "Unique" = dontDistribute super."Unique"; + "Unixutils-shadow" = dontDistribute super."Unixutils-shadow"; + "Updater" = dontDistribute super."Updater"; + "UrlDisp" = dontDistribute super."UrlDisp"; + "Useful" = dontDistribute super."Useful"; + "UtilityTM" = dontDistribute super."UtilityTM"; + "VKHS" = dontDistribute super."VKHS"; + "Validation" = dontDistribute super."Validation"; + "Vec" = dontDistribute super."Vec"; + "Vec-Boolean" = dontDistribute super."Vec-Boolean"; + "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw"; + "Vec-Transform" = dontDistribute super."Vec-Transform"; + "VecN" = dontDistribute super."VecN"; + "Verba" = dontDistribute super."Verba"; + "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "Vulkan" = dontDistribute super."Vulkan"; + "WAVE" = dontDistribute super."WAVE"; + "WL500gPControl" = dontDistribute super."WL500gPControl"; + "WL500gPLib" = dontDistribute super."WL500gPLib"; + "WMSigner" = dontDistribute super."WMSigner"; + "WURFL" = dontDistribute super."WURFL"; + "WXDiffCtrl" = dontDistribute super."WXDiffCtrl"; + "WashNGo" = dontDistribute super."WashNGo"; + "WaveFront" = dontDistribute super."WaveFront"; + "Weather" = dontDistribute super."Weather"; + "WebBits" = dontDistribute super."WebBits"; + "WebBits-Html" = dontDistribute super."WebBits-Html"; + "WebBits-multiplate" = dontDistribute super."WebBits-multiplate"; + "WebCont" = dontDistribute super."WebCont"; + "WeberLogic" = dontDistribute super."WeberLogic"; + "Webrexp" = dontDistribute super."Webrexp"; + "Wheb" = dontDistribute super."Wheb"; + "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; + "Win32-errors" = dontDistribute super."Win32-errors"; + "Win32-junction-point" = dontDistribute super."Win32-junction-point"; + "Win32-security" = dontDistribute super."Win32-security"; + "Win32-services" = dontDistribute super."Win32-services"; + "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper"; + "Wired" = dontDistribute super."Wired"; + "WordAlignment" = dontDistribute super."WordAlignment"; + "WordNet" = dontDistribute super."WordNet"; + "WordNet-ghc74" = dontDistribute super."WordNet-ghc74"; + "Wordlint" = dontDistribute super."Wordlint"; + "WxGeneric" = dontDistribute super."WxGeneric"; + "X11-extras" = dontDistribute super."X11-extras"; + "X11-rm" = dontDistribute super."X11-rm"; + "X11-xdamage" = dontDistribute super."X11-xdamage"; + "X11-xfixes" = dontDistribute super."X11-xfixes"; + "X11-xft" = dontDistribute super."X11-xft"; + "X11-xshape" = dontDistribute super."X11-xshape"; + "XAttr" = dontDistribute super."XAttr"; + "XInput" = dontDistribute super."XInput"; + "XMMS" = dontDistribute super."XMMS"; + "XMPP" = dontDistribute super."XMPP"; + "XSaiga" = dontDistribute super."XSaiga"; + "Xec" = dontDistribute super."Xec"; + "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter"; + "Xorshift128Plus" = dontDistribute super."Xorshift128Plus"; + "YACPong" = dontDistribute super."YACPong"; + "YFrob" = dontDistribute super."YFrob"; + "Yablog" = dontDistribute super."Yablog"; + "YamlReference" = dontDistribute super."YamlReference"; + "Yampa-core" = dontDistribute super."Yampa-core"; + "Yocto" = dontDistribute super."Yocto"; + "Yogurt" = dontDistribute super."Yogurt"; + "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone"; + "ZEBEDDE" = dontDistribute super."ZEBEDDE"; + "ZFS" = dontDistribute super."ZFS"; + "ZMachine" = dontDistribute super."ZMachine"; + "ZipFold" = dontDistribute super."ZipFold"; + "ZipperAG" = dontDistribute super."ZipperAG"; + "Zora" = dontDistribute super."Zora"; + "Zwaluw" = dontDistribute super."Zwaluw"; + "a50" = dontDistribute super."a50"; + "abacate" = dontDistribute super."abacate"; + "abc-puzzle" = dontDistribute super."abc-puzzle"; + "abcBridge" = dontDistribute super."abcBridge"; + "abcnotation" = dontDistribute super."abcnotation"; + "abeson" = dontDistribute super."abeson"; + "abstract-deque-tests" = dontDistribute super."abstract-deque-tests"; + "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate"; + "abt" = dontDistribute super."abt"; + "ac-machine" = dontDistribute super."ac-machine"; + "ac-machine-conduit" = dontDistribute super."ac-machine-conduit"; + "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic"; + "accelerate-cublas" = dontDistribute super."accelerate-cublas"; + "accelerate-cuda" = dontDistribute super."accelerate-cuda"; + "accelerate-cufft" = dontDistribute super."accelerate-cufft"; + "accelerate-examples" = dontDistribute super."accelerate-examples"; + "accelerate-fft" = dontDistribute super."accelerate-fft"; + "accelerate-fftw" = dontDistribute super."accelerate-fftw"; + "accelerate-fourier" = dontDistribute super."accelerate-fourier"; + "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; + "accelerate-io" = dontDistribute super."accelerate-io"; + "accelerate-random" = dontDistribute super."accelerate-random"; + "accelerate-utility" = dontDistribute super."accelerate-utility"; + "accentuateus" = dontDistribute super."accentuateus"; + "access-time" = dontDistribute super."access-time"; + "acid-state-dist" = dontDistribute super."acid-state-dist"; + "acid-state-tls" = dontDistribute super."acid-state-tls"; + "acl2" = dontDistribute super."acl2"; + "acme-all-monad" = dontDistribute super."acme-all-monad"; + "acme-box" = dontDistribute super."acme-box"; + "acme-cadre" = dontDistribute super."acme-cadre"; + "acme-cofunctor" = dontDistribute super."acme-cofunctor"; + "acme-colosson" = dontDistribute super."acme-colosson"; + "acme-comonad" = dontDistribute super."acme-comonad"; + "acme-cutegirl" = dontDistribute super."acme-cutegirl"; + "acme-dont" = dontDistribute super."acme-dont"; + "acme-flipping-tables" = dontDistribute super."acme-flipping-tables"; + "acme-grawlix" = dontDistribute super."acme-grawlix"; + "acme-hq9plus" = dontDistribute super."acme-hq9plus"; + "acme-http" = dontDistribute super."acme-http"; + "acme-inator" = dontDistribute super."acme-inator"; + "acme-io" = dontDistribute super."acme-io"; + "acme-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-diff" = dontDistribute super."aeson-diff"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-lens" = dontDistribute super."aeson-lens"; + "aeson-native" = dontDistribute super."aeson-native"; + "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-schema" = dontDistribute super."aeson-schema"; + "aeson-serialize" = dontDistribute super."aeson-serialize"; + "aeson-smart" = dontDistribute super."aeson-smart"; + "aeson-streams" = dontDistribute super."aeson-streams"; + "aeson-t" = dontDistribute super."aeson-t"; + "aeson-toolkit" = dontDistribute super."aeson-toolkit"; + "aeson-value-parser" = dontDistribute super."aeson-value-parser"; + "aeson-yak" = dontDistribute super."aeson-yak"; + "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc"; + "afis" = dontDistribute super."afis"; + "afv" = dontDistribute super."afv"; + "ag-pictgen" = dontDistribute super."ag-pictgen"; + "agda-server" = dontDistribute super."agda-server"; + "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; + "agum" = dontDistribute super."agum"; + "aig" = dontDistribute super."aig"; + "air" = dontDistribute super."air"; + "air-extra" = dontDistribute super."air-extra"; + "air-spec" = dontDistribute super."air-spec"; + "air-th" = dontDistribute super."air-th"; + "airbrake" = dontDistribute super."airbrake"; + "aivika" = dontDistribute super."aivika"; + "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-experiment" = dontDistribute super."aivika-experiment"; + "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; + "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; + "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams"; + "aivika-transformers" = dontDistribute super."aivika-transformers"; + "ajhc" = dontDistribute super."ajhc"; + "al" = dontDistribute super."al"; + "alea" = dontDistribute super."alea"; + "alex-meta" = dontDistribute super."alex-meta"; + "alfred" = dontDistribute super."alfred"; + "alga" = dontDistribute super."alga"; + "algebra" = dontDistribute super."algebra"; + "algebra-dag" = dontDistribute super."algebra-dag"; + "algebra-sql" = dontDistribute super."algebra-sql"; + "algebraic" = dontDistribute super."algebraic"; + "algebraic-classes" = dontDistribute super."algebraic-classes"; + "align" = dontDistribute super."align"; + "align-text" = dontDistribute super."align-text"; + "aligned-foreignptr" = dontDistribute super."aligned-foreignptr"; + "allocated-processor" = dontDistribute super."allocated-processor"; + "alloy" = dontDistribute super."alloy"; + "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd"; + "almost-fix" = dontDistribute super."almost-fix"; + "alms" = dontDistribute super."alms"; + "alpha" = dontDistribute super."alpha"; + "alpino-tools" = dontDistribute super."alpino-tools"; + "alsa" = dontDistribute super."alsa"; + "alsa-core" = dontDistribute super."alsa-core"; + "alsa-gui" = dontDistribute super."alsa-gui"; + "alsa-midi" = dontDistribute super."alsa-midi"; + "alsa-mixer" = dontDistribute super."alsa-mixer"; + "alsa-pcm" = dontDistribute super."alsa-pcm"; + "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests"; + "alsa-seq" = dontDistribute super."alsa-seq"; + "alsa-seq-tests" = dontDistribute super."alsa-seq-tests"; + "altcomposition" = dontDistribute super."altcomposition"; + "alternative-io" = dontDistribute super."alternative-io"; + "altfloat" = dontDistribute super."altfloat"; + "alure" = dontDistribute super."alure"; + "amazon-emailer" = dontDistribute super."amazon-emailer"; + "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; + "amazon-products" = dontDistribute super."amazon-products"; + "ampersand" = dontDistribute super."ampersand"; + "amqp-conduit" = dontDistribute super."amqp-conduit"; + "amrun" = dontDistribute super."amrun"; + "analyze-client" = dontDistribute super."analyze-client"; + "anansi" = dontDistribute super."anansi"; + "anansi-hscolour" = dontDistribute super."anansi-hscolour"; + "anansi-pandoc" = dontDistribute super."anansi-pandoc"; + "anatomy" = dontDistribute super."anatomy"; + "android" = dontDistribute super."android"; + "android-lint-summary" = dontDistribute super."android-lint-summary"; + "animalcase" = dontDistribute super."animalcase"; + "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-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"; + "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; + "apportionment" = dontDistribute super."apportionment"; + "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate-equality" = dontDistribute super."approximate-equality"; + "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; + "arb-fft" = dontDistribute super."arb-fft"; + "arbb-vm" = dontDistribute super."arbb-vm"; + "archive" = dontDistribute super."archive"; + "archiver" = dontDistribute super."archiver"; + "archlinux" = dontDistribute super."archlinux"; + "archlinux-web" = dontDistribute super."archlinux-web"; + "archnews" = dontDistribute super."archnews"; + "arff" = dontDistribute super."arff"; + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon2" = dontDistribute super."argon2"; + "argparser" = dontDistribute super."argparser"; + "arguedit" = dontDistribute super."arguedit"; + "ariadne" = dontDistribute super."ariadne"; + "arion" = dontDistribute super."arion"; + "arith-encode" = dontDistribute super."arith-encode"; + "arithmatic" = dontDistribute super."arithmatic"; + "arithmetic" = dontDistribute super."arithmetic"; + "arithmoi" = dontDistribute super."arithmoi"; + "armada" = dontDistribute super."armada"; + "arpa" = dontDistribute super."arpa"; + "array-forth" = dontDistribute super."array-forth"; + "array-memoize" = dontDistribute super."array-memoize"; + "array-primops" = dontDistribute super."array-primops"; + "array-utils" = dontDistribute super."array-utils"; + "arrow-improve" = dontDistribute super."arrow-improve"; + "arrowapply-utils" = dontDistribute super."arrowapply-utils"; + "arrowp" = dontDistribute super."arrowp"; + "arrows" = dontDistribute super."arrows"; + "artery" = dontDistribute super."artery"; + "arx" = dontDistribute super."arx"; + "arxiv" = dontDistribute super."arxiv"; + "ascetic" = dontDistribute super."ascetic"; + "ascii" = dontDistribute super."ascii"; + "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; + "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; + "asic" = dontDistribute super."asic"; + "asil" = dontDistribute super."asil"; + "asn1-data" = dontDistribute super."asn1-data"; + "asn1dump" = dontDistribute super."asn1dump"; + "assembler" = dontDistribute super."assembler"; + "assert" = dontDistribute super."assert"; + "assert-failure" = dontDistribute super."assert-failure"; + "assertions" = dontDistribute super."assertions"; + "assimp" = dontDistribute super."assimp"; + "astar" = dontDistribute super."astar"; + "astrds" = dontDistribute super."astrds"; + "astview" = dontDistribute super."astview"; + "astview-utils" = dontDistribute super."astview-utils"; + "async-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" = dontDistribute super."atom-conduit"; + "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; + "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; + "atomic-write" = dontDistribute super."atomic-write"; + "atomo" = dontDistribute super."atomo"; + "atp-haskell" = dontDistribute super."atp-haskell"; + "atrans" = dontDistribute super."atrans"; + "attempt" = dontDistribute super."attempt"; + "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec-arff" = dontDistribute super."attoparsec-arff"; + "attoparsec-binary" = dontDistribute super."attoparsec-binary"; + "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; + "attoparsec-csv" = dontDistribute super."attoparsec-csv"; + "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee"; + "attoparsec-parsec" = dontDistribute super."attoparsec-parsec"; + "attoparsec-text" = dontDistribute super."attoparsec-text"; + "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator"; + "attosplit" = dontDistribute super."attosplit"; + "atuin" = dontDistribute super."atuin"; + "audacity" = dontDistribute super."audacity"; + "audiovisual" = dontDistribute super."audiovisual"; + "augeas" = dontDistribute super."augeas"; + "augur" = dontDistribute super."augur"; + "aur" = dontDistribute super."aur"; + "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; + "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authinfo-hs" = dontDistribute super."authinfo-hs"; + "authoring" = dontDistribute super."authoring"; + "autoexporter" = dontDistribute super."autoexporter"; + "autonix-deps" = dontDistribute super."autonix-deps"; + "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; + "autoproc" = dontDistribute super."autoproc"; + "avahi" = dontDistribute super."avahi"; + "avatar-generator" = dontDistribute super."avatar-generator"; + "average" = dontDistribute super."average"; + "avl-static" = dontDistribute super."avl-static"; + "avr-shake" = dontDistribute super."avr-shake"; + "awesome-prelude" = dontDistribute super."awesome-prelude"; + "awesomium" = dontDistribute super."awesomium"; + "awesomium-glut" = dontDistribute super."awesomium-glut"; + "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; + "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; + "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; + "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams"; + "aws-ec2" = dontDistribute super."aws-ec2"; + "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder"; + "aws-general" = dontDistribute super."aws-general"; + "aws-kinesis" = dontDistribute super."aws-kinesis"; + "aws-kinesis-client" = dontDistribute super."aws-kinesis-client"; + "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard"; + "aws-lambda" = dontDistribute super."aws-lambda"; + "aws-performance-tests" = dontDistribute super."aws-performance-tests"; + "aws-route53" = dontDistribute super."aws-route53"; + "aws-sdk" = dontDistribute super."aws-sdk"; + "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter"; + "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered"; + "aws-sign4" = dontDistribute super."aws-sign4"; + "aws-sns" = dontDistribute super."aws-sns"; + "azure-acs" = dontDistribute super."azure-acs"; + "azure-service-api" = dontDistribute super."azure-service-api"; + "azure-servicebus" = dontDistribute super."azure-servicebus"; + "azurify" = dontDistribute super."azurify"; + "b-tree" = dontDistribute super."b-tree"; + "babylon" = dontDistribute super."babylon"; + "backdropper" = dontDistribute super."backdropper"; + "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; + "backward-state" = dontDistribute super."backward-state"; + "bacteria" = dontDistribute super."bacteria"; + "bag" = dontDistribute super."bag"; + "bamboo" = dontDistribute super."bamboo"; + "bamboo-launcher" = dontDistribute super."bamboo-launcher"; + "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight"; + "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo"; + "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint"; + "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5"; + "bamse" = dontDistribute super."bamse"; + "bamstats" = dontDistribute super."bamstats"; + "bank-holiday-usa" = dontDistribute super."bank-holiday-usa"; + "banwords" = dontDistribute super."banwords"; + "barchart" = dontDistribute super."barchart"; + "barcodes-code128" = dontDistribute super."barcodes-code128"; + "barecheck" = dontDistribute super."barecheck"; + "barley" = dontDistribute super."barley"; + "barrie" = dontDistribute super."barrie"; + "barrier-monad" = dontDistribute super."barrier-monad"; + "base-generics" = dontDistribute super."base-generics"; + "base-io-access" = dontDistribute super."base-io-access"; + "base-prelude" = doDistribute super."base-prelude_0_1_21"; + "base32-bytestring" = dontDistribute super."base32-bytestring"; + "base58-bytestring" = dontDistribute super."base58-bytestring"; + "base58address" = dontDistribute super."base58address"; + "base64-conduit" = dontDistribute super."base64-conduit"; + "base91" = dontDistribute super."base91"; + "basex-client" = dontDistribute super."basex-client"; + "bash" = dontDistribute super."bash"; + "basic-lens" = dontDistribute super."basic-lens"; + "basic-sop" = dontDistribute super."basic-sop"; + "baskell" = dontDistribute super."baskell"; + "battlenet" = dontDistribute super."battlenet"; + "battlenet-yesod" = dontDistribute super."battlenet-yesod"; + "battleships" = dontDistribute super."battleships"; + "bayes-stack" = dontDistribute super."bayes-stack"; + "bbdb" = dontDistribute super."bbdb"; + "bbi" = dontDistribute super."bbi"; + "bdd" = dontDistribute super."bdd"; + "bdelta" = dontDistribute super."bdelta"; + "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; + "beamable" = dontDistribute super."beamable"; + "beautifHOL" = dontDistribute super."beautifHOL"; + "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; + "bein" = dontDistribute super."bein"; + "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"; + "bibtex" = dontDistribute super."bibtex"; + "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; + "bidispec" = dontDistribute super."bidispec"; + "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; + "billboard-parser" = dontDistribute super."billboard-parser"; + "billeksah-forms" = dontDistribute super."billeksah-forms"; + "billeksah-main" = dontDistribute super."billeksah-main"; + "billeksah-main-static" = dontDistribute super."billeksah-main-static"; + "billeksah-pane" = dontDistribute super."billeksah-pane"; + "billeksah-services" = dontDistribute super."billeksah-services"; + "bimaps" = dontDistribute super."bimaps"; + "binary-bits" = dontDistribute super."binary-bits"; + "binary-communicator" = dontDistribute super."binary-communicator"; + "binary-derive" = dontDistribute super."binary-derive"; + "binary-enum" = dontDistribute super."binary-enum"; + "binary-file" = dontDistribute super."binary-file"; + "binary-generic" = dontDistribute super."binary-generic"; + "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-protocol" = dontDistribute super."binary-protocol"; + "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; + "binary-shared" = dontDistribute super."binary-shared"; + "binary-state" = dontDistribute super."binary-state"; + "binary-store" = dontDistribute super."binary-store"; + "binary-streams" = dontDistribute super."binary-streams"; + "binary-strict" = dontDistribute super."binary-strict"; + "binarydefer" = dontDistribute super."binarydefer"; + "bind-marshal" = dontDistribute super."bind-marshal"; + "binding-core" = dontDistribute super."binding-core"; + "binding-gtk" = dontDistribute super."binding-gtk"; + "binding-wx" = dontDistribute super."binding-wx"; + "bindings" = dontDistribute super."bindings"; + "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-K8055" = dontDistribute super."bindings-K8055"; + "bindings-apr" = dontDistribute super."bindings-apr"; + "bindings-apr-util" = dontDistribute super."bindings-apr-util"; + "bindings-audiofile" = dontDistribute super."bindings-audiofile"; + "bindings-bfd" = dontDistribute super."bindings-bfd"; + "bindings-cctools" = dontDistribute super."bindings-cctools"; + "bindings-codec2" = dontDistribute super."bindings-codec2"; + "bindings-common" = dontDistribute super."bindings-common"; + "bindings-dc1394" = dontDistribute super."bindings-dc1394"; + "bindings-directfb" = dontDistribute super."bindings-directfb"; + "bindings-eskit" = dontDistribute super."bindings-eskit"; + "bindings-fann" = dontDistribute super."bindings-fann"; + "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth"; + "bindings-friso" = dontDistribute super."bindings-friso"; + "bindings-glib" = dontDistribute super."bindings-glib"; + "bindings-gobject" = dontDistribute super."bindings-gobject"; + "bindings-gpgme" = dontDistribute super."bindings-gpgme"; + "bindings-gsl" = dontDistribute super."bindings-gsl"; + "bindings-gts" = dontDistribute super."bindings-gts"; + "bindings-hamlib" = dontDistribute super."bindings-hamlib"; + "bindings-hdf5" = dontDistribute super."bindings-hdf5"; + "bindings-levmar" = dontDistribute super."bindings-levmar"; + "bindings-libcddb" = dontDistribute super."bindings-libcddb"; + "bindings-libffi" = dontDistribute super."bindings-libffi"; + "bindings-libftdi" = dontDistribute super."bindings-libftdi"; + "bindings-librrd" = dontDistribute super."bindings-librrd"; + "bindings-libstemmer" = dontDistribute super."bindings-libstemmer"; + "bindings-libusb" = dontDistribute super."bindings-libusb"; + "bindings-libv4l2" = dontDistribute super."bindings-libv4l2"; + "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2"; + "bindings-lxc" = dontDistribute super."bindings-lxc"; + "bindings-mmap" = dontDistribute super."bindings-mmap"; + "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal"; + "bindings-nettle" = dontDistribute super."bindings-nettle"; + "bindings-parport" = dontDistribute super."bindings-parport"; + "bindings-portaudio" = dontDistribute super."bindings-portaudio"; + "bindings-potrace" = dontDistribute super."bindings-potrace"; + "bindings-ppdev" = dontDistribute super."bindings-ppdev"; + "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd"; + "bindings-sane" = dontDistribute super."bindings-sane"; + "bindings-sc3" = dontDistribute super."bindings-sc3"; + "bindings-sipc" = dontDistribute super."bindings-sipc"; + "bindings-sophia" = dontDistribute super."bindings-sophia"; + "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; + "bindings-svm" = dontDistribute super."bindings-svm"; + "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; + "binembed" = dontDistribute super."binembed"; + "binembed-example" = dontDistribute super."binembed-example"; + "bini" = dontDistribute super."bini"; + "bio" = dontDistribute super."bio"; + "biohazard" = dontDistribute super."biohazard"; + "bioinformatics-toolkit" = dontDistribute super."bioinformatics-toolkit"; + "biosff" = dontDistribute super."biosff"; + "biostockholm" = dontDistribute super."biostockholm"; + "bird" = dontDistribute super."bird"; + "bit-array" = dontDistribute super."bit-array"; + "bit-vector" = dontDistribute super."bit-vector"; + "bitarray" = dontDistribute super."bitarray"; + "bitcoin-rpc" = dontDistribute super."bitcoin-rpc"; + "bitly-cli" = dontDistribute super."bitly-cli"; + "bitmap" = dontDistribute super."bitmap"; + "bitmap-opengl" = dontDistribute super."bitmap-opengl"; + "bitmaps" = dontDistribute super."bitmaps"; + "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-conduit" = dontDistribute super."bits-conduit"; + "bits-extras" = dontDistribute super."bits-extras"; + "bitset" = dontDistribute super."bitset"; + "bitspeak" = dontDistribute super."bitspeak"; + "bitstream" = dontDistribute super."bitstream"; + "bitstring" = dontDistribute super."bitstring"; + "bittorrent" = dontDistribute super."bittorrent"; + "bitvec" = dontDistribute super."bitvec"; + "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; + "bk-tree" = dontDistribute super."bk-tree"; + "bkr" = dontDistribute super."bkr"; + "bktrees" = dontDistribute super."bktrees"; + "bla" = dontDistribute super."bla"; + "black-jewel" = dontDistribute super."black-jewel"; + "blacktip" = dontDistribute super."blacktip"; + "blakesum" = dontDistribute super."blakesum"; + "blakesum-demo" = dontDistribute super."blakesum-demo"; + "blas" = dontDistribute super."blas"; + "blas-hs" = dontDistribute super."blas-hs"; + "blatex" = dontDistribute super."blatex"; + "blaze" = dontDistribute super."blaze"; + "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; + "blaze-from-html" = dontDistribute super."blaze-from-html"; + "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; + "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat"; + "blaze-html-truncate" = dontDistribute super."blaze-html-truncate"; + "blaze-json" = dontDistribute super."blaze-json"; + "blaze-shields" = dontDistribute super."blaze-shields"; + "blaze-textual-native" = dontDistribute super."blaze-textual-native"; + "blazeMarker" = dontDistribute super."blazeMarker"; + "blink1" = dontDistribute super."blink1"; + "blip" = dontDistribute super."blip"; + "bliplib" = dontDistribute super."bliplib"; + "blocking-transactions" = dontDistribute super."blocking-transactions"; + "blogination" = dontDistribute super."blogination"; + "bloodhound" = dontDistribute super."bloodhound"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloxorz" = dontDistribute super."bloxorz"; + "blubber" = dontDistribute super."blubber"; + "blubber-server" = dontDistribute super."blubber-server"; + "bluetile" = dontDistribute super."bluetile"; + "bluetileutils" = dontDistribute super."bluetileutils"; + "blunt" = dontDistribute super."blunt"; + "board-games" = dontDistribute super."board-games"; + "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; + "boolean-list" = dontDistribute super."boolean-list"; + "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; + "boolexpr" = dontDistribute super."boolexpr"; + "bools" = dontDistribute super."bools"; + "boolsimplifier" = dontDistribute super."boolsimplifier"; + "boomange" = dontDistribute super."boomange"; + "boombox" = dontDistribute super."boombox"; + "boomslang" = dontDistribute super."boomslang"; + "borel" = dontDistribute super."borel"; + "bot" = dontDistribute super."bot"; + "botpp" = dontDistribute super."botpp"; + "bound-gen" = dontDistribute super."bound-gen"; + "bounded-tchan" = dontDistribute super."bounded-tchan"; + "boundingboxes" = dontDistribute super."boundingboxes"; + "bowntz" = dontDistribute super."bowntz"; + "bpann" = dontDistribute super."bpann"; + "braid" = dontDistribute super."braid"; + "brainfuck" = dontDistribute super."brainfuck"; + "brainfuck-monad" = dontDistribute super."brainfuck-monad"; + "brainfuck-tut" = dontDistribute super."brainfuck-tut"; + "break" = dontDistribute super."break"; + "breakout" = dontDistribute super."breakout"; + "breve" = dontDistribute super."breve"; + "brians-brain" = dontDistribute super."brians-brain"; + "brillig" = dontDistribute super."brillig"; + "broccoli" = dontDistribute super."broccoli"; + "broker-haskell" = dontDistribute super."broker-haskell"; + "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson-generic" = dontDistribute super."bson-generic"; + "bson-generics" = dontDistribute super."bson-generics"; + "bson-mapping" = dontDistribute super."bson-mapping"; + "bspack" = dontDistribute super."bspack"; + "bsparse" = dontDistribute super."bsparse"; + "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; + "buffer-pipe" = dontDistribute super."buffer-pipe"; + "buffon" = dontDistribute super."buffon"; + "bugzilla" = dontDistribute super."bugzilla"; + "buildable" = dontDistribute super."buildable"; + "buildbox" = dontDistribute super."buildbox"; + "buildbox-tools" = dontDistribute super."buildbox-tools"; + "buildwrapper" = dontDistribute super."buildwrapper"; + "bullet" = dontDistribute super."bullet"; + "burst-detection" = dontDistribute super."burst-detection"; + "bus-pirate" = dontDistribute super."bus-pirate"; + "buster" = dontDistribute super."buster"; + "buster-gtk" = dontDistribute super."buster-gtk"; + "buster-network" = dontDistribute super."buster-network"; + "butterflies" = dontDistribute super."butterflies"; + "bv" = dontDistribute super."bv"; + "byline" = dontDistribute super."byline"; + "bytable" = dontDistribute super."bytable"; + "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-class" = dontDistribute super."bytestring-class"; + "bytestring-csv" = dontDistribute super."bytestring-csv"; + "bytestring-delta" = dontDistribute super."bytestring-delta"; + "bytestring-from" = dontDistribute super."bytestring-from"; + "bytestring-nums" = dontDistribute super."bytestring-nums"; + "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-rematch" = dontDistribute super."bytestring-rematch"; + "bytestring-short" = dontDistribute super."bytestring-short"; + "bytestring-show" = dontDistribute super."bytestring-show"; + "bytestring-tree-builder" = dontDistribute super."bytestring-tree-builder"; + "bytestringparser" = dontDistribute super."bytestringparser"; + "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary"; + "bytestringreadp" = dontDistribute super."bytestringreadp"; + "c-dsl" = dontDistribute super."c-dsl"; + "c-io" = dontDistribute super."c-io"; + "c-storable-deriving" = dontDistribute super."c-storable-deriving"; + "c0check" = dontDistribute super."c0check"; + "c0parser" = dontDistribute super."c0parser"; + "c10k" = dontDistribute super."c10k"; + "c2hsc" = dontDistribute super."c2hsc"; + "cab" = dontDistribute super."cab"; + "cabal-audit" = dontDistribute super."cabal-audit"; + "cabal-bounds" = dontDistribute super."cabal-bounds"; + "cabal-cargs" = dontDistribute super."cabal-cargs"; + "cabal-constraints" = dontDistribute super."cabal-constraints"; + "cabal-db" = dontDistribute super."cabal-db"; + "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; + "cabal-dev" = dontDistribute super."cabal-dev"; + "cabal-dir" = dontDistribute super."cabal-dir"; + "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags"; + "cabal-ghci" = dontDistribute super."cabal-ghci"; + "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; + "cabal-info" = dontDistribute super."cabal-info"; + "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; + "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; + "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; + "cabal-lenses" = dontDistribute super."cabal-lenses"; + "cabal-macosx" = dontDistribute super."cabal-macosx"; + "cabal-meta" = dontDistribute super."cabal-meta"; + "cabal-mon" = dontDistribute super."cabal-mon"; + "cabal-nirvana" = dontDistribute super."cabal-nirvana"; + "cabal-progdeps" = dontDistribute super."cabal-progdeps"; + "cabal-query" = dontDistribute super."cabal-query"; + "cabal-scripts" = dontDistribute super."cabal-scripts"; + "cabal-setup" = dontDistribute super."cabal-setup"; + "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-test" = dontDistribute super."cabal-test"; + "cabal-test-bin" = dontDistribute super."cabal-test-bin"; + "cabal-test-compat" = dontDistribute super."cabal-test-compat"; + "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck"; + "cabal-uninstall" = dontDistribute super."cabal-uninstall"; + "cabal-upload" = dontDistribute super."cabal-upload"; + "cabal2arch" = dontDistribute super."cabal2arch"; + "cabal2doap" = dontDistribute super."cabal2doap"; + "cabal2ebuild" = dontDistribute super."cabal2ebuild"; + "cabal2ghci" = dontDistribute super."cabal2ghci"; + "cabal2nix" = dontDistribute super."cabal2nix"; + "cabal2spec" = dontDistribute super."cabal2spec"; + "cabalQuery" = dontDistribute super."cabalQuery"; + "cabalg" = dontDistribute super."cabalg"; + "cabalgraph" = dontDistribute super."cabalgraph"; + "cabalmdvrpm" = dontDistribute super."cabalmdvrpm"; + "cabalrpmdeps" = dontDistribute super."cabalrpmdeps"; + "cabalvchk" = dontDistribute super."cabalvchk"; + "cabin" = dontDistribute super."cabin"; + "cabocha" = dontDistribute super."cabocha"; + "cached-io" = dontDistribute super."cached-io"; + "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = doDistribute super."cacophony_0_4_0"; + "caf" = dontDistribute super."caf"; + "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; + "caffegraph" = dontDistribute super."caffegraph"; + "cairo-appbase" = dontDistribute super."cairo-appbase"; + "cake" = dontDistribute super."cake"; + "cake3" = dontDistribute super."cake3"; + "cakyrespa" = dontDistribute super."cakyrespa"; + "cal3d" = dontDistribute super."cal3d"; + "cal3d-examples" = dontDistribute super."cal3d-examples"; + "cal3d-opengl" = dontDistribute super."cal3d-opengl"; + "calc" = dontDistribute super."calc"; + "caldims" = dontDistribute super."caldims"; + "caledon" = dontDistribute super."caledon"; + "call" = dontDistribute super."call"; + "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; + "camh" = dontDistribute super."camh"; + "campfire" = dontDistribute super."campfire"; + "canonical-filepath" = dontDistribute super."canonical-filepath"; + "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; + "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; + "cantor" = dontDistribute super."cantor"; + "cao" = dontDistribute super."cao"; + "cap" = dontDistribute super."cap"; + "capped-list" = dontDistribute super."capped-list"; + "capri" = dontDistribute super."capri"; + "car-pool" = dontDistribute super."car-pool"; + "caramia" = dontDistribute super."caramia"; + "carboncopy" = dontDistribute super."carboncopy"; + "carettah" = dontDistribute super."carettah"; + "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; + "casadi-bindings" = dontDistribute super."casadi-bindings"; + "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; + "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; + "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal"; + "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface"; + "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; + "cascading" = dontDistribute super."cascading"; + "case-conversion" = dontDistribute super."case-conversion"; + "cash" = dontDistribute super."cash"; + "casing" = dontDistribute super."casing"; + "casr-logbook" = dontDistribute super."casr-logbook"; + "cassandra-cql" = dontDistribute super."cassandra-cql"; + "cassandra-thrift" = dontDistribute super."cassandra-thrift"; + "cassava-conduit" = dontDistribute super."cassava-conduit"; + "cassava-streams" = dontDistribute super."cassava-streams"; + "cassette" = dontDistribute super."cassette"; + "cassy" = dontDistribute super."cassy"; + "castle" = dontDistribute super."castle"; + "casui" = dontDistribute super."casui"; + "catamorphism" = dontDistribute super."catamorphism"; + "catch-fd" = dontDistribute super."catch-fd"; + "categorical-algebra" = dontDistribute super."categorical-algebra"; + "categories" = dontDistribute super."categories"; + "category-extras" = dontDistribute super."category-extras"; + "category-traced" = dontDistribute super."category-traced"; + "cayley-dickson" = dontDistribute super."cayley-dickson"; + "cblrepo" = dontDistribute super."cblrepo"; + "cci" = dontDistribute super."cci"; + "ccnx" = dontDistribute super."ccnx"; + "cctools-workqueue" = dontDistribute super."cctools-workqueue"; + "cedict" = dontDistribute super."cedict"; + "cef" = dontDistribute super."cef"; + "ceilometer-common" = dontDistribute super."ceilometer-common"; + "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; + "cereal-derive" = dontDistribute super."cereal-derive"; + "cereal-enumerator" = dontDistribute super."cereal-enumerator"; + "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-text" = dontDistribute super."cereal-text"; + "certificate" = dontDistribute super."certificate"; + "cf" = dontDistribute super."cf"; + "cfipu" = dontDistribute super."cfipu"; + "cflp" = dontDistribute super."cflp"; + "cfopu" = dontDistribute super."cfopu"; + "cg" = dontDistribute super."cg"; + "cgen" = dontDistribute super."cgen"; + "cgi" = doDistribute super."cgi_3001_2_2_3"; + "cgi-undecidable" = dontDistribute super."cgi-undecidable"; + "cgi-utils" = dontDistribute super."cgi-utils"; + "cgrep" = dontDistribute super."cgrep"; + "chain-codes" = dontDistribute super."chain-codes"; + "chalk" = dontDistribute super."chalk"; + "chalkboard" = dontDistribute super."chalkboard"; + "chalkboard-viewer" = dontDistribute super."chalkboard-viewer"; + "chalmers-lava2000" = dontDistribute super."chalmers-lava2000"; + "chan-split" = dontDistribute super."chan-split"; + "change-monger" = dontDistribute super."change-monger"; + "charade" = dontDistribute super."charade"; + "charsetdetect" = dontDistribute super."charsetdetect"; + "chart-histogram" = dontDistribute super."chart-histogram"; + "chaselev-deque" = dontDistribute super."chaselev-deque"; + "chatter" = dontDistribute super."chatter"; + "chatty" = dontDistribute super."chatty"; + "chatty-text" = dontDistribute super."chatty-text"; + "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; + "check-pvp" = dontDistribute super."check-pvp"; + "checked" = dontDistribute super."checked"; + "chell-hunit" = dontDistribute super."chell-hunit"; + "chesshs" = dontDistribute super."chesshs"; + "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; + "chp" = dontDistribute super."chp"; + "chp-mtl" = dontDistribute super."chp-mtl"; + "chp-plus" = dontDistribute super."chp-plus"; + "chp-spec" = dontDistribute super."chp-spec"; + "chp-transformers" = dontDistribute super."chp-transformers"; + "chronograph" = dontDistribute super."chronograph"; + "chu2" = dontDistribute super."chu2"; + "chuchu" = dontDistribute super."chuchu"; + "chunks" = dontDistribute super."chunks"; + "chunky" = dontDistribute super."chunky"; + "church-list" = dontDistribute super."church-list"; + "cil" = dontDistribute super."cil"; + "cinvoke" = dontDistribute super."cinvoke"; + "cio" = dontDistribute super."cio"; + "cipher-rc5" = dontDistribute super."cipher-rc5"; + "ciphersaber2" = dontDistribute super."ciphersaber2"; + "circ" = dontDistribute super."circ"; + "cirru-parser" = dontDistribute super."cirru-parser"; + "citation-resolve" = dontDistribute super."citation-resolve"; + "citeproc-hs" = dontDistribute super."citeproc-hs"; + "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter"; + "cityhash" = dontDistribute super."cityhash"; + "cjk" = dontDistribute super."cjk"; + "clac" = dontDistribute super."clac"; + "clafer" = dontDistribute super."clafer"; + "claferIG" = dontDistribute super."claferIG"; + "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; + "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; + "clash" = dontDistribute super."clash"; + "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "classify" = dontDistribute super."classify"; + "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; + "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; + "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; + "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks"; + "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap"; + "cld2" = dontDistribute super."cld2"; + "clean-home" = dontDistribute super."clean-home"; + "clean-unions" = dontDistribute super."clean-unions"; + "cless" = dontDistribute super."cless"; + "clevercss" = dontDistribute super."clevercss"; + "cli" = dontDistribute super."cli"; + "click-clack" = dontDistribute super."click-clack"; + "clifford" = dontDistribute super."clifford"; + "clippard" = dontDistribute super."clippard"; + "clipper" = dontDistribute super."clipper"; + "clippings" = dontDistribute super."clippings"; + "clist" = dontDistribute super."clist"; + "clocked" = dontDistribute super."clocked"; + "clogparse" = dontDistribute super."clogparse"; + "clone-all" = dontDistribute super."clone-all"; + "closure" = dontDistribute super."closure"; + "cloud-haskell" = dontDistribute super."cloud-haskell"; + "cloudfront-signer" = dontDistribute super."cloudfront-signer"; + "cloudyfs" = dontDistribute super."cloudyfs"; + "cltw" = dontDistribute super."cltw"; + "clua" = dontDistribute super."clua"; + "clumpiness" = dontDistribute super."clumpiness"; + "cluss" = dontDistribute super."cluss"; + "clustertools" = dontDistribute super."clustertools"; + "clutterhs" = dontDistribute super."clutterhs"; + "cmaes" = dontDistribute super."cmaes"; + "cmath" = dontDistribute super."cmath"; + "cmathml3" = dontDistribute super."cmathml3"; + "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs-browser" = dontDistribute super."cmdargs-browser"; + "cmdlib" = dontDistribute super."cmdlib"; + "cmdtheline" = dontDistribute super."cmdtheline"; + "cml" = dontDistribute super."cml"; + "cmonad" = dontDistribute super."cmonad"; + "cmu" = dontDistribute super."cmu"; + "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; + "cndict" = dontDistribute super."cndict"; + "codec" = dontDistribute super."codec"; + "codec-libevent" = dontDistribute super."codec-libevent"; + "codec-mbox" = dontDistribute super."codec-mbox"; + "codecov-haskell" = dontDistribute super."codecov-haskell"; + "codemonitor" = dontDistribute super."codemonitor"; + "codepad" = dontDistribute super."codepad"; + "codo-notation" = dontDistribute super."codo-notation"; + "cofunctor" = dontDistribute super."cofunctor"; + "cognimeta-utils" = dontDistribute super."cognimeta-utils"; + "coinbase-exchange" = dontDistribute super."coinbase-exchange"; + "colada" = dontDistribute super."colada"; + "colchis" = dontDistribute super."colchis"; + "collada-output" = dontDistribute super."collada-output"; + "collada-types" = dontDistribute super."collada-types"; + "collapse-util" = dontDistribute super."collapse-util"; + "collection-json" = dontDistribute super."collection-json"; + "collections" = dontDistribute super."collections"; + "collections-api" = dontDistribute super."collections-api"; + "collections-base-instances" = dontDistribute super."collections-base-instances"; + "colock" = dontDistribute super."colock"; + "colorize-haskell" = dontDistribute super."colorize-haskell"; + "colors" = dontDistribute super."colors"; + "coltrane" = dontDistribute super."coltrane"; + "com" = dontDistribute super."com"; + "combinat" = dontDistribute super."combinat"; + "combinat-diagrams" = dontDistribute super."combinat-diagrams"; + "combinator-interactive" = dontDistribute super."combinator-interactive"; + "combinatorial-problems" = dontDistribute super."combinatorial-problems"; + "combinatorics" = dontDistribute super."combinatorics"; + "combobuffer" = dontDistribute super."combobuffer"; + "comfort-graph" = dontDistribute super."comfort-graph"; + "command" = dontDistribute super."command"; + "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; + "commodities" = dontDistribute super."commodities"; + "commsec" = dontDistribute super."commsec"; + "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; + "comonad-extras" = dontDistribute super."comonad-extras"; + "comonad-random" = dontDistribute super."comonad-random"; + "compact-map" = dontDistribute super."compact-map"; + "compact-socket" = dontDistribute super."compact-socket"; + "compact-string" = dontDistribute super."compact-string"; + "compact-string-fix" = dontDistribute super."compact-string-fix"; + "compare-type" = dontDistribute super."compare-type"; + "compdata-automata" = dontDistribute super."compdata-automata"; + "compdata-dags" = dontDistribute super."compdata-dags"; + "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = dontDistribute super."compensated"; + "competition" = dontDistribute super."competition"; + "compilation" = dontDistribute super."compilation"; + "complex-generic" = dontDistribute super."complex-generic"; + "complex-integrate" = dontDistribute super."complex-integrate"; + "complexity" = dontDistribute super."complexity"; + "compose-ltr" = dontDistribute super."compose-ltr"; + "compose-trans" = dontDistribute super."compose-trans"; + "compression" = dontDistribute super."compression"; + "compstrat" = dontDistribute super."compstrat"; + "comptrans" = dontDistribute super."comptrans"; + "computational-algebra" = dontDistribute super."computational-algebra"; + "computations" = dontDistribute super."computations"; + "conceit" = dontDistribute super."conceit"; + "concorde" = dontDistribute super."concorde"; + "concraft" = dontDistribute super."concraft"; + "concraft-hr" = dontDistribute super."concraft-hr"; + "concraft-pl" = dontDistribute super."concraft-pl"; + "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser"; + "concrete-typerep" = dontDistribute super."concrete-typerep"; + "concurrent-barrier" = dontDistribute super."concurrent-barrier"; + "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = dontDistribute super."concurrent-extra"; + "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-sa" = dontDistribute super."concurrent-sa"; + "concurrent-split" = dontDistribute super."concurrent-split"; + "concurrent-state" = dontDistribute super."concurrent-state"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; + "concurrentoutput" = dontDistribute super."concurrentoutput"; + "cond" = dontDistribute super."cond"; + "condor" = dontDistribute super."condor"; + "condorcet" = dontDistribute super."condorcet"; + "conductive-base" = dontDistribute super."conductive-base"; + "conductive-clock" = dontDistribute super."conductive-clock"; + "conductive-hsc3" = dontDistribute super."conductive-hsc3"; + "conductive-song" = dontDistribute super."conductive-song"; + "conduit-audio" = dontDistribute super."conduit-audio"; + "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; + "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; + "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; + "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; + "conf" = dontDistribute super."conf"; + "config-select" = dontDistribute super."config-select"; + "config-value" = dontDistribute super."config-value"; + "configifier" = dontDistribute super."configifier"; + "configuration" = dontDistribute super."configuration"; + "configuration-tools" = dontDistribute super."configuration-tools"; + "confsolve" = dontDistribute super."confsolve"; + "congruence-relation" = dontDistribute super."congruence-relation"; + "conjugateGradient" = dontDistribute super."conjugateGradient"; + "conjure" = dontDistribute super."conjure"; + "conlogger" = dontDistribute super."conlogger"; + "connection-pool" = dontDistribute super."connection-pool"; + "consistent" = dontDistribute super."consistent"; + "console-program" = dontDistribute super."console-program"; + "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; + "constrained-categories" = dontDistribute super."constrained-categories"; + "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; + "constructible" = dontDistribute super."constructible"; + "constructive-algebra" = dontDistribute super."constructive-algebra"; + "consumers" = dontDistribute super."consumers"; + "container" = dontDistribute super."container"; + "container-classes" = dontDistribute super."container-classes"; + "containers-benchmark" = dontDistribute super."containers-benchmark"; + "containers-deepseq" = dontDistribute super."containers-deepseq"; + "context-free-grammar" = dontDistribute super."context-free-grammar"; + "context-stack" = dontDistribute super."context-stack"; + "continue" = dontDistribute super."continue"; + "continued-fractions" = dontDistribute super."continued-fractions"; + "continuum" = dontDistribute super."continuum"; + "continuum-client" = dontDistribute super."continuum-client"; + "control-event" = dontDistribute super."control-event"; + "control-monad-attempt" = dontDistribute super."control-monad-attempt"; + "control-monad-exception" = dontDistribute super."control-monad-exception"; + "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd"; + "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf"; + "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl"; + "control-monad-failure" = dontDistribute super."control-monad-failure"; + "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl"; + "control-monad-omega" = dontDistribute super."control-monad-omega"; + "control-monad-queue" = dontDistribute super."control-monad-queue"; + "control-timeout" = dontDistribute super."control-timeout"; + "contstuff" = dontDistribute super."contstuff"; + "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf"; + "contstuff-transformers" = dontDistribute super."contstuff-transformers"; + "converge" = dontDistribute super."converge"; + "conversion" = dontDistribute super."conversion"; + "conversion-bytestring" = dontDistribute super."conversion-bytestring"; + "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive"; + "conversion-text" = dontDistribute super."conversion-text"; + "convert" = dontDistribute super."convert"; + "convertible-ascii" = dontDistribute super."convertible-ascii"; + "convertible-text" = dontDistribute super."convertible-text"; + "cookbook" = dontDistribute super."cookbook"; + "coordinate" = dontDistribute super."coordinate"; + "copilot" = dontDistribute super."copilot"; + "copilot-c99" = dontDistribute super."copilot-c99"; + "copilot-cbmc" = dontDistribute super."copilot-cbmc"; + "copilot-core" = dontDistribute super."copilot-core"; + "copilot-language" = dontDistribute super."copilot-language"; + "copilot-libraries" = dontDistribute super."copilot-libraries"; + "copilot-sbv" = dontDistribute super."copilot-sbv"; + "copilot-theorem" = dontDistribute super."copilot-theorem"; + "copr" = dontDistribute super."copr"; + "core" = dontDistribute super."core"; + "core-haskell" = dontDistribute super."core-haskell"; + "corebot-bliki" = dontDistribute super."corebot-bliki"; + "coroutine-enumerator" = dontDistribute super."coroutine-enumerator"; + "coroutine-iteratee" = dontDistribute super."coroutine-iteratee"; + "coroutine-object" = dontDistribute super."coroutine-object"; + "couch-hs" = dontDistribute super."couch-hs"; + "couch-simple" = dontDistribute super."couch-simple"; + "couchdb-conduit" = dontDistribute super."couchdb-conduit"; + "couchdb-enumerator" = dontDistribute super."couchdb-enumerator"; + "count" = dontDistribute super."count"; + "countable" = dontDistribute super."countable"; + "counter" = dontDistribute super."counter"; + "court" = dontDistribute super."court"; + "coverage" = dontDistribute super."coverage"; + "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; + "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; + "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; + "cpsa" = dontDistribute super."cpsa"; + "cpuid" = dontDistribute super."cpuid"; + "cpuperf" = dontDistribute super."cpuperf"; + "cpython" = dontDistribute super."cpython"; + "cqrs" = dontDistribute super."cqrs"; + "cqrs-core" = dontDistribute super."cqrs-core"; + "cqrs-example" = dontDistribute super."cqrs-example"; + "cqrs-memory" = dontDistribute super."cqrs-memory"; + "cqrs-postgresql" = dontDistribute super."cqrs-postgresql"; + "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3"; + "cqrs-test" = dontDistribute super."cqrs-test"; + "cqrs-testkit" = dontDistribute super."cqrs-testkit"; + "cqrs-types" = dontDistribute super."cqrs-types"; + "cr" = dontDistribute super."cr"; + "crack" = dontDistribute super."crack"; + "craftwerk" = dontDistribute super."craftwerk"; + "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; + "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "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-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; + "crypto-random-effect" = dontDistribute super."crypto-random-effect"; + "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptsy-api" = dontDistribute super."cryptsy-api"; + "crystalfontz" = dontDistribute super."crystalfontz"; + "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; + "csound-catalog" = dontDistribute super."csound-catalog"; + "csound-expression" = dontDistribute super."csound-expression"; + "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic"; + "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes"; + "csound-expression-typed" = dontDistribute super."csound-expression-typed"; + "csound-sampler" = dontDistribute super."csound-sampler"; + "csp" = dontDistribute super."csp"; + "cspmchecker" = dontDistribute super."cspmchecker"; + "css" = dontDistribute super."css"; + "csv-enumerator" = dontDistribute super."csv-enumerator"; + "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-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"; + "d3js" = dontDistribute super."d3js"; + "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; + "daemons" = dontDistribute super."daemons"; + "dag" = dontDistribute super."dag"; + "damnpacket" = dontDistribute super."damnpacket"; + "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-extra" = dontDistribute super."data-default-extra"; + "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; + "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; + "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; + "data-default-instances-text" = dontDistribute super."data-default-instances-text"; + "data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers"; + "data-default-instances-vector" = dontDistribute super."data-default-instances-vector"; + "data-dispersal" = dontDistribute super."data-dispersal"; + "data-dword" = dontDistribute super."data-dword"; + "data-easy" = dontDistribute super."data-easy"; + "data-embed" = dontDistribute super."data-embed"; + "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; + "data-extra" = dontDistribute super."data-extra"; + "data-filepath" = dontDistribute super."data-filepath"; + "data-fin" = dontDistribute super."data-fin"; + "data-fin-simple" = dontDistribute super."data-fin-simple"; + "data-fix" = dontDistribute super."data-fix"; + "data-fix-cse" = dontDistribute super."data-fix-cse"; + "data-flags" = dontDistribute super."data-flags"; + "data-flagset" = dontDistribute super."data-flagset"; + "data-fresh" = dontDistribute super."data-fresh"; + "data-interval" = dontDistribute super."data-interval"; + "data-ivar" = dontDistribute super."data-ivar"; + "data-json-token" = dontDistribute super."data-json-token"; + "data-kiln" = dontDistribute super."data-kiln"; + "data-layer" = dontDistribute super."data-layer"; + "data-layout" = dontDistribute super."data-layout"; + "data-lens" = dontDistribute super."data-lens"; + "data-lens-fd" = dontDistribute super."data-lens-fd"; + "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-template" = dontDistribute super."data-lens-template"; + "data-list-sequences" = dontDistribute super."data-list-sequences"; + "data-map-multikey" = dontDistribute super."data-map-multikey"; + "data-named" = dontDistribute super."data-named"; + "data-nat" = dontDistribute super."data-nat"; + "data-object" = dontDistribute super."data-object"; + "data-object-json" = dontDistribute super."data-object-json"; + "data-object-yaml" = dontDistribute super."data-object-yaml"; + "data-or" = dontDistribute super."data-or"; + "data-partition" = dontDistribute super."data-partition"; + "data-pprint" = dontDistribute super."data-pprint"; + "data-quotientref" = dontDistribute super."data-quotientref"; + "data-r-tree" = dontDistribute super."data-r-tree"; + "data-ref" = dontDistribute super."data-ref"; + "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; + "data-result" = dontDistribute super."data-result"; + "data-rev" = dontDistribute super."data-rev"; + "data-rope" = dontDistribute super."data-rope"; + "data-rtuple" = dontDistribute super."data-rtuple"; + "data-size" = dontDistribute super."data-size"; + "data-spacepart" = dontDistribute super."data-spacepart"; + "data-store" = dontDistribute super."data-store"; + "data-stringmap" = dontDistribute super."data-stringmap"; + "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-tensor" = dontDistribute super."data-tensor"; + "data-textual" = dontDistribute super."data-textual"; + "data-timeout" = dontDistribute super."data-timeout"; + "data-transform" = dontDistribute super."data-transform"; + "data-treify" = dontDistribute super."data-treify"; + "data-type" = dontDistribute super."data-type"; + "data-util" = dontDistribute super."data-util"; + "data-variant" = dontDistribute super."data-variant"; + "database-migrate" = dontDistribute super."database-migrate"; + "database-study" = dontDistribute super."database-study"; + "dataenc" = dontDistribute super."dataenc"; + "dataflow" = dontDistribute super."dataflow"; + "datalog" = dontDistribute super."datalog"; + "datapacker" = dontDistribute super."datapacker"; + "dataurl" = dontDistribute super."dataurl"; + "date-cache" = dontDistribute super."date-cache"; + "dates" = dontDistribute super."dates"; + "datetime" = dontDistribute super."datetime"; + "datetime-sb" = dontDistribute super."datetime-sb"; + "dawdle" = dontDistribute super."dawdle"; + "dawg" = dontDistribute super."dawg"; + "dbcleaner" = dontDistribute super."dbcleaner"; + "dbf" = dontDistribute super."dbf"; + "dbjava" = dontDistribute super."dbjava"; + "dbmigrations" = doDistribute super."dbmigrations_1_0"; + "dbus-client" = dontDistribute super."dbus-client"; + "dbus-core" = dontDistribute super."dbus-core"; + "dbus-qq" = dontDistribute super."dbus-qq"; + "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; + "dclabel" = dontDistribute super."dclabel"; + "dclabel-eci11" = dontDistribute super."dclabel-eci11"; + "ddc-base" = dontDistribute super."ddc-base"; + "ddc-build" = dontDistribute super."ddc-build"; + "ddc-code" = dontDistribute super."ddc-code"; + "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-eval" = dontDistribute super."ddc-core-eval"; + "ddc-core-flow" = dontDistribute super."ddc-core-flow"; + "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; + "ddc-core-salt" = dontDistribute super."ddc-core-salt"; + "ddc-core-simpl" = dontDistribute super."ddc-core-simpl"; + "ddc-core-tetra" = dontDistribute super."ddc-core-tetra"; + "ddc-driver" = dontDistribute super."ddc-driver"; + "ddc-interface" = dontDistribute super."ddc-interface"; + "ddc-source-tetra" = dontDistribute super."ddc-source-tetra"; + "ddc-tools" = dontDistribute super."ddc-tools"; + "ddc-war" = dontDistribute super."ddc-war"; + "ddci-core" = dontDistribute super."ddci-core"; + "dead-code-detection" = dontDistribute super."dead-code-detection"; + "dead-simple-json" = dontDistribute super."dead-simple-json"; + "debian-binary" = dontDistribute super."debian-binary"; + "debian-build" = dontDistribute super."debian-build"; + "debug-diff" = dontDistribute super."debug-diff"; + "debug-time" = dontDistribute super."debug-time"; + "decepticons" = dontDistribute super."decepticons"; + "decode-utf8" = dontDistribute super."decode-utf8"; + "decoder-conduit" = dontDistribute super."decoder-conduit"; + "dedukti" = dontDistribute super."dedukti"; + "deepcontrol" = dontDistribute super."deepcontrol"; + "deeplearning-hs" = dontDistribute super."deeplearning-hs"; + "deepseq-bounded" = dontDistribute super."deepseq-bounded"; + "deepseq-magic" = dontDistribute super."deepseq-magic"; + "deepseq-th" = dontDistribute super."deepseq-th"; + "deepzoom" = dontDistribute super."deepzoom"; + "defargs" = dontDistribute super."defargs"; + "definitive-base" = dontDistribute super."definitive-base"; + "definitive-filesystem" = dontDistribute super."definitive-filesystem"; + "definitive-graphics" = dontDistribute super."definitive-graphics"; + "definitive-parser" = dontDistribute super."definitive-parser"; + "definitive-reactive" = dontDistribute super."definitive-reactive"; + "definitive-sound" = dontDistribute super."definitive-sound"; + "deiko-config" = dontDistribute super."deiko-config"; + "deka" = dontDistribute super."deka"; + "deka-tests" = dontDistribute super."deka-tests"; + "delaunay" = dontDistribute super."delaunay"; + "delicious" = dontDistribute super."delicious"; + "delimited-text" = dontDistribute super."delimited-text"; + "delimiter-separated" = dontDistribute super."delimiter-separated"; + "delta" = dontDistribute super."delta"; + "delta-h" = dontDistribute super."delta-h"; + "demarcate" = dontDistribute super."demarcate"; + "denominate" = dontDistribute super."denominate"; + "dependent-state" = dontDistribute super."dependent-state"; + "depends" = dontDistribute super."depends"; + "dephd" = dontDistribute super."dephd"; + "dequeue" = dontDistribute super."dequeue"; + "derangement" = dontDistribute super."derangement"; + "derivation-trees" = dontDistribute super."derivation-trees"; + "derive-IG" = dontDistribute super."derive-IG"; + "derive-enumerable" = dontDistribute super."derive-enumerable"; + "derive-gadt" = dontDistribute super."derive-gadt"; + "derive-monoid" = dontDistribute super."derive-monoid"; + "derive-topdown" = dontDistribute super."derive-topdown"; + "derive-trie" = dontDistribute super."derive-trie"; + "deriving-compat" = dontDistribute super."deriving-compat"; + "derp" = dontDistribute super."derp"; + "derp-lib" = dontDistribute super."derp-lib"; + "descrilo" = dontDistribute super."descrilo"; + "despair" = dontDistribute super."despair"; + "deterministic-game-engine" = dontDistribute super."deterministic-game-engine"; + "detrospector" = dontDistribute super."detrospector"; + "deunicode" = dontDistribute super."deunicode"; + "devil" = dontDistribute super."devil"; + "dewdrop" = dontDistribute super."dewdrop"; + "dfrac" = dontDistribute super."dfrac"; + "dfsbuild" = dontDistribute super."dfsbuild"; + "dgim" = dontDistribute super."dgim"; + "dgs" = dontDistribute super."dgs"; + "dia-base" = dontDistribute super."dia-base"; + "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-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-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; + "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; + "dicom" = dontDistribute super."dicom"; + "dictparser" = dontDistribute super."dictparser"; + "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; + "diff-parse" = dontDistribute super."diff-parse"; + "diffarray" = dontDistribute super."diffarray"; + "diffcabal" = dontDistribute super."diffcabal"; + "diffdump" = dontDistribute super."diffdump"; + "digamma" = dontDistribute super."digamma"; + "digest-pure" = dontDistribute super."digest-pure"; + "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; + "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; + "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; + "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp"; + "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty"; + "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; + "digit" = dontDistribute super."digit"; + "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "dimensional-codata" = dontDistribute super."dimensional-codata"; + "dimensional-tf" = dontDistribute super."dimensional-tf"; + "dingo-core" = dontDistribute super."dingo-core"; + "dingo-example" = dontDistribute super."dingo-example"; + "dingo-widgets" = dontDistribute super."dingo-widgets"; + "diophantine" = dontDistribute super."diophantine"; + "diplomacy" = dontDistribute super."diplomacy"; + "diplomacy-server" = dontDistribute super."diplomacy-server"; + "direct-binary-files" = dontDistribute super."direct-binary-files"; + "direct-daemonize" = dontDistribute super."direct-daemonize"; + "direct-fastcgi" = dontDistribute super."direct-fastcgi"; + "direct-http" = dontDistribute super."direct-http"; + "direct-murmur-hash" = dontDistribute super."direct-murmur-hash"; + "direct-plugins" = dontDistribute super."direct-plugins"; + "directed-cubical" = dontDistribute super."directed-cubical"; + "directory-layout" = dontDistribute super."directory-layout"; + "directory-listing-webpage-parser" = dontDistribute super."directory-listing-webpage-parser"; + "dirfiles" = dontDistribute super."dirfiles"; + "dirstream" = dontDistribute super."dirstream"; + "disassembler" = dontDistribute super."disassembler"; + "discordian-calendar" = dontDistribute super."discordian-calendar"; + "discount" = dontDistribute super."discount"; + "discrete-space-map" = dontDistribute super."discrete-space-map"; + "discrimination" = dontDistribute super."discrimination"; + "disjoint-set" = dontDistribute super."disjoint-set"; + "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; + "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; + "distributed-process" = doDistribute super."distributed-process_0_5_5_1"; + "distributed-process-async" = dontDistribute super."distributed-process-async"; + "distributed-process-azure" = dontDistribute super."distributed-process-azure"; + "distributed-process-client-server" = dontDistribute super."distributed-process-client-server"; + "distributed-process-ekg" = dontDistribute super."distributed-process-ekg"; + "distributed-process-execution" = dontDistribute super."distributed-process-execution"; + "distributed-process-extras" = dontDistribute super."distributed-process-extras"; + "distributed-process-lifted" = dontDistribute super."distributed-process-lifted"; + "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control"; + "distributed-process-p2p" = dontDistribute super."distributed-process-p2p"; + "distributed-process-platform" = dontDistribute super."distributed-process-platform"; + "distributed-process-registry" = dontDistribute super."distributed-process-registry"; + "distributed-process-simplelocalnet" = dontDistribute super."distributed-process-simplelocalnet"; + "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor"; + "distributed-process-task" = dontDistribute super."distributed-process-task"; + "distributed-process-tests" = dontDistribute super."distributed-process-tests"; + "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distribution" = dontDistribute super."distribution"; + "distribution-plot" = dontDistribute super."distribution-plot"; + "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" = dontDistribute super."doctest-discover"; + "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; + "doctest-prop" = dontDistribute super."doctest-prop"; + "dom-lt" = dontDistribute super."dom-lt"; + "dom-parser" = dontDistribute super."dom-parser"; + "dom-selector" = dontDistribute super."dom-selector"; + "domain-auth" = dontDistribute super."domain-auth"; + "dominion" = dontDistribute super."dominion"; + "domplate" = dontDistribute super."domplate"; + "dot2graphml" = dontDistribute super."dot2graphml"; + "dotfs" = dontDistribute super."dotfs"; + "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; + "double-metaphone" = dontDistribute super."double-metaphone"; + "dove" = dontDistribute super."dove"; + "dow" = dontDistribute super."dow"; + "download" = dontDistribute super."download"; + "download-curl" = dontDistribute super."download-curl"; + "download-media-content" = dontDistribute super."download-media-content"; + "dozenal" = dontDistribute super."dozenal"; + "dozens" = dontDistribute super."dozens"; + "dph-base" = dontDistribute super."dph-base"; + "dph-examples" = dontDistribute super."dph-examples"; + "dph-lifted-base" = dontDistribute super."dph-lifted-base"; + "dph-lifted-copy" = dontDistribute super."dph-lifted-copy"; + "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg"; + "dph-par" = dontDistribute super."dph-par"; + "dph-prim-interface" = dontDistribute super."dph-prim-interface"; + "dph-prim-par" = dontDistribute super."dph-prim-par"; + "dph-prim-seq" = dontDistribute super."dph-prim-seq"; + "dph-seq" = dontDistribute super."dph-seq"; + "dpkg" = dontDistribute super."dpkg"; + "drClickOn" = dontDistribute super."drClickOn"; + "draw-poker" = dontDistribute super."draw-poker"; + "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; + "dropbox-sdk" = dontDistribute super."dropbox-sdk"; + "dropsolve" = dontDistribute super."dropsolve"; + "ds-kanren" = dontDistribute super."ds-kanren"; + "dsh-sql" = dontDistribute super."dsh-sql"; + "dsmc" = dontDistribute super."dsmc"; + "dsmc-tools" = dontDistribute super."dsmc-tools"; + "dson" = dontDistribute super."dson"; + "dson-parsec" = dontDistribute super."dson-parsec"; + "dsp" = dontDistribute super."dsp"; + "dstring" = dontDistribute super."dstring"; + "dtab" = dontDistribute super."dtab"; + "dtd" = dontDistribute super."dtd"; + "dtd-text" = dontDistribute super."dtd-text"; + "dtd-types" = dontDistribute super."dtd-types"; + "dtrace" = dontDistribute super."dtrace"; + "dtw" = dontDistribute super."dtw"; + "dump" = dontDistribute super."dump"; + "duplo" = dontDistribute super."duplo"; + "dvda" = dontDistribute super."dvda"; + "dvdread" = dontDistribute super."dvdread"; + "dvi-processing" = dontDistribute super."dvi-processing"; + "dvorak" = dontDistribute super."dvorak"; + "dwarf" = dontDistribute super."dwarf"; + "dwarf-el" = dontDistribute super."dwarf-el"; + "dwarfadt" = dontDistribute super."dwarfadt"; + "dx9base" = dontDistribute super."dx9base"; + "dx9d3d" = dontDistribute super."dx9d3d"; + "dx9d3dx" = dontDistribute super."dx9d3dx"; + "dynamic-cabal" = dontDistribute super."dynamic-cabal"; + "dynamic-graph" = dontDistribute super."dynamic-graph"; + "dynamic-linker-template" = dontDistribute super."dynamic-linker-template"; + "dynamic-loader" = dontDistribute super."dynamic-loader"; + "dynamic-mvector" = dontDistribute super."dynamic-mvector"; + "dynamic-object" = dontDistribute super."dynamic-object"; + "dynamic-plot" = dontDistribute super."dynamic-plot"; + "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynobud" = dontDistribute super."dynobud"; + "dywapitchtrack" = dontDistribute super."dywapitchtrack"; + "dzen-utils" = dontDistribute super."dzen-utils"; + "eager-sockets" = dontDistribute super."eager-sockets"; + "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; + "easyjson" = dontDistribute super."easyjson"; + "easyplot" = dontDistribute super."easyplot"; + "easyrender" = dontDistribute super."easyrender"; + "ebeats" = dontDistribute super."ebeats"; + "ebnf-bff" = dontDistribute super."ebnf-bff"; + "ec2-signature" = dontDistribute super."ec2-signature"; + "ecdsa" = dontDistribute super."ecdsa"; + "ecma262" = dontDistribute super."ecma262"; + "ecu" = dontDistribute super."ecu"; + "ed25519" = dontDistribute super."ed25519"; + "ed25519-donna" = dontDistribute super."ed25519-donna"; + "eddie" = dontDistribute super."eddie"; + "edenmodules" = dontDistribute super."edenmodules"; + "edenskel" = dontDistribute super."edenskel"; + "edentv" = dontDistribute super."edentv"; + "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; + "edit-lenses" = dontDistribute super."edit-lenses"; + "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; + "editable" = dontDistribute super."editable"; + "editline" = dontDistribute super."editline"; + "effect-monad" = dontDistribute super."effect-monad"; + "effective-aspects" = dontDistribute super."effective-aspects"; + "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; + "effects" = dontDistribute super."effects"; + "effects-parser" = dontDistribute super."effects-parser"; + "effin" = dontDistribute super."effin"; + "egison" = dontDistribute super."egison"; + "egison-quote" = dontDistribute super."egison-quote"; + "egison-tutorial" = dontDistribute super."egison-tutorial"; + "ehaskell" = dontDistribute super."ehaskell"; + "ehs" = dontDistribute super."ehs"; + "eibd-client-simple" = dontDistribute super."eibd-client-simple"; + "eigen" = dontDistribute super."eigen"; + "eithers" = dontDistribute super."eithers"; + "ekg-bosun" = dontDistribute super."ekg-bosun"; + "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-log" = dontDistribute super."ekg-log"; + "ekg-push" = dontDistribute super."ekg-push"; + "ekg-rrd" = dontDistribute super."ekg-rrd"; + "ekg-statsd" = dontDistribute super."ekg-statsd"; + "electrum-mnemonic" = dontDistribute super."electrum-mnemonic"; + "elerea" = dontDistribute super."elerea"; + "elerea-examples" = dontDistribute super."elerea-examples"; + "elerea-sdl" = dontDistribute super."elerea-sdl"; + "elevator" = dontDistribute super."elevator"; + "elf" = dontDistribute super."elf"; + "elision" = dontDistribute super."elision"; + "elm-build-lib" = dontDistribute super."elm-build-lib"; + "elm-compiler" = dontDistribute super."elm-compiler"; + "elm-get" = dontDistribute super."elm-get"; + "elm-init" = dontDistribute super."elm-init"; + "elm-make" = dontDistribute super."elm-make"; + "elm-package" = dontDistribute super."elm-package"; + "elm-reactor" = dontDistribute super."elm-reactor"; + "elm-repl" = dontDistribute super."elm-repl"; + "elm-server" = dontDistribute super."elm-server"; + "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; + "elocrypt" = dontDistribute super."elocrypt"; + "emacs-keys" = dontDistribute super."emacs-keys"; + "email" = dontDistribute super."email"; + "email-header" = dontDistribute super."email-header"; + "email-postmark" = dontDistribute super."email-postmark"; + "email-validator" = dontDistribute super."email-validator"; + "embeddock" = dontDistribute super."embeddock"; + "embeddock-example" = dontDistribute super."embeddock-example"; + "embroidery" = dontDistribute super."embroidery"; + "emgm" = dontDistribute super."emgm"; + "empty" = dontDistribute super."empty"; + "encoding" = dontDistribute super."encoding"; + "endo" = dontDistribute super."endo"; + "engine-io-growler" = dontDistribute super."engine-io-growler"; + "engine-io-snap" = dontDistribute super."engine-io-snap"; + "engineering-units" = dontDistribute super."engineering-units"; + "enumerable" = dontDistribute super."enumerable"; + "enumerate" = dontDistribute super."enumerate"; + "enumeration" = dontDistribute super."enumeration"; + "enumerator-fd" = dontDistribute super."enumerator-fd"; + "enumerator-tf" = dontDistribute super."enumerator-tf"; + "enumfun" = dontDistribute super."enumfun"; + "enummapmap" = dontDistribute super."enummapmap"; + "enummapset" = dontDistribute super."enummapset"; + "enummapset-th" = dontDistribute super."enummapset-th"; + "enumset" = dontDistribute super."enumset"; + "env-parser" = dontDistribute super."env-parser"; + "envparse" = dontDistribute super."envparse"; + "epanet-haskell" = dontDistribute super."epanet-haskell"; + "epass" = dontDistribute super."epass"; + "epic" = dontDistribute super."epic"; + "epoll" = dontDistribute super."epoll"; + "eprocess" = dontDistribute super."eprocess"; + "epub" = dontDistribute super."epub"; + "epub-metadata" = dontDistribute super."epub-metadata"; + "epub-tools" = dontDistribute super."epub-tools"; + "epubname" = dontDistribute super."epubname"; + "equal-files" = dontDistribute super."equal-files"; + "equational-reasoning" = dontDistribute super."equational-reasoning"; + "erd" = dontDistribute super."erd"; + "erf-native" = dontDistribute super."erf-native"; + "erlang" = dontDistribute super."erlang"; + "eros" = dontDistribute super."eros"; + "eros-client" = dontDistribute super."eros-client"; + "eros-http" = dontDistribute super."eros-http"; + "errno" = dontDistribute super."errno"; + "error-analyze" = dontDistribute super."error-analyze"; + "error-continuations" = dontDistribute super."error-continuations"; + "error-list" = dontDistribute super."error-list"; + "error-loc" = dontDistribute super."error-loc"; + "error-location" = dontDistribute super."error-location"; + "error-message" = dontDistribute super."error-message"; + "error-util" = dontDistribute super."error-util"; + "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; + "ersatz" = dontDistribute super."ersatz"; + "ersatz-toysat" = dontDistribute super."ersatz-toysat"; + "ert" = dontDistribute super."ert"; + "esotericbot" = dontDistribute super."esotericbot"; + "ess" = dontDistribute super."ess"; + "estimator" = dontDistribute super."estimator"; + "estimators" = dontDistribute super."estimators"; + "estreps" = dontDistribute super."estreps"; + "eternal" = dontDistribute super."eternal"; + "ether" = doDistribute super."ether_0_3_1_1"; + "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; + "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; + "ethereum-rlp" = dontDistribute super."ethereum-rlp"; + "ety" = dontDistribute super."ety"; + "euler" = dontDistribute super."euler"; + "euphoria" = dontDistribute super."euphoria"; + "eurofxref" = dontDistribute super."eurofxref"; + "event-driven" = dontDistribute super."event-driven"; + "event-handlers" = dontDistribute super."event-handlers"; + "event-list" = dontDistribute super."event-list"; + "event-monad" = dontDistribute super."event-monad"; + "eventloop" = dontDistribute super."eventloop"; + "eventstore" = doDistribute super."eventstore_0_10_0_2"; + "every-bit-counts" = dontDistribute super."every-bit-counts"; + "ewe" = dontDistribute super."ewe"; + "ex-pool" = dontDistribute super."ex-pool"; + "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "exception-hierarchy" = dontDistribute super."exception-hierarchy"; + "exception-mailer" = dontDistribute super."exception-mailer"; + "exception-monads-fd" = dontDistribute super."exception-monads-fd"; + "exception-monads-tf" = dontDistribute super."exception-monads-tf"; + "exception-mtl" = dontDistribute super."exception-mtl"; + "exherbo-cabal" = dontDistribute super."exherbo-cabal"; + "exif" = dontDistribute super."exif"; + "exinst" = dontDistribute super."exinst"; + "exinst-aeson" = dontDistribute super."exinst-aeson"; + "exinst-bytes" = dontDistribute super."exinst-bytes"; + "exinst-deepseq" = dontDistribute super."exinst-deepseq"; + "exinst-hashable" = dontDistribute super."exinst-hashable"; + "existential" = dontDistribute super."existential"; + "exists" = dontDistribute super."exists"; + "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; + "exp-pairs" = dontDistribute super."exp-pairs"; + "expand" = dontDistribute super."expand"; + "expat-enumerator" = dontDistribute super."expat-enumerator"; + "expiring-mvar" = dontDistribute super."expiring-mvar"; + "explain" = dontDistribute super."explain"; + "explicit-determinant" = dontDistribute super."explicit-determinant"; + "explicit-iomodes" = dontDistribute super."explicit-iomodes"; + "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring"; + "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text"; + "explicit-sharing" = dontDistribute super."explicit-sharing"; + "explore" = dontDistribute super."explore"; + "exposed-containers" = dontDistribute super."exposed-containers"; + "expression-parser" = dontDistribute super."expression-parser"; + "extcore" = dontDistribute super."extcore"; + "extemp" = dontDistribute super."extemp"; + "extended-categories" = dontDistribute super."extended-categories"; + "extended-reals" = dontDistribute super."extended-reals"; + "extensible" = dontDistribute super."extensible"; + "extensible-data" = dontDistribute super."extensible-data"; + "external-sort" = dontDistribute super."external-sort"; + "extractelf" = dontDistribute super."extractelf"; + "ez-couch" = dontDistribute super."ez-couch"; + "faceted" = dontDistribute super."faceted"; + "factory" = dontDistribute super."factory"; + "factual-api" = dontDistribute super."factual-api"; + "fad" = dontDistribute super."fad"; + "failable-list" = dontDistribute super."failable-list"; + "failure" = dontDistribute super."failure"; + "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; + "faker" = dontDistribute super."faker"; + "falling-turnip" = dontDistribute super."falling-turnip"; + "fallingblocks" = dontDistribute super."fallingblocks"; + "family-tree" = dontDistribute super."family-tree"; + "fast-digits" = dontDistribute super."fast-digits"; + "fast-math" = dontDistribute super."fast-math"; + "fast-tags" = dontDistribute super."fast-tags"; + "fast-tagsoup" = dontDistribute super."fast-tagsoup"; + "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fastbayes" = dontDistribute super."fastbayes"; + "fastcgi" = dontDistribute super."fastcgi"; + "fastedit" = dontDistribute super."fastedit"; + "fastirc" = dontDistribute super."fastirc"; + "fault-tree" = dontDistribute super."fault-tree"; + "fay-geoposition" = dontDistribute super."fay-geoposition"; + "fay-hsx" = dontDistribute super."fay-hsx"; + "fay-ref" = dontDistribute super."fay-ref"; + "fca" = dontDistribute super."fca"; + "fcache" = dontDistribute super."fcache"; + "fcd" = dontDistribute super."fcd"; + "fckeditor" = dontDistribute super."fckeditor"; + "fclabels-monadlib" = dontDistribute super."fclabels-monadlib"; + "fdo-trash" = dontDistribute super."fdo-trash"; + "fec" = dontDistribute super."fec"; + "fedora-packages" = dontDistribute super."fedora-packages"; + "feed-cli" = dontDistribute super."feed-cli"; + "feed-collect" = dontDistribute super."feed-collect"; + "feed-crawl" = dontDistribute super."feed-crawl"; + "feed-translator" = dontDistribute super."feed-translator"; + "feed2lj" = dontDistribute super."feed2lj"; + "feed2twitter" = dontDistribute super."feed2twitter"; + "feldspar-compiler" = dontDistribute super."feldspar-compiler"; + "feldspar-language" = dontDistribute super."feldspar-language"; + "feldspar-signal" = dontDistribute super."feldspar-signal"; + "fen2s" = dontDistribute super."fen2s"; + "fences" = dontDistribute super."fences"; + "fenfire" = dontDistribute super."fenfire"; + "fez-conf" = dontDistribute super."fez-conf"; + "ffeed" = dontDistribute super."ffeed"; + "fficxx" = dontDistribute super."fficxx"; + "fficxx-runtime" = dontDistribute super."fficxx-runtime"; + "ffmpeg-light" = dontDistribute super."ffmpeg-light"; + "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; + "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; + "fgl-visualize" = dontDistribute super."fgl-visualize"; + "fibon" = dontDistribute super."fibon"; + "fibonacci" = dontDistribute super."fibonacci"; + "fields" = dontDistribute super."fields"; + "fields-json" = dontDistribute super."fields-json"; + "fieldwise" = dontDistribute super."fieldwise"; + "fig" = dontDistribute super."fig"; + "file-collection" = dontDistribute super."file-collection"; + "file-command-qq" = dontDistribute super."file-command-qq"; + "filediff" = dontDistribute super."filediff"; + "filepath-io-access" = dontDistribute super."filepath-io-access"; + "filepather" = dontDistribute super."filepather"; + "filestore" = dontDistribute super."filestore"; + "filesystem-conduit" = dontDistribute super."filesystem-conduit"; + "filesystem-enumerator" = dontDistribute super."filesystem-enumerator"; + "filesystem-trees" = dontDistribute super."filesystem-trees"; + "filtrable" = dontDistribute super."filtrable"; + "final" = dontDistribute super."final"; + "find-clumpiness" = dontDistribute super."find-clumpiness"; + "find-conduit" = dontDistribute super."find-conduit"; + "fingertree-tf" = dontDistribute super."fingertree-tf"; + "finite-field" = dontDistribute super."finite-field"; + "finite-typelits" = dontDistribute super."finite-typelits"; + "first-and-last" = dontDistribute super."first-and-last"; + "first-class-patterns" = dontDistribute super."first-class-patterns"; + "firstify" = dontDistribute super."firstify"; + "fishfood" = dontDistribute super."fishfood"; + "fit" = dontDistribute super."fit"; + "fitsio" = dontDistribute super."fitsio"; + "fix-imports" = dontDistribute super."fix-imports"; + "fix-parser-simple" = dontDistribute super."fix-parser-simple"; + "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit"; + "fixed-length" = dontDistribute super."fixed-length"; + "fixed-point" = dontDistribute super."fixed-point"; + "fixed-point-vector" = dontDistribute super."fixed-point-vector"; + "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space"; + "fixed-precision" = dontDistribute super."fixed-precision"; + "fixed-storable-array" = dontDistribute super."fixed-storable-array"; + "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; + "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixedprec" = dontDistribute super."fixedprec"; + "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; + "fixfile" = dontDistribute super."fixfile"; + "fixhs" = dontDistribute super."fixhs"; + "fixplate" = dontDistribute super."fixplate"; + "fixpoint" = dontDistribute super."fixpoint"; + "fixtime" = dontDistribute super."fixtime"; + "fizz-buzz" = dontDistribute super."fizz-buzz"; + "flaccuraterip" = dontDistribute super."flaccuraterip"; + "flamethrower" = dontDistribute super."flamethrower"; + "flamingra" = dontDistribute super."flamingra"; + "flat-maybe" = dontDistribute super."flat-maybe"; + "flat-mcmc" = dontDistribute super."flat-mcmc"; + "flat-tex" = dontDistribute super."flat-tex"; + "flexible-time" = dontDistribute super."flexible-time"; + "flexible-unlit" = dontDistribute super."flexible-unlit"; + "flexiwrap" = dontDistribute super."flexiwrap"; + "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck"; + "flickr" = dontDistribute super."flickr"; + "flippers" = dontDistribute super."flippers"; + "flite" = dontDistribute super."flite"; + "flo" = dontDistribute super."flo"; + "float-binstring" = dontDistribute super."float-binstring"; + "floating-bits" = dontDistribute super."floating-bits"; + "floatshow" = dontDistribute super."floatshow"; + "flow2dot" = dontDistribute super."flow2dot"; + "flowdock-api" = dontDistribute super."flowdock-api"; + "flowdock-rest" = dontDistribute super."flowdock-rest"; + "flower" = dontDistribute super."flower"; + "flowlocks-framework" = dontDistribute super."flowlocks-framework"; + "flowsim" = dontDistribute super."flowsim"; + "fltkhs" = dontDistribute super."fltkhs"; + "fltkhs-demos" = dontDistribute super."fltkhs-demos"; + "fltkhs-fluid-demos" = dontDistribute super."fltkhs-fluid-demos"; + "fltkhs-fluid-examples" = dontDistribute super."fltkhs-fluid-examples"; + "fltkhs-hello-world" = dontDistribute super."fltkhs-hello-world"; + "fluent-logger" = dontDistribute super."fluent-logger"; + "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; + "fluidsynth" = dontDistribute super."fluidsynth"; + "fmark" = dontDistribute super."fmark"; + "fn" = doDistribute super."fn_0_2_0_2"; + "fn-extra" = doDistribute super."fn-extra_0_2_0_1"; + "fold-debounce" = dontDistribute super."fold-debounce"; + "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl-incremental" = dontDistribute super."foldl-incremental"; + "foldl-transduce" = dontDistribute super."foldl-transduce"; + "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; + "folds" = dontDistribute super."folds"; + "folds-common" = dontDistribute super."folds-common"; + "follower" = dontDistribute super."follower"; + "foma" = dontDistribute super."foma"; + "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6"; + "foo" = dontDistribute super."foo"; + "for-free" = dontDistribute super."for-free"; + "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "fordo" = dontDistribute super."fordo"; + "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; + "foreign-var" = dontDistribute super."foreign-var"; + "forger" = dontDistribute super."forger"; + "forkable-monad" = dontDistribute super."forkable-monad"; + "formal" = dontDistribute super."formal"; + "format" = dontDistribute super."format"; + "format-status" = dontDistribute super."format-status"; + "formattable" = dontDistribute super."formattable"; + "forml" = dontDistribute super."forml"; + "formlets" = dontDistribute super."formlets"; + "formlets-hsp" = dontDistribute super."formlets-hsp"; + "formura" = dontDistribute super."formura"; + "forth-hll" = dontDistribute super."forth-hll"; + "foscam-directory" = dontDistribute super."foscam-directory"; + "foscam-filename" = dontDistribute super."foscam-filename"; + "foscam-sort" = dontDistribute super."foscam-sort"; + "fountain" = dontDistribute super."fountain"; + "fpco-api" = dontDistribute super."fpco-api"; + "fpipe" = dontDistribute super."fpipe"; + "fpnla" = dontDistribute super."fpnla"; + "fpnla-examples" = dontDistribute super."fpnla-examples"; + "fptest" = dontDistribute super."fptest"; + "fquery" = dontDistribute super."fquery"; + "fractal" = dontDistribute super."fractal"; + "fractals" = dontDistribute super."fractals"; + "fraction" = dontDistribute super."fraction"; + "frag" = dontDistribute super."frag"; + "frame" = dontDistribute super."frame"; + "frame-markdown" = dontDistribute super."frame-markdown"; + "franchise" = dontDistribute super."franchise"; + "free-concurrent" = dontDistribute super."free-concurrent"; + "free-functors" = dontDistribute super."free-functors"; + "free-game" = dontDistribute super."free-game"; + "free-http" = dontDistribute super."free-http"; + "free-operational" = dontDistribute super."free-operational"; + "free-theorems" = dontDistribute super."free-theorems"; + "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples"; + "free-theorems-seq" = dontDistribute super."free-theorems-seq"; + "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui"; + "free-theorems-webui" = dontDistribute super."free-theorems-webui"; + "free-vl" = dontDistribute super."free-vl"; + "freekick2" = dontDistribute super."freekick2"; + "freer" = dontDistribute super."freer"; + "freesect" = dontDistribute super."freesect"; + "freesound" = dontDistribute super."freesound"; + "freetype-simple" = dontDistribute super."freetype-simple"; + "freetype2" = dontDistribute super."freetype2"; + "fresh" = dontDistribute super."fresh"; + "friday" = dontDistribute super."friday"; + "friday-devil" = dontDistribute super."friday-devil"; + "friday-juicypixels" = dontDistribute super."friday-juicypixels"; + "friday-scale-dct" = dontDistribute super."friday-scale-dct"; + "friendly-time" = dontDistribute super."friendly-time"; + "frown" = dontDistribute super."frown"; + "frp-arduino" = dontDistribute super."frp-arduino"; + "frpnow" = dontDistribute super."frpnow"; + "frpnow-gloss" = dontDistribute super."frpnow-gloss"; + "frpnow-gtk" = dontDistribute super."frpnow-gtk"; + "frquotes" = dontDistribute super."frquotes"; + "fs-events" = dontDistribute super."fs-events"; + "fsharp" = dontDistribute super."fsharp"; + "fsmActions" = dontDistribute super."fsmActions"; + "fst" = dontDistribute super."fst"; + "fsutils" = dontDistribute super."fsutils"; + "fswatcher" = dontDistribute super."fswatcher"; + "ftdi" = dontDistribute super."ftdi"; + "ftp-conduit" = dontDistribute super."ftp-conduit"; + "ftphs" = dontDistribute super."ftphs"; + "ftree" = dontDistribute super."ftree"; + "ftshell" = dontDistribute super."ftshell"; + "fugue" = dontDistribute super."fugue"; + "full-sessions" = dontDistribute super."full-sessions"; + "full-text-search" = dontDistribute super."full-text-search"; + "fullstop" = dontDistribute super."fullstop"; + "funbot" = dontDistribute super."funbot"; + "funbot-client" = dontDistribute super."funbot-client"; + "funbot-ext-events" = dontDistribute super."funbot-ext-events"; + "funbot-git-hook" = dontDistribute super."funbot-git-hook"; + "funcons-tools" = dontDistribute super."funcons-tools"; + "function-combine" = dontDistribute super."function-combine"; + "function-instances-algebra" = dontDistribute super."function-instances-algebra"; + "functional-arrow" = dontDistribute super."functional-arrow"; + "functional-kmp" = dontDistribute super."functional-kmp"; + "functor-apply" = dontDistribute super."functor-apply"; + "functor-combo" = dontDistribute super."functor-combo"; + "functor-infix" = dontDistribute super."functor-infix"; + "functor-monadic" = dontDistribute super."functor-monadic"; + "functor-utils" = dontDistribute super."functor-utils"; + "functorm" = dontDistribute super."functorm"; + "functors" = dontDistribute super."functors"; + "funion" = dontDistribute super."funion"; + "funpat" = dontDistribute super."funpat"; + "funsat" = dontDistribute super."funsat"; + "fusion" = dontDistribute super."fusion"; + "futun" = dontDistribute super."futun"; + "future" = dontDistribute super."future"; + "future-resource" = dontDistribute super."future-resource"; + "fuzzy" = dontDistribute super."fuzzy"; + "fuzzy-timings" = dontDistribute super."fuzzy-timings"; + "fuzzytime" = dontDistribute super."fuzzytime"; + "fwgl" = dontDistribute super."fwgl"; + "fwgl-glfw" = dontDistribute super."fwgl-glfw"; + "fwgl-javascript" = dontDistribute super."fwgl-javascript"; + "g-npm" = dontDistribute super."g-npm"; + "gact" = dontDistribute super."gact"; + "game-of-life" = dontDistribute super."game-of-life"; + "game-probability" = dontDistribute super."game-probability"; + "game-tree" = dontDistribute super."game-tree"; + "gameclock" = dontDistribute super."gameclock"; + "gamma" = dontDistribute super."gamma"; + "gang-of-threads" = dontDistribute super."gang-of-threads"; + "garepinoh" = dontDistribute super."garepinoh"; + "garsia-wachs" = dontDistribute super."garsia-wachs"; + "gbu" = dontDistribute super."gbu"; + "gc" = dontDistribute super."gc"; + "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai"; + "gconf" = dontDistribute super."gconf"; + "gdiff" = dontDistribute super."gdiff"; + "gdiff-ig" = dontDistribute super."gdiff-ig"; + "gdiff-th" = dontDistribute super."gdiff-th"; + "gdo" = dontDistribute super."gdo"; + "gearbox" = dontDistribute super."gearbox"; + "geek" = dontDistribute super."geek"; + "geek-server" = dontDistribute super."geek-server"; + "gelatin" = dontDistribute super."gelatin"; + "gemstone" = dontDistribute super."gemstone"; + "gencheck" = dontDistribute super."gencheck"; + "gender" = dontDistribute super."gender"; + "genders" = dontDistribute super."genders"; + "general-prelude" = dontDistribute super."general-prelude"; + "generator" = dontDistribute super."generator"; + "generators" = dontDistribute super."generators"; + "generic-accessors" = dontDistribute super."generic-accessors"; + "generic-binary" = dontDistribute super."generic-binary"; + "generic-church" = dontDistribute super."generic-church"; + "generic-deepseq" = dontDistribute super."generic-deepseq"; + "generic-deriving" = doDistribute super."generic-deriving_1_9_0"; + "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; + "generic-maybe" = dontDistribute super."generic-maybe"; + "generic-pretty" = dontDistribute super."generic-pretty"; + "generic-server" = dontDistribute super."generic-server"; + "generic-storable" = dontDistribute super."generic-storable"; + "generic-tree" = dontDistribute super."generic-tree"; + "generic-xml" = dontDistribute super."generic-xml"; + "genericserialize" = dontDistribute super."genericserialize"; + "genetics" = dontDistribute super."genetics"; + "geni-gui" = dontDistribute super."geni-gui"; + "geni-util" = dontDistribute super."geni-util"; + "geniconvert" = dontDistribute super."geniconvert"; + "genifunctors" = dontDistribute super."genifunctors"; + "geniplate" = dontDistribute super."geniplate"; + "geniserver" = dontDistribute super."geniserver"; + "genprog" = dontDistribute super."genprog"; + "gentlemark" = dontDistribute super."gentlemark"; + "geo-resolver" = dontDistribute super."geo-resolver"; + "geo-uk" = dontDistribute super."geo-uk"; + "geocalc" = dontDistribute super."geocalc"; + "geocode-google" = dontDistribute super."geocode-google"; + "geodetic" = dontDistribute super."geodetic"; + "geodetics" = dontDistribute super."geodetics"; + "geohash" = dontDistribute super."geohash"; + "geoip2" = dontDistribute super."geoip2"; + "geojson" = dontDistribute super."geojson"; + "geom2d" = dontDistribute super."geom2d"; + "getemx" = dontDistribute super."getemx"; + "getflag" = dontDistribute super."getflag"; + "getopt-simple" = dontDistribute super."getopt-simple"; + "gf" = dontDistribute super."gf"; + "ggtsTC" = dontDistribute super."ggtsTC"; + "ghc-core" = dontDistribute super."ghc-core"; + "ghc-core-html" = dontDistribute super."ghc-core-html"; + "ghc-datasize" = dontDistribute super."ghc-datasize"; + "ghc-dump-tree" = dontDistribute super."ghc-dump-tree"; + "ghc-dup" = dontDistribute super."ghc-dup"; + "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; + "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; + "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-imported-from" = dontDistribute super."ghc-imported-from"; + "ghc-make" = dontDistribute super."ghc-make"; + "ghc-man-completion" = dontDistribute super."ghc-man-completion"; + "ghc-options" = dontDistribute super."ghc-options"; + "ghc-parmake" = dontDistribute super."ghc-parmake"; + "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; + "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; + "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; + "ghc-server" = dontDistribute super."ghc-server"; + "ghc-simple" = dontDistribute super."ghc-simple"; + "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; + "ghc-syb" = dontDistribute super."ghc-syb"; + "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-vis" = dontDistribute super."ghc-vis"; + "ghci-diagrams" = dontDistribute super."ghci-diagrams"; + "ghci-haskeline" = dontDistribute super."ghci-haskeline"; + "ghci-lib" = dontDistribute super."ghci-lib"; + "ghci-ng" = dontDistribute super."ghci-ng"; + "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; + "ghcjs-dom" = dontDistribute super."ghcjs-dom"; + "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; + "ghcjs-websockets" = dontDistribute super."ghcjs-websockets"; + "ghclive" = dontDistribute super."ghclive"; + "ghczdecode" = dontDistribute super."ghczdecode"; + "ght" = dontDistribute super."ght"; + "gi-atk" = dontDistribute super."gi-atk"; + "gi-cairo" = dontDistribute super."gi-cairo"; + "gi-gdk" = dontDistribute super."gi-gdk"; + "gi-gdkpixbuf" = dontDistribute super."gi-gdkpixbuf"; + "gi-gio" = dontDistribute super."gi-gio"; + "gi-girepository" = dontDistribute super."gi-girepository"; + "gi-glib" = dontDistribute super."gi-glib"; + "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gtk" = dontDistribute super."gi-gtk"; + "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; + "gi-notify" = dontDistribute super."gi-notify"; + "gi-pango" = dontDistribute super."gi-pango"; + "gi-poppler" = dontDistribute super."gi-poppler"; + "gi-soup" = dontDistribute super."gi-soup"; + "gi-vte" = dontDistribute super."gi-vte"; + "gi-webkit" = dontDistribute super."gi-webkit"; + "gi-webkit2" = dontDistribute super."gi-webkit2"; + "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "gimlh" = dontDistribute super."gimlh"; + "ginger" = dontDistribute super."ginger"; + "ginsu" = dontDistribute super."ginsu"; + "gist" = dontDistribute super."gist"; + "git-all" = dontDistribute super."git-all"; + "git-annex" = doDistribute super."git-annex_6_20160114"; + "git-checklist" = dontDistribute super."git-checklist"; + "git-date" = dontDistribute super."git-date"; + "git-embed" = dontDistribute super."git-embed"; + "git-freq" = dontDistribute super."git-freq"; + "git-gpush" = dontDistribute super."git-gpush"; + "git-jump" = dontDistribute super."git-jump"; + "git-monitor" = dontDistribute super."git-monitor"; + "git-object" = dontDistribute super."git-object"; + "git-repair" = dontDistribute super."git-repair"; + "git-sanity" = dontDistribute super."git-sanity"; + "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; + "gitcache" = dontDistribute super."gitcache"; + "gitdo" = dontDistribute super."gitdo"; + "github-backup" = dontDistribute super."github-backup"; + "github-post-receive" = dontDistribute super."github-post-receive"; + "github-utils" = dontDistribute super."github-utils"; + "gitignore" = dontDistribute super."gitignore"; + "gitit" = dontDistribute super."gitit"; + "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; + "gitlib-cross" = dontDistribute super."gitlib-cross"; + "gitlib-s3" = dontDistribute super."gitlib-s3"; + "gitlib-sample" = dontDistribute super."gitlib-sample"; + "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; + "gl-capture" = dontDistribute super."gl-capture"; + "glade" = dontDistribute super."glade"; + "gladexml-accessor" = dontDistribute super."gladexml-accessor"; + "glambda" = dontDistribute super."glambda"; + "glapp" = dontDistribute super."glapp"; + "glasso" = dontDistribute super."glasso"; + "glicko" = dontDistribute super."glicko"; + "glider-nlp" = dontDistribute super."glider-nlp"; + "glintcollider" = dontDistribute super."glintcollider"; + "gll" = dontDistribute super."gll"; + "global" = dontDistribute super."global"; + "global-config" = dontDistribute super."global-config"; + "global-lock" = dontDistribute super."global-lock"; + "global-variables" = dontDistribute super."global-variables"; + "glome-hs" = dontDistribute super."glome-hs"; + "gloss" = dontDistribute super."gloss"; + "gloss-accelerate" = dontDistribute super."gloss-accelerate"; + "gloss-algorithms" = dontDistribute super."gloss-algorithms"; + "gloss-banana" = dontDistribute super."gloss-banana"; + "gloss-devil" = dontDistribute super."gloss-devil"; + "gloss-examples" = dontDistribute super."gloss-examples"; + "gloss-game" = dontDistribute super."gloss-game"; + "gloss-juicy" = dontDistribute super."gloss-juicy"; + "gloss-raster" = dontDistribute super."gloss-raster"; + "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate"; + "gloss-rendering" = dontDistribute super."gloss-rendering"; + "gloss-sodium" = dontDistribute super."gloss-sodium"; + "glpk-hs" = dontDistribute super."glpk-hs"; + "glue" = dontDistribute super."glue"; + "glue-common" = dontDistribute super."glue-common"; + "glue-core" = dontDistribute super."glue-core"; + "glue-ekg" = dontDistribute super."glue-ekg"; + "glue-example" = dontDistribute super."glue-example"; + "gluturtle" = dontDistribute super."gluturtle"; + "gmap" = dontDistribute super."gmap"; + "gmndl" = dontDistribute super."gmndl"; + "gnome-desktop" = dontDistribute super."gnome-desktop"; + "gnome-keyring" = dontDistribute super."gnome-keyring"; + "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; + "gnuplot" = dontDistribute super."gnuplot"; + "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; + "goatee" = dontDistribute super."goatee"; + "goatee-gtk" = dontDistribute super."goatee-gtk"; + "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gogol" = dontDistribute super."gogol"; + "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer"; + "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller"; + "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer"; + "gogol-admin-directory" = dontDistribute super."gogol-admin-directory"; + "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration"; + "gogol-admin-reports" = dontDistribute super."gogol-admin-reports"; + "gogol-adsense" = dontDistribute super."gogol-adsense"; + "gogol-adsense-host" = dontDistribute super."gogol-adsense-host"; + "gogol-affiliates" = dontDistribute super."gogol-affiliates"; + "gogol-analytics" = dontDistribute super."gogol-analytics"; + "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise"; + "gogol-android-publisher" = dontDistribute super."gogol-android-publisher"; + "gogol-appengine" = dontDistribute super."gogol-appengine"; + "gogol-apps-activity" = dontDistribute super."gogol-apps-activity"; + "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar"; + "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing"; + "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller"; + "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks"; + "gogol-appstate" = dontDistribute super."gogol-appstate"; + "gogol-autoscaler" = dontDistribute super."gogol-autoscaler"; + "gogol-bigquery" = dontDistribute super."gogol-bigquery"; + "gogol-billing" = dontDistribute super."gogol-billing"; + "gogol-blogger" = dontDistribute super."gogol-blogger"; + "gogol-books" = dontDistribute super."gogol-books"; + "gogol-civicinfo" = dontDistribute super."gogol-civicinfo"; + "gogol-classroom" = dontDistribute super."gogol-classroom"; + "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace"; + "gogol-compute" = dontDistribute super."gogol-compute"; + "gogol-container" = dontDistribute super."gogol-container"; + "gogol-core" = dontDistribute super."gogol-core"; + "gogol-customsearch" = dontDistribute super."gogol-customsearch"; + "gogol-dataflow" = dontDistribute super."gogol-dataflow"; + "gogol-datastore" = dontDistribute super."gogol-datastore"; + "gogol-debugger" = dontDistribute super."gogol-debugger"; + "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager"; + "gogol-dfareporting" = dontDistribute super."gogol-dfareporting"; + "gogol-discovery" = dontDistribute super."gogol-discovery"; + "gogol-dns" = dontDistribute super."gogol-dns"; + "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids"; + "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search"; + "gogol-drive" = dontDistribute super."gogol-drive"; + "gogol-fitness" = dontDistribute super."gogol-fitness"; + "gogol-fonts" = dontDistribute super."gogol-fonts"; + "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch"; + "gogol-fusiontables" = dontDistribute super."gogol-fusiontables"; + "gogol-games" = dontDistribute super."gogol-games"; + "gogol-games-configuration" = dontDistribute super."gogol-games-configuration"; + "gogol-games-management" = dontDistribute super."gogol-games-management"; + "gogol-genomics" = dontDistribute super."gogol-genomics"; + "gogol-gmail" = dontDistribute super."gogol-gmail"; + "gogol-groups-migration" = dontDistribute super."gogol-groups-migration"; + "gogol-groups-settings" = dontDistribute super."gogol-groups-settings"; + "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit"; + "gogol-latencytest" = dontDistribute super."gogol-latencytest"; + "gogol-logging" = dontDistribute super."gogol-logging"; + "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate"; + "gogol-maps-engine" = dontDistribute super."gogol-maps-engine"; + "gogol-mirror" = dontDistribute super."gogol-mirror"; + "gogol-monitoring" = dontDistribute super."gogol-monitoring"; + "gogol-oauth2" = dontDistribute super."gogol-oauth2"; + "gogol-pagespeed" = dontDistribute super."gogol-pagespeed"; + "gogol-partners" = dontDistribute super."gogol-partners"; + "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner"; + "gogol-plus" = dontDistribute super."gogol-plus"; + "gogol-plus-domains" = dontDistribute super."gogol-plus-domains"; + "gogol-prediction" = dontDistribute super."gogol-prediction"; + "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon"; + "gogol-pubsub" = dontDistribute super."gogol-pubsub"; + "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress"; + "gogol-replicapool" = dontDistribute super."gogol-replicapool"; + "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater"; + "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager"; + "gogol-resourceviews" = dontDistribute super."gogol-resourceviews"; + "gogol-shopping-content" = dontDistribute super."gogol-shopping-content"; + "gogol-siteverification" = dontDistribute super."gogol-siteverification"; + "gogol-spectrum" = dontDistribute super."gogol-spectrum"; + "gogol-sqladmin" = dontDistribute super."gogol-sqladmin"; + "gogol-storage" = dontDistribute super."gogol-storage"; + "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer"; + "gogol-tagmanager" = dontDistribute super."gogol-tagmanager"; + "gogol-taskqueue" = dontDistribute super."gogol-taskqueue"; + "gogol-translate" = dontDistribute super."gogol-translate"; + "gogol-urlshortener" = dontDistribute super."gogol-urlshortener"; + "gogol-useraccounts" = dontDistribute super."gogol-useraccounts"; + "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools"; + "gogol-youtube" = dontDistribute super."gogol-youtube"; + "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; + "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; + "gooey" = dontDistribute super."gooey"; + "google-dictionary" = dontDistribute super."google-dictionary"; + "google-drive" = dontDistribute super."google-drive"; + "google-html5-slide" = dontDistribute super."google-html5-slide"; + "google-mail-filters" = dontDistribute super."google-mail-filters"; + "google-oauth2" = dontDistribute super."google-oauth2"; + "google-search" = dontDistribute super."google-search"; + "googleplus" = dontDistribute super."googleplus"; + "googlepolyline" = dontDistribute super."googlepolyline"; + "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; + "gpah" = dontDistribute super."gpah"; + "gpcsets" = dontDistribute super."gpcsets"; + "gpolyline" = dontDistribute super."gpolyline"; + "gps" = dontDistribute super."gps"; + "gps2htmlReport" = dontDistribute super."gps2htmlReport"; + "gpx-conduit" = dontDistribute super."gpx-conduit"; + "graceful" = dontDistribute super."graceful"; + "grammar-combinators" = dontDistribute super."grammar-combinators"; + "grapefruit-examples" = dontDistribute super."grapefruit-examples"; + "grapefruit-frp" = dontDistribute super."grapefruit-frp"; + "grapefruit-records" = dontDistribute super."grapefruit-records"; + "grapefruit-ui" = dontDistribute super."grapefruit-ui"; + "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk"; + "graph-core" = doDistribute super."graph-core_0_2_2_0"; + "graph-generators" = dontDistribute super."graph-generators"; + "graph-matchings" = dontDistribute super."graph-matchings"; + "graph-rewriting" = dontDistribute super."graph-rewriting"; + "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl"; + "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl"; + "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope"; + "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout"; + "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski"; + "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies"; + "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs"; + "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww"; + "graph-serialize" = dontDistribute super."graph-serialize"; + "graph-utils" = dontDistribute super."graph-utils"; + "graph-visit" = dontDistribute super."graph-visit"; + "graphbuilder" = dontDistribute super."graphbuilder"; + "graphene" = dontDistribute super."graphene"; + "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators"; + "graphics-formats-collada" = dontDistribute super."graphics-formats-collada"; + "graphicsFormats" = dontDistribute super."graphicsFormats"; + "graphicstools" = dontDistribute super."graphicstools"; + "graphmod" = dontDistribute super."graphmod"; + "graphql" = dontDistribute super."graphql"; + "graphtype" = dontDistribute super."graphtype"; + "grasp" = dontDistribute super."grasp"; + "gray-code" = dontDistribute super."gray-code"; + "gray-extended" = dontDistribute super."gray-extended"; + "graylog" = dontDistribute super."graylog"; + "greencard" = dontDistribute super."greencard"; + "greencard-lib" = dontDistribute super."greencard-lib"; + "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; + "greplicate" = dontDistribute super."greplicate"; + "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; + "gridland" = dontDistribute super."gridland"; + "grm" = dontDistribute super."grm"; + "groundhog-inspector" = dontDistribute super."groundhog-inspector"; + "group-with" = dontDistribute super."group-with"; + "groupoid" = dontDistribute super."groupoid"; + "gruff" = dontDistribute super."gruff"; + "gruff-examples" = dontDistribute super."gruff-examples"; + "gsc-weighting" = dontDistribute super."gsc-weighting"; + "gsl-random" = dontDistribute super."gsl-random"; + "gsl-random-fu" = dontDistribute super."gsl-random-fu"; + "gsmenu" = dontDistribute super."gsmenu"; + "gstreamer" = dontDistribute super."gstreamer"; + "gt-tools" = dontDistribute super."gt-tools"; + "gtfs" = dontDistribute super."gtfs"; + "gtk-helpers" = dontDistribute super."gtk-helpers"; + "gtk-jsinput" = dontDistribute super."gtk-jsinput"; + "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; + "gtk-mac-integration" = dontDistribute super."gtk-mac-integration"; + "gtk-serialized-event" = dontDistribute super."gtk-serialized-event"; + "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view"; + "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list"; + "gtk-toy" = dontDistribute super."gtk-toy"; + "gtk-traymanager" = dontDistribute super."gtk-traymanager"; + "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade"; + "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib"; + "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs"; + "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk"; + "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext"; + "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2"; + "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; + "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; + "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; + "gtkglext" = dontDistribute super."gtkglext"; + "gtkimageview" = dontDistribute super."gtkimageview"; + "gtkrsync" = dontDistribute super."gtkrsync"; + "gtksourceview2" = dontDistribute super."gtksourceview2"; + "gtksourceview3" = dontDistribute super."gtksourceview3"; + "guarded-rewriting" = dontDistribute super."guarded-rewriting"; + "guess-combinator" = dontDistribute super."guess-combinator"; + "gulcii" = dontDistribute super."gulcii"; + "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis"; + "gyah-bin" = dontDistribute super."gyah-bin"; + "h-booru" = dontDistribute super."h-booru"; + "h-gpgme" = dontDistribute super."h-gpgme"; + "h2048" = dontDistribute super."h2048"; + "hArduino" = dontDistribute super."hArduino"; + "hBDD" = dontDistribute super."hBDD"; + "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD"; + "hBDD-CUDD" = dontDistribute super."hBDD-CUDD"; + "hCsound" = dontDistribute super."hCsound"; + "hDFA" = dontDistribute super."hDFA"; + "hF2" = dontDistribute super."hF2"; + "hGelf" = dontDistribute super."hGelf"; + "hLLVM" = dontDistribute super."hLLVM"; + "hMollom" = dontDistribute super."hMollom"; + "hPDB-examples" = dontDistribute super."hPDB-examples"; + "hPushover" = dontDistribute super."hPushover"; + "hR" = dontDistribute super."hR"; + "hRESP" = dontDistribute super."hRESP"; + "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; + "hSimpleDB" = dontDistribute super."hSimpleDB"; + "hTalos" = dontDistribute super."hTalos"; + "hTensor" = dontDistribute super."hTensor"; + "hVOIDP" = dontDistribute super."hVOIDP"; + "hXmixer" = dontDistribute super."hXmixer"; + "haar" = dontDistribute super."haar"; + "hacanon-light" = dontDistribute super."hacanon-light"; + "hack" = dontDistribute super."hack"; + "hack-contrib" = dontDistribute super."hack-contrib"; + "hack-contrib-press" = dontDistribute super."hack-contrib-press"; + "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack"; + "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi"; + "hack-handler-cgi" = dontDistribute super."hack-handler-cgi"; + "hack-handler-epoll" = dontDistribute super."hack-handler-epoll"; + "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp"; + "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi"; + "hack-handler-happstack" = dontDistribute super."hack-handler-happstack"; + "hack-handler-hyena" = dontDistribute super."hack-handler-hyena"; + "hack-handler-kibro" = dontDistribute super."hack-handler-kibro"; + "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver"; + "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath"; + "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession"; + "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip"; + "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp"; + "hack2" = dontDistribute super."hack2"; + "hack2-contrib" = dontDistribute super."hack2-contrib"; + "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra"; + "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server"; + "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http"; + "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server"; + "hack2-handler-warp" = dontDistribute super."hack2-handler-warp"; + "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; + "hackage-diff" = dontDistribute super."hackage-diff"; + "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-proxy" = dontDistribute super."hackage-proxy"; + "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; + "hackage-security" = dontDistribute super."hackage-security"; + "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; + "hackage-server" = dontDistribute super."hackage-server"; + "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage2hwn" = dontDistribute super."hackage2hwn"; + "hackage2twitter" = dontDistribute super."hackage2twitter"; + "hackager" = dontDistribute super."hackager"; + "hackernews" = dontDistribute super."hackernews"; + "hackertyper" = dontDistribute super."hackertyper"; + "hackport" = dontDistribute super."hackport"; + "hactor" = dontDistribute super."hactor"; + "hactors" = dontDistribute super."hactors"; + "haddock" = dontDistribute super."haddock"; + "haddock-leksah" = dontDistribute super."haddock-leksah"; + "hadoop-formats" = dontDistribute super."hadoop-formats"; + "hadoop-rpc" = dontDistribute super."hadoop-rpc"; + "hadoop-tools" = dontDistribute super."hadoop-tools"; + "haeredes" = dontDistribute super."haeredes"; + "haggis" = dontDistribute super."haggis"; + "haha" = dontDistribute super."haha"; + "hahp" = dontDistribute super."hahp"; + "haiji" = dontDistribute super."haiji"; + "hailgun" = dontDistribute super."hailgun"; + "hailgun-send" = dontDistribute super."hailgun-send"; + "hails" = dontDistribute super."hails"; + "hails-bin" = dontDistribute super."hails-bin"; + "hairy" = dontDistribute super."hairy"; + "hakaru" = dontDistribute super."hakaru"; + "hake" = dontDistribute super."hake"; + "hakismet" = dontDistribute super."hakismet"; + "hako" = dontDistribute super."hako"; + "hakyll-R" = dontDistribute super."hakyll-R"; + "hakyll-agda" = dontDistribute super."hakyll-agda"; + "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; + "hakyll-contrib" = dontDistribute super."hakyll-contrib"; + "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation"; + "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; + "hakyll-convert" = dontDistribute super."hakyll-convert"; + "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; + "hakyll-sass" = dontDistribute super."hakyll-sass"; + "halberd" = dontDistribute super."halberd"; + "halfs" = dontDistribute super."halfs"; + "halipeto" = dontDistribute super."halipeto"; + "halive" = dontDistribute super."halive"; + "halma" = dontDistribute super."halma"; + "haltavista" = dontDistribute super."haltavista"; + "hamid" = dontDistribute super."hamid"; + "hampp" = dontDistribute super."hampp"; + "hamtmap" = dontDistribute super."hamtmap"; + "hamusic" = dontDistribute super."hamusic"; + "handa-gdata" = dontDistribute super."handa-gdata"; + "handa-geodata" = dontDistribute super."handa-geodata"; + "handa-opengl" = dontDistribute super."handa-opengl"; + "handle-like" = dontDistribute super."handle-like"; + "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; + "hangman" = dontDistribute super."hangman"; + "hannahci" = dontDistribute super."hannahci"; + "hans" = dontDistribute super."hans"; + "hans-pcap" = dontDistribute super."hans-pcap"; + "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; + "happindicator" = dontDistribute super."happindicator"; + "happindicator3" = dontDistribute super."happindicator3"; + "happraise" = dontDistribute super."happraise"; + "happs-hsp" = dontDistribute super."happs-hsp"; + "happs-hsp-template" = dontDistribute super."happs-hsp-template"; + "happs-tutorial" = dontDistribute super."happs-tutorial"; + "happstack" = dontDistribute super."happstack"; + "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-contrib" = dontDistribute super."happstack-contrib"; + "happstack-data" = dontDistribute super."happstack-data"; + "happstack-dlg" = dontDistribute super."happstack-dlg"; + "happstack-facebook" = dontDistribute super."happstack-facebook"; + "happstack-fastcgi" = dontDistribute super."happstack-fastcgi"; + "happstack-fay" = dontDistribute super."happstack-fay"; + "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax"; + "happstack-foundation" = dontDistribute super."happstack-foundation"; + "happstack-hamlet" = dontDistribute super."happstack-hamlet"; + "happstack-heist" = dontDistribute super."happstack-heist"; + "happstack-helpers" = dontDistribute super."happstack-helpers"; + "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate"; + "happstack-ixset" = dontDistribute super."happstack-ixset"; + "happstack-lite" = dontDistribute super."happstack-lite"; + "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; + "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; + "happstack-state" = dontDistribute super."happstack-state"; + "happstack-static-routing" = dontDistribute super."happstack-static-routing"; + "happstack-util" = dontDistribute super."happstack-util"; + "happstack-yui" = dontDistribute super."happstack-yui"; + "happy-meta" = dontDistribute super."happy-meta"; + "happybara" = dontDistribute super."happybara"; + "happybara-webkit" = dontDistribute super."happybara-webkit"; + "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "har" = dontDistribute super."har"; + "harchive" = dontDistribute super."harchive"; + "hardware-edsl" = dontDistribute super."hardware-edsl"; + "hark" = dontDistribute super."hark"; + "harmony" = dontDistribute super."harmony"; + "haroonga" = dontDistribute super."haroonga"; + "haroonga-httpd" = dontDistribute super."haroonga-httpd"; + "harpy" = dontDistribute super."harpy"; + "has" = dontDistribute super."has"; + "has-th" = dontDistribute super."has-th"; + "hascal" = dontDistribute super."hascal"; + "hascat" = dontDistribute super."hascat"; + "hascat-lib" = dontDistribute super."hascat-lib"; + "hascat-setup" = dontDistribute super."hascat-setup"; + "hascat-system" = dontDistribute super."hascat-system"; + "hash" = dontDistribute super."hash"; + "hashable-generics" = dontDistribute super."hashable-generics"; + "hashabler" = dontDistribute super."hashabler"; + "hashed-storage" = dontDistribute super."hashed-storage"; + "hashids" = dontDistribute super."hashids"; + "hashring" = dontDistribute super."hashring"; + "hashtables-plus" = dontDistribute super."hashtables-plus"; + "hasim" = dontDistribute super."hasim"; + "hask" = dontDistribute super."hask"; + "hask-home" = dontDistribute super."hask-home"; + "haskades" = dontDistribute super."haskades"; + "haskakafka" = dontDistribute super."haskakafka"; + "haskanoid" = dontDistribute super."haskanoid"; + "haskarrow" = dontDistribute super."haskarrow"; + "haskbot-core" = dontDistribute super."haskbot-core"; + "haskdeep" = dontDistribute super."haskdeep"; + "haskdogs" = dontDistribute super."haskdogs"; + "haskeem" = dontDistribute super."haskeem"; + "haskeline" = doDistribute super."haskeline_0_7_2_2"; + "haskeline-class" = dontDistribute super."haskeline-class"; + "haskell-aliyun" = dontDistribute super."haskell-aliyun"; + "haskell-awk" = dontDistribute super."haskell-awk"; + "haskell-bcrypt" = dontDistribute super."haskell-bcrypt"; + "haskell-brainfuck" = dontDistribute super."haskell-brainfuck"; + "haskell-cnc" = dontDistribute super."haskell-cnc"; + "haskell-coffee" = dontDistribute super."haskell-coffee"; + "haskell-compression" = dontDistribute super."haskell-compression"; + "haskell-course-preludes" = dontDistribute super."haskell-course-preludes"; + "haskell-docs" = dontDistribute super."haskell-docs"; + "haskell-exp-parser" = dontDistribute super."haskell-exp-parser"; + "haskell-formatter" = dontDistribute super."haskell-formatter"; + "haskell-ftp" = dontDistribute super."haskell-ftp"; + "haskell-generate" = dontDistribute super."haskell-generate"; + "haskell-gi" = dontDistribute super."haskell-gi"; + "haskell-gi-base" = dontDistribute super."haskell-gi-base"; + "haskell-import-graph" = dontDistribute super."haskell-import-graph"; + "haskell-in-space" = dontDistribute super."haskell-in-space"; + "haskell-kubernetes" = dontDistribute super."haskell-kubernetes"; + "haskell-modbus" = dontDistribute super."haskell-modbus"; + "haskell-mpfr" = dontDistribute super."haskell-mpfr"; + "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = dontDistribute super."haskell-names"; + "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; + "haskell-platform-test" = dontDistribute super."haskell-platform-test"; + "haskell-plot" = dontDistribute super."haskell-plot"; + "haskell-qrencode" = dontDistribute super."haskell-qrencode"; + "haskell-read-editor" = dontDistribute super."haskell-read-editor"; + "haskell-reflect" = dontDistribute super."haskell-reflect"; + "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; + "haskell-token-utils" = dontDistribute super."haskell-token-utils"; + "haskell-tor" = dontDistribute super."haskell-tor"; + "haskell-type-exts" = dontDistribute super."haskell-type-exts"; + "haskell-typescript" = dontDistribute super."haskell-typescript"; + "haskell-tyrant" = dontDistribute super."haskell-tyrant"; + "haskell-updater" = dontDistribute super."haskell-updater"; + "haskell-xmpp" = dontDistribute super."haskell-xmpp"; + "haskell2010" = dontDistribute super."haskell2010"; + "haskell98" = dontDistribute super."haskell98"; + "haskell98libraries" = dontDistribute super."haskell98libraries"; + "haskelldb" = dontDistribute super."haskelldb"; + "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc"; + "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl"; + "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf"; + "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers"; + "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted"; + "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic"; + "haskelldb-flat" = dontDistribute super."haskelldb-flat"; + "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc"; + "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql"; + "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc"; + "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql"; + "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3"; + "haskelldb-hsql" = dontDistribute super."haskelldb-hsql"; + "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql"; + "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc"; + "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle"; + "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql"; + "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite"; + "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3"; + "haskelldb-th" = dontDistribute super."haskelldb-th"; + "haskelldb-wx" = dontDistribute super."haskelldb-wx"; + "haskellscrabble" = dontDistribute super."haskellscrabble"; + "haskellscript" = dontDistribute super."haskellscript"; + "haskelm" = dontDistribute super."haskelm"; + "haskgame" = dontDistribute super."haskgame"; + "haskheap" = dontDistribute super."haskheap"; + "haskhol-core" = dontDistribute super."haskhol-core"; + "haskmon" = dontDistribute super."haskmon"; + "haskoin" = dontDistribute super."haskoin"; + "haskoin-core" = dontDistribute super."haskoin-core"; + "haskoin-crypto" = dontDistribute super."haskoin-crypto"; + "haskoin-node" = dontDistribute super."haskoin-node"; + "haskoin-protocol" = dontDistribute super."haskoin-protocol"; + "haskoin-script" = dontDistribute super."haskoin-script"; + "haskoin-util" = dontDistribute super."haskoin-util"; + "haskoin-wallet" = dontDistribute super."haskoin-wallet"; + "haskoon" = dontDistribute super."haskoon"; + "haskoon-httpspec" = dontDistribute super."haskoon-httpspec"; + "haskoon-salvia" = dontDistribute super."haskoon-salvia"; + "haskore" = dontDistribute super."haskore"; + "haskore-realtime" = dontDistribute super."haskore-realtime"; + "haskore-supercollider" = dontDistribute super."haskore-supercollider"; + "haskore-synthesizer" = dontDistribute super."haskore-synthesizer"; + "haskore-vintage" = dontDistribute super."haskore-vintage"; + "hasktags" = dontDistribute super."hasktags"; + "haslo" = dontDistribute super."haslo"; + "hasloGUI" = dontDistribute super."hasloGUI"; + "hasparql-client" = dontDistribute super."hasparql-client"; + "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_19_6"; + "hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative"; + "hasql-pool" = dontDistribute super."hasql-pool"; + "hasql-postgres" = dontDistribute super."hasql-postgres"; + "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; + "hasql-th" = dontDistribute super."hasql-th"; + "hasql-transaction" = dontDistribute super."hasql-transaction"; + "hastache-aeson" = dontDistribute super."hastache-aeson"; + "haste" = dontDistribute super."haste"; + "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-markup" = dontDistribute super."haste-markup"; + "haste-perch" = dontDistribute super."haste-perch"; + "hastily" = dontDistribute super."hastily"; + "hat" = dontDistribute super."hat"; + "hatex-guide" = dontDistribute super."hatex-guide"; + "hath" = dontDistribute super."hath"; + "hatt" = dontDistribute super."hatt"; + "haverer" = dontDistribute super."haverer"; + "hawitter" = dontDistribute super."hawitter"; + "haxl-amazonka" = dontDistribute super."haxl-amazonka"; + "haxl-facebook" = dontDistribute super."haxl-facebook"; + "haxparse" = dontDistribute super."haxparse"; + "haxr-th" = dontDistribute super."haxr-th"; + "haxy" = dontDistribute super."haxy"; + "hayland" = dontDistribute super."hayland"; + "hayoo-cli" = dontDistribute super."hayoo-cli"; + "hback" = dontDistribute super."hback"; + "hbayes" = dontDistribute super."hbayes"; + "hbb" = dontDistribute super."hbb"; + "hbcd" = dontDistribute super."hbcd"; + "hbeat" = dontDistribute super."hbeat"; + "hblas" = dontDistribute super."hblas"; + "hblock" = dontDistribute super."hblock"; + "hbro" = dontDistribute super."hbro"; + "hbro-contrib" = dontDistribute super."hbro-contrib"; + "hburg" = dontDistribute super."hburg"; + "hcc" = dontDistribute super."hcc"; + "hcg-minus" = dontDistribute super."hcg-minus"; + "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo"; + "hcheat" = dontDistribute super."hcheat"; + "hchesslib" = dontDistribute super."hchesslib"; + "hcltest" = dontDistribute super."hcltest"; + "hcoap" = dontDistribute super."hcoap"; + "hcron" = dontDistribute super."hcron"; + "hcube" = dontDistribute super."hcube"; + "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; + "hdbc-aeson" = dontDistribute super."hdbc-aeson"; + "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; + "hdbc-tuple" = dontDistribute super."hdbc-tuple"; + "hdbi" = dontDistribute super."hdbi"; + "hdbi-conduit" = dontDistribute super."hdbi-conduit"; + "hdbi-postgresql" = dontDistribute super."hdbi-postgresql"; + "hdbi-sqlite" = dontDistribute super."hdbi-sqlite"; + "hdbi-tests" = dontDistribute super."hdbi-tests"; + "hdf" = dontDistribute super."hdf"; + "hdigest" = dontDistribute super."hdigest"; + "hdirect" = dontDistribute super."hdirect"; + "hdis86" = dontDistribute super."hdis86"; + "hdiscount" = dontDistribute super."hdiscount"; + "hdm" = dontDistribute super."hdm"; + "hdph" = dontDistribute super."hdph"; + "hdph-closure" = dontDistribute super."hdph-closure"; + "hdr-histogram" = dontDistribute super."hdr-histogram"; + "headergen" = dontDistribute super."headergen"; + "heapsort" = dontDistribute super."heapsort"; + "hecc" = dontDistribute super."hecc"; + "hedis-config" = dontDistribute super."hedis-config"; + "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-pile" = dontDistribute super."hedis-pile"; + "hedis-simple" = dontDistribute super."hedis-simple"; + "hedis-tags" = dontDistribute super."hedis-tags"; + "hedn" = dontDistribute super."hedn"; + "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_1"; + "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"; + "herf-time" = dontDistribute super."herf-time"; + "hermit" = dontDistribute super."hermit"; + "hermit-syb" = dontDistribute super."hermit-syb"; + "hero-club-five-tenets" = dontDistribute super."hero-club-five-tenets"; + "heroku" = dontDistribute super."heroku"; + "heroku-persistent" = dontDistribute super."heroku-persistent"; + "herringbone" = dontDistribute super."herringbone"; + "herringbone-embed" = dontDistribute super."herringbone-embed"; + "herringbone-wai" = dontDistribute super."herringbone-wai"; + "hesh" = dontDistribute super."hesh"; + "hesql" = dontDistribute super."hesql"; + "hetero-map" = dontDistribute super."hetero-map"; + "hetris" = dontDistribute super."hetris"; + "heukarya" = dontDistribute super."heukarya"; + "hevolisa" = dontDistribute super."hevolisa"; + "hevolisa-dph" = dontDistribute super."hevolisa-dph"; + "hexdump" = dontDistribute super."hexdump"; + "hexif" = dontDistribute super."hexif"; + "hexpat-iteratee" = dontDistribute super."hexpat-iteratee"; + "hexpat-lens" = dontDistribute super."hexpat-lens"; + "hexpat-pickle" = dontDistribute super."hexpat-pickle"; + "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic"; + "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup"; + "hexpr" = dontDistribute super."hexpr"; + "hexquote" = dontDistribute super."hexquote"; + "heyefi" = dontDistribute super."heyefi"; + "hfann" = dontDistribute super."hfann"; + "hfd" = dontDistribute super."hfd"; + "hfiar" = dontDistribute super."hfiar"; + "hfmt" = dontDistribute super."hfmt"; + "hfoil" = dontDistribute super."hfoil"; + "hformat" = dontDistribute super."hformat"; + "hfov" = dontDistribute super."hfov"; + "hfractal" = dontDistribute super."hfractal"; + "hfusion" = dontDistribute super."hfusion"; + "hg-buildpackage" = dontDistribute super."hg-buildpackage"; + "hgal" = dontDistribute super."hgal"; + "hgalib" = dontDistribute super."hgalib"; + "hgdbmi" = dontDistribute super."hgdbmi"; + "hgearman" = dontDistribute super."hgearman"; + "hgen" = dontDistribute super."hgen"; + "hgeometric" = dontDistribute super."hgeometric"; + "hgeometry" = dontDistribute super."hgeometry"; + "hgithub" = dontDistribute super."hgithub"; + "hgl-example" = dontDistribute super."hgl-example"; + "hgom" = dontDistribute super."hgom"; + "hgopher" = dontDistribute super."hgopher"; + "hgrev" = dontDistribute super."hgrev"; + "hgrib" = dontDistribute super."hgrib"; + "hharp" = dontDistribute super."hharp"; + "hi" = dontDistribute super."hi"; + "hi3status" = dontDistribute super."hi3status"; + "hiccup" = dontDistribute super."hiccup"; + "hichi" = dontDistribute super."hichi"; + "hieraclus" = dontDistribute super."hieraclus"; + "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; + "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions"; + "hierarchy" = dontDistribute super."hierarchy"; + "hiernotify" = dontDistribute super."hiernotify"; + "highWaterMark" = dontDistribute super."highWaterMark"; + "higher-leveldb" = dontDistribute super."higher-leveldb"; + "higherorder" = dontDistribute super."higherorder"; + "highlight-versions" = dontDistribute super."highlight-versions"; + "highlighter" = dontDistribute super."highlighter"; + "highlighter2" = dontDistribute super."highlighter2"; + "hills" = dontDistribute super."hills"; + "himerge" = dontDistribute super."himerge"; + "himg" = dontDistribute super."himg"; + "himpy" = dontDistribute super."himpy"; + "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"; + "hinquire" = dontDistribute super."hinquire"; + "hinstaller" = dontDistribute super."hinstaller"; + "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"; + "hjcase" = dontDistribute super."hjcase"; + "hjpath" = dontDistribute super."hjpath"; + "hjs" = dontDistribute super."hjs"; + "hjson" = dontDistribute super."hjson"; + "hjson-query" = dontDistribute super."hjson-query"; + "hjsonpointer" = dontDistribute super."hjsonpointer"; + "hjsonschema" = dontDistribute super."hjsonschema"; + "hkdf" = dontDistribute super."hkdf"; + "hlatex" = dontDistribute super."hlatex"; + "hlbfgsb" = dontDistribute super."hlbfgsb"; + "hlcm" = dontDistribute super."hlcm"; + "hleap" = dontDistribute super."hleap"; + "hledger-chart" = dontDistribute super."hledger-chart"; + "hledger-diff" = dontDistribute super."hledger-diff"; + "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-vty" = dontDistribute super."hledger-vty"; + "hlibBladeRF" = dontDistribute super."hlibBladeRF"; + "hlibev" = dontDistribute super."hlibev"; + "hlibfam" = dontDistribute super."hlibfam"; + "hlogger" = dontDistribute super."hlogger"; + "hlongurl" = dontDistribute super."hlongurl"; + "hls" = dontDistribute super."hls"; + "hlwm" = dontDistribute super."hlwm"; + "hly" = dontDistribute super."hly"; + "hmark" = dontDistribute super."hmark"; + "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix-banded" = dontDistribute super."hmatrix-banded"; + "hmatrix-csv" = dontDistribute super."hmatrix-csv"; + "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; + "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; + "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; + "hmatrix-repa" = dontDistribute super."hmatrix-repa"; + "hmatrix-special" = dontDistribute super."hmatrix-special"; + "hmatrix-static" = dontDistribute super."hmatrix-static"; + "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc"; + "hmatrix-syntax" = dontDistribute super."hmatrix-syntax"; + "hmatrix-tests" = dontDistribute super."hmatrix-tests"; + "hmeap" = dontDistribute super."hmeap"; + "hmeap-utils" = dontDistribute super."hmeap-utils"; + "hmemdb" = dontDistribute super."hmemdb"; + "hmenu" = dontDistribute super."hmenu"; + "hmidi" = dontDistribute super."hmidi"; + "hmk" = dontDistribute super."hmk"; + "hmm" = dontDistribute super."hmm"; + "hmm-hmatrix" = dontDistribute super."hmm-hmatrix"; + "hmp3" = dontDistribute super."hmp3"; + "hmpfr" = dontDistribute super."hmpfr"; + "hmt" = dontDistribute super."hmt"; + "hmt-diagrams" = dontDistribute super."hmt-diagrams"; + "hmumps" = dontDistribute super."hmumps"; + "hnetcdf" = dontDistribute super."hnetcdf"; + "hnix" = dontDistribute super."hnix"; + "hnn" = dontDistribute super."hnn"; + "hnop" = dontDistribute super."hnop"; + "ho-rewriting" = dontDistribute super."ho-rewriting"; + "hoauth" = dontDistribute super."hoauth"; + "hob" = dontDistribute super."hob"; + "hobbes" = dontDistribute super."hobbes"; + "hobbits" = dontDistribute super."hobbits"; + "hoe" = dontDistribute super."hoe"; + "hofix-mtl" = dontDistribute super."hofix-mtl"; + "hog" = dontDistribute super."hog"; + "hogg" = dontDistribute super."hogg"; + "hogre" = dontDistribute super."hogre"; + "hogre-examples" = dontDistribute super."hogre-examples"; + "hois" = dontDistribute super."hois"; + "hoist-error" = dontDistribute super."hoist-error"; + "hold-em" = dontDistribute super."hold-em"; + "hole" = dontDistribute super."hole"; + "holey-format" = dontDistribute super."holey-format"; + "homeomorphic" = dontDistribute super."homeomorphic"; + "hommage" = dontDistribute super."hommage"; + "hommage-ds" = dontDistribute super."hommage-ds"; + "homplexity" = dontDistribute super."homplexity"; + "honi" = dontDistribute super."honi"; + "honk" = dontDistribute super."honk"; + "hoobuddy" = dontDistribute super."hoobuddy"; + "hood" = dontDistribute super."hood"; + "hood-off" = dontDistribute super."hood-off"; + "hood2" = dontDistribute super."hood2"; + "hoodie" = dontDistribute super."hoodie"; + "hoodle" = dontDistribute super."hoodle"; + "hoodle-builder" = dontDistribute super."hoodle-builder"; + "hoodle-core" = dontDistribute super."hoodle-core"; + "hoodle-extra" = dontDistribute super."hoodle-extra"; + "hoodle-parser" = dontDistribute super."hoodle-parser"; + "hoodle-publish" = dontDistribute super."hoodle-publish"; + "hoodle-render" = dontDistribute super."hoodle-render"; + "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle-index" = dontDistribute super."hoogle-index"; + "hooks-dir" = dontDistribute super."hooks-dir"; + "hoovie" = dontDistribute super."hoovie"; + "hopencc" = dontDistribute super."hopencc"; + "hopencl" = dontDistribute super."hopencl"; + "hopfield" = dontDistribute super."hopfield"; + "hopfield-networks" = dontDistribute super."hopfield-networks"; + "hopfli" = dontDistribute super."hopfli"; + "hoppy-generator" = dontDistribute super."hoppy-generator"; + "hoppy-runtime" = dontDistribute super."hoppy-runtime"; + "hoppy-std" = dontDistribute super."hoppy-std"; + "hops" = dontDistribute super."hops"; + "hoq" = dontDistribute super."hoq"; + "horizon" = dontDistribute super."horizon"; + "hosc" = dontDistribute super."hosc"; + "hosc-json" = dontDistribute super."hosc-json"; + "hosc-utils" = dontDistribute super."hosc-utils"; + "hosts-server" = dontDistribute super."hosts-server"; + "hothasktags" = dontDistribute super."hothasktags"; + "hotswap" = dontDistribute super."hotswap"; + "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "hp2any-core" = dontDistribute super."hp2any-core"; + "hp2any-graph" = dontDistribute super."hp2any-graph"; + "hp2any-manager" = dontDistribute super."hp2any-manager"; + "hp2html" = dontDistribute super."hp2html"; + "hp2pretty" = dontDistribute super."hp2pretty"; + "hpack" = dontDistribute super."hpack"; + "hpaco" = dontDistribute super."hpaco"; + "hpaco-lib" = dontDistribute super."hpaco-lib"; + "hpage" = dontDistribute super."hpage"; + "hpapi" = dontDistribute super."hpapi"; + "hpaste" = dontDistribute super."hpaste"; + "hpasteit" = dontDistribute super."hpasteit"; + "hpc-strobe" = dontDistribute super."hpc-strobe"; + "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; + "hplayground" = dontDistribute super."hplayground"; + "hplaylist" = dontDistribute super."hplaylist"; + "hpodder" = dontDistribute super."hpodder"; + "hpp" = dontDistribute super."hpp"; + "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc-fork" = dontDistribute super."hprotoc-fork"; + "hps" = dontDistribute super."hps"; + "hps-cairo" = dontDistribute super."hps-cairo"; + "hps-kmeans" = dontDistribute super."hps-kmeans"; + "hpuz" = dontDistribute super."hpuz"; + "hpygments" = dontDistribute super."hpygments"; + "hpylos" = dontDistribute super."hpylos"; + "hpyrg" = dontDistribute super."hpyrg"; + "hquantlib" = dontDistribute super."hquantlib"; + "hquery" = dontDistribute super."hquery"; + "hranker" = dontDistribute super."hranker"; + "hreader" = dontDistribute super."hreader"; + "hricket" = dontDistribute super."hricket"; + "hruby" = dontDistribute super."hruby"; + "hs-GeoIP" = dontDistribute super."hs-GeoIP"; + "hs-blake2" = dontDistribute super."hs-blake2"; + "hs-captcha" = dontDistribute super."hs-captcha"; + "hs-carbon" = dontDistribute super."hs-carbon"; + "hs-carbon-examples" = dontDistribute super."hs-carbon-examples"; + "hs-cdb" = dontDistribute super."hs-cdb"; + "hs-dotnet" = dontDistribute super."hs-dotnet"; + "hs-duktape" = dontDistribute super."hs-duktape"; + "hs-excelx" = dontDistribute super."hs-excelx"; + "hs-ffmpeg" = dontDistribute super."hs-ffmpeg"; + "hs-fltk" = dontDistribute super."hs-fltk"; + "hs-gchart" = dontDistribute super."hs-gchart"; + "hs-gen-iface" = dontDistribute super."hs-gen-iface"; + "hs-gizapp" = dontDistribute super."hs-gizapp"; + "hs-inspector" = dontDistribute super."hs-inspector"; + "hs-java" = dontDistribute super."hs-java"; + "hs-json-rpc" = dontDistribute super."hs-json-rpc"; + "hs-logo" = dontDistribute super."hs-logo"; + "hs-mesos" = dontDistribute super."hs-mesos"; + "hs-nombre-generator" = dontDistribute super."hs-nombre-generator"; + "hs-pgms" = dontDistribute super."hs-pgms"; + "hs-php-session" = dontDistribute super."hs-php-session"; + "hs-pkg-config" = dontDistribute super."hs-pkg-config"; + "hs-pkpass" = dontDistribute super."hs-pkpass"; + "hs-re" = dontDistribute super."hs-re"; + "hs-scrape" = dontDistribute super."hs-scrape"; + "hs-twitter" = dontDistribute super."hs-twitter"; + "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver"; + "hs-vcard" = dontDistribute super."hs-vcard"; + "hs2048" = dontDistribute super."hs2048"; + "hs2bf" = dontDistribute super."hs2bf"; + "hs2dot" = dontDistribute super."hs2dot"; + "hsConfigure" = dontDistribute super."hsConfigure"; + "hsSqlite3" = dontDistribute super."hsSqlite3"; + "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsay" = dontDistribute super."hsay"; + "hsb2hs" = dontDistribute super."hsb2hs"; + "hsbackup" = dontDistribute super."hsbackup"; + "hsbencher" = dontDistribute super."hsbencher"; + "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed"; + "hsbencher-fusion" = dontDistribute super."hsbencher-fusion"; + "hsc2hs" = dontDistribute super."hsc2hs"; + "hsc3" = dontDistribute super."hsc3"; + "hsc3-auditor" = dontDistribute super."hsc3-auditor"; + "hsc3-cairo" = dontDistribute super."hsc3-cairo"; + "hsc3-data" = dontDistribute super."hsc3-data"; + "hsc3-db" = dontDistribute super."hsc3-db"; + "hsc3-dot" = dontDistribute super."hsc3-dot"; + "hsc3-forth" = dontDistribute super."hsc3-forth"; + "hsc3-graphs" = dontDistribute super."hsc3-graphs"; + "hsc3-lang" = dontDistribute super."hsc3-lang"; + "hsc3-lisp" = dontDistribute super."hsc3-lisp"; + "hsc3-plot" = dontDistribute super."hsc3-plot"; + "hsc3-process" = dontDistribute super."hsc3-process"; + "hsc3-rec" = dontDistribute super."hsc3-rec"; + "hsc3-rw" = dontDistribute super."hsc3-rw"; + "hsc3-server" = dontDistribute super."hsc3-server"; + "hsc3-sf" = dontDistribute super."hsc3-sf"; + "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile"; + "hsc3-unsafe" = dontDistribute super."hsc3-unsafe"; + "hsc3-utils" = dontDistribute super."hsc3-utils"; + "hscamwire" = dontDistribute super."hscamwire"; + "hscassandra" = dontDistribute super."hscassandra"; + "hscd" = dontDistribute super."hscd"; + "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; + "hscope" = dontDistribute super."hscope"; + "hscrtmpl" = dontDistribute super."hscrtmpl"; + "hscuid" = dontDistribute super."hscuid"; + "hscurses" = dontDistribute super."hscurses"; + "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex"; + "hsdev" = dontDistribute super."hsdev"; + "hsdif" = dontDistribute super."hsdif"; + "hsdip" = dontDistribute super."hsdip"; + "hsdns" = dontDistribute super."hsdns"; + "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsemail-ns" = dontDistribute super."hsemail-ns"; + "hsenv" = dontDistribute super."hsenv"; + "hserv" = dontDistribute super."hserv"; + "hset" = dontDistribute super."hset"; + "hsfacter" = dontDistribute super."hsfacter"; + "hsfcsh" = dontDistribute super."hsfcsh"; + "hsfilt" = dontDistribute super."hsfilt"; + "hsgnutls" = dontDistribute super."hsgnutls"; + "hsgnutls-yj" = dontDistribute super."hsgnutls-yj"; + "hsgsom" = dontDistribute super."hsgsom"; + "hsgtd" = dontDistribute super."hsgtd"; + "hsharc" = dontDistribute super."hsharc"; + "hsilop" = dontDistribute super."hsilop"; + "hsimport" = dontDistribute super."hsimport"; + "hsini" = dontDistribute super."hsini"; + "hskeleton" = dontDistribute super."hskeleton"; + "hslackbuilder" = dontDistribute super."hslackbuilder"; + "hslibsvm" = dontDistribute super."hslibsvm"; + "hslinks" = dontDistribute super."hslinks"; + "hslogger-reader" = dontDistribute super."hslogger-reader"; + "hslogger-template" = dontDistribute super."hslogger-template"; + "hslogger4j" = dontDistribute super."hslogger4j"; + "hslogstash" = dontDistribute super."hslogstash"; + "hsmagick" = dontDistribute super."hsmagick"; + "hsmisc" = dontDistribute super."hsmisc"; + "hsmtpclient" = dontDistribute super."hsmtpclient"; + "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector"; + "hsnock" = dontDistribute super."hsnock"; + "hsnoise" = dontDistribute super."hsnoise"; + "hsns" = dontDistribute super."hsns"; + "hsnsq" = dontDistribute super."hsnsq"; + "hsntp" = dontDistribute super."hsntp"; + "hsoptions" = dontDistribute super."hsoptions"; + "hsp-cgi" = dontDistribute super."hsp-cgi"; + "hsparklines" = dontDistribute super."hsparklines"; + "hsparql" = dontDistribute super."hsparql"; + "hspear" = dontDistribute super."hspear"; + "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; + "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; + "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-experimental" = dontDistribute super."hspec-experimental"; + "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-monad-control" = dontDistribute super."hspec-monad-control"; + "hspec-server" = dontDistribute super."hspec-server"; + "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-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"; + "hstats" = dontDistribute super."hstats"; + "hstest" = dontDistribute super."hstest"; + "hstidy" = dontDistribute super."hstidy"; + "hstorchat" = dontDistribute super."hstorchat"; + "hstradeking" = dontDistribute super."hstradeking"; + "hstyle" = dontDistribute super."hstyle"; + "hstzaar" = dontDistribute super."hstzaar"; + "hsubconvert" = dontDistribute super."hsubconvert"; + "hsverilog" = dontDistribute super."hsverilog"; + "hswip" = dontDistribute super."hswip"; + "hsx" = dontDistribute super."hsx"; + "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsyscall" = dontDistribute super."hsyscall"; + "hszephyr" = dontDistribute super."hszephyr"; + "htags" = dontDistribute super."htags"; + "htar" = dontDistribute super."htar"; + "htiled" = dontDistribute super."htiled"; + "htime" = dontDistribute super."htime"; + "html-email-validate" = dontDistribute super."html-email-validate"; + "html-entities" = dontDistribute super."html-entities"; + "html-kure" = dontDistribute super."html-kure"; + "html-minimalist" = dontDistribute super."html-minimalist"; + "html-rules" = dontDistribute super."html-rules"; + "html-tokenizer" = dontDistribute super."html-tokenizer"; + "html-truncate" = dontDistribute super."html-truncate"; + "html2hamlet" = dontDistribute super."html2hamlet"; + "html5-entity" = dontDistribute super."html5-entity"; + "htodo" = dontDistribute super."htodo"; + "htoml" = dontDistribute super."htoml"; + "htrace" = dontDistribute super."htrace"; + "hts" = dontDistribute super."hts"; + "htsn" = dontDistribute super."htsn"; + "htsn-common" = dontDistribute super."htsn-common"; + "htsn-import" = dontDistribute super."htsn-import"; + "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client-auth" = dontDistribute super."http-client-auth"; + "http-client-conduit" = dontDistribute super."http-client-conduit"; + "http-client-lens" = dontDistribute super."http-client-lens"; + "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; + "http-client-streams" = dontDistribute super."http-client-streams"; + "http-conduit-browser" = dontDistribute super."http-conduit-browser"; + "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-encodings" = dontDistribute super."http-encodings"; + "http-enumerator" = dontDistribute super."http-enumerator"; + "http-kinder" = dontDistribute super."http-kinder"; + "http-kit" = dontDistribute super."http-kit"; + "http-listen" = dontDistribute super."http-listen"; + "http-monad" = dontDistribute super."http-monad"; + "http-proxy" = dontDistribute super."http-proxy"; + "http-querystring" = dontDistribute super."http-querystring"; + "http-server" = dontDistribute super."http-server"; + "http-shed" = dontDistribute super."http-shed"; + "http-test" = dontDistribute super."http-test"; + "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_4_5"; + "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; + "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; + "httpspec" = dontDistribute super."httpspec"; + "htune" = dontDistribute super."htune"; + "htzaar" = dontDistribute super."htzaar"; + "hub" = dontDistribute super."hub"; + "hubigraph" = dontDistribute super."hubigraph"; + "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; + "huffman" = dontDistribute super."huffman"; + "hugs2yc" = dontDistribute super."hugs2yc"; + "hulk" = dontDistribute super."hulk"; + "hums" = dontDistribute super."hums"; + "hunch" = dontDistribute super."hunch"; + "hunit-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"; + "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"; + "hylolib" = dontDistribute super."hylolib"; + "hylotab" = dontDistribute super."hylotab"; + "hyloutils" = dontDistribute super."hyloutils"; + "hyperdrive" = dontDistribute super."hyperdrive"; + "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperpublic" = dontDistribute super."hyperpublic"; + "hyphenate" = dontDistribute super."hyphenate"; + "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; + "hzk" = dontDistribute super."hzk"; + "i18n" = dontDistribute super."i18n"; + "iCalendar" = dontDistribute super."iCalendar"; + "iException" = dontDistribute super."iException"; + "iap-verifier" = dontDistribute super."iap-verifier"; + "ib-api" = dontDistribute super."ib-api"; + "iban" = dontDistribute super."iban"; + "ibus-hs" = dontDistribute super."ibus-hs"; + "ideas" = dontDistribute super."ideas"; + "ideas-math" = dontDistribute super."ideas-math"; + "idempotent" = dontDistribute super."idempotent"; + "identifiers" = dontDistribute super."identifiers"; + "idiii" = dontDistribute super."idiii"; + "idna" = dontDistribute super."idna"; + "idna2008" = dontDistribute super."idna2008"; + "idris" = dontDistribute super."idris"; + "ieee" = dontDistribute super."ieee"; + "ieee-utils" = dontDistribute super."ieee-utils"; + "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix"; + "ieee754-parser" = dontDistribute super."ieee754-parser"; + "ifcxt" = dontDistribute super."ifcxt"; + "iff" = dontDistribute super."iff"; + "ifscs" = dontDistribute super."ifscs"; + "ige-mac-integration" = dontDistribute super."ige-mac-integration"; + "igraph" = dontDistribute super."igraph"; + "igrf" = dontDistribute super."igrf"; + "ihaskell-display" = dontDistribute super."ihaskell-display"; + "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; + "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; + "ihaskell-plot" = dontDistribute super."ihaskell-plot"; + "ihaskell-widgets" = dontDistribute super."ihaskell-widgets"; + "ihttp" = dontDistribute super."ihttp"; + "illuminate" = dontDistribute super."illuminate"; + "image-type" = dontDistribute super."image-type"; + "imagefilters" = dontDistribute super."imagefilters"; + "imagemagick" = dontDistribute super."imagemagick"; + "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; + "imapget" = dontDistribute super."imapget"; + "imbib" = dontDistribute super."imbib"; + "imgurder" = dontDistribute super."imgurder"; + "imm" = dontDistribute super."imm"; + "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; + "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; + "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; + "implicit-params" = dontDistribute super."implicit-params"; + "imports" = dontDistribute super."imports"; + "impossible" = dontDistribute super."impossible"; + "improve" = dontDistribute super."improve"; + "inc-ref" = dontDistribute super."inc-ref"; + "inch" = dontDistribute super."inch"; + "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-sat-solver" = dontDistribute super."incremental-sat-solver"; + "increments" = dontDistribute super."increments"; + "indentation" = dontDistribute super."indentation"; + "indentparser" = dontDistribute super."indentparser"; + "index-core" = dontDistribute super."index-core"; + "indexed" = dontDistribute super."indexed"; + "indexed-do-notation" = dontDistribute super."indexed-do-notation"; + "indexed-extras" = dontDistribute super."indexed-extras"; + "indexed-free" = dontDistribute super."indexed-free"; + "indian-language-font-converter" = dontDistribute super."indian-language-font-converter"; + "indices" = dontDistribute super."indices"; + "indieweb-algorithms" = dontDistribute super."indieweb-algorithms"; + "inf-interval" = dontDistribute super."inf-interval"; + "infer-upstream" = dontDistribute super."infer-upstream"; + "infernu" = dontDistribute super."infernu"; + "infinite-search" = dontDistribute super."infinite-search"; + "infinity" = dontDistribute super."infinity"; + "infix" = dontDistribute super."infix"; + "inflist" = dontDistribute super."inflist"; + "influxdb" = dontDistribute super."influxdb"; + "informative" = dontDistribute super."informative"; + "inilist" = dontDistribute super."inilist"; + "inject" = dontDistribute super."inject"; + "inject-function" = dontDistribute super."inject-function"; + "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; + "inserts" = dontDistribute super."inserts"; + "inspection-proxy" = dontDistribute super."inspection-proxy"; + "instant-aeson" = dontDistribute super."instant-aeson"; + "instant-bytes" = dontDistribute super."instant-bytes"; + "instant-deepseq" = dontDistribute super."instant-deepseq"; + "instant-generics" = dontDistribute super."instant-generics"; + "instant-hashable" = dontDistribute super."instant-hashable"; + "instant-zipper" = dontDistribute super."instant-zipper"; + "instinct" = dontDistribute super."instinct"; + "instrument-chord" = dontDistribute super."instrument-chord"; + "int-cast" = dontDistribute super."int-cast"; + "integer-pure" = dontDistribute super."integer-pure"; + "intel-aes" = dontDistribute super."intel-aes"; + "interchangeable" = dontDistribute super."interchangeable"; + "interleavableGen" = dontDistribute super."interleavableGen"; + "interleavableIO" = dontDistribute super."interleavableIO"; + "interleave" = dontDistribute super."interleave"; + "interlude" = dontDistribute super."interlude"; + "intern" = dontDistribute super."intern"; + "internetmarke" = dontDistribute super."internetmarke"; + "interpol" = dontDistribute super."interpol"; + "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; + "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; + "interpolation" = dontDistribute super."interpolation"; + "intricacy" = dontDistribute super."intricacy"; + "intset" = dontDistribute super."intset"; + "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-quoter" = dontDistribute super."ip-quoter"; + "ipatch" = dontDistribute super."ipatch"; + "ipc" = dontDistribute super."ipc"; + "ipcvar" = dontDistribute super."ipcvar"; + "ipopt-hs" = dontDistribute super."ipopt-hs"; + "ipprint" = dontDistribute super."ipprint"; + "iptables-helpers" = dontDistribute super."iptables-helpers"; + "iptadmin" = dontDistribute super."iptadmin"; + "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-colors" = dontDistribute super."irc-colors"; + "irc-core" = dontDistribute super."irc-core"; + "irc-dcc" = dontDistribute super."irc-dcc"; + "irc-fun-bot" = dontDistribute super."irc-fun-bot"; + "irc-fun-client" = dontDistribute super."irc-fun-client"; + "irc-fun-color" = dontDistribute super."irc-fun-color"; + "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; + "ircbot" = dontDistribute super."ircbot"; + "ircbouncer" = dontDistribute super."ircbouncer"; + "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; + "iron-mq" = dontDistribute super."iron-mq"; + "ironforge" = dontDistribute super."ironforge"; + "is" = dontDistribute super."is"; + "isdicom" = dontDistribute super."isdicom"; + "isevaluated" = dontDistribute super."isevaluated"; + "isiz" = dontDistribute super."isiz"; + "ismtp" = dontDistribute super."ismtp"; + "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; + "isohunt" = dontDistribute super."isohunt"; + "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-backend-c" = dontDistribute super."ivory-backend-c"; + "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "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-stdlib" = dontDistribute super."ivory-stdlib"; + "ivy-web" = dontDistribute super."ivy-web"; + "ixdopp" = dontDistribute super."ixdopp"; + "ixmonad" = dontDistribute super."ixmonad"; + "iyql" = dontDistribute super."iyql"; + "j2hs" = dontDistribute super."j2hs"; + "ja-base-extra" = dontDistribute super."ja-base-extra"; + "jack" = dontDistribute super."jack"; + "jack-bindings" = dontDistribute super."jack-bindings"; + "jackminimix" = dontDistribute super."jackminimix"; + "jacobi-roots" = dontDistribute super."jacobi-roots"; + "jail" = dontDistribute super."jail"; + "jailbreak-cabal" = dontDistribute super."jailbreak-cabal"; + "jalaali" = dontDistribute super."jalaali"; + "jalla" = dontDistribute super."jalla"; + "jammittools" = dontDistribute super."jammittools"; + "jarfind" = dontDistribute super."jarfind"; + "java-bridge" = dontDistribute super."java-bridge"; + "java-bridge-extras" = dontDistribute super."java-bridge-extras"; + "java-character" = dontDistribute super."java-character"; + "java-poker" = dontDistribute super."java-poker"; + "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; + "javasf" = dontDistribute super."javasf"; + "javav" = dontDistribute super."javav"; + "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; + "jdi" = dontDistribute super."jdi"; + "jespresso" = dontDistribute super."jespresso"; + "jobqueue" = dontDistribute super."jobqueue"; + "join" = dontDistribute super."join"; + "joinlist" = dontDistribute super."joinlist"; + "jonathanscard" = dontDistribute super."jonathanscard"; + "jort" = dontDistribute super."jort"; + "jose" = dontDistribute super."jose"; + "jpeg" = dontDistribute super."jpeg"; + "js-good-parts" = dontDistribute super."js-good-parts"; + "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-hello" = dontDistribute super."jsaddle-hello"; + "jsc" = dontDistribute super."jsc"; + "jsmw" = dontDistribute super."jsmw"; + "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; + "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_11"; + "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-litobj" = dontDistribute super."json-litobj"; + "json-pointer" = dontDistribute super."json-pointer"; + "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; + "json-python" = dontDistribute super."json-python"; + "json-qq" = dontDistribute super."json-qq"; + "json-rpc" = dontDistribute super."json-rpc"; + "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-sop" = dontDistribute super."json-sop"; + "json-state" = dontDistribute super."json-state"; + "json-stream" = dontDistribute super."json-stream"; + "json-togo" = dontDistribute super."json-togo"; + "json-tools" = dontDistribute super."json-tools"; + "json-types" = dontDistribute super."json-types"; + "json2" = dontDistribute super."json2"; + "json2-hdbc" = dontDistribute super."json2-hdbc"; + "json2-types" = dontDistribute super."json2-types"; + "json2yaml" = dontDistribute super."json2yaml"; + "jsonresume" = dontDistribute super."jsonresume"; + "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit"; + "jsonschema-gen" = dontDistribute super."jsonschema-gen"; + "jsonsql" = dontDistribute super."jsonsql"; + "jsontsv" = dontDistribute super."jsontsv"; + "jspath" = dontDistribute super."jspath"; + "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"; + "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; + "kansas-lava" = dontDistribute super."kansas-lava"; + "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; + "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio"; + "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; + "karakuri" = dontDistribute super."karakuri"; + "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; + "katt" = dontDistribute super."katt"; + "kazura-queue" = dontDistribute super."kazura-queue"; + "kbq-gu" = dontDistribute super."kbq-gu"; + "kd-tree" = dontDistribute super."kd-tree"; + "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keera-callbacks" = dontDistribute super."keera-callbacks"; + "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; + "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; + "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk"; + "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel"; + "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel"; + "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config"; + "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk"; + "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view"; + "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk"; + "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs"; + "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk"; + "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network"; + "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling"; + "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx"; + "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa"; + "keera-hails-reactivelenses" = dontDistribute super."keera-hails-reactivelenses"; + "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues"; + "keera-posture" = dontDistribute super."keera-posture"; + "keiretsu" = dontDistribute super."keiretsu"; + "kevin" = dontDistribute super."kevin"; + "keyed" = dontDistribute super."keyed"; + "keyring" = dontDistribute super."keyring"; + "keystore" = dontDistribute super."keystore"; + "keyvaluehash" = dontDistribute super."keyvaluehash"; + "keyword-args" = dontDistribute super."keyword-args"; + "kibro" = dontDistribute super."kibro"; + "kicad-data" = dontDistribute super."kicad-data"; + "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser"; + "kickchan" = dontDistribute super."kickchan"; + "kif-parser" = dontDistribute super."kif-parser"; + "kinds" = dontDistribute super."kinds"; + "kit" = dontDistribute super."kit"; + "kmeans-par" = dontDistribute super."kmeans-par"; + "kmeans-vector" = dontDistribute super."kmeans-vector"; + "knots" = dontDistribute super."knots"; + "koellner-phonetic" = dontDistribute super."koellner-phonetic"; + "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; + "korfu" = dontDistribute super."korfu"; + "kqueue" = dontDistribute super."kqueue"; + "krpc" = dontDistribute super."krpc"; + "ks-test" = dontDistribute super."ks-test"; + "ktx" = dontDistribute super."ktx"; + "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate"; + "kyotocabinet" = dontDistribute super."kyotocabinet"; + "l-bfgs-b" = dontDistribute super."l-bfgs-b"; + "labeled-graph" = dontDistribute super."labeled-graph"; + "labeled-tree" = dontDistribute super."labeled-tree"; + "laborantin-hs" = dontDistribute super."laborantin-hs"; + "labyrinth" = dontDistribute super."labyrinth"; + "labyrinth-server" = dontDistribute super."labyrinth-server"; + "lackey" = dontDistribute super."lackey"; + "lagrangian" = dontDistribute super."lagrangian"; + "laika" = dontDistribute super."laika"; + "lambda-ast" = dontDistribute super."lambda-ast"; + "lambda-bridge" = dontDistribute super."lambda-bridge"; + "lambda-canvas" = dontDistribute super."lambda-canvas"; + "lambda-devs" = dontDistribute super."lambda-devs"; + "lambda-options" = dontDistribute super."lambda-options"; + "lambda-placeholders" = dontDistribute super."lambda-placeholders"; + "lambda-toolbox" = dontDistribute super."lambda-toolbox"; + "lambda2js" = dontDistribute super."lambda2js"; + "lambdaBase" = dontDistribute super."lambdaBase"; + "lambdaFeed" = dontDistribute super."lambdaFeed"; + "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = dontDistribute super."lambdabot"; + "lambdabot-core" = dontDistribute super."lambdabot-core"; + "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins"; + "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins"; + "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins"; + "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins"; + "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins"; + "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins"; + "lambdabot-trusted" = dontDistribute super."lambdabot-trusted"; + "lambdabot-utils" = dontDistribute super."lambdabot-utils"; + "lambdacat" = dontDistribute super."lambdacat"; + "lambdacms-core" = dontDistribute super."lambdacms-core"; + "lambdacms-media" = dontDistribute super."lambdacms-media"; + "lambdacube" = dontDistribute super."lambdacube"; + "lambdacube-bullet" = dontDistribute super."lambdacube-bullet"; + "lambdacube-compiler" = dontDistribute super."lambdacube-compiler"; + "lambdacube-core" = dontDistribute super."lambdacube-core"; + "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; + "lambdacube-engine" = dontDistribute super."lambdacube-engine"; + "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = dontDistribute super."lambdacube-gl"; + "lambdacube-ir" = dontDistribute super."lambdacube-ir"; + "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; + "lambdatwit" = dontDistribute super."lambdatwit"; + "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-c-quote" = dontDistribute super."language-c-quote"; + "language-cil" = dontDistribute super."language-cil"; + "language-css" = dontDistribute super."language-css"; + "language-dot" = dontDistribute super."language-dot"; + "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; + "language-eiffel" = dontDistribute super."language-eiffel"; + "language-fortran" = dontDistribute super."language-fortran"; + "language-gcl" = dontDistribute super."language-gcl"; + "language-go" = dontDistribute super."language-go"; + "language-guess" = dontDistribute super."language-guess"; + "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-kort" = dontDistribute super."language-kort"; + "language-lua" = dontDistribute super."language-lua"; + "language-lua-qq" = dontDistribute super."language-lua-qq"; + "language-mixal" = dontDistribute super."language-mixal"; + "language-objc" = dontDistribute super."language-objc"; + "language-openscad" = dontDistribute super."language-openscad"; + "language-pig" = dontDistribute super."language-pig"; + "language-puppet" = dontDistribute super."language-puppet"; + "language-python" = dontDistribute super."language-python"; + "language-python-colour" = dontDistribute super."language-python-colour"; + "language-python-test" = dontDistribute super."language-python-test"; + "language-qux" = dontDistribute super."language-qux"; + "language-sh" = dontDistribute super."language-sh"; + "language-slice" = dontDistribute super."language-slice"; + "language-spelling" = dontDistribute super."language-spelling"; + "language-sqlite" = dontDistribute super."language-sqlite"; + "language-thrift" = doDistribute super."language-thrift_0_7_0_1"; + "language-typescript" = dontDistribute super."language-typescript"; + "language-vhdl" = dontDistribute super."language-vhdl"; + "lat" = dontDistribute super."lat"; + "latest-npm-version" = dontDistribute super."latest-npm-version"; + "latex" = dontDistribute super."latex"; + "launchpad-control" = dontDistribute super."launchpad-control"; + "lax" = dontDistribute super."lax"; + "layers" = dontDistribute super."layers"; + "layers-game" = dontDistribute super."layers-game"; + "layout" = dontDistribute super."layout"; + "layout-bootstrap" = dontDistribute super."layout-bootstrap"; + "lazy-io" = dontDistribute super."lazy-io"; + "lazyarray" = dontDistribute super."lazyarray"; + "lazyio" = dontDistribute super."lazyio"; + "lazysmallcheck" = dontDistribute super."lazysmallcheck"; + "lazysplines" = dontDistribute super."lazysplines"; + "lbfgs" = dontDistribute super."lbfgs"; + "lcs" = dontDistribute super."lcs"; + "lda" = dontDistribute super."lda"; + "ldap-client" = dontDistribute super."ldap-client"; + "ldif" = dontDistribute super."ldif"; + "leaf" = dontDistribute super."leaf"; + "leaky" = dontDistribute super."leaky"; + "leankit-api" = dontDistribute super."leankit-api"; + "leapseconds-announced" = dontDistribute super."leapseconds-announced"; + "learn" = dontDistribute super."learn"; + "learn-physics" = dontDistribute super."learn-physics"; + "learn-physics-examples" = dontDistribute super."learn-physics-examples"; + "learning-hmm" = dontDistribute super."learning-hmm"; + "leetify" = dontDistribute super."leetify"; + "leksah" = dontDistribute super."leksah"; + "leksah-server" = dontDistribute super."leksah-server"; + "lendingclub" = dontDistribute super."lendingclub"; + "lens-datetime" = dontDistribute super."lens-datetime"; + "lens-prelude" = dontDistribute super."lens-prelude"; + "lens-properties" = dontDistribute super."lens-properties"; + "lens-sop" = dontDistribute super."lens-sop"; + "lens-text-encoding" = dontDistribute super."lens-text-encoding"; + "lens-time" = dontDistribute super."lens-time"; + "lens-tutorial" = dontDistribute super."lens-tutorial"; + "lens-utils" = dontDistribute super."lens-utils"; + "lenses" = dontDistribute super."lenses"; + "lensref" = dontDistribute super."lensref"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; + "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; + "levmar" = dontDistribute super."levmar"; + "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; + "lgtk" = dontDistribute super."lgtk"; + "lha" = dontDistribute super."lha"; + "lhae" = dontDistribute super."lhae"; + "lhc" = dontDistribute super."lhc"; + "lhe" = dontDistribute super."lhe"; + "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl"; + "lhs2html" = dontDistribute super."lhs2html"; + "lhslatex" = dontDistribute super."lhslatex"; + "libGenI" = dontDistribute super."libGenI"; + "libarchive-conduit" = dontDistribute super."libarchive-conduit"; + "libconfig" = dontDistribute super."libconfig"; + "libcspm" = dontDistribute super."libcspm"; + "libexpect" = dontDistribute super."libexpect"; + "libffi" = dontDistribute super."libffi"; + "libgraph" = dontDistribute super."libgraph"; + "libhbb" = dontDistribute super."libhbb"; + "libjenkins" = dontDistribute super."libjenkins"; + "liblastfm" = dontDistribute super."liblastfm"; + "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; + "libltdl" = dontDistribute super."libltdl"; + "libmpd" = dontDistribute super."libmpd"; + "libnvvm" = dontDistribute super."libnvvm"; + "liboleg" = dontDistribute super."liboleg"; + "libpafe" = dontDistribute super."libpafe"; + "libpq" = dontDistribute super."libpq"; + "librandomorg" = dontDistribute super."librandomorg"; + "libravatar" = dontDistribute super."libravatar"; + "libssh2" = dontDistribute super."libssh2"; + "libssh2-conduit" = dontDistribute super."libssh2-conduit"; + "libstackexchange" = dontDistribute super."libstackexchange"; + "libsystemd-daemon" = dontDistribute super."libsystemd-daemon"; + "libtagc" = dontDistribute super."libtagc"; + "libvirt-hs" = dontDistribute super."libvirt-hs"; + "libvorbis" = dontDistribute super."libvorbis"; + "libxls" = dontDistribute super."libxls"; + "libxml" = dontDistribute super."libxml"; + "libxml-enumerator" = dontDistribute super."libxml-enumerator"; + "libxslt" = dontDistribute super."libxslt"; + "life" = dontDistribute super."life"; + "lift-generics" = dontDistribute super."lift-generics"; + "lifted-threads" = dontDistribute super."lifted-threads"; + "lifter" = dontDistribute super."lifter"; + "ligature" = dontDistribute super."ligature"; + "ligd" = dontDistribute super."ligd"; + "lighttpd-conf" = dontDistribute super."lighttpd-conf"; + "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq"; + "lilypond" = dontDistribute super."lilypond"; + "limp" = dontDistribute super."limp"; + "limp-cbc" = dontDistribute super."limp-cbc"; + "lin-alg" = dontDistribute super."lin-alg"; + "linda" = dontDistribute super."linda"; + "lindenmayer" = dontDistribute super."lindenmayer"; + "line-break" = dontDistribute super."line-break"; + "line2pdf" = dontDistribute super."line2pdf"; + "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; + "linear-circuit" = dontDistribute super."linear-circuit"; + "linear-grammar" = dontDistribute super."linear-grammar"; + "linear-maps" = dontDistribute super."linear-maps"; + "linear-opengl" = dontDistribute super."linear-opengl"; + "linear-vect" = dontDistribute super."linear-vect"; + "linearEqSolver" = dontDistribute super."linearEqSolver"; + "linearscan" = dontDistribute super."linearscan"; + "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; + "linebreak" = dontDistribute super."linebreak"; + "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; + "linkchk" = dontDistribute super."linkchk"; + "linkcore" = dontDistribute super."linkcore"; + "linkedhashmap" = dontDistribute super."linkedhashmap"; + "linklater" = dontDistribute super."linklater"; + "linode" = dontDistribute super."linode"; + "linux-blkid" = dontDistribute super."linux-blkid"; + "linux-cgroup" = dontDistribute super."linux-cgroup"; + "linux-evdev" = dontDistribute super."linux-evdev"; + "linux-inotify" = dontDistribute super."linux-inotify"; + "linux-kmod" = dontDistribute super."linux-kmod"; + "linux-mount" = dontDistribute super."linux-mount"; + "linux-perf" = dontDistribute super."linux-perf"; + "linux-ptrace" = dontDistribute super."linux-ptrace"; + "linux-xattr" = dontDistribute super."linux-xattr"; + "linx-gateway" = dontDistribute super."linx-gateway"; + "lio" = dontDistribute super."lio"; + "lio-eci11" = dontDistribute super."lio-eci11"; + "lio-fs" = dontDistribute super."lio-fs"; + "lio-simple" = dontDistribute super."lio-simple"; + "lipsum-gen" = dontDistribute super."lipsum-gen"; + "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; + "liquidhaskell" = dontDistribute super."liquidhaskell"; + "lispparser" = dontDistribute super."lispparser"; + "list-extras" = dontDistribute super."list-extras"; + "list-grouping" = dontDistribute super."list-grouping"; + "list-mux" = dontDistribute super."list-mux"; + "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; + "list-t-html-parser" = dontDistribute super."list-t-html-parser"; + "list-t-http-client" = dontDistribute super."list-t-http-client"; + "list-t-libcurl" = dontDistribute super."list-t-libcurl"; + "list-t-text" = dontDistribute super."list-t-text"; + "list-tries" = dontDistribute super."list-tries"; + "list-zip-def" = dontDistribute super."list-zip-def"; + "listlike-instances" = dontDistribute super."listlike-instances"; + "lists" = dontDistribute super."lists"; + "listsafe" = dontDistribute super."listsafe"; + "lit" = dontDistribute super."lit"; + "literals" = dontDistribute super."literals"; + "live-sequencer" = dontDistribute super."live-sequencer"; + "ll-picosat" = dontDistribute super."ll-picosat"; + "llrbtree" = dontDistribute super."llrbtree"; + "llsd" = dontDistribute super."llsd"; + "llvm" = dontDistribute super."llvm"; + "llvm-analysis" = dontDistribute super."llvm-analysis"; + "llvm-base" = dontDistribute super."llvm-base"; + "llvm-base-types" = dontDistribute super."llvm-base-types"; + "llvm-base-util" = dontDistribute super."llvm-base-util"; + "llvm-data-interop" = dontDistribute super."llvm-data-interop"; + "llvm-extra" = dontDistribute super."llvm-extra"; + "llvm-ffi" = dontDistribute super."llvm-ffi"; + "llvm-general" = dontDistribute super."llvm-general"; + "llvm-general-pure" = dontDistribute super."llvm-general-pure"; + "llvm-general-quote" = dontDistribute super."llvm-general-quote"; + "llvm-ht" = dontDistribute super."llvm-ht"; + "llvm-pkg-config" = dontDistribute super."llvm-pkg-config"; + "llvm-pretty" = dontDistribute super."llvm-pretty"; + "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser"; + "llvm-tf" = dontDistribute super."llvm-tf"; + "llvm-tools" = dontDistribute super."llvm-tools"; + "lmdb" = dontDistribute super."lmdb"; + "lmonad" = dontDistribute super."lmonad"; + "lmonad-yesod" = dontDistribute super."lmonad-yesod"; + "loadavg" = dontDistribute super."loadavg"; + "local-address" = dontDistribute super."local-address"; + "local-search" = dontDistribute super."local-search"; + "located-base" = dontDistribute super."located-base"; + "locators" = dontDistribute super."locators"; + "loch" = dontDistribute super."loch"; + "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; + "lockfree-queue" = dontDistribute super."lockfree-queue"; + "log" = dontDistribute super."log"; + "log-effect" = dontDistribute super."log-effect"; + "log2json" = dontDistribute super."log2json"; + "logfloat" = dontDistribute super."logfloat"; + "logger" = dontDistribute super."logger"; + "logging" = dontDistribute super."logging"; + "logging-effect" = dontDistribute super."logging-effect"; + "logging-facade-journald" = dontDistribute super."logging-facade-journald"; + "logic-TPTP" = dontDistribute super."logic-TPTP"; + "logic-classes" = dontDistribute super."logic-classes"; + "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; + "logplex-parse" = dontDistribute super."logplex-parse"; + "logsink" = dontDistribute super."logsink"; + "lojban" = dontDistribute super."lojban"; + "lojbanParser" = dontDistribute super."lojbanParser"; + "lojbanXiragan" = dontDistribute super."lojbanXiragan"; + "lojysamban" = dontDistribute super."lojysamban"; + "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; + "loli" = dontDistribute super."loli"; + "lookup-tables" = dontDistribute super."lookup-tables"; + "loop-effin" = dontDistribute super."loop-effin"; + "loop-while" = dontDistribute super."loop-while"; + "loops" = dontDistribute super."loops"; + "loopy" = dontDistribute super."loopy"; + "lord" = dontDistribute super."lord"; + "lorem" = dontDistribute super."lorem"; + "loris" = dontDistribute super."loris"; + "loshadka" = dontDistribute super."loshadka"; + "lostcities" = dontDistribute super."lostcities"; + "lowgl" = dontDistribute super."lowgl"; + "lp-diagrams" = dontDistribute super."lp-diagrams"; + "lp-diagrams-svg" = dontDistribute super."lp-diagrams-svg"; + "ls-usb" = dontDistribute super."ls-usb"; + "lscabal" = dontDistribute super."lscabal"; + "lss" = dontDistribute super."lss"; + "lsystem" = dontDistribute super."lsystem"; + "ltk" = dontDistribute super."ltk"; + "ltl" = dontDistribute super."ltl"; + "lua-bytecode" = dontDistribute super."lua-bytecode"; + "luachunk" = dontDistribute super."luachunk"; + "luautils" = dontDistribute super."luautils"; + "lub" = dontDistribute super."lub"; + "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucienne" = dontDistribute super."lucienne"; + "luhn" = dontDistribute super."luhn"; + "lui" = dontDistribute super."lui"; + "luka" = dontDistribute super."luka"; + "luminance" = doDistribute super."luminance_0_9_1_2"; + "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; + "lushtags" = dontDistribute super."lushtags"; + "luthor" = dontDistribute super."luthor"; + "lvish" = dontDistribute super."lvish"; + "lvmlib" = dontDistribute super."lvmlib"; + "lvmrun" = dontDistribute super."lvmrun"; + "lxc" = dontDistribute super."lxc"; + "lye" = dontDistribute super."lye"; + "lz4" = dontDistribute super."lz4"; + "lzma" = dontDistribute super."lzma"; + "lzma-clib" = dontDistribute super."lzma-clib"; + "lzma-enumerator" = dontDistribute super."lzma-enumerator"; + "lzma-streams" = dontDistribute super."lzma-streams"; + "maam" = dontDistribute super."maam"; + "mac" = dontDistribute super."mac"; + "maccatcher" = dontDistribute super."maccatcher"; + "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; + "machines-zlib" = dontDistribute super."machines-zlib"; + "macho" = dontDistribute super."macho"; + "maclight" = dontDistribute super."maclight"; + "macosx-make-standalone" = dontDistribute super."macosx-make-standalone"; + "mage" = dontDistribute super."mage"; + "magico" = dontDistribute super."magico"; + "magma" = dontDistribute super."magma"; + "mahoro" = dontDistribute super."mahoro"; + "maid" = dontDistribute super."maid"; + "mailbox-count" = dontDistribute super."mailbox-count"; + "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; + "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = dontDistribute super."mainland-pretty"; + "majordomo" = dontDistribute super."majordomo"; + "majority" = dontDistribute super."majority"; + "make-hard-links" = dontDistribute super."make-hard-links"; + "make-package" = dontDistribute super."make-package"; + "makedo" = dontDistribute super."makedo"; + "manatee" = dontDistribute super."manatee"; + "manatee-all" = dontDistribute super."manatee-all"; + "manatee-anything" = dontDistribute super."manatee-anything"; + "manatee-browser" = dontDistribute super."manatee-browser"; + "manatee-core" = dontDistribute super."manatee-core"; + "manatee-curl" = dontDistribute super."manatee-curl"; + "manatee-editor" = dontDistribute super."manatee-editor"; + "manatee-filemanager" = dontDistribute super."manatee-filemanager"; + "manatee-imageviewer" = dontDistribute super."manatee-imageviewer"; + "manatee-ircclient" = dontDistribute super."manatee-ircclient"; + "manatee-mplayer" = dontDistribute super."manatee-mplayer"; + "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer"; + "manatee-processmanager" = dontDistribute super."manatee-processmanager"; + "manatee-reader" = dontDistribute super."manatee-reader"; + "manatee-template" = dontDistribute super."manatee-template"; + "manatee-terminal" = dontDistribute super."manatee-terminal"; + "manatee-welcome" = dontDistribute super."manatee-welcome"; + "mancala" = dontDistribute super."mancala"; + "mandulia" = dontDistribute super."mandulia"; + "manifold-random" = dontDistribute super."manifold-random"; + "manifolds" = dontDistribute super."manifolds"; + "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"; + "matchers" = dontDistribute super."matchers"; + "mathblog" = dontDistribute super."mathblog"; + "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; + "mathlink" = dontDistribute super."mathlink"; + "matlab" = dontDistribute super."matlab"; + "matrix-market" = dontDistribute super."matrix-market"; + "matrix-market-pure" = dontDistribute super."matrix-market-pure"; + "matsuri" = dontDistribute super."matsuri"; + "maude" = dontDistribute super."maude"; + "maxent" = dontDistribute super."maxent"; + "maxsharing" = dontDistribute super."maxsharing"; + "maybe-justify" = dontDistribute super."maybe-justify"; + "maybench" = dontDistribute super."maybench"; + "mbox-tools" = dontDistribute super."mbox-tools"; + "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; + "mcmc-samplers" = dontDistribute super."mcmc-samplers"; + "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; + "mcpi" = dontDistribute super."mcpi"; + "mdapi" = dontDistribute super."mdapi"; + "mdcat" = dontDistribute super."mdcat"; + "mdo" = dontDistribute super."mdo"; + "mdp" = dontDistribute super."mdp"; + "mecab" = dontDistribute super."mecab"; + "mecha" = dontDistribute super."mecha"; + "mediawiki" = dontDistribute super."mediawiki"; + "mediawiki2latex" = dontDistribute super."mediawiki2latex"; + "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; + "meep" = dontDistribute super."meep"; + "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = doDistribute super."megaparsec_4_3_0"; + "meldable-heap" = dontDistribute super."meldable-heap"; + "melody" = dontDistribute super."melody"; + "memcache" = dontDistribute super."memcache"; + "memcache-conduit" = dontDistribute super."memcache-conduit"; + "memcache-haskell" = dontDistribute super."memcache-haskell"; + "memcached" = dontDistribute super."memcached"; + "memexml" = dontDistribute super."memexml"; + "memo-ptr" = dontDistribute super."memo-ptr"; + "memo-sqlite" = dontDistribute super."memo-sqlite"; + "memscript" = dontDistribute super."memscript"; + "mersenne-random" = dontDistribute super."mersenne-random"; + "messente" = dontDistribute super."messente"; + "meta-misc" = dontDistribute super."meta-misc"; + "meta-par" = dontDistribute super."meta-par"; + "meta-par-accelerate" = dontDistribute super."meta-par-accelerate"; + "metadata" = dontDistribute super."metadata"; + "metamorphic" = dontDistribute super."metamorphic"; + "metaplug" = dontDistribute super."metaplug"; + "metric" = dontDistribute super."metric"; + "metricsd-client" = dontDistribute super."metricsd-client"; + "metronome" = dontDistribute super."metronome"; + "mezzolens" = dontDistribute super."mezzolens"; + "mfsolve" = dontDistribute super."mfsolve"; + "mgeneric" = dontDistribute super."mgeneric"; + "mi" = dontDistribute super."mi"; + "microbench" = dontDistribute super."microbench"; + "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens-each" = dontDistribute super."microlens-each"; + "microtimer" = dontDistribute super."microtimer"; + "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; + "midi" = dontDistribute super."midi"; + "midi-alsa" = dontDistribute super."midi-alsa"; + "midi-music-box" = dontDistribute super."midi-music-box"; + "midi-util" = dontDistribute super."midi-util"; + "midimory" = dontDistribute super."midimory"; + "midisurface" = dontDistribute super."midisurface"; + "mighttpd" = dontDistribute super."mighttpd"; + "mighttpd2" = dontDistribute super."mighttpd2"; + "mikmod" = dontDistribute super."mikmod"; + "miku" = dontDistribute super."miku"; + "milena" = dontDistribute super."milena"; + "mime" = dontDistribute super."mime"; + "mime-directory" = dontDistribute super."mime-directory"; + "mime-string" = dontDistribute super."mime-string"; + "mines" = dontDistribute super."mines"; + "minesweeper" = dontDistribute super."minesweeper"; + "miniball" = dontDistribute super."miniball"; + "miniforth" = dontDistribute super."miniforth"; + "minilens" = dontDistribute super."minilens"; + "minimal-configuration" = dontDistribute super."minimal-configuration"; + "minimorph" = dontDistribute super."minimorph"; + "minimung" = dontDistribute super."minimung"; + "minions" = dontDistribute super."minions"; + "minioperational" = dontDistribute super."minioperational"; + "miniplex" = dontDistribute super."miniplex"; + "minirotate" = dontDistribute super."minirotate"; + "minisat" = dontDistribute super."minisat"; + "ministg" = dontDistribute super."ministg"; + "miniutter" = dontDistribute super."miniutter"; + "minst-idx" = dontDistribute super."minst-idx"; + "mirror-tweet" = dontDistribute super."mirror-tweet"; + "missing-py2" = dontDistribute super."missing-py2"; + "mix-arrows" = dontDistribute super."mix-arrows"; + "mixed-strategies" = dontDistribute super."mixed-strategies"; + "mkbndl" = dontDistribute super."mkbndl"; + "mkcabal" = dontDistribute super."mkcabal"; + "ml-w" = dontDistribute super."ml-w"; + "mlist" = dontDistribute super."mlist"; + "mmtl" = dontDistribute super."mmtl"; + "mmtl-base" = dontDistribute super."mmtl-base"; + "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-exception" = dontDistribute super."monad-exception"; + "monad-fork" = dontDistribute super."monad-fork"; + "monad-gen" = dontDistribute super."monad-gen"; + "monad-interleave" = dontDistribute super."monad-interleave"; + "monad-levels" = dontDistribute super."monad-levels"; + "monad-loops-stm" = dontDistribute super."monad-loops-stm"; + "monad-lrs" = dontDistribute super."monad-lrs"; + "monad-memo" = dontDistribute super."monad-memo"; + "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; + "monad-open" = dontDistribute super."monad-open"; + "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; + "monad-param" = dontDistribute super."monad-param"; + "monad-ran" = dontDistribute super."monad-ran"; + "monad-resumption" = dontDistribute super."monad-resumption"; + "monad-state" = dontDistribute super."monad-state"; + "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-stlike-io" = dontDistribute super."monad-stlike-io"; + "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; + "monad-supply" = dontDistribute super."monad-supply"; + "monad-task" = dontDistribute super."monad-task"; + "monad-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"; + "monadplus" = dontDistribute super."monadplus"; + "monads-fd" = dontDistribute super."monads-fd"; + "monadtransform" = dontDistribute super."monadtransform"; + "monarch" = dontDistribute super."monarch"; + "mongodb-queue" = dontDistribute super."mongodb-queue"; + "mongrel2-handler" = dontDistribute super."mongrel2-handler"; + "monitor" = dontDistribute super."monitor"; + "mono-foldable" = dontDistribute super."mono-foldable"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-owns" = dontDistribute super."monoid-owns"; + "monoid-record" = dontDistribute super."monoid-record"; + "monoid-statistics" = dontDistribute super."monoid-statistics"; + "monoid-transformer" = dontDistribute super."monoid-transformer"; + "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"; + "mosaico-lib" = dontDistribute super."mosaico-lib"; + "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; + "mp" = dontDistribute super."mp"; + "mp3decoder" = dontDistribute super."mp3decoder"; + "mpdmate" = dontDistribute super."mpdmate"; + "mpppc" = dontDistribute super."mpppc"; + "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; + "mprover" = dontDistribute super."mprover"; + "mps" = dontDistribute super."mps"; + "mpvguihs" = dontDistribute super."mpvguihs"; + "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; + "ms" = dontDistribute super."ms"; + "msgpack" = dontDistribute super."msgpack"; + "msgpack-aeson" = dontDistribute super."msgpack-aeson"; + "msgpack-idl" = dontDistribute super."msgpack-idl"; + "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; + "msu" = dontDistribute super."msu"; + "mtgoxapi" = dontDistribute super."mtgoxapi"; + "mtl-c" = dontDistribute super."mtl-c"; + "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-tf" = dontDistribute super."mtl-tf"; + "mtl-unleashed" = dontDistribute super."mtl-unleashed"; + "mtlparse" = dontDistribute super."mtlparse"; + "mtlx" = dontDistribute super."mtlx"; + "mtp" = dontDistribute super."mtp"; + "mtree" = dontDistribute super."mtree"; + "mucipher" = dontDistribute super."mucipher"; + "mudbath" = dontDistribute super."mudbath"; + "muesli" = dontDistribute super."muesli"; + "mueval" = dontDistribute super."mueval"; + "mulang" = dontDistribute super."mulang"; + "multext-east-msd" = dontDistribute super."multext-east-msd"; + "multi-cabal" = dontDistribute super."multi-cabal"; + "multiaddr" = dontDistribute super."multiaddr"; + "multifocal" = dontDistribute super."multifocal"; + "multihash" = dontDistribute super."multihash"; + "multipart-names" = dontDistribute super."multipart-names"; + "multipass" = dontDistribute super."multipass"; + "multiplate-simplified" = dontDistribute super."multiplate-simplified"; + "multiplicity" = dontDistribute super."multiplicity"; + "multirec" = dontDistribute super."multirec"; + "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; + "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset-comb" = dontDistribute super."multiset-comb"; + "multisetrewrite" = dontDistribute super."multisetrewrite"; + "multistate" = dontDistribute super."multistate"; + "muon" = dontDistribute super."muon"; + "murder" = dontDistribute super."murder"; + "murmur3" = dontDistribute super."murmur3"; + "murmurhash3" = dontDistribute super."murmurhash3"; + "music-articulation" = dontDistribute super."music-articulation"; + "music-diatonic" = dontDistribute super."music-diatonic"; + "music-dynamics" = dontDistribute super."music-dynamics"; + "music-dynamics-literal" = dontDistribute super."music-dynamics-literal"; + "music-graphics" = dontDistribute super."music-graphics"; + "music-parts" = dontDistribute super."music-parts"; + "music-pitch" = dontDistribute super."music-pitch"; + "music-pitch-literal" = dontDistribute super."music-pitch-literal"; + "music-preludes" = dontDistribute super."music-preludes"; + "music-score" = dontDistribute super."music-score"; + "music-sibelius" = dontDistribute super."music-sibelius"; + "music-suite" = dontDistribute super."music-suite"; + "music-util" = dontDistribute super."music-util"; + "musicbrainz-email" = dontDistribute super."musicbrainz-email"; + "musicxml" = dontDistribute super."musicxml"; + "musicxml2" = dontDistribute super."musicxml2"; + "mustache-haskell" = dontDistribute super."mustache-haskell"; + "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-iter" = dontDistribute super."mutable-iter"; + "mute-unmute" = dontDistribute super."mute-unmute"; + "mvc" = dontDistribute super."mvc"; + "mvc-updates" = dontDistribute super."mvc-updates"; + "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = doDistribute super."mwc-probability_1_0_3"; + "mwc-random-monad" = dontDistribute super."mwc-random-monad"; + "myTestlll" = dontDistribute super."myTestlll"; + "mybitcoin-sci" = dontDistribute super."mybitcoin-sci"; + "myo" = dontDistribute super."myo"; + "mysnapsession" = dontDistribute super."mysnapsession"; + "mysnapsession-example" = dontDistribute super."mysnapsession-example"; + "mysql-effect" = dontDistribute super."mysql-effect"; + "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi"; + "mysql-simple-typed" = dontDistribute super."mysql-simple-typed"; + "mzv" = dontDistribute super."mzv"; + "n-m" = dontDistribute super."n-m"; + "nagios-perfdata" = dontDistribute super."nagios-perfdata"; + "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg"; + "named-formlet" = dontDistribute super."named-formlet"; + "named-lock" = dontDistribute super."named-lock"; + "named-records" = dontDistribute super."named-records"; + "namelist" = dontDistribute super."namelist"; + "names" = dontDistribute super."names"; + "names-th" = dontDistribute super."names-th"; + "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; + "nano-hmac" = dontDistribute super."nano-hmac"; + "nano-md5" = dontDistribute super."nano-md5"; + "nanoAgda" = dontDistribute super."nanoAgda"; + "nanocurses" = dontDistribute super."nanocurses"; + "nanomsg" = dontDistribute super."nanomsg"; + "nanomsg-haskell" = dontDistribute super."nanomsg-haskell"; + "nanoparsec" = dontDistribute super."nanoparsec"; + "nanq" = dontDistribute super."nanq"; + "narc" = dontDistribute super."narc"; + "nat" = dontDistribute super."nat"; + "nats-queue" = dontDistribute super."nats-queue"; + "natural-number" = dontDistribute super."natural-number"; + "natural-numbers" = dontDistribute super."natural-numbers"; + "natural-transformation" = dontDistribute super."natural-transformation"; + "naturalcomp" = dontDistribute super."naturalcomp"; + "naturals" = dontDistribute super."naturals"; + "naver-translate" = dontDistribute super."naver-translate"; + "nbt" = dontDistribute super."nbt"; + "nc-indicators" = dontDistribute super."nc-indicators"; + "ncurses" = dontDistribute super."ncurses"; + "neat" = dontDistribute super."neat"; + "needle" = dontDistribute super."needle"; + "neet" = dontDistribute super."neet"; + "nehe-tuts" = dontDistribute super."nehe-tuts"; + "neil" = dontDistribute super."neil"; + "neither" = dontDistribute super."neither"; + "nemesis" = dontDistribute super."nemesis"; + "nemesis-titan" = dontDistribute super."nemesis-titan"; + "nerf" = dontDistribute super."nerf"; + "nero" = dontDistribute super."nero"; + "nero-wai" = dontDistribute super."nero-wai"; + "nero-warp" = dontDistribute super."nero-warp"; + "nested-routes" = dontDistribute super."nested-routes"; + "nested-sets" = dontDistribute super."nested-sets"; + "nestedmap" = dontDistribute super."nestedmap"; + "net-concurrent" = dontDistribute super."net-concurrent"; + "netclock" = dontDistribute super."netclock"; + "netcore" = dontDistribute super."netcore"; + "netlines" = dontDistribute super."netlines"; + "netlink" = dontDistribute super."netlink"; + "netlist" = dontDistribute super."netlist"; + "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl"; + "netpbm" = dontDistribute super."netpbm"; + "netrc" = dontDistribute super."netrc"; + "netspec" = dontDistribute super."netspec"; + "netstring-enumerator" = dontDistribute super."netstring-enumerator"; + "nettle-frp" = dontDistribute super."nettle-frp"; + "nettle-netkit" = dontDistribute super."nettle-netkit"; + "nettle-openflow" = dontDistribute super."nettle-openflow"; + "netwire" = dontDistribute super."netwire"; + "netwire-input" = dontDistribute super."netwire-input"; + "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; + "network-address" = dontDistribute super."network-address"; + "network-api-support" = dontDistribute super."network-api-support"; + "network-bitcoin" = dontDistribute super."network-bitcoin"; + "network-builder" = dontDistribute super."network-builder"; + "network-bytestring" = dontDistribute super."network-bytestring"; + "network-conduit" = dontDistribute super."network-conduit"; + "network-connection" = dontDistribute super."network-connection"; + "network-data" = dontDistribute super."network-data"; + "network-dbus" = dontDistribute super."network-dbus"; + "network-dns" = dontDistribute super."network-dns"; + "network-enumerator" = dontDistribute super."network-enumerator"; + "network-fancy" = dontDistribute super."network-fancy"; + "network-interfacerequest" = dontDistribute super."network-interfacerequest"; + "network-ip" = dontDistribute super."network-ip"; + "network-metrics" = dontDistribute super."network-metrics"; + "network-minihttp" = dontDistribute super."network-minihttp"; + "network-msg" = dontDistribute super."network-msg"; + "network-netpacket" = dontDistribute super."network-netpacket"; + "network-pgi" = dontDistribute super."network-pgi"; + "network-rpca" = dontDistribute super."network-rpca"; + "network-server" = dontDistribute super."network-server"; + "network-service" = dontDistribute super."network-service"; + "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; + "network-simple-tls" = dontDistribute super."network-simple-tls"; + "network-socket-options" = dontDistribute super."network-socket-options"; + "network-stream" = dontDistribute super."network-stream"; + "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport-amqp" = dontDistribute super."network-transport-amqp"; + "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; + "network-uri-static" = dontDistribute super."network-uri-static"; + "network-wai-router" = dontDistribute super."network-wai-router"; + "network-websocket" = dontDistribute super."network-websocket"; + "networked-game" = dontDistribute super."networked-game"; + "newports" = dontDistribute super."newports"; + "newsynth" = dontDistribute super."newsynth"; + "newt" = dontDistribute super."newt"; + "newtype-deriving" = dontDistribute super."newtype-deriving"; + "newtype-th" = dontDistribute super."newtype-th"; + "newtyper" = dontDistribute super."newtyper"; + "nextstep-plist" = dontDistribute super."nextstep-plist"; + "nf" = dontDistribute super."nf"; + "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; + "nibblestring" = dontDistribute super."nibblestring"; + "nicify" = dontDistribute super."nicify"; + "nicify-lib" = dontDistribute super."nicify-lib"; + "nicovideo-translator" = dontDistribute super."nicovideo-translator"; + "nikepub" = dontDistribute super."nikepub"; + "nimber" = dontDistribute super."nimber"; + "nist-beacon" = dontDistribute super."nist-beacon"; + "nitro" = dontDistribute super."nitro"; + "nix-eval" = dontDistribute super."nix-eval"; + "nixfromnpm" = dontDistribute super."nixfromnpm"; + "nixos-types" = dontDistribute super."nixos-types"; + "nkjp" = dontDistribute super."nkjp"; + "nlp-scores" = dontDistribute super."nlp-scores"; + "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts"; + "nm" = dontDistribute super."nm"; + "nme" = dontDistribute super."nme"; + "nntp" = dontDistribute super."nntp"; + "no-buffering-workaround" = dontDistribute super."no-buffering-workaround"; + "no-role-annots" = dontDistribute super."no-role-annots"; + "nofib-analyse" = dontDistribute super."nofib-analyse"; + "nofib-analyze" = dontDistribute super."nofib-analyze"; + "noise" = dontDistribute super."noise"; + "non-empty" = dontDistribute super."non-empty"; + "non-negative" = dontDistribute super."non-negative"; + "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; + "nonfree" = dontDistribute super."nonfree"; + "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; + "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; + "noodle" = dontDistribute super."noodle"; + "normaldistribution" = dontDistribute super."normaldistribution"; + "not-gloss" = dontDistribute super."not-gloss"; + "not-gloss-examples" = dontDistribute super."not-gloss-examples"; + "not-in-base" = dontDistribute super."not-in-base"; + "notcpp" = dontDistribute super."notcpp"; + "notmuch-haskell" = dontDistribute super."notmuch-haskell"; + "notmuch-web" = dontDistribute super."notmuch-web"; + "notzero" = dontDistribute super."notzero"; + "np-extras" = dontDistribute super."np-extras"; + "np-linear" = dontDistribute super."np-linear"; + "nptools" = dontDistribute super."nptools"; + "nth-prime" = dontDistribute super."nth-prime"; + "nthable" = dontDistribute super."nthable"; + "ntp-control" = dontDistribute super."ntp-control"; + "null-canvas" = dontDistribute super."null-canvas"; + "nullary" = dontDistribute super."nullary"; + "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; + "numbering" = dontDistribute super."numbering"; + "numerals" = dontDistribute super."numerals"; + "numerals-base" = dontDistribute super."numerals-base"; + "numeric-limits" = dontDistribute super."numeric-limits"; + "numeric-prelude" = dontDistribute super."numeric-prelude"; + "numeric-qq" = dontDistribute super."numeric-qq"; + "numeric-quest" = dontDistribute super."numeric-quest"; + "numeric-ranges" = dontDistribute super."numeric-ranges"; + "numeric-tools" = dontDistribute super."numeric-tools"; + "numericpeano" = dontDistribute super."numericpeano"; + "nums" = dontDistribute super."nums"; + "numtype" = dontDistribute super."numtype"; + "numtype-tf" = dontDistribute super."numtype-tf"; + "nurbs" = dontDistribute super."nurbs"; + "nvim-hs" = dontDistribute super."nvim-hs"; + "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib"; + "nyan" = dontDistribute super."nyan"; + "nylas" = dontDistribute super."nylas"; + "nymphaea" = dontDistribute super."nymphaea"; + "oanda-rest-api" = dontDistribute super."oanda-rest-api"; + "oauthenticated" = dontDistribute super."oauthenticated"; + "obdd" = dontDistribute super."obdd"; + "oberon0" = dontDistribute super."oberon0"; + "obj" = dontDistribute super."obj"; + "objectid" = dontDistribute super."objectid"; + "objective" = doDistribute super."objective_1_0_5"; + "observable-sharing" = dontDistribute super."observable-sharing"; + "octane" = dontDistribute super."octane"; + "octohat" = dontDistribute super."octohat"; + "octopus" = dontDistribute super."octopus"; + "oculus" = dontDistribute super."oculus"; + "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = dontDistribute super."oeis"; + "off-simple" = dontDistribute super."off-simple"; + "ohloh-hs" = dontDistribute super."ohloh-hs"; + "oi" = dontDistribute super."oi"; + "oidc-client" = dontDistribute super."oidc-client"; + "ois-input-manager" = dontDistribute super."ois-input-manager"; + "old-version" = dontDistribute super."old-version"; + "olwrapper" = dontDistribute super."olwrapper"; + "omaketex" = dontDistribute super."omaketex"; + "omega" = dontDistribute super."omega"; + "omnicodec" = dontDistribute super."omnicodec"; + "on-a-horse" = dontDistribute super."on-a-horse"; + "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "one-liner" = dontDistribute super."one-liner"; + "one-time-password" = dontDistribute super."one-time-password"; + "oneOfN" = dontDistribute super."oneOfN"; + "oneormore" = dontDistribute super."oneormore"; + "only" = dontDistribute super."only"; + "onu-course" = dontDistribute super."onu-course"; + "opaleye-classy" = dontDistribute super."opaleye-classy"; + "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; + "opaleye-trans" = dontDistribute super."opaleye-trans"; + "open-haddock" = dontDistribute super."open-haddock"; + "open-pandoc" = dontDistribute super."open-pandoc"; + "open-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"; + "opml-conduit" = doDistribute super."opml-conduit_0_4_0_1"; + "opn" = dontDistribute super."opn"; + "optimal-blocks" = dontDistribute super."optimal-blocks"; + "optimization" = dontDistribute super."optimization"; + "optimusprime" = dontDistribute super."optimusprime"; + "option" = dontDistribute super."option"; + "optional" = dontDistribute super."optional"; + "options-time" = dontDistribute super."options-time"; + "optparse-declarative" = dontDistribute super."optparse-declarative"; + "optparse-generic" = dontDistribute super."optparse-generic"; + "orc" = dontDistribute super."orc"; + "orchestrate" = dontDistribute super."orchestrate"; + "orchid" = dontDistribute super."orchid"; + "orchid-demo" = dontDistribute super."orchid-demo"; + "ord-adhoc" = dontDistribute super."ord-adhoc"; + "order-maintenance" = dontDistribute super."order-maintenance"; + "order-statistic-tree" = dontDistribute super."order-statistic-tree"; + "order-statistics" = dontDistribute super."order-statistics"; + "ordered" = dontDistribute super."ordered"; + "orders" = dontDistribute super."orders"; + "ordrea" = dontDistribute super."ordrea"; + "organize-imports" = dontDistribute super."organize-imports"; + "orgmode" = dontDistribute super."orgmode"; + "orgmode-parse" = dontDistribute super."orgmode-parse"; + "origami" = dontDistribute super."origami"; + "os-release" = dontDistribute super."os-release"; + "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; + "osm-download" = dontDistribute super."osm-download"; + "oso2pdf" = dontDistribute super."oso2pdf"; + "osx-ar" = dontDistribute super."osx-ar"; + "ot" = dontDistribute super."ot"; + "ottparse-pretty" = dontDistribute super."ottparse-pretty"; + "overloaded-records" = dontDistribute super."overloaded-records"; + "overture" = dontDistribute super."overture"; + "pack" = dontDistribute super."pack"; + "package-o-tron" = dontDistribute super."package-o-tron"; + "package-vt" = dontDistribute super."package-vt"; + "packdeps" = dontDistribute super."packdeps"; + "packed-dawg" = dontDistribute super."packed-dawg"; + "packedstring" = dontDistribute super."packedstring"; + "packer" = dontDistribute super."packer"; + "packman" = dontDistribute super."packman"; + "packunused" = dontDistribute super."packunused"; + "pacman-memcache" = dontDistribute super."pacman-memcache"; + "padKONTROL" = dontDistribute super."padKONTROL"; + "pagarme" = dontDistribute super."pagarme"; + "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palindromes" = dontDistribute super."palindromes"; + "pam" = dontDistribute super."pam"; + "panda" = dontDistribute super."panda"; + "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; + "pandoc-crossref" = dontDistribute super."pandoc-crossref"; + "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; + "pandoc-include" = dontDistribute super."pandoc-include"; + "pandoc-japanese-filters" = dontDistribute super."pandoc-japanese-filters"; + "pandoc-lens" = dontDistribute super."pandoc-lens"; + "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "papillon" = dontDistribute super."papillon"; + "pappy" = dontDistribute super."pappy"; + "para" = dontDistribute super."para"; + "paragon" = dontDistribute super."paragon"; + "parallel-tasks" = dontDistribute super."parallel-tasks"; + "parallel-tree-search" = dontDistribute super."parallel-tree-search"; + "parameterized-data" = dontDistribute super."parameterized-data"; + "parco" = dontDistribute super."parco"; + "parco-attoparsec" = dontDistribute super."parco-attoparsec"; + "parco-parsec" = dontDistribute super."parco-parsec"; + "parcom-lib" = dontDistribute super."parcom-lib"; + "parconc-examples" = dontDistribute super."parconc-examples"; + "parport" = dontDistribute super."parport"; + "parse-dimacs" = dontDistribute super."parse-dimacs"; + "parse-help" = dontDistribute super."parse-help"; + "parsec-extra" = dontDistribute super."parsec-extra"; + "parsec-numbers" = dontDistribute super."parsec-numbers"; + "parsec-parsers" = dontDistribute super."parsec-parsers"; + "parsec-permutation" = dontDistribute super."parsec-permutation"; + "parsec-tagsoup" = dontDistribute super."parsec-tagsoup"; + "parsec-trace" = dontDistribute super."parsec-trace"; + "parsec-utils" = dontDistribute super."parsec-utils"; + "parsec1" = dontDistribute super."parsec1"; + "parsec2" = dontDistribute super."parsec2"; + "parsec3" = dontDistribute super."parsec3"; + "parsec3-numbers" = dontDistribute super."parsec3-numbers"; + "parsedate" = dontDistribute super."parsedate"; + "parsek" = dontDistribute super."parsek"; + "parsely" = dontDistribute super."parsely"; + "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; + "parsergen" = dontDistribute super."parsergen"; + "parsestar" = dontDistribute super."parsestar"; + "parsimony" = dontDistribute super."parsimony"; + "partial" = dontDistribute super."partial"; + "partial-lens" = dontDistribute super."partial-lens"; + "partial-uri" = dontDistribute super."partial-uri"; + "partly" = dontDistribute super."partly"; + "passage" = dontDistribute super."passage"; + "passwords" = dontDistribute super."passwords"; + "pastis" = dontDistribute super."pastis"; + "pasty" = dontDistribute super."pasty"; + "patch-combinators" = dontDistribute super."patch-combinators"; + "patch-image" = dontDistribute super."patch-image"; + "path-io" = doDistribute super."path-io_0_2_0"; + "pathfinding" = dontDistribute super."pathfinding"; + "pathfindingcore" = dontDistribute super."pathfindingcore"; + "pathtype" = dontDistribute super."pathtype"; + "patronscraper" = dontDistribute super."patronscraper"; + "patterns" = dontDistribute super."patterns"; + "paymill" = dontDistribute super."paymill"; + "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops"; + "paypal-api" = dontDistribute super."paypal-api"; + "pb" = dontDistribute super."pb"; + "pbc4hs" = dontDistribute super."pbc4hs"; + "pbkdf" = dontDistribute super."pbkdf"; + "pcap-conduit" = dontDistribute super."pcap-conduit"; + "pcap-enumerator" = dontDistribute super."pcap-enumerator"; + "pcd-loader" = dontDistribute super."pcd-loader"; + "pcf" = dontDistribute super."pcf"; + "pcg-random" = dontDistribute super."pcg-random"; + "pcre-less" = dontDistribute super."pcre-less"; + "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; + "pdf2line" = dontDistribute super."pdf2line"; + "pdfsplit" = dontDistribute super."pdfsplit"; + "pdynload" = dontDistribute super."pdynload"; + "peakachu" = dontDistribute super."peakachu"; + "peano" = dontDistribute super."peano"; + "peano-inf" = dontDistribute super."peano-inf"; + "pec" = dontDistribute super."pec"; + "pecoff" = dontDistribute super."pecoff"; + "peg" = dontDistribute super."peg"; + "peggy" = dontDistribute super."peggy"; + "pell" = dontDistribute super."pell"; + "penn-treebank" = dontDistribute super."penn-treebank"; + "penny" = dontDistribute super."penny"; + "penny-bin" = dontDistribute super."penny-bin"; + "penny-lib" = dontDistribute super."penny-lib"; + "peparser" = dontDistribute super."peparser"; + "perceptron" = dontDistribute super."perceptron"; + "perdure" = dontDistribute super."perdure"; + "period" = dontDistribute super."period"; + "perm" = dontDistribute super."perm"; + "permutation" = dontDistribute super."permutation"; + "permute" = dontDistribute super."permute"; + "persist2er" = dontDistribute super."persist2er"; + "persistable-record" = dontDistribute super."persistable-record"; + "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-equivalence" = dontDistribute super."persistent-equivalence"; + "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; + "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; + "persistent-iproute" = dontDistribute super."persistent-iproute"; + "persistent-map" = dontDistribute super."persistent-map"; + "persistent-odbc" = dontDistribute super."persistent-odbc"; + "persistent-protobuf" = dontDistribute super."persistent-protobuf"; + "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; + "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-vector" = dontDistribute super."persistent-vector"; + "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; + "persona" = dontDistribute super."persona"; + "persona-idp" = dontDistribute super."persona-idp"; + "pesca" = dontDistribute super."pesca"; + "peyotls" = dontDistribute super."peyotls"; + "peyotls-codec" = dontDistribute super."peyotls-codec"; + "pez" = dontDistribute super."pez"; + "pg-harness" = dontDistribute super."pg-harness"; + "pg-harness-client" = dontDistribute super."pg-harness-client"; + "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pgdl" = dontDistribute super."pgdl"; + "pgm" = dontDistribute super."pgm"; + "pgsql-simple" = dontDistribute super."pgsql-simple"; + "pgstream" = dontDistribute super."pgstream"; + "phasechange" = dontDistribute super."phasechange"; + "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; + "phone-numbers" = dontDistribute super."phone-numbers"; + "phone-push" = dontDistribute super."phone-push"; + "phonetic-code" = dontDistribute super."phonetic-code"; + "phooey" = dontDistribute super."phooey"; + "photoname" = dontDistribute super."photoname"; + "phraskell" = dontDistribute super."phraskell"; + "phybin" = dontDistribute super."phybin"; + "pi-calculus" = dontDistribute super."pi-calculus"; + "pia-forward" = dontDistribute super."pia-forward"; + "pianola" = dontDistribute super."pianola"; + "picologic" = dontDistribute super."picologic"; + "picosat" = dontDistribute super."picosat"; + "piet" = dontDistribute super."piet"; + "piki" = dontDistribute super."piki"; + "pinboard" = dontDistribute super."pinboard"; + "pinchot" = doDistribute super."pinchot_0_6_0_0"; + "pipe-enumerator" = dontDistribute super."pipe-enumerator"; + "pipeclip" = dontDistribute super."pipeclip"; + "pipes-async" = dontDistribute super."pipes-async"; + "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-bzip" = dontDistribute super."pipes-bzip"; + "pipes-cacophony" = doDistribute super."pipes-cacophony_0_1_3"; + "pipes-cellular" = dontDistribute super."pipes-cellular"; + "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; + "pipes-cereal" = dontDistribute super."pipes-cereal"; + "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-conduit" = dontDistribute super."pipes-conduit"; + "pipes-core" = dontDistribute super."pipes-core"; + "pipes-courier" = dontDistribute super."pipes-courier"; + "pipes-errors" = dontDistribute super."pipes-errors"; + "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-files" = dontDistribute super."pipes-files"; + "pipes-interleave" = dontDistribute super."pipes-interleave"; + "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-network-tls" = dontDistribute super."pipes-network-tls"; + "pipes-p2p" = dontDistribute super."pipes-p2p"; + "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; + "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; + "pipes-vector" = dontDistribute super."pipes-vector"; + "pipes-websockets" = dontDistribute super."pipes-websockets"; + "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; + "pipes-zlib" = dontDistribute super."pipes-zlib"; + "pisigma" = dontDistribute super."pisigma"; + "pit" = dontDistribute super."pit"; + "pitchtrack" = dontDistribute super."pitchtrack"; + "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pkcs1" = dontDistribute super."pkcs1"; + "pkcs7" = dontDistribute super."pkcs7"; + "pkggraph" = dontDistribute super."pkggraph"; + "pktree" = dontDistribute super."pktree"; + "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; + "planar-graph" = dontDistribute super."planar-graph"; + "plat" = dontDistribute super."plat"; + "playlists" = dontDistribute super."playlists"; + "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; + "plivo" = dontDistribute super."plivo"; + "plot-lab" = dontDistribute super."plot-lab"; + "plotfont" = dontDistribute super."plotfont"; + "plotserver-api" = dontDistribute super."plotserver-api"; + "plugins" = dontDistribute super."plugins"; + "plugins-auto" = dontDistribute super."plugins-auto"; + "plugins-multistage" = dontDistribute super."plugins-multistage"; + "plumbers" = dontDistribute super."plumbers"; + "ply-loader" = dontDistribute super."ply-loader"; + "png-file" = dontDistribute super."png-file"; + "pngload" = dontDistribute super."pngload"; + "pngload-fixed" = dontDistribute super."pngload-fixed"; + "pnm" = dontDistribute super."pnm"; + "pocket-dns" = dontDistribute super."pocket-dns"; + "pointfree" = dontDistribute super."pointfree"; + "pointful" = dontDistribute super."pointful"; + "pointless-fun" = dontDistribute super."pointless-fun"; + "pointless-haskell" = dontDistribute super."pointless-haskell"; + "pointless-lenses" = dontDistribute super."pointless-lenses"; + "pointless-rewrite" = dontDistribute super."pointless-rewrite"; + "poker-eval" = dontDistribute super."poker-eval"; + "pokitdok" = dontDistribute super."pokitdok"; + "polar" = dontDistribute super."polar"; + "polar-configfile" = dontDistribute super."polar-configfile"; + "polar-shader" = dontDistribute super."polar-shader"; + "polh-lexicon" = dontDistribute super."polh-lexicon"; + "polimorf" = dontDistribute super."polimorf"; + "poll" = dontDistribute super."poll"; + "poly-control" = dontDistribute super."poly-control"; + "polyToMonoid" = dontDistribute super."polyToMonoid"; + "polymap" = dontDistribute super."polymap"; + "polynom" = dontDistribute super."polynom"; + "polynomial" = dontDistribute super."polynomial"; + "polynomials-bernstein" = dontDistribute super."polynomials-bernstein"; + "polyseq" = dontDistribute super."polyseq"; + "polysoup" = dontDistribute super."polysoup"; + "polytypeable" = dontDistribute super."polytypeable"; + "polytypeable-utils" = dontDistribute super."polytypeable-utils"; + "ponder" = dontDistribute super."ponder"; + "pong-server" = dontDistribute super."pong-server"; + "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver"; + "pontarius-xmpp" = dontDistribute super."pontarius-xmpp"; + "pontarius-xpmn" = dontDistribute super."pontarius-xpmn"; + "pony" = dontDistribute super."pony"; + "pool" = dontDistribute super."pool"; + "pool-conduit" = dontDistribute super."pool-conduit"; + "pooled-io" = dontDistribute super."pooled-io"; + "pop3-client" = dontDistribute super."pop3-client"; + "popenhs" = dontDistribute super."popenhs"; + "poppler" = dontDistribute super."poppler"; + "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache"; + "portable-lines" = dontDistribute super."portable-lines"; + "portaudio" = dontDistribute super."portaudio"; + "porte" = dontDistribute super."porte"; + "porter" = dontDistribute super."porter"; + "ports" = dontDistribute super."ports"; + "ports-tools" = dontDistribute super."ports-tools"; + "positive" = dontDistribute super."positive"; + "posix-acl" = dontDistribute super."posix-acl"; + "posix-escape" = dontDistribute super."posix-escape"; + "posix-filelock" = dontDistribute super."posix-filelock"; + "posix-paths" = dontDistribute super."posix-paths"; + "posix-pty" = dontDistribute super."posix-pty"; + "posix-timer" = dontDistribute super."posix-timer"; + "posix-waitpid" = dontDistribute super."posix-waitpid"; + "possible" = dontDistribute super."possible"; + "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_7_9"; + "postgresql-config" = dontDistribute super."postgresql-config"; + "postgresql-connector" = dontDistribute super."postgresql-connector"; + "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; + "postgresql-cube" = dontDistribute super."postgresql-cube"; + "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; + "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration"; + "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; + "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; + "postgresql-typed" = dontDistribute super."postgresql-typed"; + "postgrest" = dontDistribute super."postgrest"; + "postie" = dontDistribute super."postie"; + "postmark" = dontDistribute super."postmark"; + "postmaster" = dontDistribute super."postmaster"; + "potato-tool" = dontDistribute super."potato-tool"; + "potrace" = dontDistribute super."potrace"; + "potrace-diagrams" = dontDistribute super."potrace-diagrams"; + "powermate" = dontDistribute super."powermate"; + "powerpc" = dontDistribute super."powerpc"; + "ppm" = dontDistribute super."ppm"; + "pqc" = dontDistribute super."pqc"; + "pqueue-mtl" = dontDistribute super."pqueue-mtl"; + "practice-room" = dontDistribute super."practice-room"; + "precis" = dontDistribute super."precis"; + "predicates" = dontDistribute super."predicates"; + "prednote-test" = dontDistribute super."prednote-test"; + "prefork" = dontDistribute super."prefork"; + "pregame" = dontDistribute super."pregame"; + "prelude-edsl" = dontDistribute super."prelude-edsl"; + "prelude-generalize" = dontDistribute super."prelude-generalize"; + "prelude-plus" = dontDistribute super."prelude-plus"; + "prelude-prime" = dontDistribute super."prelude-prime"; + "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "preprocess-haskell" = dontDistribute super."preprocess-haskell"; + "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = dontDistribute super."present"; + "press" = dontDistribute super."press"; + "presto-hdbc" = dontDistribute super."presto-hdbc"; + "prettify" = dontDistribute super."prettify"; + "pretty-compact" = dontDistribute super."pretty-compact"; + "pretty-error" = dontDistribute super."pretty-error"; + "pretty-hex" = dontDistribute super."pretty-hex"; + "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-sop" = dontDistribute super."pretty-sop"; + "pretty-tree" = dontDistribute super."pretty-tree"; + "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-uniq" = dontDistribute super."prim-uniq"; + "primitive-simd" = dontDistribute super."primitive-simd"; + "primula-board" = dontDistribute super."primula-board"; + "primula-bot" = dontDistribute super."primula-bot"; + "print-debugger" = dontDistribute super."print-debugger"; + "printf-mauke" = dontDistribute super."printf-mauke"; + "printxosd" = dontDistribute super."printxosd"; + "priority-queue" = dontDistribute super."priority-queue"; + "priority-sync" = dontDistribute super."priority-sync"; + "privileged-concurrency" = dontDistribute super."privileged-concurrency"; + "prizm" = dontDistribute super."prizm"; + "probability" = dontDistribute super."probability"; + "probable" = dontDistribute super."probable"; + "proc" = dontDistribute super."proc"; + "process-conduit" = dontDistribute super."process-conduit"; + "process-extras" = doDistribute super."process-extras_0_3_3_7"; + "process-iterio" = dontDistribute super."process-iterio"; + "process-leksah" = dontDistribute super."process-leksah"; + "process-listlike" = dontDistribute super."process-listlike"; + "process-progress" = dontDistribute super."process-progress"; + "process-qq" = dontDistribute super."process-qq"; + "process-streaming" = dontDistribute super."process-streaming"; + "processing" = dontDistribute super."processing"; + "processor-creative-kit" = dontDistribute super."processor-creative-kit"; + "procrastinating-structure" = dontDistribute super."procrastinating-structure"; + "procrastinating-variable" = dontDistribute super."procrastinating-variable"; + "procstat" = dontDistribute super."procstat"; + "proctest" = dontDistribute super."proctest"; + "product-profunctors" = doDistribute super."product-profunctors_0_6_3_1"; + "prof2dot" = dontDistribute super."prof2dot"; + "prof2pretty" = dontDistribute super."prof2pretty"; + "profiteur" = dontDistribute super."profiteur"; + "progress" = dontDistribute super."progress"; + "progressbar" = dontDistribute super."progressbar"; + "progression" = dontDistribute super."progression"; + "progressive" = dontDistribute super."progressive"; + "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; + "projection" = dontDistribute super."projection"; + "prolog" = dontDistribute super."prolog"; + "prolog-graph" = dontDistribute super."prolog-graph"; + "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; + "promise" = dontDistribute super."promise"; + "promises" = dontDistribute super."promises"; + "propane" = dontDistribute super."propane"; + "propellor" = dontDistribute super."propellor"; + "properties" = dontDistribute super."properties"; + "property-list" = dontDistribute super."property-list"; + "proplang" = dontDistribute super."proplang"; + "props" = dontDistribute super."props"; + "prosper" = dontDistribute super."prosper"; + "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers-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"; + "proxied" = dontDistribute super."proxied"; + "proxy-kindness" = dontDistribute super."proxy-kindness"; + "psc-ide" = doDistribute super."psc-ide_0_5_0"; + "pseudo-boolean" = dontDistribute super."pseudo-boolean"; + "pseudo-trie" = dontDistribute super."pseudo-trie"; + "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; + "pub" = dontDistribute super."pub"; + "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; + "publicsuffixlist" = dontDistribute super."publicsuffixlist"; + "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate"; + "pubnub" = dontDistribute super."pubnub"; + "pubsub" = dontDistribute super."pubsub"; + "puffytools" = dontDistribute super."puffytools"; + "pugixml" = dontDistribute super."pugixml"; + "pugs-DrIFT" = dontDistribute super."pugs-DrIFT"; + "pugs-HsSyck" = dontDistribute super."pugs-HsSyck"; + "pugs-compat" = dontDistribute super."pugs-compat"; + "pugs-hsregex" = dontDistribute super."pugs-hsregex"; + "pulse-simple" = dontDistribute super."pulse-simple"; + "punkt" = dontDistribute super."punkt"; + "punycode" = dontDistribute super."punycode"; + "puppetresources" = dontDistribute super."puppetresources"; + "pure-fft" = dontDistribute super."pure-fft"; + "pure-priority-queue" = dontDistribute super."pure-priority-queue"; + "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; + "pure-zlib" = dontDistribute super."pure-zlib"; + "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "push-notify" = dontDistribute super."push-notify"; + "push-notify-ccs" = dontDistribute super."push-notify-ccs"; + "push-notify-general" = dontDistribute super."push-notify-general"; + "pusher-haskell" = dontDistribute super."pusher-haskell"; + "pushme" = dontDistribute super."pushme"; + "putlenses" = dontDistribute super."putlenses"; + "puzzle-draw" = dontDistribute super."puzzle-draw"; + "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline"; + "pvd" = dontDistribute super."pvd"; + "pwstore-cli" = dontDistribute super."pwstore-cli"; + "pxsl-tools" = dontDistribute super."pxsl-tools"; + "pyffi" = dontDistribute super."pyffi"; + "pyfi" = dontDistribute super."pyfi"; + "python-pickle" = dontDistribute super."python-pickle"; + "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator"; + "qd" = dontDistribute super."qd"; + "qd-vec" = dontDistribute super."qd-vec"; + "qed" = dontDistribute super."qed"; + "qhull-simple" = dontDistribute super."qhull-simple"; + "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; + "quadratic-irrational" = dontDistribute super."quadratic-irrational"; + "quantfin" = dontDistribute super."quantfin"; + "quantities" = dontDistribute super."quantities"; + "quantum-arrow" = dontDistribute super."quantum-arrow"; + "qudb" = dontDistribute super."qudb"; + "quenya-verb" = dontDistribute super."quenya-verb"; + "querystring-pickle" = dontDistribute super."querystring-pickle"; + "queue" = dontDistribute super."queue"; + "queuelike" = dontDistribute super."queuelike"; + "quick-generator" = dontDistribute super."quick-generator"; + "quick-schema" = dontDistribute super."quick-schema"; + "quickcheck-poly" = dontDistribute super."quickcheck-poly"; + "quickcheck-properties" = dontDistribute super."quickcheck-properties"; + "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; + "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad"; + "quickcheck-regex" = dontDistribute super."quickcheck-regex"; + "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng"; + "quickcheck-rematch" = dontDistribute super."quickcheck-rematch"; + "quickcheck-script" = dontDistribute super."quickcheck-script"; + "quickcheck-simple" = dontDistribute super."quickcheck-simple"; + "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver"; + "quicklz" = dontDistribute super."quicklz"; + "quickpull" = dontDistribute super."quickpull"; + "quickset" = dontDistribute super."quickset"; + "quickspec" = dontDistribute super."quickspec"; + "quicktest" = dontDistribute super."quicktest"; + "quickwebapp" = dontDistribute super."quickwebapp"; + "quiver" = dontDistribute super."quiver"; + "quiver-bytestring" = dontDistribute super."quiver-bytestring"; + "quiver-cell" = dontDistribute super."quiver-cell"; + "quiver-csv" = dontDistribute super."quiver-csv"; + "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-http" = dontDistribute super."quiver-http"; + "quoridor-hs" = dontDistribute super."quoridor-hs"; + "qux" = dontDistribute super."qux"; + "rabocsv2qif" = dontDistribute super."rabocsv2qif"; + "rad" = dontDistribute super."rad"; + "radian" = dontDistribute super."radian"; + "radium" = dontDistribute super."radium"; + "radium-formula-parser" = dontDistribute super."radium-formula-parser"; + "radix" = dontDistribute super."radix"; + "rados-haskell" = dontDistribute super."rados-haskell"; + "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; + "rake" = dontDistribute super."rake"; + "rakhana" = dontDistribute super."rakhana"; + "ralist" = dontDistribute super."ralist"; + "rallod" = dontDistribute super."rallod"; + "raml" = dontDistribute super."raml"; + "rand-vars" = dontDistribute super."rand-vars"; + "randfile" = dontDistribute super."randfile"; + "random-access-list" = dontDistribute super."random-access-list"; + "random-derive" = dontDistribute super."random-derive"; + "random-eff" = dontDistribute super."random-eff"; + "random-effin" = dontDistribute super."random-effin"; + "random-extras" = dontDistribute super."random-extras"; + "random-hypergeometric" = dontDistribute super."random-hypergeometric"; + "random-stream" = dontDistribute super."random-stream"; + "random-tree" = dontDistribute super."random-tree"; + "random-variates" = dontDistribute super."random-variates"; + "randomgen" = dontDistribute super."randomgen"; + "randproc" = dontDistribute super."randproc"; + "randsolid" = dontDistribute super."randsolid"; + "range-space" = dontDistribute super."range-space"; + "rangemin" = dontDistribute super."rangemin"; + "ranges" = dontDistribute super."ranges"; + "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; + "rate-limit" = dontDistribute super."rate-limit"; + "ratel" = dontDistribute super."ratel"; + "ratel-wai" = dontDistribute super."ratel-wai"; + "ratio-int" = dontDistribute super."ratio-int"; + "raven-haskell" = dontDistribute super."raven-haskell"; + "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "rawstring-qm" = dontDistribute super."rawstring-qm"; + "razom-text-util" = dontDistribute super."razom-text-util"; + "rbr" = dontDistribute super."rbr"; + "rclient" = dontDistribute super."rclient"; + "rcu" = dontDistribute super."rcu"; + "rdf4h" = dontDistribute super."rdf4h"; + "rdioh" = dontDistribute super."rdioh"; + "rdtsc" = dontDistribute super."rdtsc"; + "rdtsc-enolan" = dontDistribute super."rdtsc-enolan"; + "re2" = dontDistribute super."re2"; + "react-flux" = dontDistribute super."react-flux"; + "react-haskell" = dontDistribute super."react-haskell"; + "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"; + "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"; + "reedsolomon" = dontDistribute super."reedsolomon"; + "reenact" = dontDistribute super."reenact"; + "reexport-crypto-random" = dontDistribute super."reexport-crypto-random"; + "ref" = dontDistribute super."ref"; + "ref-mtl" = dontDistribute super."ref-mtl"; + "ref-tf" = dontDistribute super."ref-tf"; + "refcount" = dontDistribute super."refcount"; + "reference" = dontDistribute super."reference"; + "references" = dontDistribute super."references"; + "refh" = dontDistribute super."refh"; + "refined" = dontDistribute super."refined"; + "reflection-extras" = dontDistribute super."reflection-extras"; + "reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; + "reflex" = dontDistribute super."reflex"; + "reflex-animation" = dontDistribute super."reflex-animation"; + "reflex-dom" = dontDistribute super."reflex-dom"; + "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; + "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; + "regex-deriv" = dontDistribute super."regex-deriv"; + "regex-dfa" = dontDistribute super."regex-dfa"; + "regex-easy" = dontDistribute super."regex-easy"; + "regex-genex" = dontDistribute super."regex-genex"; + "regex-parsec" = dontDistribute super."regex-parsec"; + "regex-pderiv" = dontDistribute super."regex-pderiv"; + "regex-posix-unittest" = dontDistribute super."regex-posix-unittest"; + "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes"; + "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter"; + "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; + "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; + "regex-tre" = dontDistribute super."regex-tre"; + "regex-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"; + "regress" = dontDistribute super."regress"; + "regular" = dontDistribute super."regular"; + "regular-extras" = dontDistribute super."regular-extras"; + "regular-web" = dontDistribute super."regular-web"; + "regular-xmlpickler" = dontDistribute super."regular-xmlpickler"; + "reheat" = dontDistribute super."reheat"; + "rehoo" = dontDistribute super."rehoo"; + "rei" = dontDistribute super."rei"; + "reified-records" = dontDistribute super."reified-records"; + "reify" = dontDistribute super."reify"; + "relacion" = dontDistribute super."relacion"; + "relation" = dontDistribute super."relation"; + "relational-postgresql8" = dontDistribute super."relational-postgresql8"; + "relational-query" = dontDistribute super."relational-query"; + "relational-query-HDBC" = dontDistribute super."relational-query-HDBC"; + "relational-record" = dontDistribute super."relational-record"; + "relational-record-examples" = dontDistribute super."relational-record-examples"; + "relational-schemas" = dontDistribute super."relational-schemas"; + "relative-date" = dontDistribute super."relative-date"; + "relit" = dontDistribute super."relit"; + "rematch" = dontDistribute super."rematch"; + "rematch-text" = dontDistribute super."rematch-text"; + "remote" = dontDistribute super."remote"; + "remote-debugger" = dontDistribute super."remote-debugger"; + "remote-json" = dontDistribute super."remote-json"; + "remote-json-client" = dontDistribute super."remote-json-client"; + "remote-json-server" = dontDistribute super."remote-json-server"; + "remote-monad" = dontDistribute super."remote-monad"; + "remotion" = dontDistribute super."remotion"; + "renderable" = dontDistribute super."renderable"; + "reord" = dontDistribute super."reord"; + "reorderable" = dontDistribute super."reorderable"; + "repa-array" = dontDistribute super."repa-array"; + "repa-bytestring" = dontDistribute super."repa-bytestring"; + "repa-convert" = dontDistribute super."repa-convert"; + "repa-eval" = dontDistribute super."repa-eval"; + "repa-examples" = dontDistribute super."repa-examples"; + "repa-fftw" = dontDistribute super."repa-fftw"; + "repa-flow" = dontDistribute super."repa-flow"; + "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; + "repa-plugin" = dontDistribute super."repa-plugin"; + "repa-scalar" = dontDistribute super."repa-scalar"; + "repa-series" = dontDistribute super."repa-series"; + "repa-sndfile" = dontDistribute super."repa-sndfile"; + "repa-stream" = dontDistribute super."repa-stream"; + "repa-v4l2" = dontDistribute super."repa-v4l2"; + "repl" = dontDistribute super."repl"; + "repl-toolkit" = dontDistribute super."repl-toolkit"; + "repline" = dontDistribute super."repline"; + "repo-based-blog" = dontDistribute super."repo-based-blog"; + "repr" = dontDistribute super."repr"; + "repr-tree-syb" = dontDistribute super."repr-tree-syb"; + "representable-functors" = dontDistribute super."representable-functors"; + "representable-profunctors" = dontDistribute super."representable-profunctors"; + "representable-tries" = dontDistribute super."representable-tries"; + "request-monad" = dontDistribute super."request-monad"; + "reserve" = dontDistribute super."reserve"; + "resistor-cube" = dontDistribute super."resistor-cube"; + "resource-effect" = dontDistribute super."resource-effect"; + "resource-embed" = dontDistribute super."resource-embed"; + "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; + "resource-pool-monad" = dontDistribute super."resource-pool-monad"; + "resource-simple" = dontDistribute super."resource-simple"; + "respond" = dontDistribute super."respond"; + "rest-core" = doDistribute super."rest-core_0_37"; + "rest-example" = dontDistribute super."rest-example"; + "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "restful-snap" = dontDistribute super."restful-snap"; + "restricted-workers" = dontDistribute super."restricted-workers"; + "restyle" = dontDistribute super."restyle"; + "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb-model" = dontDistribute super."rethinkdb-model"; + "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retryer" = dontDistribute super."retryer"; + "revdectime" = dontDistribute super."revdectime"; + "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-geocoding" = dontDistribute super."reverse-geocoding"; + "reversi" = dontDistribute super."reversi"; + "rewrite" = dontDistribute super."rewrite"; + "rewriting" = dontDistribute super."rewriting"; + "rex" = dontDistribute super."rex"; + "rezoom" = dontDistribute super."rezoom"; + "rfc3339" = dontDistribute super."rfc3339"; + "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; + "richreports" = dontDistribute super."richreports"; + "riemann" = dontDistribute super."riemann"; + "riff" = dontDistribute super."riff"; + "ring-buffer" = dontDistribute super."ring-buffer"; + "riot" = dontDistribute super."riot"; + "ripple" = dontDistribute super."ripple"; + "ripple-federation" = dontDistribute super."ripple-federation"; + "risc386" = dontDistribute super."risc386"; + "rivers" = dontDistribute super."rivers"; + "rivet" = dontDistribute super."rivet"; + "rivet-core" = dontDistribute super."rivet-core"; + "rivet-migration" = dontDistribute super."rivet-migration"; + "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; + "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; + "rmonad" = dontDistribute super."rmonad"; + "rncryptor" = dontDistribute super."rncryptor"; + "rng-utils" = dontDistribute super."rng-utils"; + "robin" = dontDistribute super."robin"; + "robot" = dontDistribute super."robot"; + "robots-txt" = dontDistribute super."robots-txt"; + "rocksdb-haskell" = dontDistribute super."rocksdb-haskell"; + "roguestar" = dontDistribute super."roguestar"; + "roguestar-engine" = dontDistribute super."roguestar-engine"; + "roguestar-gl" = dontDistribute super."roguestar-gl"; + "roguestar-glut" = dontDistribute super."roguestar-glut"; + "rollbar" = dontDistribute super."rollbar"; + "roller" = dontDistribute super."roller"; + "rolling-queue" = dontDistribute super."rolling-queue"; + "roman-numerals" = dontDistribute super."roman-numerals"; + "romkan" = dontDistribute super."romkan"; + "roots" = dontDistribute super."roots"; + "rope" = dontDistribute super."rope"; + "rosa" = dontDistribute super."rosa"; + "rose-trie" = dontDistribute super."rose-trie"; + "roshask" = dontDistribute super."roshask"; + "rosso" = dontDistribute super."rosso"; + "rot13" = dontDistribute super."rot13"; + "rotating-log" = dontDistribute super."rotating-log"; + "rounding" = dontDistribute super."rounding"; + "roundtrip" = dontDistribute super."roundtrip"; + "roundtrip-aeson" = dontDistribute super."roundtrip-aeson"; + "roundtrip-string" = dontDistribute super."roundtrip-string"; + "roundtrip-xml" = dontDistribute super."roundtrip-xml"; + "route-generator" = dontDistribute super."route-generator"; + "route-planning" = dontDistribute super."route-planning"; + "rowrecord" = dontDistribute super."rowrecord"; + "rpc" = dontDistribute super."rpc"; + "rpc-framework" = dontDistribute super."rpc-framework"; + "rpf" = dontDistribute super."rpf"; + "rpm" = dontDistribute super."rpm"; + "rsagl" = dontDistribute super."rsagl"; + "rsagl-frp" = dontDistribute super."rsagl-frp"; + "rsagl-math" = dontDistribute super."rsagl-math"; + "rspp" = dontDistribute super."rspp"; + "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; + "rss2irc" = dontDistribute super."rss2irc"; + "rtcm" = dontDistribute super."rtcm"; + "rtld" = dontDistribute super."rtld"; + "rtlsdr" = dontDistribute super."rtlsdr"; + "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; + "rtorrent-state" = dontDistribute super."rtorrent-state"; + "rubberband" = dontDistribute super."rubberband"; + "ruby-marshal" = dontDistribute super."ruby-marshal"; + "ruby-qq" = dontDistribute super."ruby-qq"; + "ruff" = dontDistribute super."ruff"; + "ruler" = dontDistribute super."ruler"; + "ruler-core" = dontDistribute super."ruler-core"; + "rungekutta" = dontDistribute super."rungekutta"; + "runghc" = dontDistribute super."runghc"; + "rwlock" = dontDistribute super."rwlock"; + "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; + "safe-access" = dontDistribute super."safe-access"; + "safe-failure" = dontDistribute super."safe-failure"; + "safe-failure-cme" = dontDistribute super."safe-failure-cme"; + "safe-freeze" = dontDistribute super."safe-freeze"; + "safe-globals" = dontDistribute super."safe-globals"; + "safe-lazy-io" = dontDistribute super."safe-lazy-io"; + "safe-length" = dontDistribute super."safe-length"; + "safe-plugins" = dontDistribute super."safe-plugins"; + "safe-printf" = dontDistribute super."safe-printf"; + "safeint" = dontDistribute super."safeint"; + "safer-file-handles" = dontDistribute super."safer-file-handles"; + "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; + "safer-file-handles-text" = dontDistribute super."safer-file-handles-text"; + "saferoute" = dontDistribute super."saferoute"; + "sai-shape-syb" = dontDistribute super."sai-shape-syb"; + "saltine" = dontDistribute super."saltine"; + "saltine-quickcheck" = dontDistribute super."saltine-quickcheck"; + "salvia" = dontDistribute super."salvia"; + "salvia-demo" = dontDistribute super."salvia-demo"; + "salvia-extras" = dontDistribute super."salvia-extras"; + "salvia-protocol" = dontDistribute super."salvia-protocol"; + "salvia-sessions" = dontDistribute super."salvia-sessions"; + "salvia-websocket" = dontDistribute super."salvia-websocket"; + "sample-frame" = dontDistribute super."sample-frame"; + "sample-frame-np" = dontDistribute super."sample-frame-np"; + "sampling" = dontDistribute super."sampling"; + "samtools" = dontDistribute super."samtools"; + "samtools-conduit" = dontDistribute super."samtools-conduit"; + "samtools-enumerator" = dontDistribute super."samtools-enumerator"; + "samtools-iteratee" = dontDistribute super."samtools-iteratee"; + "sandlib" = dontDistribute super."sandlib"; + "sarasvati" = dontDistribute super."sarasvati"; + "sasl" = dontDistribute super."sasl"; + "sat" = dontDistribute super."sat"; + "sat-micro-hs" = dontDistribute super."sat-micro-hs"; + "satchmo" = dontDistribute super."satchmo"; + "satchmo-backends" = dontDistribute super."satchmo-backends"; + "satchmo-examples" = dontDistribute super."satchmo-examples"; + "satchmo-funsat" = dontDistribute super."satchmo-funsat"; + "satchmo-minisat" = dontDistribute super."satchmo-minisat"; + "satchmo-toysat" = dontDistribute super."satchmo-toysat"; + "sbp" = dontDistribute super."sbp"; + "sbvPlugin" = dontDistribute super."sbvPlugin"; + "sc3-rdu" = dontDistribute super."sc3-rdu"; + "scalable-server" = dontDistribute super."scalable-server"; + "scaleimage" = dontDistribute super."scaleimage"; + "scalp-webhooks" = dontDistribute super."scalp-webhooks"; + "scalpel" = doDistribute super."scalpel_0_2_1_1"; + "scan" = dontDistribute super."scan"; + "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scat" = dontDistribute super."scat"; + "scc" = dontDistribute super."scc"; + "scenegraph" = dontDistribute super."scenegraph"; + "scgi" = dontDistribute super."scgi"; + "schedevr" = dontDistribute super."schedevr"; + "schedule-planner" = dontDistribute super."schedule-planner"; + "schedyield" = dontDistribute super."schedyield"; + "scholdoc" = dontDistribute super."scholdoc"; + "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc"; + "scholdoc-texmath" = dontDistribute super."scholdoc-texmath"; + "scholdoc-types" = dontDistribute super."scholdoc-types"; + "schonfinkeling" = dontDistribute super."schonfinkeling"; + "sci-ratio" = dontDistribute super."sci-ratio"; + "science-constants" = dontDistribute super."science-constants"; + "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scion" = dontDistribute super."scion"; + "scion-browser" = dontDistribute super."scion-browser"; + "scons2dot" = dontDistribute super."scons2dot"; + "scope" = dontDistribute super."scope"; + "scope-cairo" = dontDistribute super."scope-cairo"; + "scottish" = dontDistribute super."scottish"; + "scotty" = doDistribute super."scotty_0_10_2"; + "scotty-binding-play" = dontDistribute super."scotty-binding-play"; + "scotty-blaze" = dontDistribute super."scotty-blaze"; + "scotty-cookie" = dontDistribute super."scotty-cookie"; + "scotty-fay" = dontDistribute super."scotty-fay"; + "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-rest" = dontDistribute super."scotty-rest"; + "scotty-session" = dontDistribute super."scotty-session"; + "scotty-tls" = dontDistribute super."scotty-tls"; + "scp-streams" = dontDistribute super."scp-streams"; + "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrobble" = dontDistribute super."scrobble"; + "scroll" = dontDistribute super."scroll"; + "scrz" = dontDistribute super."scrz"; + "scyther-proof" = dontDistribute super."scyther-proof"; + "sde-solver" = dontDistribute super."sde-solver"; + "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; + "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; + "sdl2-compositor" = dontDistribute super."sdl2-compositor"; + "sdl2-image" = dontDistribute super."sdl2-image"; + "sdl2-ttf" = dontDistribute super."sdl2-ttf"; + "sdnv" = dontDistribute super."sdnv"; + "sdr" = dontDistribute super."sdr"; + "seacat" = dontDistribute super."seacat"; + "seal-module" = dontDistribute super."seal-module"; + "search" = dontDistribute super."search"; + "sec" = dontDistribute super."sec"; + "secdh" = dontDistribute super."secdh"; + "seclib" = dontDistribute super."seclib"; + "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; + "secp256k1" = dontDistribute super."secp256k1"; + "secret-santa" = dontDistribute super."secret-santa"; + "secret-sharing" = dontDistribute super."secret-sharing"; + "secrm" = dontDistribute super."secrm"; + "secure-sockets" = dontDistribute super."secure-sockets"; + "sednaDBXML" = dontDistribute super."sednaDBXML"; + "select" = dontDistribute super."select"; + "selectors" = dontDistribute super."selectors"; + "selenium" = dontDistribute super."selenium"; + "selenium-server" = dontDistribute super."selenium-server"; + "selfrestart" = dontDistribute super."selfrestart"; + "selinux" = dontDistribute super."selinux"; + "semaphore-plus" = dontDistribute super."semaphore-plus"; + "semi-iso" = dontDistribute super."semi-iso"; + "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; + "semigroups-actions" = dontDistribute super."semigroups-actions"; + "semiring" = dontDistribute super."semiring"; + "semiring-simple" = dontDistribute super."semiring-simple"; + "semver-range" = dontDistribute super."semver-range"; + "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; + "sensenet" = dontDistribute super."sensenet"; + "sentry" = dontDistribute super."sentry"; + "senza" = dontDistribute super."senza"; + "separated" = dontDistribute super."separated"; + "seqaid" = dontDistribute super."seqaid"; + "seqid" = dontDistribute super."seqid"; + "seqid-streams" = dontDistribute super."seqid-streams"; + "seqloc-datafiles" = dontDistribute super."seqloc-datafiles"; + "sequence" = dontDistribute super."sequence"; + "sequent-core" = dontDistribute super."sequent-core"; + "sequential-index" = dontDistribute super."sequential-index"; + "sequor" = dontDistribute super."sequor"; + "serial" = dontDistribute super."serial"; + "serial-test-generators" = dontDistribute super."serial-test-generators"; + "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; + "serv-wai" = dontDistribute super."serv-wai"; + "servant-cassava" = dontDistribute super."servant-cassava"; + "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-lucid" = dontDistribute super."servant-lucid"; + "servant-mock" = dontDistribute super."servant-mock"; + "servant-pandoc" = dontDistribute super."servant-pandoc"; + "servant-pool" = dontDistribute super."servant-pool"; + "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-response" = dontDistribute super."servant-response"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; + "sessions" = dontDistribute super."sessions"; + "set-cover" = dontDistribute super."set-cover"; + "set-extra" = doDistribute super."set-extra_1_3_2"; + "set-with" = dontDistribute super."set-with"; + "setdown" = dontDistribute super."setdown"; + "setgame" = dontDistribute super."setgame"; + "setops" = dontDistribute super."setops"; + "setters" = dontDistribute super."setters"; + "settings" = dontDistribute super."settings"; + "sexp" = dontDistribute super."sexp"; + "sexp-grammar" = dontDistribute super."sexp-grammar"; + "sexp-show" = dontDistribute super."sexp-show"; + "sexpr" = dontDistribute super."sexpr"; + "sext" = dontDistribute super."sext"; + "sfml-audio" = dontDistribute super."sfml-audio"; + "sfmt" = dontDistribute super."sfmt"; + "sgd" = dontDistribute super."sgd"; + "sgf" = dontDistribute super."sgf"; + "sgrep" = dontDistribute super."sgrep"; + "sha-streams" = dontDistribute super."sha-streams"; + "shadower" = dontDistribute super."shadower"; + "shadowsocks" = dontDistribute super."shadowsocks"; + "shady-gen" = dontDistribute super."shady-gen"; + "shady-graphics" = dontDistribute super."shady-graphics"; + "shake-cabal-build" = dontDistribute super."shake-cabal-build"; + "shake-extras" = dontDistribute super."shake-extras"; + "shake-minify" = dontDistribute super."shake-minify"; + "shake-pack" = dontDistribute super."shake-pack"; + "shake-persist" = dontDistribute super."shake-persist"; + "shaker" = dontDistribute super."shaker"; + "shakespeare-babel" = dontDistribute super."shakespeare-babel"; + "shakespeare-css" = dontDistribute super."shakespeare-css"; + "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; + "shakespeare-js" = dontDistribute super."shakespeare-js"; + "shakespeare-text" = dontDistribute super."shakespeare-text"; + "shana" = dontDistribute super."shana"; + "shapefile" = dontDistribute super."shapefile"; + "shapely-data" = dontDistribute super."shapely-data"; + "sharc-timbre" = dontDistribute super."sharc-timbre"; + "shared-buffer" = dontDistribute super."shared-buffer"; + "shared-fields" = dontDistribute super."shared-fields"; + "shared-memory" = dontDistribute super."shared-memory"; + "sharedio" = dontDistribute super."sharedio"; + "she" = dontDistribute super."she"; + "shelduck" = dontDistribute super."shelduck"; + "shell-escape" = dontDistribute super."shell-escape"; + "shell-monad" = dontDistribute super."shell-monad"; + "shell-pipe" = dontDistribute super."shell-pipe"; + "shellish" = dontDistribute super."shellish"; + "shellmate" = dontDistribute super."shellmate"; + "shelly-extra" = dontDistribute super."shelly-extra"; + "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" = dontDistribute super."simple-log"; + "simple-log-syslog" = dontDistribute super."simple-log-syslog"; + "simple-neural-networks" = dontDistribute super."simple-neural-networks"; + "simple-nix" = dontDistribute super."simple-nix"; + "simple-observer" = dontDistribute super."simple-observer"; + "simple-pascal" = dontDistribute super."simple-pascal"; + "simple-pipe" = dontDistribute super."simple-pipe"; + "simple-rope" = dontDistribute super."simple-rope"; + "simple-server" = dontDistribute super."simple-server"; + "simple-sessions" = dontDistribute super."simple-sessions"; + "simple-sql-parser" = dontDistribute super."simple-sql-parser"; + "simple-stacked-vm" = dontDistribute super."simple-stacked-vm"; + "simple-tabular" = dontDistribute super."simple-tabular"; + "simple-vec3" = dontDistribute super."simple-vec3"; + "simpleargs" = dontDistribute super."simpleargs"; + "simpleirc" = dontDistribute super."simpleirc"; + "simpleirc-lens" = dontDistribute super."simpleirc-lens"; + "simplenote" = dontDistribute super."simplenote"; + "simpleprelude" = dontDistribute super."simpleprelude"; + "simplesmtpclient" = dontDistribute super."simplesmtpclient"; + "simplessh" = dontDistribute super."simplessh"; + "simplest-sqlite" = dontDistribute super."simplest-sqlite"; + "simplex" = dontDistribute super."simplex"; + "simplex-basic" = dontDistribute super."simplex-basic"; + "simseq" = dontDistribute super."simseq"; + "simtreelo" = dontDistribute super."simtreelo"; + "sindre" = dontDistribute super."sindre"; + "singleton-nats" = dontDistribute super."singleton-nats"; + "sink" = dontDistribute super."sink"; + "sirkel" = dontDistribute super."sirkel"; + "sitemap" = dontDistribute super."sitemap"; + "sized" = dontDistribute super."sized"; + "sized-types" = dontDistribute super."sized-types"; + "sized-vector" = dontDistribute super."sized-vector"; + "sizes" = dontDistribute super."sizes"; + "sjsp" = dontDistribute super."sjsp"; + "skeleton" = dontDistribute super."skeleton"; + "skell" = dontDistribute super."skell"; + "skemmtun" = dontDistribute super."skemmtun"; + "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"; + "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; + "slidemews" = dontDistribute super."slidemews"; + "sloane" = dontDistribute super."sloane"; + "slot-lambda" = dontDistribute super."slot-lambda"; + "sloth" = dontDistribute super."sloth"; + "smallarray" = dontDistribute super."smallarray"; + "smallcheck-laws" = dontDistribute super."smallcheck-laws"; + "smallcheck-lens" = dontDistribute super."smallcheck-lens"; + "smallcheck-series" = dontDistribute super."smallcheck-series"; + "smallpt-hs" = dontDistribute super."smallpt-hs"; + "smallstring" = dontDistribute super."smallstring"; + "smaoin" = dontDistribute super."smaoin"; + "smartGroup" = dontDistribute super."smartGroup"; + "smartcheck" = dontDistribute super."smartcheck"; + "smartconstructor" = dontDistribute super."smartconstructor"; + "smartword" = dontDistribute super."smartword"; + "sme" = dontDistribute super."sme"; + "smt-lib" = dontDistribute super."smt-lib"; + "smtlib2" = dontDistribute super."smtlib2"; + "smtp-mail-ng" = dontDistribute super."smtp-mail-ng"; + "smtp2mta" = dontDistribute super."smtp2mta"; + "smtps-gmail" = dontDistribute super."smtps-gmail"; + "snake-game" = dontDistribute super."snake-game"; + "snap-accept" = dontDistribute super."snap-accept"; + "snap-app" = dontDistribute super."snap-app"; + "snap-auth-cli" = dontDistribute super."snap-auth-cli"; + "snap-blaze" = dontDistribute super."snap-blaze"; + "snap-blaze-clay" = dontDistribute super."snap-blaze-clay"; + "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities"; + "snap-cors" = dontDistribute super."snap-cors"; + "snap-elm" = dontDistribute super."snap-elm"; + "snap-error-collector" = dontDistribute super."snap-error-collector"; + "snap-extras" = dontDistribute super."snap-extras"; + "snap-language" = dontDistribute super."snap-language"; + "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic"; + "snap-loader-static" = dontDistribute super."snap-loader-static"; + "snap-predicates" = dontDistribute super."snap-predicates"; + "snap-testing" = dontDistribute super."snap-testing"; + "snap-utils" = dontDistribute super."snap-utils"; + "snap-web-routes" = dontDistribute super."snap-web-routes"; + "snaplet-acid-state" = dontDistribute super."snaplet-acid-state"; + "snaplet-actionlog" = dontDistribute super."snaplet-actionlog"; + "snaplet-amqp" = dontDistribute super."snaplet-amqp"; + "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid"; + "snaplet-coffee" = dontDistribute super."snaplet-coffee"; + "snaplet-css-min" = dontDistribute super."snaplet-css-min"; + "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; + "snaplet-hasql" = dontDistribute super."snaplet-hasql"; + "snaplet-haxl" = dontDistribute super."snaplet-haxl"; + "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; + "snaplet-hslogger" = dontDistribute super."snaplet-hslogger"; + "snaplet-i18n" = dontDistribute super."snaplet-i18n"; + "snaplet-influxdb" = dontDistribute super."snaplet-influxdb"; + "snaplet-lss" = dontDistribute super."snaplet-lss"; + "snaplet-mandrill" = dontDistribute super."snaplet-mandrill"; + "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB"; + "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic"; + "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple"; + "snaplet-oauth" = dontDistribute super."snaplet-oauth"; + "snaplet-persistent" = dontDistribute super."snaplet-persistent"; + "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple"; + "snaplet-postmark" = dontDistribute super."snaplet-postmark"; + "snaplet-purescript" = dontDistribute super."snaplet-purescript"; + "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha"; + "snaplet-redis" = dontDistribute super."snaplet-redis"; + "snaplet-redson" = dontDistribute super."snaplet-redson"; + "snaplet-rest" = dontDistribute super."snaplet-rest"; + "snaplet-riak" = dontDistribute super."snaplet-riak"; + "snaplet-sass" = dontDistribute super."snaplet-sass"; + "snaplet-sedna" = dontDistribute super."snaplet-sedna"; + "snaplet-ses-html" = dontDistribute super."snaplet-ses-html"; + "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple"; + "snaplet-stripe" = dontDistribute super."snaplet-stripe"; + "snaplet-tasks" = dontDistribute super."snaplet-tasks"; + "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions"; + "snaplet-wordpress" = dontDistribute super."snaplet-wordpress"; + "snappy" = dontDistribute super."snappy"; + "snappy-conduit" = dontDistribute super."snappy-conduit"; + "snappy-framing" = dontDistribute super."snappy-framing"; + "snappy-iteratee" = dontDistribute super."snappy-iteratee"; + "sndfile-enumerators" = dontDistribute super."sndfile-enumerators"; + "sneakyterm" = dontDistribute super."sneakyterm"; + "sneathlane-haste" = dontDistribute super."sneathlane-haste"; + "snippet-extractor" = dontDistribute super."snippet-extractor"; + "snm" = dontDistribute super."snm"; + "snow-white" = dontDistribute super."snow-white"; + "snowball" = dontDistribute super."snowball"; + "snowglobe" = dontDistribute super."snowglobe"; + "sock2stream" = dontDistribute super."sock2stream"; + "sockaddr" = dontDistribute super."sockaddr"; + "socket-activation" = dontDistribute super."socket-activation"; + "socket-sctp" = dontDistribute super."socket-sctp"; + "socketio" = dontDistribute super."socketio"; + "socketson" = dontDistribute super."socketson"; + "soegtk" = dontDistribute super."soegtk"; + "sonic-visualiser" = dontDistribute super."sonic-visualiser"; + "sophia" = dontDistribute super."sophia"; + "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; + "sorted" = dontDistribute super."sorted"; + "sorting" = dontDistribute super."sorting"; + "sorty" = dontDistribute super."sorty"; + "sound-collage" = dontDistribute super."sound-collage"; + "sounddelay" = dontDistribute super."sounddelay"; + "source-code-server" = dontDistribute super."source-code-server"; + "sousit" = dontDistribute super."sousit"; + "sox" = dontDistribute super."sox"; + "soxlib" = dontDistribute super."soxlib"; + "soyuz" = dontDistribute super."soyuz"; + "spacefill" = dontDistribute super."spacefill"; + "spacepart" = dontDistribute super."spacepart"; + "spaceprobe" = dontDistribute super."spaceprobe"; + "spanout" = dontDistribute super."spanout"; + "sparse" = dontDistribute super."sparse"; + "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; + "sparsebit" = dontDistribute super."sparsebit"; + "sparsecheck" = dontDistribute super."sparsecheck"; + "sparser" = dontDistribute super."sparser"; + "spata" = dontDistribute super."spata"; + "spatial-math" = dontDistribute super."spatial-math"; + "spawn" = dontDistribute super."spawn"; + "spe" = dontDistribute super."spe"; + "special-functors" = dontDistribute super."special-functors"; + "special-keys" = dontDistribute super."special-keys"; + "specialize-th" = dontDistribute super."specialize-th"; + "species" = dontDistribute super."species"; + "speculation-transformers" = dontDistribute super."speculation-transformers"; + "spelling-suggest" = dontDistribute super."spelling-suggest"; + "sphero" = dontDistribute super."sphero"; + "sphinx-cli" = dontDistribute super."sphinx-cli"; + "spice" = dontDistribute super."spice"; + "spike" = dontDistribute super."spike"; + "spine" = dontDistribute super."spine"; + "spir-v" = dontDistribute super."spir-v"; + "splay" = dontDistribute super."splay"; + "splaytree" = dontDistribute super."splaytree"; + "spline3" = dontDistribute super."spline3"; + "splines" = dontDistribute super."splines"; + "split-channel" = dontDistribute super."split-channel"; + "split-record" = dontDistribute super."split-record"; + "split-tchan" = dontDistribute super."split-tchan"; + "splitter" = dontDistribute super."splitter"; + "splot" = dontDistribute super."splot"; + "spool" = dontDistribute super."spool"; + "spoonutil" = dontDistribute super."spoonutil"; + "spoty" = dontDistribute super."spoty"; + "spreadsheet" = dontDistribute super."spreadsheet"; + "spritz" = dontDistribute super."spritz"; + "spsa" = dontDistribute super."spsa"; + "spy" = dontDistribute super."spy"; + "sql-simple" = dontDistribute super."sql-simple"; + "sql-simple-mysql" = dontDistribute super."sql-simple-mysql"; + "sql-simple-pool" = dontDistribute super."sql-simple-pool"; + "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql"; + "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite"; + "sql-words" = dontDistribute super."sql-words"; + "sqlite" = dontDistribute super."sqlite"; + "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed"; + "sqlvalue-list" = dontDistribute super."sqlvalue-list"; + "squeeze" = dontDistribute super."squeeze"; + "sr-extra" = dontDistribute super."sr-extra"; + "srcinst" = dontDistribute super."srcinst"; + "srec" = dontDistribute super."srec"; + "sscgi" = dontDistribute super."sscgi"; + "ssh" = dontDistribute super."ssh"; + "sshd-lint" = dontDistribute super."sshd-lint"; + "sshtun" = dontDistribute super."sshtun"; + "sssp" = dontDistribute super."sssp"; + "sstable" = dontDistribute super."sstable"; + "ssv" = dontDistribute super."ssv"; + "stable-heap" = dontDistribute super."stable-heap"; + "stable-maps" = dontDistribute super."stable-maps"; + "stable-marriage" = dontDistribute super."stable-marriage"; + "stable-memo" = dontDistribute super."stable-memo"; + "stable-tree" = dontDistribute super."stable-tree"; + "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; + "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; + "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; + "standalone-haddock" = dontDistribute super."standalone-haddock"; + "star-to-star" = dontDistribute super."star-to-star"; + "star-to-star-contra" = dontDistribute super."star-to-star-contra"; + "starling" = dontDistribute super."starling"; + "starrover2" = dontDistribute super."starrover2"; + "stash" = dontDistribute super."stash"; + "state" = dontDistribute super."state"; + "state-record" = dontDistribute super."state-record"; + "statechart" = dontDistribute super."statechart"; + "stateful-mtl" = dontDistribute super."stateful-mtl"; + "statethread" = dontDistribute super."statethread"; + "statgrab" = dontDistribute super."statgrab"; + "static-hash" = dontDistribute super."static-hash"; + "static-resources" = dontDistribute super."static-resources"; + "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; + "statistics-fusion" = dontDistribute super."statistics-fusion"; + "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; + "stats" = dontDistribute super."stats"; + "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; + "statsd-datadog" = dontDistribute super."statsd-datadog"; + "statvfs" = dontDistribute super."statvfs"; + "stb-image" = dontDistribute super."stb-image"; + "stb-truetype" = dontDistribute super."stb-truetype"; + "stdata" = dontDistribute super."stdata"; + "stdf" = dontDistribute super."stdf"; + "steambrowser" = dontDistribute super."steambrowser"; + "steeloverseer" = dontDistribute super."steeloverseer"; + "stemmer" = dontDistribute super."stemmer"; + "step-function" = dontDistribute super."step-function"; + "stepwise" = dontDistribute super."stepwise"; + "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; + "stitch" = dontDistribute super."stitch"; + "stm-channelize" = dontDistribute super."stm-channelize"; + "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-firehose" = dontDistribute super."stm-firehose"; + "stm-io-hooks" = dontDistribute super."stm-io-hooks"; + "stm-lifted" = dontDistribute super."stm-lifted"; + "stm-linkedlist" = dontDistribute super."stm-linkedlist"; + "stm-orelse-io" = dontDistribute super."stm-orelse-io"; + "stm-promise" = dontDistribute super."stm-promise"; + "stm-queue-extras" = dontDistribute super."stm-queue-extras"; + "stm-sbchan" = dontDistribute super."stm-sbchan"; + "stm-split" = dontDistribute super."stm-split"; + "stm-tlist" = dontDistribute super."stm-tlist"; + "stmcontrol" = dontDistribute super."stmcontrol"; + "stomp-conduit" = dontDistribute super."stomp-conduit"; + "stomp-patterns" = dontDistribute super."stomp-patterns"; + "stomp-queue" = dontDistribute super."stomp-queue"; + "stompl" = dontDistribute super."stompl"; + "stopwatch" = dontDistribute super."stopwatch"; + "storable" = dontDistribute super."storable"; + "storable-record" = dontDistribute super."storable-record"; + "storable-static-array" = dontDistribute super."storable-static-array"; + "storable-tuple" = dontDistribute super."storable-tuple"; + "storablevector" = dontDistribute super."storablevector"; + "storablevector-carray" = dontDistribute super."storablevector-carray"; + "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; + "str" = dontDistribute super."str"; + "stratum-tool" = dontDistribute super."stratum-tool"; + "stream-fusion" = dontDistribute super."stream-fusion"; + "stream-monad" = dontDistribute super."stream-monad"; + "streamed" = dontDistribute super."streamed"; + "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; + "streaming-utils" = dontDistribute super."streaming-utils"; + "streaming-wai" = dontDistribute super."streaming-wai"; + "strict-base-types" = doDistribute super."strict-base-types_0_4_0"; + "strict-concurrency" = dontDistribute super."strict-concurrency"; + "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin"; + "strict-identity" = dontDistribute super."strict-identity"; + "strict-io" = dontDistribute super."strict-io"; + "strictify" = dontDistribute super."strictify"; + "strictly" = dontDistribute super."strictly"; + "string" = dontDistribute super."string"; + "string-conv" = dontDistribute super."string-conv"; + "string-convert" = dontDistribute super."string-convert"; + "string-quote" = dontDistribute super."string-quote"; + "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; + "stringlike" = dontDistribute super."stringlike"; + "stringprep" = dontDistribute super."stringprep"; + "strings" = dontDistribute super."strings"; + "stringtable-atom" = dontDistribute super."stringtable-atom"; + "strio" = dontDistribute super."strio"; + "stripe" = dontDistribute super."stripe"; + "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_2"; + "strive" = dontDistribute super."strive"; + "strptime" = dontDistribute super."strptime"; + "structs" = dontDistribute super."structs"; + "structural-induction" = dontDistribute super."structural-induction"; + "structured-haskell-mode" = dontDistribute super."structured-haskell-mode"; + "structured-mongoDB" = dontDistribute super."structured-mongoDB"; + "structures" = dontDistribute super."structures"; + "stunclient" = dontDistribute super."stunclient"; + "stunts" = dontDistribute super."stunts"; + "stylized" = dontDistribute super."stylized"; + "sub-state" = dontDistribute super."sub-state"; + "subhask" = dontDistribute super."subhask"; + "subleq-toolchain" = dontDistribute super."subleq-toolchain"; + "subnet" = dontDistribute super."subnet"; + "subtitleParser" = dontDistribute super."subtitleParser"; + "subtitles" = dontDistribute super."subtitles"; + "suffixarray" = dontDistribute super."suffixarray"; + "suffixtree" = dontDistribute super."suffixtree"; + "sugarhaskell" = dontDistribute super."sugarhaskell"; + "suitable" = dontDistribute super."suitable"; + "sump" = dontDistribute super."sump"; + "sundown" = dontDistribute super."sundown"; + "sunlight" = dontDistribute super."sunlight"; + "sunroof-compiler" = dontDistribute super."sunroof-compiler"; + "sunroof-examples" = dontDistribute super."sunroof-examples"; + "sunroof-server" = dontDistribute super."sunroof-server"; + "super-user-spark" = dontDistribute super."super-user-spark"; + "supercollider-ht" = dontDistribute super."supercollider-ht"; + "supercollider-midi" = dontDistribute super."supercollider-midi"; + "superdoc" = dontDistribute super."superdoc"; + "supero" = dontDistribute super."supero"; + "supervisor" = dontDistribute super."supervisor"; + "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; + "svg2q" = dontDistribute super."svg2q"; + "svgcairo" = dontDistribute super."svgcairo"; + "svgutils" = dontDistribute super."svgutils"; + "svm" = dontDistribute super."svm"; + "svm-light-utils" = dontDistribute super."svm-light-utils"; + "svm-simple" = dontDistribute super."svm-simple"; + "svndump" = dontDistribute super."svndump"; + "swagger2" = doDistribute super."swagger2_1_2_1"; + "swapper" = dontDistribute super."swapper"; + "swearjure" = dontDistribute super."swearjure"; + "swf" = dontDistribute super."swf"; + "swift-lda" = dontDistribute super."swift-lda"; + "swish" = dontDistribute super."swish"; + "sws" = dontDistribute super."sws"; + "syb-extras" = dontDistribute super."syb-extras"; + "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; + "sylvia" = dontDistribute super."sylvia"; + "sym" = dontDistribute super."sym"; + "sym-plot" = dontDistribute super."sym-plot"; + "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; + "sync" = dontDistribute super."sync"; + "synchronous-channels" = dontDistribute super."synchronous-channels"; + "syncthing-hs" = dontDistribute super."syncthing-hs"; + "synt" = dontDistribute super."synt"; + "syntactic" = dontDistribute super."syntactic"; + "syntactical" = dontDistribute super."syntactical"; + "syntax" = dontDistribute super."syntax"; + "syntax-attoparsec" = dontDistribute super."syntax-attoparsec"; + "syntax-example" = dontDistribute super."syntax-example"; + "syntax-example-json" = dontDistribute super."syntax-example-json"; + "syntax-pretty" = dontDistribute super."syntax-pretty"; + "syntax-printer" = dontDistribute super."syntax-printer"; + "syntax-trees" = dontDistribute super."syntax-trees"; + "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn"; + "synthesizer" = dontDistribute super."synthesizer"; + "synthesizer-alsa" = dontDistribute super."synthesizer-alsa"; + "synthesizer-core" = dontDistribute super."synthesizer-core"; + "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional"; + "synthesizer-filter" = dontDistribute super."synthesizer-filter"; + "synthesizer-inference" = dontDistribute super."synthesizer-inference"; + "synthesizer-llvm" = dontDistribute super."synthesizer-llvm"; + "synthesizer-midi" = dontDistribute super."synthesizer-midi"; + "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient"; + "sys-process" = dontDistribute super."sys-process"; + "system-canonicalpath" = dontDistribute super."system-canonicalpath"; + "system-command" = dontDistribute super."system-command"; + "system-gpio" = dontDistribute super."system-gpio"; + "system-inotify" = dontDistribute super."system-inotify"; + "system-lifted" = dontDistribute super."system-lifted"; + "system-random-effect" = dontDistribute super."system-random-effect"; + "system-time-monotonic" = dontDistribute super."system-time-monotonic"; + "system-util" = dontDistribute super."system-util"; + "system-uuid" = dontDistribute super."system-uuid"; + "systemd" = dontDistribute super."systemd"; + "t-regex" = dontDistribute super."t-regex"; + "ta" = dontDistribute super."ta"; + "table" = dontDistribute super."table"; + "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-transformer" = dontDistribute super."tagged-transformer"; + "tagging" = dontDistribute super."tagging"; + "taggy" = dontDistribute super."taggy"; + "taggy-lens" = dontDistribute super."taggy-lens"; + "taglib" = dontDistribute super."taglib"; + "taglib-api" = dontDistribute super."taglib-api"; + "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "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-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; + "tasty-integrate" = dontDistribute super."tasty-integrate"; + "tasty-laws" = dontDistribute super."tasty-laws"; + "tasty-lens" = dontDistribute super."tasty-lens"; + "tasty-program" = dontDistribute super."tasty-program"; + "tateti-tateti" = dontDistribute super."tateti-tateti"; + "tau" = dontDistribute super."tau"; + "tbox" = dontDistribute super."tbox"; + "tcache-AWS" = dontDistribute super."tcache-AWS"; + "tccli" = dontDistribute super."tccli"; + "tce-conf" = dontDistribute super."tce-conf"; + "tconfig" = dontDistribute super."tconfig"; + "tcp" = dontDistribute super."tcp"; + "tdd-util" = dontDistribute super."tdd-util"; + "tdoc" = dontDistribute super."tdoc"; + "teams" = dontDistribute super."teams"; + "teeth" = dontDistribute super."teeth"; + "telegram" = dontDistribute super."telegram"; + "telegram-api" = dontDistribute super."telegram-api"; + "teleport" = dontDistribute super."teleport"; + "template-default" = dontDistribute super."template-default"; + "template-haskell-util" = dontDistribute super."template-haskell-util"; + "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; + "templatepg" = dontDistribute super."templatepg"; + "templater" = dontDistribute super."templater"; + "tempodb" = dontDistribute super."tempodb"; + "temporal-csound" = dontDistribute super."temporal-csound"; + "temporal-media" = dontDistribute super."temporal-media"; + "temporal-music-notation" = dontDistribute super."temporal-music-notation"; + "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo"; + "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western"; + "temporary-resourcet" = dontDistribute super."temporary-resourcet"; + "tempus" = dontDistribute super."tempus"; + "tempus-fugit" = dontDistribute super."tempus-fugit"; + "tensor" = dontDistribute super."tensor"; + "term-rewriting" = dontDistribute super."term-rewriting"; + "termbox-bindings" = dontDistribute super."termbox-bindings"; + "termination-combinators" = dontDistribute super."termination-combinators"; + "terminfo" = doDistribute super."terminfo_0_4_0_2"; + "terminfo-hs" = dontDistribute super."terminfo-hs"; + "termplot" = dontDistribute super."termplot"; + "terntup" = dontDistribute super."terntup"; + "terrahs" = dontDistribute super."terrahs"; + "tersmu" = dontDistribute super."tersmu"; + "test-framework-doctest" = dontDistribute super."test-framework-doctest"; + "test-framework-golden" = dontDistribute super."test-framework-golden"; + "test-framework-program" = dontDistribute super."test-framework-program"; + "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck"; + "test-framework-sandbox" = dontDistribute super."test-framework-sandbox"; + "test-framework-skip" = dontDistribute super."test-framework-skip"; + "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat"; + "test-invariant" = dontDistribute super."test-invariant"; + "test-pkg" = dontDistribute super."test-pkg"; + "test-sandbox" = dontDistribute super."test-sandbox"; + "test-sandbox-compose" = dontDistribute super."test-sandbox-compose"; + "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit"; + "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; + "test-shouldbe" = dontDistribute super."test-shouldbe"; + "testPkg" = dontDistribute super."testPkg"; + "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; + "testloop" = dontDistribute super."testloop"; + "testpack" = dontDistribute super."testpack"; + "testpattern" = dontDistribute super."testpattern"; + "testrunner" = dontDistribute super."testrunner"; + "tetris" = dontDistribute super."tetris"; + "tex2txt" = dontDistribute super."tex2txt"; + "texrunner" = dontDistribute super."texrunner"; + "text-and-plots" = dontDistribute super."text-and-plots"; + "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-translit" = dontDistribute super."text-icu-translit"; + "text-json-qq" = dontDistribute super."text-json-qq"; + "text-latin1" = dontDistribute super."text-latin1"; + "text-ldap" = dontDistribute super."text-ldap"; + "text-locale-encoding" = dontDistribute super."text-locale-encoding"; + "text-normal" = dontDistribute super."text-normal"; + "text-position" = dontDistribute super."text-position"; + "text-postgresql" = dontDistribute super."text-postgresql"; + "text-printer" = dontDistribute super."text-printer"; + "text-regex-replace" = dontDistribute super."text-regex-replace"; + "text-region" = dontDistribute super."text-region"; + "text-register-machine" = dontDistribute super."text-register-machine"; + "text-render" = dontDistribute super."text-render"; + "text-show-instances" = dontDistribute super."text-show-instances"; + "text-stream-decode" = dontDistribute super."text-stream-decode"; + "text-utf7" = dontDistribute super."text-utf7"; + "text-xml-generic" = dontDistribute super."text-xml-generic"; + "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text1" = dontDistribute super."text1"; + "textPlot" = dontDistribute super."textPlot"; + "textmatetags" = dontDistribute super."textmatetags"; + "textocat-api" = dontDistribute super."textocat-api"; + "texts" = dontDistribute super."texts"; + "textual" = dontDistribute super."textual"; + "tfp" = dontDistribute super."tfp"; + "tfp-th" = dontDistribute super."tfp-th"; + "tftp" = dontDistribute super."tftp"; + "tga" = dontDistribute super."tga"; + "th-alpha" = dontDistribute super."th-alpha"; + "th-build" = dontDistribute super."th-build"; + "th-cas" = dontDistribute super."th-cas"; + "th-context" = dontDistribute super."th-context"; + "th-fold" = dontDistribute super."th-fold"; + "th-inline-io-action" = dontDistribute super."th-inline-io-action"; + "th-instance-reification" = dontDistribute super."th-instance-reification"; + "th-instances" = dontDistribute super."th-instances"; + "th-kinds" = dontDistribute super."th-kinds"; + "th-kinds-fork" = dontDistribute super."th-kinds-fork"; + "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-printf" = dontDistribute super."th-printf"; + "th-sccs" = dontDistribute super."th-sccs"; + "th-traced" = dontDistribute super."th-traced"; + "th-typegraph" = dontDistribute super."th-typegraph"; + "themoviedb" = dontDistribute super."themoviedb"; + "themplate" = dontDistribute super."themplate"; + "theoremquest" = dontDistribute super."theoremquest"; + "theoremquest-client" = dontDistribute super."theoremquest-client"; + "thespian" = dontDistribute super."thespian"; + "theta-functions" = dontDistribute super."theta-functions"; + "thih" = dontDistribute super."thih"; + "thimk" = dontDistribute super."thimk"; + "thorn" = dontDistribute super."thorn"; + "thread-local-storage" = dontDistribute super."thread-local-storage"; + "threadPool" = dontDistribute super."threadPool"; + "threadmanager" = dontDistribute super."threadmanager"; + "threads-pool" = dontDistribute super."threads-pool"; + "threads-supervisor" = dontDistribute super."threads-supervisor"; + "threadscope" = dontDistribute super."threadscope"; + "threefish" = dontDistribute super."threefish"; + "threepenny-gui" = dontDistribute super."threepenny-gui"; + "thrift" = dontDistribute super."thrift"; + "thrist" = dontDistribute super."thrist"; + "throttle" = dontDistribute super."throttle"; + "thumbnail" = dontDistribute super."thumbnail"; + "tianbar" = dontDistribute super."tianbar"; + "tic-tac-toe" = dontDistribute super."tic-tac-toe"; + "tickle" = dontDistribute super."tickle"; + "tictactoe3d" = dontDistribute super."tictactoe3d"; + "tidal" = dontDistribute super."tidal"; + "tidal-midi" = dontDistribute super."tidal-midi"; + "tidal-vis" = dontDistribute super."tidal-vis"; + "tie-knot" = dontDistribute super."tie-knot"; + "tiempo" = dontDistribute super."tiempo"; + "tiger" = dontDistribute super."tiger"; + "tight-apply" = dontDistribute super."tight-apply"; + "tightrope" = dontDistribute super."tightrope"; + "tighttp" = dontDistribute super."tighttp"; + "tilings" = dontDistribute super."tilings"; + "timberc" = dontDistribute super."timberc"; + "time-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-patterns" = dontDistribute super."time-patterns"; + "time-qq" = dontDistribute super."time-qq"; + "time-recurrence" = dontDistribute super."time-recurrence"; + "time-series" = dontDistribute super."time-series"; + "time-w3c" = dontDistribute super."time-w3c"; + "timecalc" = dontDistribute super."timecalc"; + "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; + "timemap" = dontDistribute super."timemap"; + "timeout" = dontDistribute super."timeout"; + "timeout-control" = dontDistribute super."timeout-control"; + "timeout-with-results" = dontDistribute super."timeout-with-results"; + "timeparsers" = dontDistribute super."timeparsers"; + "timeplot" = dontDistribute super."timeplot"; + "timers" = dontDistribute super."timers"; + "timers-updatable" = dontDistribute super."timers-updatable"; + "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; + "timestamper" = dontDistribute super."timestamper"; + "timezone-olson-th" = dontDistribute super."timezone-olson-th"; + "timing-convenience" = dontDistribute super."timing-convenience"; + "tinyMesh" = dontDistribute super."tinyMesh"; + "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"; + "tracker" = dontDistribute super."tracker"; + "trajectory" = dontDistribute super."trajectory"; + "transactional-events" = dontDistribute super."transactional-events"; + "transf" = dontDistribute super."transf"; + "transformations" = dontDistribute super."transformations"; + "transformers-abort" = dontDistribute super."transformers-abort"; + "transformers-compose" = dontDistribute super."transformers-compose"; + "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-free" = dontDistribute super."transformers-free"; + "transformers-runnable" = dontDistribute super."transformers-runnable"; + "transformers-supply" = dontDistribute super."transformers-supply"; + "transient" = dontDistribute super."transient"; + "translatable-intset" = dontDistribute super."translatable-intset"; + "translate" = dontDistribute super."translate"; + "travis" = dontDistribute super."travis"; + "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; + "trawl" = dontDistribute super."trawl"; + "traypoweroff" = dontDistribute super."traypoweroff"; + "tree-fun" = dontDistribute super."tree-fun"; + "tree-monad" = dontDistribute super."tree-monad"; + "treemap-html" = dontDistribute super."treemap-html"; + "treemap-html-tools" = dontDistribute super."treemap-html-tools"; + "treersec" = dontDistribute super."treersec"; + "treeviz" = dontDistribute super."treeviz"; + "tremulous-query" = dontDistribute super."tremulous-query"; + "trhsx" = dontDistribute super."trhsx"; + "triangulation" = dontDistribute super."triangulation"; + "trimpolya" = dontDistribute super."trimpolya"; + "tripLL" = dontDistribute super."tripLL"; + "trivia" = dontDistribute super."trivia"; + "trivial-constraint" = dontDistribute super."trivial-constraint"; + "tropical" = dontDistribute super."tropical"; + "truelevel" = dontDistribute super."truelevel"; + "trurl" = dontDistribute super."trurl"; + "truthful" = dontDistribute super."truthful"; + "tsession" = dontDistribute super."tsession"; + "tsession-happstack" = dontDistribute super."tsession-happstack"; + "tskiplist" = dontDistribute super."tskiplist"; + "tslib" = dontDistribute super."tslib"; + "tslogger" = dontDistribute super."tslogger"; + "tsp-viz" = dontDistribute super."tsp-viz"; + "tsparse" = dontDistribute super."tsparse"; + "tst" = dontDistribute super."tst"; + "tsvsql" = dontDistribute super."tsvsql"; + "tttool" = doDistribute super."tttool_1_5_1"; + "tubes" = dontDistribute super."tubes"; + "tuntap" = dontDistribute super."tuntap"; + "tup-functor" = dontDistribute super."tup-functor"; + "tuple" = dontDistribute super."tuple"; + "tuple-gen" = dontDistribute super."tuple-gen"; + "tuple-generic" = dontDistribute super."tuple-generic"; + "tuple-hlist" = dontDistribute super."tuple-hlist"; + "tuple-lenses" = dontDistribute super."tuple-lenses"; + "tuple-morph" = dontDistribute super."tuple-morph"; + "tupleinstances" = dontDistribute super."tupleinstances"; + "turing" = dontDistribute super."turing"; + "turing-music" = dontDistribute super."turing-music"; + "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; + "turni" = dontDistribute super."turni"; + "turtle-options" = dontDistribute super."turtle-options"; + "tweak" = dontDistribute super."tweak"; + "twee" = dontDistribute super."twee"; + "twentefp" = dontDistribute super."twentefp"; + "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; + "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees"; + "twentefp-graphs" = dontDistribute super."twentefp-graphs"; + "twentefp-number" = dontDistribute super."twentefp-number"; + "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; + "twentefp-trees" = dontDistribute super."twentefp-trees"; + "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "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-natural" = dontDistribute super."type-natural"; + "type-ord" = dontDistribute super."type-ord"; + "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; + "type-prelude" = dontDistribute super."type-prelude"; + "type-settheory" = dontDistribute super."type-settheory"; + "type-spine" = dontDistribute super."type-spine"; + "type-structure" = dontDistribute super."type-structure"; + "type-sub-th" = dontDistribute super."type-sub-th"; + "type-unary" = dontDistribute super."type-unary"; + "typeable-th" = dontDistribute super."typeable-th"; + "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; + "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; + "typedquery" = dontDistribute super."typedquery"; + "typehash" = dontDistribute super."typehash"; + "typelevel" = dontDistribute super."typelevel"; + "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typeof" = dontDistribute super."typeof"; + "typeparams" = dontDistribute super."typeparams"; + "typesafe-endian" = dontDistribute super."typesafe-endian"; + "typescript-docs" = dontDistribute super."typescript-docs"; + "typical" = dontDistribute super."typical"; + "typography-geometry" = dontDistribute super."typography-geometry"; + "uAgda" = dontDistribute super."uAgda"; + "ua-parser" = dontDistribute super."ua-parser"; + "uacpid" = dontDistribute super."uacpid"; + "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"; + "ungadtagger" = dontDistribute super."ungadtagger"; + "uni-events" = dontDistribute super."uni-events"; + "uni-graphs" = dontDistribute super."uni-graphs"; + "uni-htk" = dontDistribute super."uni-htk"; + "uni-posixutil" = dontDistribute super."uni-posixutil"; + "uni-reactor" = dontDistribute super."uni-reactor"; + "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph"; + "uni-util" = dontDistribute super."uni-util"; + "unicode" = dontDistribute super."unicode"; + "unicode-names" = dontDistribute super."unicode-names"; + "unicode-normalization" = dontDistribute super."unicode-normalization"; + "unicode-prelude" = dontDistribute super."unicode-prelude"; + "unicode-properties" = dontDistribute super."unicode-properties"; + "unicode-show" = dontDistribute super."unicode-show"; + "unicode-symbols" = dontDistribute super."unicode-symbols"; + "unicoder" = dontDistribute super."unicoder"; + "uniform-io" = dontDistribute super."uniform-io"; + "uniform-pair" = dontDistribute super."uniform-pair"; + "union-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"; + "units" = dontDistribute super."units"; + "units-attoparsec" = dontDistribute super."units-attoparsec"; + "units-defs" = dontDistribute super."units-defs"; + "units-parser" = dontDistribute super."units-parser"; + "unittyped" = dontDistribute super."unittyped"; + "universal-binary" = dontDistribute super."universal-binary"; + "universe-th" = dontDistribute super."universe-th"; + "unix-fcntl" = dontDistribute super."unix-fcntl"; + "unix-handle" = dontDistribute super."unix-handle"; + "unix-io-extra" = dontDistribute super."unix-io-extra"; + "unix-memory" = dontDistribute super."unix-memory"; + "unix-process-conduit" = dontDistribute super."unix-process-conduit"; + "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = dontDistribute super."unlambda"; + "unlit" = dontDistribute super."unlit"; + "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; + "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; + "unpack-funcs" = dontDistribute super."unpack-funcs"; + "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; + "unsafe" = dontDistribute super."unsafe"; + "unsafe-promises" = dontDistribute super."unsafe-promises"; + "unsafely" = dontDistribute super."unsafely"; + "unsafeperformst" = dontDistribute super."unsafeperformst"; + "unscramble" = dontDistribute super."unscramble"; + "unusable-pkg" = dontDistribute super."unusable-pkg"; + "uom-plugin" = dontDistribute super."uom-plugin"; + "up" = dontDistribute super."up"; + "up-grade" = dontDistribute super."up-grade"; + "uploadcare" = dontDistribute super."uploadcare"; + "upskirt" = dontDistribute super."upskirt"; + "ureader" = dontDistribute super."ureader"; + "urembed" = dontDistribute super."urembed"; + "uri" = dontDistribute super."uri"; + "uri-bytestring" = doDistribute super."uri-bytestring_0_1_9_2"; + "uri-conduit" = dontDistribute super."uri-conduit"; + "uri-enumerator" = dontDistribute super."uri-enumerator"; + "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; + "uri-template" = dontDistribute super."uri-template"; + "url-generic" = dontDistribute super."url-generic"; + "urlcheck" = dontDistribute super."urlcheck"; + "urldecode" = dontDistribute super."urldecode"; + "urldisp-happstack" = dontDistribute super."urldisp-happstack"; + "urlencoded" = dontDistribute super."urlencoded"; + "urn" = dontDistribute super."urn"; + "urxml" = dontDistribute super."urxml"; + "usb" = dontDistribute super."usb"; + "usb-enumerator" = dontDistribute super."usb-enumerator"; + "usb-hid" = dontDistribute super."usb-hid"; + "usb-id-database" = dontDistribute super."usb-id-database"; + "usb-iteratee" = dontDistribute super."usb-iteratee"; + "usb-safe" = dontDistribute super."usb-safe"; + "users" = doDistribute super."users_0_4_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_4_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0"; + "users-test" = doDistribute super."users-test_0_4_0_0"; + "utc" = dontDistribute super."utc"; + "utf8-env" = dontDistribute super."utf8-env"; + "utf8-prelude" = dontDistribute super."utf8-prelude"; + "uu-cco" = dontDistribute super."uu-cco"; + "uu-cco-examples" = dontDistribute super."uu-cco-examples"; + "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing"; + "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib"; + "uu-options" = dontDistribute super."uu-options"; + "uu-tc" = dontDistribute super."uu-tc"; + "uuagc" = dontDistribute super."uuagc"; + "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap"; + "uuagc-cabal" = dontDistribute super."uuagc-cabal"; + "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; + "uuagd" = dontDistribute super."uuagd"; + "uuid-aeson" = dontDistribute super."uuid-aeson"; + "uuid-le" = dontDistribute super."uuid-le"; + "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uulib" = dontDistribute super."uulib"; + "uvector" = dontDistribute super."uvector"; + "uvector-algorithms" = dontDistribute super."uvector-algorithms"; + "uxadt" = dontDistribute super."uxadt"; + "uzbl-with-source" = dontDistribute super."uzbl-with-source"; + "v4l2" = dontDistribute super."v4l2"; + "v4l2-examples" = dontDistribute super."v4l2-examples"; + "vacuum" = dontDistribute super."vacuum"; + "vacuum-cairo" = dontDistribute super."vacuum-cairo"; + "vacuum-graphviz" = dontDistribute super."vacuum-graphviz"; + "vacuum-opengl" = dontDistribute super."vacuum-opengl"; + "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph"; + "vado" = dontDistribute super."vado"; + "valid-names" = dontDistribute super."valid-names"; + "validate" = dontDistribute super."validate"; + "validated-literals" = dontDistribute super."validated-literals"; + "validations" = dontDistribute super."validations"; + "value-supply" = dontDistribute super."value-supply"; + "vampire" = dontDistribute super."vampire"; + "var" = dontDistribute super."var"; + "varan" = dontDistribute super."varan"; + "variable-precision" = dontDistribute super."variable-precision"; + "variables" = dontDistribute super."variables"; + "varying" = dontDistribute super."varying"; + "vaultaire-common" = dontDistribute super."vaultaire-common"; + "vcache" = dontDistribute super."vcache"; + "vcache-trie" = dontDistribute super."vcache-trie"; + "vcard" = dontDistribute super."vcard"; + "vcd" = dontDistribute super."vcd"; + "vcs-revision" = dontDistribute super."vcs-revision"; + "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; + "vcsgui" = dontDistribute super."vcsgui"; + "vcswrapper" = dontDistribute super."vcswrapper"; + "vect" = dontDistribute super."vect"; + "vect-floating" = dontDistribute super."vect-floating"; + "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; + "vect-opengl" = dontDistribute super."vect-opengl"; + "vector-binary" = dontDistribute super."vector-binary"; + "vector-bytestring" = dontDistribute super."vector-bytestring"; + "vector-clock" = dontDistribute super."vector-clock"; + "vector-conduit" = dontDistribute super."vector-conduit"; + "vector-functorlazy" = dontDistribute super."vector-functorlazy"; + "vector-heterogenous" = dontDistribute super."vector-heterogenous"; + "vector-instances-collections" = dontDistribute super."vector-instances-collections"; + "vector-mmap" = dontDistribute super."vector-mmap"; + "vector-random" = dontDistribute super."vector-random"; + "vector-read-instances" = dontDistribute super."vector-read-instances"; + "vector-sized" = dontDistribute super."vector-sized"; + "vector-space-map" = dontDistribute super."vector-space-map"; + "vector-space-opengl" = dontDistribute super."vector-space-opengl"; + "vector-space-points" = dontDistribute super."vector-space-points"; + "vector-static" = dontDistribute super."vector-static"; + "vector-strategies" = dontDistribute super."vector-strategies"; + "verbalexpressions" = dontDistribute super."verbalexpressions"; + "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; + "verilog" = dontDistribute super."verilog"; + "versions" = dontDistribute super."versions"; + "vhdl" = dontDistribute super."vhdl"; + "views" = dontDistribute super."views"; + "vigilance" = dontDistribute super."vigilance"; + "vimeta" = dontDistribute super."vimeta"; + "vimus" = dontDistribute super."vimus"; + "vintage-basic" = dontDistribute super."vintage-basic"; + "vinyl-gl" = dontDistribute super."vinyl-gl"; + "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-utils" = dontDistribute super."vinyl-utils"; + "vinyl-vectors" = dontDistribute super."vinyl-vectors"; + "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; + "vision" = dontDistribute super."vision"; + "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; + "visual-prof" = dontDistribute super."visual-prof"; + "vivid" = dontDistribute super."vivid"; + "vk-aws-route53" = dontDistribute super."vk-aws-route53"; + "vk-posix-pty" = dontDistribute super."vk-posix-pty"; + "vocabulary-kadma" = dontDistribute super."vocabulary-kadma"; + "vorbiscomment" = dontDistribute super."vorbiscomment"; + "vowpal-utils" = dontDistribute super."vowpal-utils"; + "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; + "vte" = dontDistribute super."vte"; + "vtegtk3" = dontDistribute super."vtegtk3"; + "vty-examples" = dontDistribute super."vty-examples"; + "vty-menu" = dontDistribute super."vty-menu"; + "vty-ui" = dontDistribute super."vty-ui"; + "vty-ui-extras" = dontDistribute super."vty-ui-extras"; + "vulkan" = dontDistribute super."vulkan"; + "wacom-daemon" = dontDistribute super."wacom-daemon"; + "waddle" = dontDistribute super."waddle"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; + "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; + "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; + "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; + "wai-graceful" = dontDistribute super."wai-graceful"; + "wai-handler-devel" = dontDistribute super."wai-handler-devel"; + "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; + "wai-handler-snap" = dontDistribute super."wai-handler-snap"; + "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; + "wai-hastache" = dontDistribute super."wai-hastache"; + "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; + "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; + "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; + "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; + "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; + "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; + "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; + "wai-middleware-route" = dontDistribute super."wai-middleware-route"; + "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-request-spec" = dontDistribute super."wai-request-spec"; + "wai-responsible" = dontDistribute super."wai-responsible"; + "wai-router" = dontDistribute super."wai-router"; + "wai-session-alt" = dontDistribute super."wai-session-alt"; + "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; + "wai-static-cache" = dontDistribute super."wai-static-cache"; + "wai-static-pages" = dontDistribute super."wai-static-pages"; + "wai-test" = dontDistribute super."wai-test"; + "wai-thrift" = dontDistribute super."wai-thrift"; + "wai-throttler" = dontDistribute super."wai-throttler"; + "wait-handle" = dontDistribute super."wait-handle"; + "waitfree" = dontDistribute super."waitfree"; + "warc" = dontDistribute super."warc"; + "warp" = doDistribute super."warp_3_2_2"; + "warp-dynamic" = dontDistribute super."warp-dynamic"; + "warp-static" = dontDistribute super."warp-static"; + "warp-tls-uid" = dontDistribute super."warp-tls-uid"; + "watchdog" = dontDistribute super."watchdog"; + "watcher" = dontDistribute super."watcher"; + "watchit" = dontDistribute super."watchit"; + "wavconvert" = dontDistribute super."wavconvert"; + "wavesurfer" = dontDistribute super."wavesurfer"; + "wavy" = dontDistribute super."wavy"; + "wcwidth" = dontDistribute super."wcwidth"; + "weather-api" = dontDistribute super."weather-api"; + "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell"; + "web-css" = dontDistribute super."web-css"; + "web-encodings" = dontDistribute super."web-encodings"; + "web-mongrel2" = dontDistribute super."web-mongrel2"; + "web-page" = dontDistribute super."web-page"; + "web-routes-mtl" = dontDistribute super."web-routes-mtl"; + "web-routes-quasi" = dontDistribute super."web-routes-quasi"; + "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-transformers" = dontDistribute super."web-routes-transformers"; + "webapi" = dontDistribute super."webapi"; + "webapp" = dontDistribute super."webapp"; + "webcrank" = dontDistribute super."webcrank"; + "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; + "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; + "webidl" = dontDistribute super."webidl"; + "webify" = dontDistribute super."webify"; + "webkit" = dontDistribute super."webkit"; + "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore"; + "webkitgtk3" = dontDistribute super."webkitgtk3"; + "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore"; + "webrtc-vad" = dontDistribute super."webrtc-vad"; + "webserver" = dontDistribute super."webserver"; + "websnap" = dontDistribute super."websnap"; + "webwire" = dontDistribute super."webwire"; + "wedding-announcement" = dontDistribute super."wedding-announcement"; + "wedged" = dontDistribute super."wedged"; + "weighted-regexp" = dontDistribute super."weighted-regexp"; + "weighted-search" = dontDistribute super."weighted-search"; + "welshy" = dontDistribute super."welshy"; + "werewolf" = dontDistribute super."werewolf"; + "wheb-mongo" = dontDistribute super."wheb-mongo"; + "wheb-redis" = dontDistribute super."wheb-redis"; + "wheb-strapped" = dontDistribute super."wheb-strapped"; + "while-lang-parser" = dontDistribute super."while-lang-parser"; + "whim" = dontDistribute super."whim"; + "whiskers" = dontDistribute super."whiskers"; + "whitespace" = dontDistribute super."whitespace"; + "whois" = dontDistribute super."whois"; + "why3" = dontDistribute super."why3"; + "wigner-symbols" = dontDistribute super."wigner-symbols"; + "wikipedia4epub" = dontDistribute super."wikipedia4epub"; + "win-hp-path" = dontDistribute super."win-hp-path"; + "windowslive" = dontDistribute super."windowslive"; + "winerror" = dontDistribute super."winerror"; + "winio" = dontDistribute super."winio"; + "wiring" = dontDistribute super."wiring"; + "witness" = dontDistribute super."witness"; + "witty" = dontDistribute super."witty"; + "wkt" = dontDistribute super."wkt"; + "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm"; + "wlc-hs" = dontDistribute super."wlc-hs"; + "wobsurv" = dontDistribute super."wobsurv"; + "woffex" = dontDistribute super."woffex"; + "wol" = dontDistribute super."wol"; + "wolf" = dontDistribute super."wolf"; + "woot" = dontDistribute super."woot"; + "word24" = dontDistribute super."word24"; + "wordcloud" = dontDistribute super."wordcloud"; + "wordexp" = dontDistribute super."wordexp"; + "words" = dontDistribute super."words"; + "wordsearch" = dontDistribute super."wordsearch"; + "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; + "wp-archivebot" = dontDistribute super."wp-archivebot"; + "wraparound" = dontDistribute super."wraparound"; + "wraxml" = dontDistribute super."wraxml"; + "wreq-sb" = dontDistribute super."wreq-sb"; + "wright" = dontDistribute super."wright"; + "wsdl" = dontDistribute super."wsdl"; + "wsedit" = dontDistribute super."wsedit"; + "wtk" = dontDistribute super."wtk"; + "wtk-gtk" = dontDistribute super."wtk-gtk"; + "wumpus-basic" = dontDistribute super."wumpus-basic"; + "wumpus-core" = dontDistribute super."wumpus-core"; + "wumpus-drawing" = dontDistribute super."wumpus-drawing"; + "wumpus-microprint" = dontDistribute super."wumpus-microprint"; + "wumpus-tree" = dontDistribute super."wumpus-tree"; + "wuss" = dontDistribute super."wuss"; + "wx" = dontDistribute super."wx"; + "wxAsteroids" = dontDistribute super."wxAsteroids"; + "wxFruit" = dontDistribute super."wxFruit"; + "wxc" = dontDistribute super."wxc"; + "wxcore" = dontDistribute super."wxcore"; + "wxdirect" = dontDistribute super."wxdirect"; + "wxhnotepad" = dontDistribute super."wxhnotepad"; + "wxturtle" = dontDistribute super."wxturtle"; + "wybor" = dontDistribute super."wybor"; + "wyvern" = dontDistribute super."wyvern"; + "x-dsp" = dontDistribute super."x-dsp"; + "x11-xim" = dontDistribute super."x11-xim"; + "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-util" = dontDistribute super."x509-util"; + "xattr" = dontDistribute super."xattr"; + "xbattbar" = dontDistribute super."xbattbar"; + "xcb-types" = dontDistribute super."xcb-types"; + "xcffib" = dontDistribute super."xcffib"; + "xchat-plugin" = dontDistribute super."xchat-plugin"; + "xcp" = dontDistribute super."xcp"; + "xdg-userdirs" = dontDistribute super."xdg-userdirs"; + "xdot" = dontDistribute super."xdot"; + "xfconf" = dontDistribute super."xfconf"; + "xhaskell-library" = dontDistribute super."xhaskell-library"; + "xhb" = dontDistribute super."xhb"; + "xhb-atom-cache" = dontDistribute super."xhb-atom-cache"; + "xhb-ewmh" = dontDistribute super."xhb-ewmh"; + "xhtml" = doDistribute super."xhtml_3000_2_1"; + "xhtml-combinators" = dontDistribute super."xhtml-combinators"; + "xilinx-lava" = dontDistribute super."xilinx-lava"; + "xine" = dontDistribute super."xine"; + "xing-api" = dontDistribute super."xing-api"; + "xinput-conduit" = dontDistribute super."xinput-conduit"; + "xkbcommon" = dontDistribute super."xkbcommon"; + "xkcd" = dontDistribute super."xkcd"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; + "xlsx-templater" = dontDistribute super."xlsx-templater"; + "xml-basic" = dontDistribute super."xml-basic"; + "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-enumerator" = dontDistribute super."xml-enumerator"; + "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; + "xml-extractors" = dontDistribute super."xml-extractors"; + "xml-helpers" = dontDistribute super."xml-helpers"; + "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens"; + "xml-monad" = dontDistribute super."xml-monad"; + "xml-parsec" = dontDistribute super."xml-parsec"; + "xml-picklers" = dontDistribute super."xml-picklers"; + "xml-pipe" = dontDistribute super."xml-pipe"; + "xml-prettify" = dontDistribute super."xml-prettify"; + "xml-push" = dontDistribute super."xml-push"; + "xml-query" = dontDistribute super."xml-query"; + "xml-query-xml-conduit" = dontDistribute super."xml-query-xml-conduit"; + "xml-query-xml-types" = dontDistribute super."xml-query-xml-types"; + "xml2html" = dontDistribute super."xml2html"; + "xml2json" = dontDistribute super."xml2json"; + "xml2x" = dontDistribute super."xml2x"; + "xmltv" = dontDistribute super."xmltv"; + "xmms2-client" = dontDistribute super."xmms2-client"; + "xmms2-client-glib" = dontDistribute super."xmms2-client-glib"; + "xmobar" = dontDistribute super."xmobar"; + "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch"; + "xmonad-contrib" = dontDistribute super."xmonad-contrib"; + "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch"; + "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl"; + "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper"; + "xmonad-eval" = dontDistribute super."xmonad-eval"; + "xmonad-extras" = dontDistribute super."xmonad-extras"; + "xmonad-screenshot" = dontDistribute super."xmonad-screenshot"; + "xmonad-utils" = dontDistribute super."xmonad-utils"; + "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper"; + "xmonad-windownames" = dontDistribute super."xmonad-windownames"; + "xmpipe" = dontDistribute super."xmpipe"; + "xorshift" = dontDistribute super."xorshift"; + "xosd" = dontDistribute super."xosd"; + "xournal-builder" = dontDistribute super."xournal-builder"; + "xournal-convert" = dontDistribute super."xournal-convert"; + "xournal-parser" = dontDistribute super."xournal-parser"; + "xournal-render" = dontDistribute super."xournal-render"; + "xournal-types" = dontDistribute super."xournal-types"; + "xsact" = dontDistribute super."xsact"; + "xsd" = dontDistribute super."xsd"; + "xsha1" = dontDistribute super."xsha1"; + "xslt" = dontDistribute super."xslt"; + "xtc" = dontDistribute super."xtc"; + "xtest" = dontDistribute super."xtest"; + "xturtle" = dontDistribute super."xturtle"; + "xxhash" = dontDistribute super."xxhash"; + "y0l0bot" = dontDistribute super."y0l0bot"; + "yabi" = dontDistribute super."yabi"; + "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; + "yahoo-web-search" = dontDistribute super."yahoo-web-search"; + "yajl" = dontDistribute super."yajl"; + "yajl-enumerator" = dontDistribute super."yajl-enumerator"; + "yall" = dontDistribute super."yall"; + "yamemo" = dontDistribute super."yamemo"; + "yaml-config" = dontDistribute super."yaml-config"; + "yaml-light-lens" = dontDistribute super."yaml-light-lens"; + "yaml-rpc" = dontDistribute super."yaml-rpc"; + "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty"; + "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap"; + "yaml-union" = dontDistribute super."yaml-union"; + "yaml2owl" = dontDistribute super."yaml2owl"; + "yamlkeysdiff" = dontDistribute super."yamlkeysdiff"; + "yampa-canvas" = dontDistribute super."yampa-canvas"; + "yampa-glfw" = dontDistribute super."yampa-glfw"; + "yampa-glut" = dontDistribute super."yampa-glut"; + "yampa2048" = dontDistribute super."yampa2048"; + "yaop" = dontDistribute super."yaop"; + "yap" = dontDistribute super."yap"; + "yarr" = dontDistribute super."yarr"; + "yarr-image-io" = dontDistribute super."yarr-image-io"; + "yate" = dontDistribute super."yate"; + "yavie" = dontDistribute super."yavie"; + "ycextra" = dontDistribute super."ycextra"; + "yeganesh" = dontDistribute super."yeganesh"; + "yeller" = dontDistribute super."yeller"; + "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-pam" = dontDistribute super."yesod-auth-pam"; + "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; + "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; + "yesod-comments" = dontDistribute super."yesod-comments"; + "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; + "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-crud" = dontDistribute super."yesod-crud"; + "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; + "yesod-csp" = dontDistribute super."yesod-csp"; + "yesod-datatables" = dontDistribute super."yesod-datatables"; + "yesod-dsl" = dontDistribute super."yesod-dsl"; + "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; + "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-json" = dontDistribute super."yesod-json"; + "yesod-links" = dontDistribute super."yesod-links"; + "yesod-lucid" = dontDistribute super."yesod-lucid"; + "yesod-markdown" = dontDistribute super."yesod-markdown"; + "yesod-media-simple" = dontDistribute super."yesod-media-simple"; + "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_5"; + "yesod-paginate" = dontDistribute super."yesod-paginate"; + "yesod-pagination" = dontDistribute super."yesod-pagination"; + "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-platform" = dontDistribute super."yesod-platform"; + "yesod-pnotify" = dontDistribute super."yesod-pnotify"; + "yesod-pure" = dontDistribute super."yesod-pure"; + "yesod-purescript" = dontDistribute super."yesod-purescript"; + "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; + "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; + "yesod-routes" = dontDistribute super."yesod-routes"; + "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; + "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript"; + "yesod-rst" = dontDistribute super."yesod-rst"; + "yesod-s3" = dontDistribute super."yesod-s3"; + "yesod-sass" = dontDistribute super."yesod-sass"; + "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test-json" = dontDistribute super."yesod-test-json"; + "yesod-tls" = dontDistribute super."yesod-tls"; + "yesod-transloadit" = dontDistribute super."yesod-transloadit"; + "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; + "yesod-worker" = dontDistribute super."yesod-worker"; + "yet-another-logger" = dontDistribute super."yet-another-logger"; + "yhccore" = dontDistribute super."yhccore"; + "yi-contrib" = dontDistribute super."yi-contrib"; + "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; + "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-monokai" = dontDistribute super."yi-monokai"; + "yi-snippet" = dontDistribute super."yi-snippet"; + "yi-solarized" = dontDistribute super."yi-solarized"; + "yi-spolsky" = dontDistribute super."yi-spolsky"; + "yi-vty" = dontDistribute super."yi-vty"; + "yices" = dontDistribute super."yices"; + "yices-easy" = dontDistribute super."yices-easy"; + "yices-painless" = dontDistribute super."yices-painless"; + "yjftp" = dontDistribute super."yjftp"; + "yjftp-libs" = dontDistribute super."yjftp-libs"; + "yjsvg" = dontDistribute super."yjsvg"; + "yjtools" = dontDistribute super."yjtools"; + "yocto" = dontDistribute super."yocto"; + "yoctoparsec" = dontDistribute super."yoctoparsec"; + "yoko" = dontDistribute super."yoko"; + "york-lava" = dontDistribute super."york-lava"; + "youtube" = dontDistribute super."youtube"; + "yql" = dontDistribute super."yql"; + "yst" = dontDistribute super."yst"; + "yuiGrid" = dontDistribute super."yuiGrid"; + "yuuko" = dontDistribute super."yuuko"; + "yxdb-utils" = dontDistribute super."yxdb-utils"; + "z3" = dontDistribute super."z3"; + "zalgo" = dontDistribute super."zalgo"; + "zampolit" = dontDistribute super."zampolit"; + "zasni-gerna" = dontDistribute super."zasni-gerna"; + "zcache" = dontDistribute super."zcache"; + "zenc" = dontDistribute super."zenc"; + "zendesk-api" = dontDistribute super."zendesk-api"; + "zeno" = dontDistribute super."zeno"; + "zerobin" = dontDistribute super."zerobin"; + "zeromq-haskell" = dontDistribute super."zeromq-haskell"; + "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; + "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; + "zeroth" = dontDistribute super."zeroth"; + "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zip" = dontDistribute super."zip"; + "zip-conduit" = dontDistribute super."zip-conduit"; + "zipedit" = dontDistribute super."zipedit"; + "zipkin" = dontDistribute super."zipkin"; + "zipper" = dontDistribute super."zipper"; + "zippers" = dontDistribute super."zippers"; + "zippo" = dontDistribute super."zippo"; + "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zmcat" = dontDistribute super."zmcat"; + "zmidi-core" = dontDistribute super."zmidi-core"; + "zmidi-score" = dontDistribute super."zmidi-score"; + "zmqat" = dontDistribute super."zmqat"; + "zoneinfo" = dontDistribute super."zoneinfo"; + "zoom" = dontDistribute super."zoom"; + "zoom-cache" = dontDistribute super."zoom-cache"; + "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm"; + "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile"; + "zoom-refs" = dontDistribute super."zoom-refs"; + "zot" = dontDistribute super."zot"; + "zsh-battery" = dontDistribute super."zsh-battery"; + "ztail" = dontDistribute super."ztail"; + +} diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 4d3f9edbf7b..e23b4c3a462 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -17,6 +17,7 @@ self: { homepage = "http://darcs.wolfgang.jeltsch.info/haskell/3d-graphics-examples"; description = "Examples of 3D graphics programming with OpenGL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "3dmodels" = callPackage @@ -32,6 +33,7 @@ self: { homepage = "https://github.com/capsjac/3dmodels"; description = "3D model parsers"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "4Blocks" = callPackage @@ -49,6 +51,7 @@ self: { homepage = "http://lambdacolyte.wordpress.com/2009/08/06/tetris-in-haskell/"; description = "A tetris-like game (works with GHC 6.8.3 and Gtk2hs 0.9.13)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AAI" = callPackage @@ -110,6 +113,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Detect which OS you're running on"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AC-Colour" = callPackage @@ -132,6 +136,7 @@ self: { libraryHaskellDepends = [ array base gtk ]; description = "GTK+ pixel plotting"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AC-HalfInteger" = callPackage @@ -143,6 +148,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Efficient half-integer type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AC-MiniTest" = callPackage @@ -154,6 +160,7 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "A simple test framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AC-PPM" = callPackage @@ -187,6 +194,7 @@ self: { libraryHaskellDepends = [ ansi-terminal base ]; description = "Trivial wrapper over ansi-terminal"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AC-VanillaArray" = callPackage @@ -199,6 +207,7 @@ self: { jailbreak = true; description = "Immutable arrays with plain integer indicies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AC-Vector" = callPackage @@ -237,34 +246,34 @@ self: { homepage = "http://alkalisoftware.net"; description = "Essential features"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ADPfusion" = callPackage - ({ mkDerivation, base, bits, containers, mmorph, monad-primitive - , mtl, OrderedBits, primitive, PrimitiveArray, QuickCheck - , singletons, strict, template-haskell, test-framework - , test-framework-quickcheck2, test-framework-th, th-orphans - , transformers, tuple, vector + ({ mkDerivation, base, bits, containers, mmorph, mtl, OrderedBits + , primitive, PrimitiveArray, QuickCheck, strict, template-haskell + , test-framework, test-framework-quickcheck2, test-framework-th + , th-orphans, transformers, tuple, vector }: mkDerivation { pname = "ADPfusion"; - version = "0.5.0.0"; - sha256 = "bbea9d5352dba8d2d0e0d67624dee7d50babf15a954f42dc9cb0d815b859a668"; + version = "0.5.1.0"; + sha256 = "cd3acc617c59a90e94b6666f5f6814515a2a11625d8794c977afe51520586951"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base bits containers mmorph monad-primitive mtl OrderedBits - primitive PrimitiveArray QuickCheck singletons strict - template-haskell th-orphans transformers tuple vector + base bits containers mmorph mtl OrderedBits primitive + PrimitiveArray QuickCheck strict template-haskell th-orphans + transformers tuple vector ]; testHaskellDepends = [ base bits OrderedBits PrimitiveArray QuickCheck strict test-framework test-framework-quickcheck2 test-framework-th vector ]; - jailbreak = true; homepage = "https://github.com/choener/ADPfusion"; description = "Efficient, high-level dynamic programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-Basics" = callPackage @@ -286,6 +295,7 @@ self: { homepage = "http://code.google.com/p/aern/"; description = "foundational type classes for approximating exact real numbers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-Net" = callPackage @@ -303,6 +313,7 @@ self: { homepage = "http://www-users.aston.ac.uk/~konecnym/DISCERN"; description = "Compositional lazy dataflow networks for exact real number computation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-Real" = callPackage @@ -321,6 +332,7 @@ self: { homepage = "http://code.google.com/p/aern/"; description = "arbitrary precision real interval arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-Real-Double" = callPackage @@ -346,6 +358,7 @@ self: { homepage = "http://code.google.com/p/aern/"; description = "arbitrary precision real interval arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-Real-Interval" = callPackage @@ -364,6 +377,7 @@ self: { homepage = "http://code.google.com/p/aern/"; description = "arbitrary precision real interval arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-RnToRm" = callPackage @@ -382,6 +396,7 @@ self: { homepage = "http://www-users.aston.ac.uk/~konecnym/DISCERN"; description = "polynomial function enclosures (PFEs) approximating exact real functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-RnToRm-Plot" = callPackage @@ -401,6 +416,7 @@ self: { homepage = "http://www-users.aston.ac.uk/~konecnym/DISCERN"; description = "GL plotting of polynomial function enclosures (PFEs)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "AES" = callPackage @@ -432,6 +448,7 @@ self: { homepage = "http://src.seereason.com/haskell-agi"; description = "A library for writing AGI scripts for Asterisk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ALUT" = callPackage @@ -450,6 +467,7 @@ self: { homepage = "https://github.com/haskell-openal/ALUT"; description = "A binding for the OpenAL Utility Toolkit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) freealut;}; "AMI" = callPackage @@ -466,6 +484,7 @@ self: { homepage = "http://redmine.iportnov.ru/projects/ami"; description = "Low-level bindings for Asterisk Manager Interface (AMI)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ANum" = callPackage @@ -584,6 +603,7 @@ self: { homepage = "https://github.com/egonSchiele/actionkid"; description = "An easy-to-use video game framework for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Adaptive" = callPackage @@ -600,6 +620,7 @@ self: { jailbreak = true; description = "Library for incremental computing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Adaptive-Blaisorblade" = callPackage @@ -613,6 +634,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Library for incremental computing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Advgame" = callPackage @@ -627,6 +649,7 @@ self: { jailbreak = true; description = "Lisperati's adventure game in Lisp translated to Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AesonBson" = callPackage @@ -645,6 +668,7 @@ self: { homepage = "https://github.com/nh2/AesonBson"; description = "Mapping between Aeson's JSON and Bson objects"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Agata" = callPackage @@ -661,6 +685,7 @@ self: { jailbreak = true; description = "Generator-generator for QuickCheck"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Agda_2_4_2_3" = callPackage @@ -772,6 +797,7 @@ self: { homepage = "http://wiki.portal.chalmers.se/agda/"; description = "A dependently typed functional programming language and proof assistant"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) emacs;}; "Agda-executable" = callPackage @@ -787,6 +813,7 @@ self: { homepage = "http://wiki.portal.chalmers.se/agda/"; description = "Command-line program for type-checking and compiling Agda programs"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AhoCorasick" = callPackage @@ -802,6 +829,7 @@ self: { homepage = "http://github.com/lymar/AhoCorasick"; description = "Aho-Corasick string matching algorithm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AlgorithmW" = callPackage @@ -830,9 +858,11 @@ self: { ADPfusion base containers fmlist FormalGrammars GrammarProducts PrimitiveArray vector ]; + jailbreak = true; homepage = "https://github.com/choener/AlignmentAlgorithms"; description = "Collection of alignment algorithms"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Allure" = callPackage @@ -856,6 +886,7 @@ self: { homepage = "http://allureofthestars.com"; description = "Near-future Sci-Fi roguelike and tactical squad game"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AndroidViewHierarchyImporter" = callPackage @@ -876,6 +907,7 @@ self: { jailbreak = true; description = "Android view hierarchy importer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Animas" = callPackage @@ -888,6 +920,7 @@ self: { homepage = "https://github.com/eamsden/Animas"; description = "Updated version of Yampa: a library for programming hybrid systems"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Annotations" = callPackage @@ -932,6 +965,7 @@ self: { executableHaskellDepends = [ base ]; description = "Library for Apple Push Notification Service"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AppleScript" = callPackage @@ -945,6 +979,7 @@ self: { homepage = "https://github.com/reinerp/haskell-AppleScript"; description = "Call AppleScript from Haskell, and then call back into Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ApproxFun-hs" = callPackage @@ -970,6 +1005,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Library/ArrayRef"; description = "Unboxed references, dynamic arrays and more"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ArrowVHDL" = callPackage @@ -983,6 +1019,7 @@ self: { homepage = "https://github.com/frosch03/arrowVHDL"; description = "A library to generate Netlist code from Arrow descriptions"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AspectAG" = callPackage @@ -1000,6 +1037,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/bin/view/Center/AspectAG"; description = "Attribute Grammars in the form of an EDSL"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AttoBencode" = callPackage @@ -1039,6 +1077,7 @@ self: { homepage = "http://github.com/konn/AttoJSON"; description = "Simple lightweight JSON parser, generator & manipulator based on ByteString"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Attrac" = callPackage @@ -1056,6 +1095,7 @@ self: { homepage = "http://patch-tag.com/r/rhz/StrangeAttractors"; description = "Visualisation of Strange Attractors in 3-Dimensions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Aurochs" = callPackage @@ -1069,6 +1109,7 @@ self: { executableHaskellDepends = [ base containers parsec pretty ]; description = "Yet another parser generator for C/C++"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AutoForms" = callPackage @@ -1085,6 +1126,7 @@ self: { homepage = "http://autoforms.sourceforge.net/"; description = "GUI library based upon generic programming (SYB3)"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AvlTree" = callPackage @@ -1096,6 +1138,7 @@ self: { libraryHaskellDepends = [ base COrdering ]; description = "Balanced binary trees using the AVL algorithm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BASIC" = callPackage @@ -1107,6 +1150,7 @@ self: { libraryHaskellDepends = [ base containers llvm random timeit ]; description = "Embedded BASIC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BCMtools" = callPackage @@ -1133,6 +1177,7 @@ self: { ]; description = "Big Contact Map Tools"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BNFC" = callPackage @@ -1189,6 +1234,7 @@ self: { homepage = "http://pageperso.lif.univ-mrs.fr/~pierre-etienne.meunier/Baggins"; description = "Tools for self-assembly"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Bang" = callPackage @@ -1206,6 +1252,7 @@ self: { homepage = "https://github.com/5outh/Bang/"; description = "A Drum Machine DSL for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Barracuda" = callPackage @@ -1235,6 +1282,7 @@ self: { homepage = "http://sep07.mroot.net/"; description = "An ad-hoc P2P chat program"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Befunge93" = callPackage @@ -1250,6 +1298,7 @@ self: { homepage = "http://coder.bsimmons.name/blog/2010/05/befunge-93-interpreter-on-hackage"; description = "An interpreter for the Befunge-93 Programming Language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BenchmarkHistory" = callPackage @@ -1296,6 +1345,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/BerkeleyDBXML"; description = "Berkeley DB XML binding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) db; dbxml = null; inherit (pkgs) xercesc; xqilla = null;}; @@ -1323,6 +1373,7 @@ self: { homepage = "https://github.com/mchakravarty/BigPixel"; description = "Image editor for pixel art"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Binpack" = callPackage @@ -1357,6 +1408,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Base library for bioinformatics"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseBlast" = callPackage @@ -1369,6 +1421,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "BLAST-related tools"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseDotP" = callPackage @@ -1381,6 +1434,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Vienna / DotBracket / ExtSS parsers"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseFR3D" = callPackage @@ -1398,6 +1452,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Importer for FR3D resources"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseFasta" = callPackage @@ -1418,6 +1473,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "conduit-based FASTA parser"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseInfernal" = callPackage @@ -1439,6 +1495,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Infernal data structures and tools"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseMAF" = callPackage @@ -1451,6 +1508,30 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Multiple Alignment Format"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "BiobaseNewick" = callPackage + ({ mkDerivation, aeson, attoparsec, base, binary, cereal + , cereal-text, containers, fgl, ForestStructures, QuickCheck + , test-framework, test-framework-quickcheck2, test-framework-th + , text, text-binary, vector + }: + mkDerivation { + pname = "BiobaseNewick"; + version = "0.0.0.1"; + sha256 = "ba1cae7e21ab56164d5b5aa800e007f359eb24ab923df0ec31c7c94fc4ecf047"; + libraryHaskellDepends = [ + aeson attoparsec base binary cereal cereal-text containers fgl + ForestStructures QuickCheck text text-binary vector + ]; + testHaskellDepends = [ + aeson base binary cereal QuickCheck test-framework + test-framework-quickcheck2 test-framework-th + ]; + homepage = "https://github.com/choener/BiobaseNewick"; + description = "Newick file format parser"; + license = stdenv.lib.licenses.bsd3; }) {}; "BiobaseTrainingData" = callPackage @@ -1472,6 +1553,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "RNA folding training data"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseTurner" = callPackage @@ -1490,6 +1572,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Import Turner RNA parameters"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseTypes" = callPackage @@ -1515,6 +1598,7 @@ self: { homepage = "https://github.com/choener/BiobaseTypes"; description = "Collection of types for bioinformatics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseVienna" = callPackage @@ -1531,6 +1615,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Import Vienna energy parameters"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseXNA" = callPackage @@ -1556,6 +1641,7 @@ self: { homepage = "https://github.com/choener/BiobaseXNA"; description = "Efficient RNA/DNA representations"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BirdPP" = callPackage @@ -1570,6 +1656,7 @@ self: { jailbreak = true; description = "A preprocessor for Bird-style Literate Haskell comments with Haddock markup"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BitSyntax" = callPackage @@ -1596,6 +1683,7 @@ self: { homepage = "http://bitbucket.org/jetxee/hs-bitly/"; description = "A library to access bit.ly URL shortener."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BlastHTTP_1_0_1" = callPackage @@ -1656,6 +1744,7 @@ self: { homepage = "http://www.cs.york.ac.uk/fp/darcs/Blobs/"; description = "Diagram editor"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BlogLiterately_0_7_1_7" = callPackage @@ -1883,6 +1972,7 @@ self: { executableHaskellDepends = [ base BlogLiterately ]; description = "Include images in blog posts with inline diagrams code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "BluePrintCSS" = callPackage @@ -1907,6 +1997,7 @@ self: { homepage = "http://github.com/gcross/Blueprint"; description = "Preview of a new build system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Bookshelf" = callPackage @@ -1967,6 +2058,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Bravo"; description = "Static text template generation library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BufferedSocket" = callPackage @@ -2004,6 +2096,7 @@ self: { homepage = "http://github.com/michaelxavier/Buster"; description = "Hits a set of urls periodically to bust caches"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CBOR" = callPackage @@ -2025,6 +2118,7 @@ self: { homepage = "https://github.com/orclev/CBOR"; description = "Encode/Decode values to/from CBOR"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CC-delcont" = callPackage @@ -2037,6 +2131,7 @@ self: { homepage = "http://code.haskell.org/~dolio/CC-delcont"; description = "Delimited continuations and dynamically scoped variables"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CC-delcont-alt" = callPackage @@ -2054,6 +2149,7 @@ self: { doHaddock = false; description = "Three new monad transformers for multi-prompt delimited control"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CC-delcont-cxe" = callPackage @@ -2065,6 +2161,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A monad transformers for multi-prompt delimited control"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CC-delcont-exc" = callPackage @@ -2076,6 +2173,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A monad transformers for multi-prompt delimited control"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CC-delcont-ref" = callPackage @@ -2087,6 +2185,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A monad transformers for multi-prompt delimited control using refercence cells"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CC-delcont-ref-tf" = callPackage @@ -2098,6 +2197,7 @@ self: { libraryHaskellDepends = [ base ref-tf transformers ]; description = "A monad transformers for multi-prompt delimited control using refercence cells"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CCA" = callPackage @@ -2147,6 +2247,7 @@ self: { homepage = "http://www.zonetora.co.uk/clase/"; description = "Cursor Library for A Structured Editor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CLI" = callPackage @@ -2180,6 +2281,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/software/cmcompare/"; description = "Infernal covariance model comparison"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CMQ" = callPackage @@ -2208,6 +2310,7 @@ self: { libraryHaskellDepends = [ base ]; description = "An algebraic data type similar to Prelude Ordering"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CPBrainfuck" = callPackage @@ -2221,6 +2324,7 @@ self: { executableHaskellDepends = [ base haskell98 ]; description = "A simple Brainfuck interpretter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CPL" = callPackage @@ -2264,6 +2368,7 @@ self: { jailbreak = true; description = "Firing rules semantic of CSPM"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CSPM-Frontend" = callPackage @@ -2341,6 +2446,7 @@ self: { jailbreak = true; description = "cspm command line tool for analyzing CSPM specifications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CTRex" = callPackage @@ -2387,6 +2493,7 @@ self: { homepage = "http://aleator.github.com/CV/"; description = "OpenCV based machine vision library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {opencv_calib3d = null; opencv_contrib = null; opencv_core = null; opencv_features2d = null; opencv_flann = null; opencv_gpu = null; opencv_highgui = null; opencv_imgproc = null; @@ -2640,6 +2747,7 @@ self: { homepage = "https://github.com/Icelandjack/Capabilities"; description = "Separate and contain effects of IO monad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Cardinality" = callPackage @@ -2704,6 +2812,7 @@ self: { homepage = "http://github.com/rampion/Cascade"; description = "Playing with reified categorical composition"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Catana" = callPackage @@ -2715,6 +2824,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A monad for complex manipulation of a stream"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ChannelT" = callPackage @@ -3023,6 +3133,7 @@ self: { homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "Utility functions for using the chart library with GTK"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Chart-simple" = callPackage @@ -3041,6 +3152,7 @@ self: { homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "A wrapper for the chart library to assist with basic plots (Deprecated - use the Easy module instead)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "ChasingBottoms_1_3_0_8" = callPackage @@ -3204,6 +3316,7 @@ self: { homepage = "https://github.com/ckkashyap/Chitra"; description = "A platform independent mechanism to render graphics using vnc"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ChristmasTree" = callPackage @@ -3221,6 +3334,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/bin/view/Center/TTTAS"; description = "Alternative approach of 'read' that composes grammars instead of parsers"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CirruParser" = callPackage @@ -3246,6 +3360,7 @@ self: { homepage = "http://wiki.portal.chalmers.se/cse/pmwiki.php/FP/ClassLaws"; description = "Stating and checking laws for type class methods"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ClassyPrelude" = callPackage @@ -3257,6 +3372,7 @@ self: { libraryHaskellDepends = [ base strict ]; description = "Prelude replacement using classes instead of concrete types where reasonable"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Clean" = callPackage @@ -3269,6 +3385,7 @@ self: { jailbreak = true; description = "A light, clean and powerful utility library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Clipboard" = callPackage @@ -3317,6 +3434,7 @@ self: { homepage = "http://iki.fi/matti.niemenmaa/coadjute/"; description = "A generic build tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Codec-Compression-LZF" = callPackage @@ -3341,6 +3459,7 @@ self: { librarySystemDepends = [ libdevil ]; description = "An FFI interface to the DevIL library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libdevil;}; "Combinatorrent" = callPackage @@ -3365,6 +3484,7 @@ self: { ]; description = "A concurrent bittorrent client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Command" = callPackage @@ -3401,6 +3521,7 @@ self: { homepage = "https://github.com/sordina/Commando"; description = "Watch some files; Rerun a command"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ComonadSheet" = callPackage @@ -3439,6 +3560,7 @@ self: { homepage = "http://alkalisoftware.net"; description = "Concurrent utilities"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Concurrential" = callPackage @@ -3475,6 +3597,7 @@ self: { homepage = "https://github.com/klangner/Condor"; description = "Information retrieval library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ConfigFile" = callPackage @@ -3513,6 +3636,7 @@ self: { libraryHaskellDepends = [ base Dangerous MissingH mtl parsec ]; description = "Parse config files"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Configurable" = callPackage @@ -3565,6 +3689,7 @@ self: { jailbreak = true; description = "Repackages standard type classes with the ConstraintKinds extension"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Consumer" = callPackage @@ -3577,6 +3702,7 @@ self: { homepage = "http://src.seereason.com/ghc6103/haskell-consumer"; description = "A monad and monad transformer for consuming streams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ContArrow" = callPackage @@ -3613,6 +3739,7 @@ self: { homepage = "http://www.cs.kent.ac.uk/~oc/contracts.html"; description = "Practical typed lazy contracts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Control-Engine" = callPackage @@ -3646,6 +3773,7 @@ self: { homepage = "https://github.com/kevinbackhouse/Control-Monad-MultiPass"; description = "A Library for Writing Multi-Pass Algorithms"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Control-Monad-ST2" = callPackage @@ -3664,6 +3792,7 @@ self: { homepage = "https://github.com/kevinbackhouse/Control-Monad-ST2"; description = "A variation on the ST monad with two type parameters"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CoreDump" = callPackage @@ -3707,6 +3836,7 @@ self: { homepage = "https://github.com/reinerp/CoreFoundation"; description = "Bindings to Mac OSX's CoreFoundation framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Coroutine" = callPackage @@ -3718,6 +3848,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Type-safe coroutines using lightweight session types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CouchDB" = callPackage @@ -3739,6 +3870,7 @@ self: { homepage = "http://github.com/hsenag/haskell-couchdb/"; description = "CouchDB interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Craft3e" = callPackage @@ -3757,6 +3889,7 @@ self: { homepage = "http://www.haskellcraft.com/"; description = "Code for Haskell: the Craft of Functional Programming, 3rd ed"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Crypto" = callPackage @@ -3805,6 +3938,7 @@ self: { ]; description = "CurryDB: In-memory Key/Value Database"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DAG-Tournament" = callPackage @@ -3822,6 +3956,7 @@ self: { ]; description = "Real-Time Game Tournament Evaluator"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DAV_1_0_3" = callPackage @@ -3971,6 +4106,7 @@ self: { homepage = "https://github.com/alexkay/hdbus"; description = "D-Bus bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DCFL" = callPackage @@ -4017,6 +4153,7 @@ self: { jailbreak = true; description = "DOM Level 2 bindings for the WebBits package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DP" = callPackage @@ -4034,6 +4171,7 @@ self: { homepage = "http://github.com/srush/SemiRings/tree/master"; description = "Pragmatic framework for dynamic programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DPM" = callPackage @@ -4058,6 +4196,7 @@ self: { jailbreak = true; description = "Darcs Patch Manager"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DRBG_0_5_4" = callPackage @@ -4181,6 +4320,7 @@ self: { ]; description = "A framework for using STM within distributed systems"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DTC" = callPackage @@ -4193,6 +4333,7 @@ self: { homepage = "https://github.com/Daniel-Diaz/DTC"; description = "Data To Class transformation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Dangerous" = callPackage @@ -4204,6 +4345,7 @@ self: { libraryHaskellDepends = [ base MaybeT mtl ]; description = "Monads for operations that can exit early and produce warnings"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Dao" = callPackage @@ -4234,6 +4376,7 @@ self: { ]; description = "Dao is meta programming language with its own built-in interpreted language, designed with artificial intelligence applications in mind"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DarcsHelpers" = callPackage @@ -4246,6 +4389,7 @@ self: { jailbreak = true; description = "Code used by Patch-Shack that seemed sensible to open for reusability"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Data-Hash-Consistent" = callPackage @@ -4273,6 +4417,7 @@ self: { libraryHaskellDepends = [ base bytestring unix ]; description = "Ropes, an alternative to (Byte)Strings"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DataTreeView" = callPackage @@ -4290,6 +4435,7 @@ self: { ]; description = "A GTK widget for displaying arbitrary Data.Data.Data instances"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Deadpan-DDP" = callPackage @@ -4360,6 +4506,7 @@ self: { homepage = "http://page.mi.fu-berlin.de/~aneumann/decisiontree.html"; description = "A very simple implementation of decision trees for discrete attributes"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DeepArrow" = callPackage @@ -4391,6 +4538,7 @@ self: { homepage = "http://github.com/yairchu/defend/tree"; description = "A simple RTS game"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DescriptiveKeys" = callPackage @@ -4419,6 +4567,7 @@ self: { ]; description = "Processing Real-time event streams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Diff_0_3_0" = callPackage @@ -4475,6 +4624,7 @@ self: { homepage = "https://github.com/dillonhuff/DifferenceLogic"; description = "A theory solver for conjunctions of literals in difference logic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DifferentialEvolution" = callPackage @@ -4492,6 +4642,7 @@ self: { homepage = "http://yousource.it.jyu.fi/optimization-with-haskell"; description = "Global optimization using Differential Evolution"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Digit" = callPackage @@ -4539,6 +4690,7 @@ self: { libraryHaskellDepends = [ base ]; description = "An n-dimensional hash using Morton numbers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DirectSound" = callPackage @@ -4573,6 +4725,7 @@ self: { homepage = "http://distract.wellquite.org/"; description = "Distributed Bug Tracking System"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DiscussionSupportSystem" = callPackage @@ -4676,6 +4829,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Frameshift-aware alignment of protein sequences with DNA sequences"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DocTest" = callPackage @@ -4695,6 +4849,7 @@ self: { homepage = "http://haskell.org/haskellwiki/DocTest"; description = "Test interactive Haskell examples"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Docs" = callPackage @@ -4727,6 +4882,7 @@ self: { homepage = "http://haskell.di.uminho.pt/wiki/DrHylo"; description = "A tool for deriving hylomorphisms"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DrIFT" = callPackage @@ -4744,6 +4900,7 @@ self: { homepage = "http://repetae.net/computer/haskell/DrIFT/"; description = "Program to derive type class instances"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DrIFT-cabalized" = callPackage @@ -4758,6 +4915,7 @@ self: { homepage = "http://repetae.net/computer/haskell/DrIFT/"; description = "Program to derive type class instances"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Dung" = callPackage @@ -4797,6 +4955,7 @@ self: { ]; description = "Polymorphic protocol engine"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Dust-crypto" = callPackage @@ -4823,6 +4982,7 @@ self: { ]; description = "Cryptographic operations"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openssl;}; "Dust-tools" = callPackage @@ -4847,6 +5007,7 @@ self: { ]; description = "Network filtering exploration tools"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Dust-tools-pcap" = callPackage @@ -4868,6 +5029,7 @@ self: { ]; description = "Network filtering exploration tools that rely on pcap"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DynamicTimeWarp" = callPackage @@ -4887,6 +5049,7 @@ self: { homepage = "https://github.com/zombiecalypse/DynamicTimeWarp"; description = "Dynamic time warping of sequences"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DysFRP" = callPackage @@ -4913,6 +5076,7 @@ self: { homepage = "https://github.com/tilk/DysFRP"; description = "dysFunctional Reactive Programming on Cairo"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DysFRP-Craftwerk" = callPackage @@ -4930,6 +5094,7 @@ self: { homepage = "https://github.com/tilk/DysFRP"; description = "dysFunctional Reactive Programming on Craftwerk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "EEConfig" = callPackage @@ -4941,6 +5106,7 @@ self: { libraryHaskellDepends = [ base containers ]; description = "ExtremlyEasyConfig - Extremly Simple parser for config files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Earley_0_9_0" = callPackage @@ -5044,6 +5210,7 @@ self: { homepage = "http://github.com/bspaans/EditTimeReport"; description = "Query language and report generator for edit logs"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "EitherT" = callPackage @@ -5062,6 +5229,7 @@ self: { jailbreak = true; description = "EitherT monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Elm" = callPackage @@ -5119,6 +5287,7 @@ self: { homepage = "http://www.muitovar.com"; description = "derives heuristic rules from nominal data"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Encode" = callPackage @@ -5134,6 +5303,7 @@ self: { homepage = "http://otakar-smrz.users.sf.net/"; description = "Encoding character data"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "EntrezHTTP" = callPackage @@ -5175,6 +5345,7 @@ self: { jailbreak = true; description = "More general IntMap replacement"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Eq" = callPackage @@ -5194,6 +5365,7 @@ self: { jailbreak = true; description = "Render math formula in ASCII, and perform some simplifications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "EqualitySolver" = callPackage @@ -5229,6 +5401,7 @@ self: { homepage = "http://cielonegro.org/EsounD.html"; description = "Type-safe bindings to EsounD (ESD; Enlightened Sound Daemon)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "EstProgress" = callPackage @@ -5266,6 +5439,7 @@ self: { homepage = "http://verement.github.io/etamoo"; description = "A new implementation of the LambdaMOO server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) pcre;}; "Etage" = callPackage @@ -5282,6 +5456,7 @@ self: { homepage = "http://mitar.tnode.com"; description = "A general data-flow framework"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Etage-Graph" = callPackage @@ -5302,6 +5477,7 @@ self: { homepage = "http://mitar.tnode.com"; description = "Data-flow based graph algorithms"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Eternal10Seconds" = callPackage @@ -5316,6 +5492,7 @@ self: { homepage = "http://www.kryozahiro.org/eternal10/"; description = "A 2-D shooting game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Etherbunny" = callPackage @@ -5338,6 +5515,7 @@ self: { homepage = "http://etherbunny.anytini.com/"; description = "A network analysis toolkit for Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libpcap;}; "EuroIT" = callPackage @@ -5369,6 +5547,7 @@ self: { homepage = "http://haskell.cs.yale.edu/"; description = "Library for computer music research and education"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "EventSocket" = callPackage @@ -5384,6 +5563,7 @@ self: { ]; description = "Interfaces with FreeSwitch Event Socket"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Extra" = callPackage @@ -5430,6 +5610,7 @@ self: { jailbreak = true; description = "Compose music"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FM-SBLEX" = callPackage @@ -5444,6 +5625,7 @@ self: { homepage = "http://spraakbanken.gu.se/eng/research/swefn/fm-sblex"; description = "A set of computational morphology tools for Swedish diachronic lexicons"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FModExRaw" = callPackage @@ -5457,6 +5639,7 @@ self: { homepage = "https://github.com/skypers/hsFModEx"; description = "The Haskell FModEx raw API"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {fmodex64 = null;}; "FPretty" = callPackage @@ -5542,6 +5725,7 @@ self: { libraryHaskellDepends = [ base base-unicode-symbols mmtl ]; description = "Failure Monad Transformer"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FastxPipe" = callPackage @@ -5622,6 +5806,7 @@ self: { homepage = "http://www.scannedinavian.com/"; description = "Annotate ps and pdf documents"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FerryCore" = callPackage @@ -5638,6 +5823,7 @@ self: { ]; description = "Ferry Core Components"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Feval" = callPackage @@ -5670,6 +5856,7 @@ self: { homepage = "http://haskell.org/haskellwiki/FieldTrip"; description = "Functional 3D"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FileManip" = callPackage @@ -5685,6 +5872,7 @@ self: { ]; description = "Expressive file and directory manipulation for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FileManipCompat" = callPackage @@ -5700,6 +5888,7 @@ self: { ]; description = "Expressive file and directory manipulation for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FilePather" = callPackage @@ -5734,6 +5923,7 @@ self: { homepage = "http://ddiaz.asofilak.es/packages/FileSystem"; description = "File system data structure and monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Finance-Quote-Yahoo" = callPackage @@ -5750,6 +5940,7 @@ self: { homepage = "http://www.b7j0c.org/stuff/haskell-yquote.xhtml"; description = "Obtain quote data from finance.yahoo.com"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Finance-Treasury" = callPackage @@ -5767,6 +5958,7 @@ self: { homepage = "http://www.ecoin.net/haskell/Finance-Treasury.html"; description = "Obtain Treasury yield curve data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FindBin" = callPackage @@ -5790,6 +5982,7 @@ self: { libraryHaskellDepends = [ base haskell98 ]; description = "A finite map implementation, derived from the paper: Efficient sets: a balancing act, S. Adams, Journal of functional programming 3(4) Oct 1993, pp553-562"; license = stdenv.lib.licenses.bsdOriginal; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FirstOrderTheory" = callPackage @@ -5802,6 +5995,7 @@ self: { jailbreak = true; description = "Grammar and typeclass for first order theories"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FixedPoint-simple" = callPackage @@ -5832,6 +6026,7 @@ self: { homepage = "http://www.flippac.org/projects/flippi/"; description = "Wiki"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Focus" = callPackage @@ -5978,6 +6173,28 @@ self: { homepage = "http://www.ict.kth.se/forsyde/"; description = "ForSyDe's Haskell-embedded Domain Specific Language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ForestStructures" = callPackage + ({ mkDerivation, base, containers, fgl, QuickCheck, test-framework + , test-framework-quickcheck2, test-framework-th + , unordered-containers, vector, vector-th-unbox + }: + mkDerivation { + pname = "ForestStructures"; + version = "0.0.0.1"; + sha256 = "451e874ad1c2dda4923ffe773e4039387b85196b5985958e21535cdecc53d113"; + libraryHaskellDepends = [ + base containers fgl unordered-containers vector vector-th-unbox + ]; + testHaskellDepends = [ + base QuickCheck test-framework test-framework-quickcheck2 + test-framework-th + ]; + homepage = "https://github.com/choener/ForestStructures"; + description = "Tree- and forest structures"; + license = stdenv.lib.licenses.bsd3; }) {}; "ForkableT" = callPackage @@ -6000,8 +6217,8 @@ self: { }: mkDerivation { pname = "FormalGrammars"; - version = "0.2.1.1"; - sha256 = "a469d5c1400123c2888ede6aadb13af2a21f491c1f6ec9c0362042a6f4c146fc"; + version = "0.3.0.0"; + sha256 = "65ec8b4334748b18bb2a64606adf324c8cc12e192448b33cc7877cd66341171f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -6010,10 +6227,10 @@ self: { text transformers trifecta unordered-containers vector ]; executableHaskellDepends = [ ansi-wl-pprint base cmdargs ]; - jailbreak = true; homepage = "https://github.com/choener/FormalGrammars"; description = "(Context-free) grammars in formal language theory"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Foster" = callPackage @@ -6032,6 +6249,7 @@ self: { jailbreak = true; description = "Utilities to generate and solve puzzles"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FpMLv53" = callPackage @@ -6067,6 +6285,7 @@ self: { homepage = "https://github.com/TomSmeets/FractalArt"; description = "Generates colorful wallpapers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.xorg) libX11;}; "Fractaler" = callPackage @@ -6084,6 +6303,7 @@ self: { ]; jailbreak = true; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Frames" = callPackage @@ -6116,6 +6336,7 @@ self: { homepage = "http://personal.cis.strath.ac.uk/~conor/pub/Frank/"; description = "An experimental programming language with typed algebraic effects"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FreeTypeGL" = callPackage @@ -6130,6 +6351,7 @@ self: { jailbreak = true; description = "Loadable texture fonts for OpenGL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FunGEn" = callPackage @@ -6148,6 +6370,7 @@ self: { homepage = "http://joyful.com/fungen"; description = "A lightweight, cross-platform, OpenGL/GLUT-based game engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Fungi" = callPackage @@ -6222,6 +6445,7 @@ self: { homepage = "http://haskell.org/haskellwiki/GLFW"; description = "A Haskell binding for GLFW"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs.xorg) libX11; inherit (pkgs) mesa;}; "GLFW-OGL" = callPackage @@ -6235,6 +6459,7 @@ self: { homepage = "http://haskell.org/haskellwiki/GLFW-OGL"; description = "A binding for GLFW (OGL)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXrandr;}; "GLFW-b" = callPackage @@ -6253,6 +6478,7 @@ self: { doCheck = false; description = "Bindings to GLFW OpenGL library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "GLFW-b-demo" = callPackage @@ -6271,6 +6497,7 @@ self: { jailbreak = true; description = "GLFW-b demo"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "GLFW-task" = callPackage @@ -6286,6 +6513,7 @@ self: { homepage = "http://github.com/ninegua/GLFW-task"; description = "GLFW utility functions to use together with monad-task"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "GLHUI" = callPackage @@ -6298,6 +6526,7 @@ self: { librarySystemDepends = [ libX11 mesa ]; description = "Open OpenGL context windows in X11 with libX11"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs.xorg) libX11; inherit (pkgs) mesa;}; "GLM" = callPackage @@ -6340,6 +6569,7 @@ self: { homepage = "https://github.com/fiendfan1/GLMatrix"; description = "Utilities for working with OpenGL matrices"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GLURaw_1_4_0_1" = callPackage @@ -6432,6 +6662,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Opengl"; description = "A raw binding for the OpenGL graphics system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; "GLUT_2_5_1_1" = callPackage @@ -6534,6 +6765,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Opengl"; description = "A binding for the OpenGL Utility Toolkit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; "GLUtil" = callPackage @@ -6552,6 +6784,7 @@ self: { jailbreak = true; description = "Miscellaneous OpenGL utilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GPX" = callPackage @@ -6570,6 +6803,7 @@ self: { homepage = "https://github.com/tonymorris/geo-gpx"; description = "Parse GPX files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GPipe_2_1_5" = callPackage @@ -6623,6 +6857,7 @@ self: { homepage = "http://tobbebex.blogspot.se/"; description = "Typesafe functional GPU graphics programming"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "GPipe-Collada" = callPackage @@ -6638,6 +6873,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GPipe"; description = "Load GPipe meshes from Collada files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GPipe-Examples" = callPackage @@ -6655,6 +6891,7 @@ self: { ]; description = "Examples for the GPipes package"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GPipe-GLFW_1_2_1" = callPackage @@ -6680,6 +6917,7 @@ self: { homepage = "https://github.com/plredmond/GPipe-GLFW"; description = "GLFW OpenGL context creation for GPipe"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "GPipe-TextureLoad" = callPackage @@ -6692,6 +6930,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GPipe"; description = "Load GPipe textures from filesystem"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GTALib" = callPackage @@ -6712,6 +6951,7 @@ self: { homepage = "https://bitbucket.org/emoto/gtalib"; description = "A library for GTA programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Gamgine" = callPackage @@ -6732,6 +6972,7 @@ self: { jailbreak = true; description = "Some kind of game library or set of utilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Ganymede" = callPackage @@ -6751,6 +6992,7 @@ self: { homepage = "https://github.com/BMeph/Ganymede"; description = "An Io interpreter in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GaussQuadIntegration" = callPackage @@ -6778,6 +7020,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GeBoP"; description = "Several games"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "GenI" = callPackage @@ -6812,6 +7055,7 @@ self: { homepage = "http://projects.haskell.org/GenI"; description = "A natural language generator (specifically, an FB-LTAG surface realiser)"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GenSmsPdu" = callPackage @@ -6825,6 +7069,7 @@ self: { executableHaskellDepends = [ base haskell98 QuickCheck random ]; description = "Automatic SMS message generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Genbank" = callPackage @@ -6858,6 +7103,7 @@ self: { homepage = "http://afonso.xyz"; description = "A general TicTacToe game implementation"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GenericPretty" = callPackage @@ -6899,6 +7145,7 @@ self: { homepage = "https://github.com/choener/GenussFold"; description = "MCFGs for Genus-1 RNA Pseudoknots"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GeoIp" = callPackage @@ -6910,6 +7157,7 @@ self: { libraryHaskellDepends = [ base bytestring bytestring-mmap syb ]; description = "Pure bindings for the MaxMind IP database"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GeocoderOpenCage" = callPackage @@ -6923,6 +7171,7 @@ self: { homepage = "https://github.com/juergenhah/Haskell-Geocoder-OpenCage.git"; description = "Geocoder and Reverse Geocoding Service Wrapper"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Geodetic" = callPackage @@ -6957,6 +7206,7 @@ self: { libraryHaskellDepends = [ base GeomPredicates ]; description = "Geometric predicates (Intel SSE)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GiST" = callPackage @@ -6985,6 +7235,7 @@ self: { homepage = "https://github.com/lettier/gifcurry"; description = "Create animated GIFs, overlaid with optional text, from video files"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "GiveYouAHead" = callPackage @@ -7027,6 +7278,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Glome"; description = "Ray Tracing Library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GlomeVec" = callPackage @@ -7058,6 +7310,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Glome"; description = "SDL Frontend for Glome ray tracer"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GoogleChart" = callPackage @@ -7086,6 +7339,7 @@ self: { homepage = "https://github.com/favilo/GoogleDirections.git"; description = "Haskell Interface to Google Directions API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GoogleSB" = callPackage @@ -7101,6 +7355,7 @@ self: { ]; description = "Interface to Google Safe Browsing API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GoogleSuggest" = callPackage @@ -7128,6 +7383,7 @@ self: { ]; description = "Interface to Google Translate API"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GotoT-transformers" = callPackage @@ -7151,8 +7407,8 @@ self: { }: mkDerivation { pname = "GrammarProducts"; - version = "0.1.1.1"; - sha256 = "199c7ac4127330a4b19a769d92ac9cc102dd8b434dfff74d331e3b5e1881b065"; + version = "0.1.1.2"; + sha256 = "9023283298ad178efaf9ba965e7a0005ff41a8a01d2e0f581ed3c29e414f15a2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -7160,10 +7416,10 @@ self: { FormalGrammars lens newtype parsers PrimitiveArray semigroups template-haskell transformers trifecta ]; - jailbreak = true; homepage = "https://github.com/choener/GrammarProducts"; description = "Grammar products and higher-dimensional grammars"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Graph500" = callPackage @@ -7182,6 +7438,7 @@ self: { executableHaskellDepends = [ array base mtl ]; description = "Graph500 benchmark-related definitions and data set generator"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GraphHammer" = callPackage @@ -7196,6 +7453,7 @@ self: { ]; description = "GraphHammer Haskell graph analyses framework inspired by STINGER"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GraphHammer-examples" = callPackage @@ -7213,6 +7471,7 @@ self: { ]; description = "Test harness for TriangleCount analysis"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GraphSCC" = callPackage @@ -7242,6 +7501,7 @@ self: { jailbreak = true; description = "Graph-Theoretic Analysis library"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Grempa" = callPackage @@ -7257,6 +7517,7 @@ self: { ]; description = "Embedded grammar DSL and LALR parser generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GroteTrap" = callPackage @@ -7293,6 +7554,7 @@ self: { homepage = "http://coiffier.net/projects/grow.html"; description = "A declarative make-like interpreter"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GrowlNotify" = callPackage @@ -7313,6 +7575,7 @@ self: { ]; description = "Notification utility for Growl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Gtk2hsGenerics" = callPackage @@ -7328,6 +7591,7 @@ self: { ]; description = "Convenience functions to extend Gtk2hs"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GtkGLTV" = callPackage @@ -7343,6 +7607,7 @@ self: { ]; description = "OpenGL support for Gtk-based GUIs for Tangible Values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "GtkTV" = callPackage @@ -7357,6 +7622,7 @@ self: { homepage = "http://haskell.org/haskellwiki/GtkTV"; description = "Gtk-based GUIs for Tangible Values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "GuiHaskell" = callPackage @@ -7376,6 +7642,7 @@ self: { homepage = "http://www-users.cs.york.ac.uk/~ndm/guihaskell/"; description = "A graphical REPL and development environment for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GuiTV" = callPackage @@ -7388,6 +7655,7 @@ self: { homepage = "http://haskell.org/haskellwiki/GuiTV"; description = "GUIs for Tangible Values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "H" = callPackage @@ -7412,6 +7680,7 @@ self: { doCheck = false; description = "The Haskell/R mixed programming environment"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-linux" ]; }) {}; "HARM" = callPackage @@ -7427,6 +7696,7 @@ self: { homepage = "http://www.engr.uconn.edu/~jeffm/Classes/CSE240-Spring-2001/Lectures/index.html"; description = "A simple ARM emulator in haskell"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HAppS-Data" = callPackage @@ -7444,6 +7714,7 @@ self: { jailbreak = true; description = "HAppS data manipulation libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HAppS-IxSet" = callPackage @@ -7459,6 +7730,7 @@ self: { syb-with-class template-haskell ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HAppS-Server" = callPackage @@ -7480,6 +7752,7 @@ self: { jailbreak = true; description = "Web related tools and services"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HAppS-State" = callPackage @@ -7500,6 +7773,7 @@ self: { jailbreak = true; description = "Event-based distributed state"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HAppS-Util" = callPackage @@ -7516,6 +7790,7 @@ self: { ]; description = "Web framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HAppSHelpers" = callPackage @@ -7545,6 +7820,7 @@ self: { homepage = "http://github.com/m4dc4p/hcl/tree/master"; description = "High-level library for building command line interfaces"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HCard" = callPackage @@ -7559,6 +7835,7 @@ self: { homepage = "http://patch-tag.com/publicrepos/HCard"; description = "A library for implementing a Deck of Cards"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HCodecs" = callPackage @@ -7605,6 +7882,7 @@ self: { homepage = "http://github.com/bos/hdbc-mysql"; description = "MySQL driver for HDBC"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HDBC-odbc" = callPackage @@ -7703,6 +7981,7 @@ self: { homepage = "http://vis.renci.org/jeff/pfs"; description = "Utilities for reading, manipulating, and writing HDR images"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) pfstools;}; "HERA" = callPackage @@ -7714,6 +7993,7 @@ self: { libraryHaskellDepends = [ base ]; librarySystemDepends = [ mpfr ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) mpfr;}; "HFrequencyQueue" = callPackage @@ -7727,6 +8007,7 @@ self: { homepage = "https://github.com/Bellaz/HfrequencyList"; description = "A Queue with a random (weighted) pick function"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HFuse" = callPackage @@ -7775,6 +8056,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Toolset for the Haskell Game Programmer"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {Urho3D = null; hgamer3d062 = null;}; "HGamer3D-API" = callPackage @@ -7793,6 +8075,7 @@ self: { homepage = "http://www.althainz.de/HGamer3D.html"; description = "Library to enable 3D game development for Haskell - API"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-Audio" = callPackage @@ -7809,6 +8092,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Toolset for the Haskell Game Programmer - Audio Functionality"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-Bullet-Binding" = callPackage @@ -7821,6 +8105,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Windows Game Engine for the Haskell Programmer - Bullet Bindings"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-CAudio-Binding" = callPackage @@ -7836,6 +8121,7 @@ self: { homepage = "http://www.althainz.de/HGamer3D.html"; description = "Library to enable 3D game development for Haskell - cAudio Bindings"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {HGamer3DCAudio015 = null;}; "HGamer3D-CEGUI-Binding" = callPackage @@ -7853,6 +8139,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "A Toolset for the Haskell Game Programmer - CEGUI Bindings"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {CEGUIBase = null; CEGUIOgreRenderer = null; hg3dcegui050 = null;}; @@ -7871,6 +8158,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Toolset for the Haskell Game Programmer - Game Engine and Utilities"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-Data" = callPackage @@ -7887,6 +8175,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Toolset for the Haskell Game Programmer - Data Definitions"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-Enet-Binding" = callPackage @@ -7900,6 +8189,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Enet Binding for HGamer3D"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) enet; hg3denet050 = null;}; "HGamer3D-GUI" = callPackage @@ -7917,6 +8207,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "GUI Functionality for HGamer3D"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-Graphics3D" = callPackage @@ -7937,6 +8228,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Toolset for the Haskell Game Programmer - 3D Graphics Functionality"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-InputSystem" = callPackage @@ -7954,6 +8246,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Joystick, Mouse and Keyboard Functionality for HGamer3D"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-Network" = callPackage @@ -7970,6 +8263,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Networking Functionality for HGamer3D"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-OIS-Binding" = callPackage @@ -7988,6 +8282,7 @@ self: { homepage = "http://www.althainz.de/HGamer3D.html"; description = "Library to enable 3D game development for Haskell - OIS Bindings"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {HGamer3DOIS015 = null;}; "HGamer3D-Ogre-Binding" = callPackage @@ -8007,6 +8302,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Ogre Binding for HGamer3D"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {OgreMain = null; OgrePaging = null; OgreProperty = null; OgreRTShaderSystem = null; OgreTerrain = null; hg3dogre050 = null;}; @@ -8026,6 +8322,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "SDL2 Binding for HGamer3D"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) SDL2; hg3dsdl2050 = null; inherit (pkgs.xorg) libX11;}; @@ -8044,6 +8341,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "SFML Binding for HGamer3D"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {hg3dsfml050 = null; sfml-audio = null; sfml-network = null; sfml-system = null; sfml-window = null;}; @@ -8061,6 +8359,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Windowing and Event Functionality for HGamer3D"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-Wire" = callPackage @@ -8080,6 +8379,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Wire Functionality for HGamer3D"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGraphStorage" = callPackage @@ -8105,6 +8405,7 @@ self: { homepage = "https://github.com/JPMoresmau/HGraphStorage"; description = "Graph database stored on disk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HHDL" = callPackage @@ -8118,6 +8419,7 @@ self: { homepage = "http://thesz.mskhug.ru/svn/hhdl/hackage/hhdl/"; description = "Hardware Description Language embedded in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HJScript" = callPackage @@ -8153,6 +8455,7 @@ self: { homepage = "https://github.com/JPMoresmau/HJVM"; description = "A library to create a Java Virtual Machine and manipulate Java objects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {jvm = null;}; "HJavaScript" = callPackage @@ -8183,6 +8486,7 @@ self: { homepage = "http://github.com/mikeizbicki/HLearn/"; description = "Algebraic foundation for homomorphic learning"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HLearn-approximation" = callPackage @@ -8199,6 +8503,7 @@ self: { HLearn-datastructures HLearn-distributions list-extras vector ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HLearn-classification" = callPackage @@ -8221,6 +8526,7 @@ self: { jailbreak = true; homepage = "http://github.com/mikeizbicki/HLearn/"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HLearn-datastructures" = callPackage @@ -8236,6 +8542,7 @@ self: { MonadRandom QuickCheck vector ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HLearn-distributions" = callPackage @@ -8258,6 +8565,7 @@ self: { homepage = "http://github.com/mikeizbicki/HLearn/"; description = "Distributions for use with the HLearn library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HList_0_4_1_0" = callPackage @@ -8334,6 +8642,7 @@ self: { homepage = "http://www.pontarius.org/sub-projects/hlogger/"; description = "Simple, concurrent and easy-to-use logging library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HMM" = callPackage @@ -8345,6 +8654,7 @@ self: { homepage = "https://github.com/mikeizbicki/hmm"; description = "A hidden markov model library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HMap" = callPackage @@ -8361,6 +8671,7 @@ self: { homepage = "https://github.com/atzeus/HMap"; description = "Fast heterogeneous maps and unconstrained typeable like functionality"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HNM" = callPackage @@ -8383,6 +8694,7 @@ self: { homepage = "http://sert.homedns.org/hs/hnm/"; description = "Happy Network Manager"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HODE" = callPackage @@ -8395,6 +8707,7 @@ self: { librarySystemDepends = [ ode ]; description = "Binding to libODE"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ode;}; "HOpenCV" = callPackage @@ -8453,6 +8766,7 @@ self: { homepage = "http://github.com/solidsnack/HPath"; description = "Extract Haskell declarations by name"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HPi" = callPackage @@ -8466,6 +8780,7 @@ self: { homepage = "https://github.com/WJWH/HPi"; description = "GPIO, I2C and SPI functions for the Raspberry Pi"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {bcm2835 = null;}; "HPlot" = callPackage @@ -8485,6 +8800,7 @@ self: { homepage = "http://yakov.cc/HPlot.html"; description = "A minimal monadic PLplot interface for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {plplotd-gnome2 = null;}; "HPong" = callPackage @@ -8503,6 +8819,7 @@ self: { homepage = "http://bonsaicode.wordpress.com/2009/04/23/hpong-012/"; description = "A simple OpenGL Pong game based on GLFW"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HROOT" = callPackage @@ -8522,6 +8839,7 @@ self: { homepage = "http://ianwookim.org/HROOT"; description = "Haskell binding to ROOT RooFit modules"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HROOT-core" = callPackage @@ -8534,6 +8852,7 @@ self: { homepage = "http://ianwookim.org/HROOT"; description = "Haskell binding to ROOT Core modules"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HROOT-graf" = callPackage @@ -8548,6 +8867,7 @@ self: { homepage = "http://ianwookim.org/HROOT"; description = "Haskell binding to ROOT Graf modules"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HROOT-hist" = callPackage @@ -8560,6 +8880,7 @@ self: { homepage = "http://ianwookim.org/HROOT"; description = "Haskell binding to ROOT Hist modules"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HROOT-io" = callPackage @@ -8572,6 +8893,7 @@ self: { homepage = "http://ianwookim.org/HROOT"; description = "Haskell binding to ROOT IO modules"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HROOT-math" = callPackage @@ -8584,6 +8906,7 @@ self: { homepage = "http://ianwookim.org/HROOT"; description = "Haskell binding to ROOT Math modules"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HRay" = callPackage @@ -8598,6 +8921,7 @@ self: { homepage = "http://boegel.kejo.be/ELIS/Haskell/HRay/"; description = "Haskell raytracer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HSFFIG" = callPackage @@ -8620,6 +8944,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/HSFFIG"; description = "Generate FFI import declarations from C include files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HSGEP" = callPackage @@ -8639,6 +8964,7 @@ self: { homepage = "http://github.com/mjsottile/hsgep/"; description = "Gene Expression Programming evolutionary algorithm in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HSH" = callPackage @@ -8677,6 +9003,7 @@ self: { jailbreak = true; description = "Convenience functions that use HSH, instances for HSH"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HSlippyMap" = callPackage @@ -8708,6 +9035,7 @@ self: { homepage = "https://github.com/agrafix/HSmarty"; description = "Small template engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HSoundFile" = callPackage @@ -8724,6 +9052,7 @@ self: { homepage = "http://mml.music.utexas.edu/jwlato/HSoundFile"; description = "Audio file reading/writing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HStringTemplate_0_7_3" = callPackage @@ -8802,6 +9131,7 @@ self: { homepage = "http://patch-tag.com/tphyahoo/r/tphyahoo/HStringTemplateHelpers"; description = "Convenience functions and instances for HStringTemplate"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HSvm" = callPackage @@ -8813,6 +9143,7 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Haskell Bindings for libsvm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HTF_0_12_2_3" = callPackage @@ -9190,6 +9521,7 @@ self: { homepage = "http://www.glyc.dc.uba.ar/intohylo/htab.php"; description = "Tableau based theorem prover for hybrid logics"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HTicTacToe" = callPackage @@ -9207,6 +9539,7 @@ self: { homepage = "http://github.com/snkkid/HTicTacToe"; description = "An SDL tic-tac-toe game"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HUnit_1_2_5_2" = callPackage @@ -9276,6 +9609,7 @@ self: { homepage = "https://github.com/dag/HUnit-Diff"; description = "Assertions for HUnit with difference reporting"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HUnit-Plus" = callPackage @@ -9297,6 +9631,7 @@ self: { homepage = "https://github.com/emc2/HUnit-Plus"; description = "A test framework building on HUnit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HUnit-approx" = callPackage @@ -9338,6 +9673,7 @@ self: { homepage = "http://www.pontarius.org/sub-projects/hxmpp/"; description = "A (prototyped) easy to use XMPP library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HXQ" = callPackage @@ -9369,6 +9705,7 @@ self: { homepage = "http://www.di.uminho.pt/~jas/Research/HaLeX/HaLeX.html"; description = "HaLeX enables modelling, manipulation and animation of regular languages"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaMinitel" = callPackage @@ -9526,6 +9863,7 @@ self: { homepage = "https://github.com/RefactoringTools/HaRe/wiki"; description = "the Haskell Refactorer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "HaTeX_3_15_0_0" = callPackage @@ -9632,6 +9970,7 @@ self: { jailbreak = true; description = "This package is deprecated. From version 3, HaTeX does not need this anymore."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaTeX-qq" = callPackage @@ -9668,6 +10007,7 @@ self: { jailbreak = true; description = "An implementation of the Version Space Algebra learning framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaXml_1_24_1" = callPackage @@ -9767,6 +10107,7 @@ self: { homepage = "http://github.com/dmalikov/HaCh"; description = "Simple chat"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HackMail" = callPackage @@ -9788,6 +10129,7 @@ self: { homepage = "http://patch-tag.com/publicrepos/Hackmail"; description = "A Procmail Replacement as Haskell EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Haggressive" = callPackage @@ -9806,6 +10148,7 @@ self: { homepage = "https://github.com/Pold87/Haggressive"; description = "Aggression analysis for Tweets on Twitter"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HandlerSocketClient" = callPackage @@ -9906,6 +10249,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/HarmTrace"; description = "Harmony Analysis and Retrieval of Music"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HarmTrace-Base" = callPackage @@ -9926,6 +10270,7 @@ self: { homepage = "https://bitbucket.org/bash/harmtrace-base"; description = "Parsing and unambiguously representing musical chords"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HasGP" = callPackage @@ -9943,6 +10288,7 @@ self: { homepage = "http://www.cl.cam.ac.uk/~sbh11/HasGP"; description = "A Haskell library for inference using Gaussian processes"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Haschoo" = callPackage @@ -9962,6 +10308,7 @@ self: { homepage = "http://iki.fi/matti.niemenmaa/misc-projects.html#haschoo"; description = "Minimalist R5RS Scheme interpreter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hashell" = callPackage @@ -9981,6 +10328,7 @@ self: { jailbreak = true; description = "Simple shell written in Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaskRel" = callPackage @@ -10019,6 +10367,7 @@ self: { libraryHaskellDepends = [ base hmatrix ]; description = "Pure Haskell implementation of the Levenberg-Marquardt algorithm"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaskellNN" = callPackage @@ -10030,6 +10379,7 @@ self: { libraryHaskellDepends = [ base hmatrix random ]; description = "High Performance Neural Network in Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaskellNet_0_4_2" = callPackage @@ -10157,6 +10507,7 @@ self: { ]; description = "A concurrent bittorrent client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaskellTutorials" = callPackage @@ -10191,6 +10542,7 @@ self: { homepage = "http://www.matthewhayden.co.uk"; description = "A reproduction of the Atari 1979 classic \"Asteroids\""; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hate" = callPackage @@ -10216,6 +10568,7 @@ self: { homepage = "http://github.com/bananu7/Hate"; description = "A small 2D game framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hawk" = callPackage @@ -10238,6 +10591,7 @@ self: { jailbreak = true; description = "Haskell Web Application Kit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hayoo" = callPackage @@ -10266,6 +10620,7 @@ self: { homepage = "http://holumbus.fh-wedel.de"; description = "The Hayoo! search engine for Haskell API search on hackage"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hclip" = callPackage @@ -10299,6 +10654,7 @@ self: { ]; description = "Line oriented editor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HerbiePlugin" = callPackage @@ -10336,6 +10692,7 @@ self: { jailbreak = true; description = "Message-based middleware layer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hieroglyph" = callPackage @@ -10355,6 +10712,7 @@ self: { homepage = "http://vis.renci.org/jeff/hieroglyph"; description = "Purely functional 2D graphics for visualization"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HiggsSet" = callPackage @@ -10372,6 +10730,7 @@ self: { homepage = "http://github.com/lpeterse/HiggsSet"; description = "A multi-index set with advanced query capabilites"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hipmunk" = callPackage @@ -10386,6 +10745,7 @@ self: { homepage = "https://github.com/meteficha/Hipmunk"; description = "A Haskell binding for Chipmunk"; license = "unknown"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "HipmunkPlayground" = callPackage @@ -10405,6 +10765,7 @@ self: { homepage = "https://github.com/meteficha/HipmunkPlayground"; description = "A playground for testing Hipmunk"; license = "unknown"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Hish" = callPackage @@ -10453,6 +10814,7 @@ self: { ]; description = "An MPD client designed for a Home Theatre PC"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hoed" = callPackage @@ -10474,6 +10836,7 @@ self: { homepage = "https://wiki.haskell.org/Hoed"; description = "Lightweight algorithmic debugging"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HoleyMonoid" = callPackage @@ -10506,6 +10869,7 @@ self: { homepage = "http://holumbus.fh-wedel.de"; description = "intra- and inter-program communication"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Holumbus-MapReduce" = callPackage @@ -10528,6 +10892,7 @@ self: { homepage = "http://holumbus.fh-wedel.de"; description = "a distributed MapReduce framework"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Holumbus-Searchengine" = callPackage @@ -10549,6 +10914,7 @@ self: { homepage = "http://holumbus.fh-wedel.de"; description = "A search and indexing engine"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Holumbus-Storage" = callPackage @@ -10569,6 +10935,7 @@ self: { homepage = "http://holumbus.fh-wedel.de"; description = "a distributed storage system"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Homology" = callPackage @@ -10601,6 +10968,7 @@ self: { jailbreak = true; description = "A Simple Key Value Store"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HostAndPort" = callPackage @@ -10629,6 +10997,7 @@ self: { homepage = "http://github.com/Raynes/Hricket"; description = "A Cricket scoring application"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hs2lib" = callPackage @@ -10657,6 +11026,7 @@ self: { homepage = "http://blog.zhox.com/category/hs2lib/"; description = "A Library and Preprocessor that makes it easier to create shared libs from Haskell programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HsASA" = callPackage @@ -10680,6 +11050,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Haskell binding to libharu (http://libharu.sourceforge.net/)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HsHyperEstraier" = callPackage @@ -10698,6 +11069,7 @@ self: { homepage = "http://cielonegro.org/HsHyperEstraier.html"; description = "HyperEstraier binding for Haskell"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {hyperestraier = null; qdbm = null;}; "HsJudy" = callPackage @@ -10711,6 +11083,7 @@ self: { homepage = "http://www.pugscode.org/"; description = "Judy bindings, and some nice APIs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {Judy = null;}; "HsOpenSSL" = callPackage @@ -10771,6 +11144,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Haskell interface to embedded Perl 5 interpreter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HsSVN" = callPackage @@ -10784,6 +11158,7 @@ self: { homepage = "https://github.com/phonohawk/HsSVN"; description = "Partial Subversion (SVN) binding for Haskell"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HsSyck" = callPackage @@ -10831,6 +11206,7 @@ self: { homepage = "http://github.com/rukav/Hsed"; description = "Stream Editor in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hsmtlib" = callPackage @@ -10850,6 +11226,7 @@ self: { homepage = "https://github.com/MfesGA/Hsmtlib"; description = "Haskell library for easy interaction with SMT-LIB 2 compliant solvers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HueAPI" = callPackage @@ -10884,6 +11261,7 @@ self: { homepage = "http://github.com/tobs169/HulkImport#readme"; description = "Easily bulk import CSV data to SQL Server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hungarian-Munkres" = callPackage @@ -10912,6 +11290,7 @@ self: { jailbreak = true; description = "Indexable, serializable form of Data.Dynamic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "IFS" = callPackage @@ -10928,6 +11307,7 @@ self: { homepage = "http://www.alpheccar.org"; description = "Iterated Function System generation for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "INblobs" = callPackage @@ -10947,6 +11327,7 @@ self: { homepage = "http://haskell.di.uminho.pt/jmvilaca/INblobs/"; description = "Editor and interpreter for Interaction Nets"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "IOR" = callPackage @@ -10958,6 +11339,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Region based resource management for the IO monad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "IORefCAS" = callPackage @@ -10975,6 +11357,7 @@ self: { homepage = "https://github.com/rrnewton/haskell-lockfree-queue/wiki"; description = "Atomic compare and swap for IORefs and STRefs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "IOSpec" = callPackage @@ -11052,6 +11435,7 @@ self: { homepage = "https://github.com/mmirman/ImperativeHaskell"; description = "A library for writing Imperative style haskell"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "IndentParser" = callPackage @@ -11088,6 +11472,7 @@ self: { libraryHaskellDepends = [ base haskell98 ]; description = "liftA2 for infix operators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Interpolation" = callPackage @@ -11171,6 +11556,7 @@ self: { homepage = "https://github.com/yunxing/Irc"; description = "DSL for IRC bots"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "IrrHaskell" = callPackage @@ -11221,6 +11607,7 @@ self: { ]; description = "A combinator library on top of a generalised JSON type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JSON-Combinator-Examples" = callPackage @@ -11234,6 +11621,7 @@ self: { ]; description = "Example uses of the JSON-Combinator library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JSONb" = callPackage @@ -11260,6 +11648,7 @@ self: { homepage = "http://github.com/solidsnack/JSONb/"; description = "JSON parser that uses byte strings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JYU-Utils" = callPackage @@ -11280,6 +11669,7 @@ self: { jailbreak = true; description = "Some utility functions for JYU projects"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JackMiniMix" = callPackage @@ -11292,6 +11682,7 @@ self: { homepage = "http://www.renickbell.net/doku.php?id=jackminimix"; description = "control JackMiniMix"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Javasf" = callPackage @@ -11308,6 +11699,7 @@ self: { ]; description = "A utility to print the SourceFile attribute of one or more Java class files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Javav" = callPackage @@ -11321,6 +11713,7 @@ self: { executableHaskellDepends = [ base ]; description = "A utility to print the target version of Java class files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JsContracts" = callPackage @@ -11344,6 +11737,7 @@ self: { homepage = "http://www.cs.brown.edu/research/plt/"; description = "Design-by-contract for JavaScript"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JsonGrammar" = callPackage @@ -11369,6 +11763,7 @@ self: { homepage = "https://github.com/MedeaMelana/JsonGrammar2"; description = "Combinators for bidirectional JSON parsing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JuicyPixels_3_1_7_1" = callPackage @@ -11749,6 +12144,7 @@ self: { ]; jailbreak = true; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JunkDB-driver-hashtables" = callPackage @@ -11847,6 +12243,7 @@ self: { homepage = "https://github.com/Hamcha/Ketchup"; description = "A super small web framework for those who don't like big and fancy codebases"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "KiCS" = callPackage @@ -11872,6 +12269,7 @@ self: { homepage = "http://www.curry-language.org"; description = "A compiler from Curry to Haskell"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {kics = null;}; "KiCS-debugger" = callPackage @@ -11894,6 +12292,7 @@ self: { homepage = "http://curry-language.org"; description = "debug features for kics"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "KiCS-prophecy" = callPackage @@ -11910,6 +12309,7 @@ self: { homepage = "http://curry-language.org"; description = "a transformation used by the kics debugger"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Kleislify" = callPackage @@ -11934,6 +12334,7 @@ self: { homepage = "http://www.gkayaalp.com/p/konf.html"; description = "A configuration language and a parser"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Kriens" = callPackage @@ -11961,6 +12362,7 @@ self: { homepage = "https://code.google.com/p/kyotocabinet-hs/"; description = "Kyoto Cabinet DB bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) kyotocabinet;}; "L-seed" = callPackage @@ -11980,6 +12382,23 @@ self: { homepage = "http://www.entropia.de/wiki/L-seed"; description = "Plant growing programming game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "LATS" = callPackage + ({ mkDerivation, base, constraint-classes, hmatrix, semigroups + , vector + }: + mkDerivation { + pname = "LATS"; + version = "0.4.1"; + sha256 = "6a07e22952b72a02665a7adc9058a0dfba2e667f2459758cc9dda3b258380698"; + libraryHaskellDepends = [ + base constraint-classes hmatrix semigroups vector + ]; + homepage = "http://github.com/guaraqe/lats#readme"; + description = "Linear Algebra on Typed Spaces"; + license = stdenv.lib.licenses.bsd3; }) {}; "LDAP" = callPackage @@ -12037,6 +12456,7 @@ self: { ]; description = "A basic lambda calculator with beta reduction and a REPL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LambdaHack" = callPackage @@ -12079,6 +12499,7 @@ self: { homepage = "http://github.com/LambdaHack/LambdaHack"; description = "A game engine library for roguelike dungeon crawlers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {gtk2 = pkgs.gnome2.gtk;}; "LambdaINet" = callPackage @@ -12098,6 +12519,7 @@ self: { homepage = "not available"; description = "Graphical Interaction Net Evaluator for Optimal Evaluation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LambdaNet" = callPackage @@ -12114,6 +12536,7 @@ self: { jailbreak = true; description = "A configurable and extensible neural network library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LambdaPrettyQuote" = callPackage @@ -12139,6 +12562,7 @@ self: { homepage = "http://github.com/jfischoff/LambdaPrettyQuote"; description = "Quasiquoter, and Arbitrary helpers for the lambda calculus"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LambdaShell" = callPackage @@ -12157,6 +12581,7 @@ self: { homepage = "http://rwd.rdockins.name/lambda/home/"; description = "Simple shell for evaluating lambda expressions"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Lambdajudge" = callPackage @@ -12216,6 +12641,7 @@ self: { homepage = "http://code.google.com/p/lastik"; description = "A library for compiling programs in a variety of languages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Lattices" = callPackage @@ -12248,6 +12674,7 @@ self: { ]; description = "Lazy PBKDF2 generator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "LazyVault" = callPackage @@ -12278,6 +12705,7 @@ self: { homepage = "http://quasimal.com/projects/level_0.html"; description = "A Snake II clone written using SDL"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "LibClang" = callPackage @@ -12299,6 +12727,7 @@ self: { homepage = "https://github.com/chetant/LibClang/issues"; description = "Haskell bindings for libclang (a C++ parsing library)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ncurses;}; "LibZip" = callPackage @@ -12315,6 +12744,7 @@ self: { homepage = "http://bitbucket.org/astanin/hs-libzip/"; description = "Bindings to libzip, a library for manipulating zip archives"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LibZip_0_11_1" = callPackage @@ -12348,6 +12778,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Wrapper for data that can be unbounded"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LinearSplit" = callPackage @@ -12362,6 +12793,7 @@ self: { homepage = "http://github.com/rukav/LinearSplit"; description = "Partition the sequence of items to the subsequences in the order given"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LinguisticsTypes" = callPackage @@ -12387,6 +12819,7 @@ self: { homepage = "https://github.com/choener/LinguisticsTypes"; description = "Collection of types for natural language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LinkChecker" = callPackage @@ -12405,6 +12838,7 @@ self: { homepage = "http://janzzstimmpfle.de/~jens/software/LinkChecker/"; description = "Check a bunch of local html files for broken links"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "List" = callPackage @@ -12550,6 +12984,7 @@ self: { jailbreak = true; description = "a parallel implementation of logic programming using distributed tree exploration"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LogicGrowsOnTrees-MPI" = callPackage @@ -12576,6 +13011,7 @@ self: { jailbreak = true; description = "an adapter for LogicGrowsOnTrees that uses MPI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openmpi;}; "LogicGrowsOnTrees-network" = callPackage @@ -12605,6 +13041,7 @@ self: { jailbreak = true; description = "an adapter for LogicGrowsOnTrees that uses multiple processes running in a network"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LogicGrowsOnTrees-processes" = callPackage @@ -12634,6 +13071,7 @@ self: { jailbreak = true; description = "an adapter for LogicGrowsOnTrees that uses multiple processes for parallelism"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LslPlus" = callPackage @@ -12656,6 +13094,7 @@ self: { homepage = "http:/lslplus.sourceforge.net/"; description = "An execution and testing framework for the Linden Scripting Language (LSL)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Lucu" = callPackage @@ -12678,14 +13117,15 @@ self: { homepage = "http://cielonegro.org/Lucu.html"; description = "HTTP Daemonic Library"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MASMGen" = callPackage ({ mkDerivation, base, containers, mtl }: mkDerivation { pname = "MASMGen"; - version = "0.4.0.0"; - sha256 = "9565a4905772c12dfccd9c17c5b3f52601e2aa28c9a7a288e2ab577834ed10e5"; + version = "0.5.0.0"; + sha256 = "ec88b0727eb25a3f9a7d5d71dbc3fe9e935cd11a1be698422d7b952a129bbab9"; libraryHaskellDepends = [ base containers mtl ]; testHaskellDepends = [ base containers mtl ]; description = "Generate MASM code from haskell"; @@ -12709,6 +13149,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/software/mcfolddp/"; description = "Folding algorithm based on nucleotide cyclic motifs"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MFlow_0_4_5_9" = callPackage @@ -12773,6 +13214,7 @@ self: { homepage = "https://github.com/DanBurton/MHask#readme"; description = "The category of monads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MSQueue" = callPackage @@ -12828,6 +13270,7 @@ self: { homepage = "http://nautilus.cs.miyazaki-u.ac.jp/~skata/MagicHaskeller.html"; description = "Automatic inductive functional programmer by systematic search"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MailchimpSimple" = callPackage @@ -12861,6 +13304,7 @@ self: { jailbreak = true; description = "MaybeT monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MaybeT-monads-tf" = callPackage @@ -12873,6 +13317,7 @@ self: { jailbreak = true; description = "MaybeT monad transformer compatible with monads-tf (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MaybeT-transformers" = callPackage @@ -12885,6 +13330,7 @@ self: { jailbreak = true; description = "MaybeT monad transformer using transformers instead of mtl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MazesOfMonad" = callPackage @@ -12903,6 +13349,7 @@ self: { ]; description = "Console-based Role Playing Game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MeanShift" = callPackage @@ -12927,6 +13374,7 @@ self: { jailbreak = true; description = "A library for units of measurement"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MemoTrie_0_6_2" = callPackage @@ -13012,6 +13460,7 @@ self: { homepage = "http://github.com/benhamner/Metrics/"; description = "Evaluation metrics commonly used in supervised machine learning"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Mhailist" = callPackage @@ -13031,6 +13480,7 @@ self: { jailbreak = true; description = "Haskell mailing list manager"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Michelangelo" = callPackage @@ -13047,6 +13497,7 @@ self: { ]; description = "OpenGL for dummies"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MicrosoftTranslator" = callPackage @@ -13084,6 +13535,7 @@ self: { homepage = "http://www.tcs.ifi.lmu.de/~abel/miniagda/"; description = "A toy dependently typed programming language with type-based termination"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MissingH" = callPackage @@ -13152,6 +13604,7 @@ self: { homepage = "http://github.com/softmechanics/missingpy"; description = "Haskell interface to Python"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Modulo" = callPackage @@ -13177,6 +13630,7 @@ self: { executableHaskellDepends = [ base GLUT random ]; description = "A FRP library based on signal functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "MoeDict" = callPackage @@ -13222,6 +13676,7 @@ self: { jailbreak = true; description = "Polymorphic combinators for working with foreign functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MonadCatchIO-transformers_0_3_1_2" = callPackage @@ -13272,6 +13727,7 @@ self: { jailbreak = true; description = "Polymorphic combinators for working with foreign functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MonadCompose" = callPackage @@ -13306,6 +13762,7 @@ self: { homepage = "http://monadgarden.cs.missouri.edu/MonadLab"; description = "Automatically generate layered monads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MonadPrompt" = callPackage @@ -13451,6 +13908,7 @@ self: { homepage = "http://www.geocities.jp/takascience/haskell/monadius_en.html"; description = "2-D arcade scroller"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Monaris" = callPackage @@ -13469,6 +13927,7 @@ self: { homepage = "https://github.com/fumieval/Monaris/"; description = "A simple tetris clone"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Monatron" = callPackage @@ -13480,6 +13939,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Monad transformer library with uniform liftings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Monatron-IO" = callPackage @@ -13493,6 +13953,7 @@ self: { homepage = "https://github.com/kreuzschlitzschraubenzieher/Monatron-IO"; description = "MonadIO instances for the Monatron transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Monocle" = callPackage @@ -13504,6 +13965,7 @@ self: { libraryHaskellDepends = [ base containers haskell98 mtl ]; description = "Symbolic computations in strict monoidal categories with LaTeX output"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MorseCode" = callPackage @@ -13723,6 +14185,7 @@ self: { executableHaskellDepends = [ base HCL HTTP network regex-compat ]; description = "Simple application for calculating n-grams using Google"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NTRU" = callPackage @@ -13740,6 +14203,7 @@ self: { jailbreak = true; description = "NTRU Cryptography"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "NXT" = callPackage @@ -13765,6 +14229,7 @@ self: { homepage = "http://mitar.tnode.com"; description = "A Haskell interface to Lego Mindstorms NXT"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {bluetooth = null;}; "NXTDSL" = callPackage @@ -13784,6 +14249,7 @@ self: { homepage = "https://github.com/agrafix/legoDSL"; description = "Generate NXC Code from DSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NanoProlog" = callPackage @@ -13827,6 +14293,7 @@ self: { homepage = "https://github.com/choener/NaturalLanguageAlphabets"; description = "Simple scoring schemes for word alignments"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NaturalSort" = callPackage @@ -13924,6 +14391,7 @@ self: { homepage = "https://github.com/ptek/netsnmp"; description = "Bindings for net-snmp's C API for clients"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) net_snmp;}; "Network-NineP" = callPackage @@ -13989,6 +14457,7 @@ self: { homepage = "http://github.com/glguy/ninjas"; description = "Ninja game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NoSlow" = callPackage @@ -14010,6 +14479,7 @@ self: { homepage = "http://code.haskell.org/NoSlow"; description = "Microbenchmarks for various array libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NoTrace" = callPackage @@ -14055,6 +14525,7 @@ self: { homepage = "http://www.nomyx.net"; description = "A Nomic game in haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Nomyx-Core" = callPackage @@ -14082,6 +14553,7 @@ self: { homepage = "http://www.nomyx.net"; description = "A Nomic game in haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Nomyx-Language" = callPackage @@ -14102,6 +14574,7 @@ self: { homepage = "http://www.nomyx.net"; description = "Language to express rules for Nomic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Nomyx-Rules" = callPackage @@ -14118,6 +14591,7 @@ self: { ]; description = "Language to express rules for Nomic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Nomyx-Web" = callPackage @@ -14143,6 +14617,7 @@ self: { homepage = "http://www.nomyx.net"; description = "Web gui for Nomyx"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NonEmpty" = callPackage @@ -14171,6 +14646,7 @@ self: { homepage = "http://code.google.com/p/nonempty/"; description = "A list with a length of at least one"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NumInstances" = callPackage @@ -14206,6 +14682,7 @@ self: { homepage = "http://patch-tag.com/r/lpsmith/NumberSieves"; description = "Number Theoretic Sieves: primes, factorization, and Euler's Totient"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NumberTheory" = callPackage @@ -14249,6 +14726,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/adpfusion"; description = "Nussinov78 using the ADPfusion library"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Nutri" = callPackage @@ -14274,6 +14752,7 @@ self: { homepage = "http://haskell.org/haskellwiki/OGL"; description = "A context aware binding for the OpenGL graphics system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OSM" = callPackage @@ -14290,6 +14769,7 @@ self: { homepage = "https://github.com/tonymorris/geo-osm"; description = "Parse OpenStreetMap files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OTP" = callPackage @@ -14315,6 +14795,7 @@ self: { homepage = "https://github.com/yokto/object"; description = "Object oriented programming for haskell using multiparameter typeclasses"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ObjectIO" = callPackage @@ -14330,6 +14811,7 @@ self: { winspool ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {comctl32 = null; comdlg32 = null; gdi32 = null; kernel32 = null; ole32 = null; shell32 = null; user32 = null; winmm = null; winspool = null;}; @@ -14440,6 +14922,7 @@ self: { homepage = "http://www.gekkou.co.uk/"; description = "Provides a wrapper for deriving word types with fewer bits"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "Omega" = callPackage @@ -14452,6 +14935,7 @@ self: { testHaskellDepends = [ base containers HUnit ]; description = "Integer sets and relations using Presburger arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OneTuple" = callPackage @@ -14480,6 +14964,7 @@ self: { homepage = "https://github.com/audreyt/openafp/"; description = "IBM AFP document format parser and generator"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OpenAFP-Utils" = callPackage @@ -14500,6 +14985,7 @@ self: { ]; description = "Assorted utilities to work with AFP data streams"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OpenAL" = callPackage @@ -14520,6 +15006,7 @@ self: { homepage = "https://github.com/haskell-openal/ALUT"; description = "A binding to the OpenAL cross-platform 3D audio API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) openal;}; "OpenCL" = callPackage @@ -14536,6 +15023,7 @@ self: { homepage = "https://github.com/IFCA/opencl"; description = "Haskell high-level wrapper for OpenCL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {OpenCL = null;}; "OpenCLRaw" = callPackage @@ -14549,6 +15037,7 @@ self: { homepage = "http://vis.renci.org/jeff/opencl"; description = "The OpenCL Standard for heterogenous data-parallel computing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OpenCLWrappers" = callPackage @@ -14652,6 +15141,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Opengl"; description = "A binding for the OpenGL graphics system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "OpenGLCheck" = callPackage @@ -14665,6 +15155,7 @@ self: { ]; description = "Quickcheck instances for various data structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OpenGLRaw_1_5_0_0" = callPackage @@ -14742,6 +15233,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Opengl"; description = "A raw binding for the OpenGL graphics system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) mesa;}; "OpenGLRaw21" = callPackage @@ -14754,6 +15246,7 @@ self: { jailbreak = true; description = "The intersection of OpenGL 2.1 and OpenGL 3.1 Core"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OpenSCAD" = callPackage @@ -14774,6 +15267,7 @@ self: { homepage = "https://chiselapp.com/user/mwm/repository/OpenSCAD/"; description = "ADT wrapper and renderer for OpenSCAD models"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OpenVG" = callPackage @@ -14786,6 +15280,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "OpenVG (ShivaVG-0.2.1) binding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OpenVGRaw" = callPackage @@ -14799,6 +15294,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Raw binding to OpenVG (ShivaVG-0.2.1 implementation)."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Operads" = callPackage @@ -14812,6 +15308,7 @@ self: { homepage = "http://math.stanford.edu/~mik/operads"; description = "Groebner basis computation for Operads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OptDir" = callPackage @@ -14860,6 +15357,7 @@ self: { homepage = "https://github.com/dwd31415/Haskell-OrchestrateDB"; description = "Unofficial Haskell Client Library for the Orchestrate.io API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OrderedBits" = callPackage @@ -14932,6 +15430,7 @@ self: { homepage = "http://github.com/Andrey-Sisoyev/PCLT"; description = "Extension to Show: templating, catalogizing, languages, parameters, etc"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "PCLT-DB" = callPackage @@ -14949,6 +15448,7 @@ self: { homepage = "http://github.com/Andrey-Sisoyev/PCLT-DB"; description = "An addon to PCLT package: enchance PCLT catalog with PostgreSQL powers"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "PDBtools" = callPackage @@ -15010,6 +15510,7 @@ self: { ]; description = "This is a package which includes Assignments, Email, User and Reviews modules for Programming in Haskell course"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "PageIO" = callPackage @@ -15036,6 +15537,7 @@ self: { ]; description = "Page-oriented extraction and composition library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Paillier" = callPackage @@ -15055,6 +15557,7 @@ self: { jailbreak = true; description = "a simple Paillier cryptosystem"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "PandocAgda" = callPackage @@ -15075,6 +15578,7 @@ self: { jailbreak = true; description = "Pandoc support for literate Agda"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Paraiso" = callPackage @@ -15100,6 +15604,7 @@ self: { homepage = "http://www.paraiso-lang.org/wiki/index.php/Main_Page"; description = "a code generator for partial differential equations solvers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Parry" = callPackage @@ -15118,6 +15623,7 @@ self: { homepage = "http://parry.lif.univ-mrs.fr"; description = "A proven synchronization server for high performance computing"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ParsecTools" = callPackage @@ -15192,6 +15698,7 @@ self: { librarySystemDepends = [ libxml2 ]; description = "Relational optimiser and code generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libxml2;}; "Peano" = callPackage @@ -15232,6 +15739,7 @@ self: { jailbreak = true; description = "A perfect hashing library for mapping bytestrings to values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {cmph = null;}; "PermuteEffects" = callPackage @@ -15245,6 +15753,7 @@ self: { homepage = "https://github.com/MedeaMelana/PermuteEffects"; description = "Permutations of effectful computations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Phsu" = callPackage @@ -15271,6 +15780,7 @@ self: { homepage = "localhost:9119"; description = "Personal Happstack Server Utils"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Pipe" = callPackage @@ -15283,6 +15793,7 @@ self: { homepage = "http://iki.fi/matti.niemenmaa/pipe/"; description = "Process piping library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Piso" = callPackage @@ -15338,8 +15849,8 @@ self: { }: mkDerivation { pname = "Plot-ho-matic"; - version = "0.9.0.4"; - sha256 = "8f452a320c84cbb6f09670307b57af41c0ec30414440bd4f7155d13d0c28215a"; + version = "0.9.0.5"; + sha256 = "2d39740f4bcca543b6fa53faf6dacb1d266f91986bc995fe2d0caeb68578dc3b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -15350,6 +15861,7 @@ self: { executableHaskellDepends = [ base containers generic-accessors ]; description = "Real-time line plotter for generic data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "PlslTools" = callPackage @@ -15369,6 +15881,7 @@ self: { homepage = "LLayland.wordpress.com"; description = "So far just a lint like program for PL/SQL. Diff and refactoring tools are planned"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Plural" = callPackage @@ -15393,6 +15906,7 @@ self: { executableHaskellDepends = [ array base clock GLUT random ]; description = "An imaginary world"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "PortFusion" = callPackage @@ -15431,30 +15945,54 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Thin wrapper over the C postgresql library"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "PrimitiveArray" = callPackage - ({ mkDerivation, aeson, base, binary, bits, cereal, deepseq - , hashable, OrderedBits, primitive, QuickCheck, test-framework - , test-framework-quickcheck2, test-framework-th, vector - , vector-binary-instances, vector-th-unbox + ({ mkDerivation, aeson, base, binary, bits, cereal, cereal-vector + , deepseq, hashable, OrderedBits, primitive, QuickCheck + , test-framework, test-framework-quickcheck2, test-framework-th + , vector, vector-binary-instances, vector-th-unbox }: mkDerivation { pname = "PrimitiveArray"; - version = "0.7.0.0"; - sha256 = "ecbf084d9167a0184e2e4504157f2e992c0bd9013a5e3c8ff98169492b7d8309"; + version = "0.7.0.1"; + sha256 = "06a856c82a5858f7b91948b2816b3afe5fab14bde3be83676900cb70c2cc53a1"; libraryHaskellDepends = [ - aeson base binary bits cereal deepseq hashable OrderedBits - primitive QuickCheck vector vector-binary-instances vector-th-unbox + aeson base binary bits cereal cereal-vector deepseq hashable + OrderedBits primitive QuickCheck vector vector-binary-instances + vector-th-unbox ]; testHaskellDepends = [ base QuickCheck test-framework test-framework-quickcheck2 test-framework-th ]; - jailbreak = true; homepage = "https://github.com/choener/PrimitiveArray"; description = "Efficient multidimensional arrays"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "PrimitiveArray-Pretty" = callPackage + ({ mkDerivation, base, diagrams, diagrams-lib, diagrams-postscript + , diagrams-svg, log-domain, QuickCheck, split, test-framework + , test-framework-quickcheck2, test-framework-th + }: + mkDerivation { + pname = "PrimitiveArray-Pretty"; + version = "0.0.0.1"; + sha256 = "cd1b84ee169bb3fa05eac16916158a622984a78e9ddaca834deec3f79e6095ac"; + libraryHaskellDepends = [ + base diagrams diagrams-lib diagrams-postscript diagrams-svg + log-domain split + ]; + testHaskellDepends = [ + base QuickCheck test-framework test-framework-quickcheck2 + test-framework-th + ]; + homepage = "https://github.com/choener/PrimitiveArray-Pretty"; + description = "Pretty-printing for primitive arrays"; + license = stdenv.lib.licenses.bsd3; }) {}; "Printf-TH" = callPackage @@ -15465,6 +16003,7 @@ self: { sha256 = "7ddb98d79c320b71c5ffd9f2a0eda2f1898f31ff53ee5f84dfc95c108ada2f58"; libraryHaskellDepends = [ base haskell98 pretty template-haskell ]; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "PriorityChansConverger" = callPackage @@ -15476,6 +16015,7 @@ self: { libraryHaskellDepends = [ base containers stm ]; description = "Read single output from an array of inputs - channels with priorities"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ProbabilityMonads" = callPackage @@ -15487,6 +16027,7 @@ self: { libraryHaskellDepends = [ base MaybeT MonadRandom mtl ]; description = "Probability distribution monads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "PropLogic" = callPackage @@ -15517,6 +16058,7 @@ self: { homepage = "https://github.com/dillonhuff/Proper"; description = "An implementation of propositional logic in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ProxN" = callPackage @@ -15553,6 +16095,7 @@ self: { homepage = "http://pugscode.org/"; description = "A Perl 6 Implementation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Pup-Events" = callPackage @@ -15605,6 +16148,7 @@ self: { ]; description = "A networked event handling framework for hooking into other programs"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Pup-Events-PQueue" = callPackage @@ -15643,6 +16187,7 @@ self: { homepage = "http://www.cs.nott.ac.uk/~asg/QIO/"; description = "The Quantum IO Monad is a library for defining quantum computations in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "QuadEdge" = callPackage @@ -15654,6 +16199,7 @@ self: { libraryHaskellDepends = [ base random vector ]; description = "QuadEdge structure for representing triangulations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "QuadTree" = callPackage @@ -15703,6 +16249,7 @@ self: { homepage = "http://gowthamk.github.io/Quelea"; description = "Programming with Eventual Consistency over Cassandra"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "QuickAnnotate" = callPackage @@ -15719,6 +16266,7 @@ self: { homepage = "http://code.haskell.org/QuickAnnotate/"; description = "Annotation Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "QuickCheck_1_2_0_1" = callPackage @@ -15811,6 +16359,7 @@ self: { homepage = "https://github.com/nikita-volkov/QuickCheck-GenT"; description = "A GenT monad transformer for QuickCheck library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "QuickCheck-safe" = callPackage @@ -15860,6 +16409,7 @@ self: { homepage = "https://github.com/ssadler/quickson"; description = "Quick JSON extractions with Aeson"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "R-pandoc" = callPackage @@ -15879,6 +16429,7 @@ self: { jailbreak = true; description = "A pandoc filter to express R plots inside markdown"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RANSAC" = callPackage @@ -15924,6 +16475,7 @@ self: { jailbreak = true; description = "A framework for writing RESTful applications"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RFC1751" = callPackage @@ -15958,6 +16510,7 @@ self: { ]; description = "A reflective JSON serializer/parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RMP" = callPackage @@ -15978,6 +16531,7 @@ self: { executableSystemDepends = [ canlib ftd2xx ]; description = "Binding to code that controls a Segway RMP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {canlib = null; ftd2xx = null;}; "RNAFold" = callPackage @@ -16001,6 +16555,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/adpfusion"; description = "RNA secondary structure prediction"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RNAFoldProgs" = callPackage @@ -16021,6 +16576,7 @@ self: { jailbreak = true; description = "RNA secondary structure folding"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RNAdesign" = callPackage @@ -16046,6 +16602,7 @@ self: { executableHaskellDepends = [ bytestring cmdargs file-embed ]; description = "Multi-target RNA sequence design"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RNAdraw" = callPackage @@ -16066,6 +16623,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Draw RNA secondary structures"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RNAlien_1_0_0" = callPackage @@ -16147,6 +16705,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/software/rnawolf/"; description = "RNA folding with non-canonical basepairs and base-triplets"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RSA_2_1_0_1" = callPackage @@ -16257,6 +16816,7 @@ self: { libraryHaskellDepends = [ base HTTP-Simple network ]; description = "Interface to random.org"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Randometer" = callPackage @@ -16311,6 +16871,7 @@ self: { homepage = "http://kagami.touhou.ru/projects/show/ranka"; description = "HTTP to XMPP omegle chats gate"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Rasenschach" = callPackage @@ -16331,6 +16892,7 @@ self: { homepage = "http://hub.darcs.net/martingw/Rasenschach"; description = "Soccer simulation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Rasterific_0_4" = callPackage @@ -16499,6 +17061,7 @@ self: { homepage = "https://github.com/lookunder/RedmineHs"; description = "Library to access Redmine's REST services"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Ref" = callPackage @@ -16512,6 +17075,7 @@ self: { homepage = "https://bitbucket.org/carter/ref"; description = "Generic Mutable Ref Abstraction Layer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RefSerialize_0_3_1_3" = callPackage @@ -16565,6 +17129,7 @@ self: { homepage = "https://github.com/pablocouto/Referees"; description = "A utility for computing distributions of material to review among reviewers"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RepLib" = callPackage @@ -16611,6 +17176,7 @@ self: { ]; description = "Haskell bindings to ReviewBoard"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RichConditional" = callPackage @@ -16672,6 +17238,7 @@ self: { ]; description = "Limits the size of a directory's contents"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RoyalMonad" = callPackage @@ -16696,6 +17263,7 @@ self: { homepage = "https://github.com/jspahrsummers/RxHaskell"; description = "Reactive Extensions for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SBench" = callPackage @@ -16713,6 +17281,7 @@ self: { ]; description = "A benchmark suite for runtime and heap measurements over a series of inputs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SConfig" = callPackage @@ -16751,6 +17320,7 @@ self: { librarySystemDepends = [ SDL_gfx ]; description = "Binding to libSDL_gfx"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) SDL_gfx;}; "SDL-image" = callPackage @@ -16765,6 +17335,7 @@ self: { librarySystemDepends = [ SDL_image ]; description = "Binding to libSDL_image"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) SDL_image;}; "SDL-mixer" = callPackage @@ -16791,6 +17362,7 @@ self: { librarySystemDepends = [ smpeg ]; description = "Binding to the SMPEG library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) smpeg;}; "SDL-ttf" = callPackage @@ -16803,6 +17375,7 @@ self: { librarySystemDepends = [ SDL_ttf ]; description = "Binding to libSDL_ttf"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) SDL_ttf;}; "SDL2-ttf" = callPackage @@ -16836,6 +17409,7 @@ self: { homepage = "https://github.com/jeannekamikaze/SFML"; description = "SFML bindings"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {csfml-audio = null; csfml-graphics = null; csfml-network = null; csfml-system = null; csfml-window = null; sfml-audio = null; sfml-graphics = null; sfml-network = null; @@ -16851,6 +17425,7 @@ self: { homepage = "https://github.com/SFML-haskell/SFML-control"; description = "Higher level library on top of SFML"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SFont" = callPackage @@ -16863,6 +17438,7 @@ self: { homepage = "http://liamoc.net/static/SFont"; description = "SFont SDL Bitmap Fonts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SG" = callPackage @@ -16874,6 +17450,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Small geometry library for dealing with vectors and collision detection"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SGdemo" = callPackage @@ -16888,6 +17465,7 @@ self: { jailbreak = true; description = "An example of using the SG and OpenGL libraries"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SHA_1_6_4_1" = callPackage @@ -16969,6 +17547,7 @@ self: { homepage = "http://www.snet-home.org/"; description = "Declarative coördination language for streaming networks"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SQLDeps" = callPackage @@ -17026,6 +17605,7 @@ self: { homepage = "http://www.informatik.uni-kiel.de/~jgr/svg2q"; description = "Code generation tool for Quartz code from a SVG"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SVGFonts_1_4_0_3" = callPackage @@ -17152,6 +17732,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Salsa"; description = "A .NET Bridge for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) glib; inherit (pkgs) mono;}; "Saturnin" = callPackage @@ -17213,6 +17794,7 @@ self: { homepage = "http://github.com/hirschenberger/ScratchFS"; description = "Size limited temp filesystem based on fuse"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Scurry" = callPackage @@ -17232,6 +17814,7 @@ self: { homepage = "http://code.google.com/p/scurry/"; description = "A cross platform P2P VPN application built using Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SegmentTree" = callPackage @@ -17264,6 +17847,7 @@ self: { jailbreak = true; description = "Command-line tool for maintaining the Semantique database"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Semigroup" = callPackage @@ -17287,6 +17871,7 @@ self: { libraryHaskellDepends = [ base bytestring vector ]; description = "Sequence Alignment"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SessionLogger" = callPackage @@ -17303,6 +17888,7 @@ self: { jailbreak = true; description = "Easy Loggingframework"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ShellCheck" = callPackage @@ -17340,6 +17926,7 @@ self: { homepage = "http://rwd.rdockins.name/shellac/home/"; description = "A framework for creating shell envinronments"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Shellac-compatline" = callPackage @@ -17352,6 +17939,7 @@ self: { homepage = "http://rwd.rdockins.name/shellac/home/"; description = "\"compatline\" backend module for Shellac"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Shellac-editline" = callPackage @@ -17364,6 +17952,7 @@ self: { homepage = "http://rwd.rdockins.name/shellac/home/"; description = "Editline backend module for Shellac"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Shellac-haskeline" = callPackage @@ -17376,6 +17965,7 @@ self: { jailbreak = true; description = "Haskeline backend module for Shellac"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Shellac-readline" = callPackage @@ -17388,6 +17978,7 @@ self: { homepage = "http://rwd.rdockins.name/shellac/home/"; description = "Readline backend module for Shellac"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ShowF" = callPackage @@ -17425,6 +18016,7 @@ self: { homepage = "http://www.geocities.jp/takascience/index_en.html"; description = "A vector shooter game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SimpleAES" = callPackage @@ -17465,6 +18057,7 @@ self: { jailbreak = true; description = "A Simple Graphics Library from the SimpleH framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SimpleH" = callPackage @@ -17482,6 +18075,7 @@ self: { jailbreak = true; description = "A light, clean and powerful Haskell utility library"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SimpleLog" = callPackage @@ -17502,6 +18096,7 @@ self: { homepage = "https://github.com/exFalso/SimpleLog/"; description = "Simple, configurable logging"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SimpleServer" = callPackage @@ -17565,6 +18160,7 @@ self: { jailbreak = true; description = "A tiny, lazy SMT solver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SmtLib" = callPackage @@ -17602,6 +18198,7 @@ self: { homepage = "http://bitbucket.org/jetxee/snusmumrik/"; description = "E-library directory based on FUSE virtual file system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) zip;}; "SoOSiM" = callPackage @@ -17620,6 +18217,7 @@ self: { homepage = "http://www.soos-project.eu/"; description = "Abstract full system simulator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SoccerFun" = callPackage @@ -17640,6 +18238,7 @@ self: { homepage = "http://www.cs.ru.nl/~peter88/SoccerFun/SoccerFun.html"; description = "Football simulation framework for teaching functional programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SoccerFunGL" = callPackage @@ -17660,6 +18259,7 @@ self: { homepage = "http://www.cs.ru.nl/~peter88/SoccerFun/SoccerFun.html"; description = "OpenGL UI for the SoccerFun framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Sonnex" = callPackage @@ -17693,6 +18293,7 @@ self: { jailbreak = true; description = "Static code analysis using graph-theoretic techniques"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Southpaw" = callPackage @@ -17725,6 +18326,7 @@ self: { homepage = "http://www.haskell.org/yampa/"; description = "Video game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "SpacePrivateers" = callPackage @@ -17747,6 +18349,7 @@ self: { homepage = "https://github.com/tuturto/space-privateers"; description = "Simple space pirate roguelike"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SpinCounter" = callPackage @@ -18028,6 +18631,7 @@ self: { homepage = "http://www.spock.li"; description = "Another Haskell web framework for rapid development"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Spock-auth" = callPackage @@ -18041,6 +18645,7 @@ self: { homepage = "https://github.com/agrafix/Spock-auth"; description = "Provides authentification helpers for Spock"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Spock-digestive_0_1_0_0" = callPackage @@ -18094,6 +18699,7 @@ self: { homepage = "https://github.com/agrafix/Spock-digestive"; description = "Digestive functors support for Spock"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Spock-worker_0_2_1_3" = callPackage @@ -18131,6 +18737,7 @@ self: { homepage = "http://github.com/agrafix/Spock-worker"; description = "Background workers for Spock"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "SpreadsheetML" = callPackage @@ -18154,6 +18761,7 @@ self: { homepage = "http://liamoc.net/static/Sprig"; description = "Binding to Sprig"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Stasis" = callPackage @@ -18261,6 +18869,7 @@ self: { homepage = "http://github.com/rukav/Stomp"; description = "Client library for Stomp brokers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Strafunski-ATermLib" = callPackage @@ -18292,6 +18901,7 @@ self: { jailbreak = true; description = "Converts SDF to Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Strafunski-StrategyLib" = callPackage @@ -18356,6 +18966,7 @@ self: { homepage = "http://bonsaicode.wordpress.com/2009/06/07/strictbench-0-1/"; description = "Benchmarking code through strict evaluation"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SuffixStructures" = callPackage @@ -18380,6 +18991,7 @@ self: { homepage = "http://www.bioinf.uni-leipzig.de/~choener/"; description = "Suffix array construction"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SybWidget" = callPackage @@ -18413,6 +19025,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/Center/SyntaxMacrosForFree"; description = "Syntax Macros in the form of an EDSL"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Sysmon" = callPackage @@ -18431,6 +19044,7 @@ self: { homepage = "http://github.com/rukav/Sysmon"; description = "Sybase 15 sysmon reports processor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TBC" = callPackage @@ -18451,6 +19065,7 @@ self: { ]; description = "Testing By Convention"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TBit" = callPackage @@ -18468,6 +19083,7 @@ self: { jailbreak = true; description = "Utilities for condensed matter physics tight binding calculations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TCache" = callPackage @@ -18534,6 +19150,7 @@ self: { ]; description = "Template Your Boilerplate - a Template Haskell version of SYB"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TableAlgebra" = callPackage @@ -18563,6 +19180,7 @@ self: { jailbreak = true; description = "A client for Quill databases"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Tablify" = callPackage @@ -18603,6 +19221,7 @@ self: { executableHaskellDepends = [ base mtl old-time ]; description = "Database library with left-fold interface, for PostgreSQL, Oracle, SQLite, ODBC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Tape" = callPackage @@ -18668,6 +19287,7 @@ self: { homepage = "http://liamoc.net/tea"; description = "TeaHS Game Creation Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Tensor" = callPackage @@ -18724,6 +19344,7 @@ self: { libraryHaskellDepends = [ base ]; librarySystemDepends = [ ogg theora ]; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {ogg = null; theora = null;}; "Thingie" = callPackage @@ -18735,6 +19356,7 @@ self: { libraryHaskellDepends = [ base cairo gtk mtl ]; description = "Purely functional 2D drawing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ThreadObjects" = callPackage @@ -18764,6 +19386,7 @@ self: { homepage = "http://thrift.apache.org"; description = "Haskell bindings for the Apache Thrift RPC system"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Tic-Tac-Toe" = callPackage @@ -18794,6 +19417,7 @@ self: { ]; description = "A sub-project (exercise) for a functional programming course"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TigerHash" = callPackage @@ -18827,6 +19451,7 @@ self: { ]; description = "A simple tile-based digital clock screen saver"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TinyLaunchbury" = callPackage @@ -18838,6 +19463,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Simple implementation of call-by-need using Launchbury's semantics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TinyURL" = callPackage @@ -18849,6 +19475,7 @@ self: { libraryHaskellDepends = [ base HTTP network ]; description = "Use TinyURL to compress URLs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Titim" = callPackage @@ -18863,6 +19490,7 @@ self: { jailbreak = true; description = "Game for Lounge Marmelade"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Top" = callPackage @@ -18878,6 +19506,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/bin/view/Helium/WebHome"; description = "Constraint solving framework employed by the Helium Compiler"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Tournament" = callPackage @@ -18897,6 +19526,7 @@ self: { homepage = "http://github.com/clux/tournament.hs"; description = "Tournament related algorithms"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TraceUtils" = callPackage @@ -19001,6 +19631,7 @@ self: { jailbreak = true; description = "A simple trend Graph script"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TrieMap" = callPackage @@ -19018,6 +19649,7 @@ self: { ]; description = "Automatic type inference of generalized tries with Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Twofish" = callPackage @@ -19057,6 +19689,7 @@ self: { jailbreak = true; description = "Typing speed game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TypeCompose" = callPackage @@ -19083,6 +19716,7 @@ self: { homepage = "http://www.cs.kent.ac.uk/people/staff/oc/TypeIlluminator/"; description = "TypeIlluminator is a prototype tool exploring debugging of type errors/"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TypeNat" = callPackage @@ -19125,6 +19759,7 @@ self: { homepage = "http://haskell.cs.yale.edu/"; description = "Library for Arrowized Graphical User Interfaces"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "UMM" = callPackage @@ -19143,6 +19778,7 @@ self: { homepage = "http://www.korgwal.com/umm/"; description = "A small command-line accounting tool"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "URLT" = callPackage @@ -19160,6 +19796,7 @@ self: { ]; description = "Library for maintaining correctness of URLs within an application"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "URLb" = callPackage @@ -19199,6 +19836,7 @@ self: { homepage = "http://github.com/cirquit/UTFTConverter"; description = "Processing popular picture formats into .c or .raw format in RGB565"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Unique" = callPackage @@ -19207,12 +19845,11 @@ self: { }: mkDerivation { pname = "Unique"; - version = "0.4.2"; - sha256 = "82b5410ba4b432389b0897be3726c9eed9a08cdadc530cabf89d9bb890b13e66"; + version = "0.4.5"; + sha256 = "207488edc9915f826c7ef72386fccbad265a32394364fa9bcba73209e150e58b"; libraryHaskellDepends = [ base containers extra hashable unordered-containers ]; - jailbreak = true; description = "It provides the functionality like unix \"uniq\" utility"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -19244,6 +19881,7 @@ self: { homepage = "http://src.seereason.com/haskell-unixutils-shadow"; description = "A simple interface to shadow passwords (aka, shadow.h)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Updater" = callPackage @@ -19269,6 +19907,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/UrlDisp"; description = "Url dispatcher. Helps to retain friendly URLs in web applications."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Useful" = callPackage @@ -19355,6 +19994,7 @@ self: { jailbreak = true; description = "Provides Boolean instances for the Vec package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Vec-OpenGLRaw" = callPackage @@ -19367,6 +20007,7 @@ self: { homepage = "http://www.downstairspeople.org/darcs/Vec-opengl"; description = "Instances and functions to interoperate Vec and OpenGL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Vec-Transform" = callPackage @@ -19379,6 +20020,7 @@ self: { homepage = "https://github.com/tobbebex/Vec-Transform"; description = "This package is obsolete"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "VecN" = callPackage @@ -19486,6 +20128,7 @@ self: { jailbreak = true; description = "A simple command line tools to control the Asus WL500gP router"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WL500gPLib" = callPackage @@ -19521,6 +20164,7 @@ self: { jailbreak = true; description = "WebMoney authentication module"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "WURFL" = callPackage @@ -19532,6 +20176,7 @@ self: { libraryHaskellDepends = [ base haskell98 parsec ]; description = "Convert the WURFL file into a Parsec parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WXDiffCtrl" = callPackage @@ -19544,6 +20189,7 @@ self: { homepage = "http://wewantarock.wordpress.com"; description = "WXDiffCtrl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WashNGo" = callPackage @@ -19564,6 +20210,7 @@ self: { homepage = "http://www.informatik.uni-freiburg.de/~thiemann/haskell/WASH/"; description = "WASH is a family of EDSLs for programming Web applications in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WaveFront" = callPackage @@ -19579,6 +20226,7 @@ self: { ]; description = "Parsers and utilities for the OBJ WaveFront 3D model format"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Weather" = callPackage @@ -19624,6 +20272,7 @@ self: { homepage = "http://www.cs.brown.edu/research/plt/"; description = "JavaScript analysis tools"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WebBits-multiplate" = callPackage @@ -19640,6 +20289,7 @@ self: { jailbreak = true; description = "A Multiplate instance for JavaScript"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WebCont" = callPackage @@ -19659,6 +20309,7 @@ self: { homepage = "http://patch-tag.com/r/salazar/webconts/snapshot/current/content/pretty"; description = "Continuation based web programming for Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WeberLogic" = callPackage @@ -19702,6 +20353,7 @@ self: { jailbreak = true; description = "Regexp-like engine to scrap web data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Wheb" = callPackage @@ -19728,6 +20380,7 @@ self: { homepage = "https://github.com/hansonkd/Wheb-Framework"; description = "The frictionless WAI Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WikimediaParser" = callPackage @@ -19739,6 +20392,7 @@ self: { libraryHaskellDepends = [ base parsec ]; description = "A parser for wikimedia style article markup"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Win32" = callPackage @@ -19887,6 +20541,7 @@ self: { homepage = "http://www.cse.chalmers.se/~emax/wired/"; description = "Wire-aware hardware description"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "WordAlignment" = callPackage @@ -19927,6 +20582,7 @@ self: { homepage = "https://github.com/choener/WordAlignment"; description = "Bigram word pair alignments"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WordNet" = callPackage @@ -19938,6 +20594,7 @@ self: { libraryHaskellDepends = [ array base containers filepath ]; description = "Haskell interface to the WordNet database"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WordNet-ghc74" = callPackage @@ -19949,6 +20606,7 @@ self: { libraryHaskellDepends = [ array base containers filepath ]; description = "Haskell interface to the WordNet database"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Wordlint" = callPackage @@ -19965,6 +20623,7 @@ self: { homepage = "https://github.com/gbgar/Wordlint"; description = "Plaintext prose redundancy linter"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Workflow_0_8_1" = callPackage @@ -20018,6 +20677,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/WxGeneric"; description = "Generic (SYB3) construction of wxHaskell widgets"; license = "LGPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "X11" = callPackage @@ -20052,6 +20712,7 @@ self: { jailbreak = true; description = "Missing bindings to the X11 graphics library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.xorg) libX11;}; "X11-rm" = callPackage @@ -20063,6 +20724,7 @@ self: { libraryHaskellDepends = [ base X11 ]; description = "A binding to the resource management functions missing from X11"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "X11-xdamage" = callPackage @@ -20076,6 +20738,7 @@ self: { homepage = "http://darcs.haskell.org/X11-xdamage"; description = "A binding to the Xdamage X11 extension library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {Xdamage = null;}; "X11-xfixes" = callPackage @@ -20089,6 +20752,7 @@ self: { homepage = "https://github.com/reacocard/x11-xfixes"; description = "A binding to the Xfixes X11 extension library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {Xfixes = null;}; "X11-xft" = callPackage @@ -20151,6 +20815,7 @@ self: { homepage = "http://kawais.org.ua/XMMS/"; description = "XMMS2 client library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {xmmsclient = null; xmmsclient-glib = null;}; "XMPP" = callPackage @@ -20168,6 +20833,7 @@ self: { homepage = "http://kagami.touhou.ru/projects/show/matsuri"; description = "XMPP library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "XSaiga" = callPackage @@ -20192,6 +20858,7 @@ self: { homepage = "http://hafiz.myweb.cs.uwindsor.ca/proHome.html"; description = "An implementation of a polynomial-time top-down parser suitable for NLP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Xauth" = callPackage @@ -20222,6 +20889,7 @@ self: { ]; description = "Gtk command launcher with identicon"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "XmlHtmlWriter" = callPackage @@ -20234,6 +20902,7 @@ self: { homepage = "http://github.com/mmirman/haskogeneous/tree/XmlHtmlWriter"; description = "A library for writing XML and HTML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Xorshift128Plus" = callPackage @@ -20266,6 +20935,7 @@ self: { homepage = "http://github.com/snkkid/YACPong"; description = "Yet Another Pong Clone using SDL"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "YFrob" = callPackage @@ -20278,6 +20948,7 @@ self: { homepage = "http://www.haskell.org/yampa/"; description = "Yampa-based library for programming robots"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Yablog" = callPackage @@ -20313,6 +20984,7 @@ self: { homepage = "http://gitweb.konn-san.com/repo/Yablog/tree/master"; description = "A simple blog engine powered by Yesod"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "YamlReference" = callPackage @@ -20338,6 +21010,7 @@ self: { homepage = "http://www.ben-kiki.org/oren/YamlReference"; description = "YAML reference implementation"; license = "LGPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Yampa_0_9_6" = callPackage @@ -20419,6 +21092,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Yampa"; description = "Library for programming hybrid systems"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "Yampa-core" = callPackage @@ -20453,6 +21127,7 @@ self: { homepage = "http://www-db.informatik.uni-tuebingen.de/team/giorgidze"; description = "Software synthesizer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "Yocto" = callPackage @@ -20482,6 +21157,7 @@ self: { homepage = "http://code.google.com/p/yogurt-mud/"; description = "A MUD client library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Yogurt-Standalone" = callPackage @@ -20502,6 +21178,7 @@ self: { homepage = "http://code.google.com/p/yogurt-mud/"; description = "A functional MUD client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) readline;}; "ZEBEDDE" = callPackage @@ -20530,6 +21207,7 @@ self: { homepage = "https://github.com/jkarni/ZipperFS"; description = "Oleg's Zipper FS"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ZMachine" = callPackage @@ -20543,6 +21221,7 @@ self: { executableHaskellDepends = [ array base gtk mtl random ]; description = "A Z-machine interpreter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ZipFold" = callPackage @@ -20597,6 +21276,7 @@ self: { homepage = "https://github.com/MedeaMelana/Zwaluw"; description = "Combinators for bidirectional URL routing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "a50" = callPackage @@ -20646,6 +21326,7 @@ self: { homepage = "https://github.com/pa-ba/abc-puzzle"; description = "Generate instances of the ABC Logic Puzzle"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "abcBridge" = callPackage @@ -20671,6 +21352,7 @@ self: { ]; description = "Bindings for ABC, A System for Sequential Synthesis and Verification"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) abc;}; "abcnotation" = callPackage @@ -20764,6 +21446,7 @@ self: { homepage = "https://github.com/simonmar/monad-par"; description = "Provides the class ParAccelerate, nothing more"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "abt" = callPackage @@ -20864,6 +21547,7 @@ self: { homepage = "http://code.haskell.org/~thielema/accelerate-arithmetic/"; description = "Linear algebra and interpolation using the Accelerate framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "accelerate-cublas" = callPackage @@ -21026,6 +21710,7 @@ self: { homepage = "http://code.haskell.org/~thielema/accelerate-fourier/"; description = "Fast Fourier transform and convolution using the Accelerate framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "accelerate-fourier-benchmark" = callPackage @@ -21087,6 +21772,7 @@ self: { homepage = "http://code.haskell.org/~thielema/accelerate-utility/"; description = "Utility functions for the Accelerate framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "accentuateus" = callPackage @@ -21100,6 +21786,7 @@ self: { homepage = "http://accentuate.us/"; description = "A Haskell implementation of the Accentuate.us API."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "access-time" = callPackage @@ -21113,6 +21800,7 @@ self: { homepage = "http://www.github.com/batterseapower/access-time"; description = "Cross-platform support for retrieving file access times"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ace" = callPackage @@ -21197,6 +21885,7 @@ self: { jailbreak = true; description = "A replication backend for acid-state"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "acid-state-tls" = callPackage @@ -21361,6 +22050,7 @@ self: { homepage = "http://github.com/joeyadams/haskell-acme-hq9plus"; description = "An embedded DSL for the HQ9+ programming language"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "acme-http" = callPackage @@ -21394,6 +22084,7 @@ self: { executableHaskellDepends = [ base ]; description = "Evil inventions in the Tri-State area"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "acme-io" = callPackage @@ -21501,6 +22192,7 @@ self: { jailbreak = true; description = "Define the less than and add and subtract for nats"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "acme-omitted" = callPackage @@ -21600,6 +22292,7 @@ self: { ]; description = "Proper names for curry and uncurry"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "acme-strfry" = callPackage @@ -21673,6 +22366,7 @@ self: { homepage = "https://github.com/ion1/acme-zero-one"; description = "The absorbing element of package dependencies"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "action-permutations" = callPackage @@ -21828,6 +22522,7 @@ self: { jailbreak = true; description = "Haskell code presentation tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "activehs-base" = callPackage @@ -21867,6 +22562,7 @@ self: { homepage = "http://sulzmann.blogspot.com/2008/10/actors-with-multi-headed-receive.html"; description = "Actors with multi-headed receive clauses"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ad_4_2_1_1" = callPackage @@ -22003,6 +22699,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/adaptive-containers"; description = "Self optimizing container types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "adaptive-tuple" = callPackage @@ -22015,6 +22712,7 @@ self: { homepage = "http://inmachina.net/~jwlato/haskell/"; description = "Self-optimizing tuple types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "adb" = callPackage @@ -22082,6 +22780,7 @@ self: { homepage = "http://sep07.mroot.net/"; description = "Ad-hoc P2P network protocol"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "adict" = callPackage @@ -22102,6 +22801,7 @@ self: { homepage = "https://github.com/kawu/adict"; description = "Approximate dictionary searching"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "adjunctions_4_2" = callPackage @@ -22217,6 +22917,7 @@ self: { homepage = "https://github.com/stepcut/ase2css"; description = "parse Adobe Swatch Exchange files and (optionally) output .css files with the colors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "adp-multi" = callPackage @@ -22239,6 +22940,7 @@ self: { homepage = "http://adp-multi.ruhoh.com"; description = "ADP for multiple context-free languages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "adp-multi-monadiccp" = callPackage @@ -22260,6 +22962,7 @@ self: { homepage = "http://adp-multi.ruhoh.com"; description = "Subword construction in adp-multi using monadiccp"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aeson_0_7_0_6" = callPackage @@ -22381,7 +23084,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "aeson_0_11_1_0" = callPackage + "aeson_0_11_1_1" = callPackage ({ mkDerivation, attoparsec, base, base-orphans, bytestring , containers, deepseq, dlist, fail, ghc-prim, hashable, HUnit, mtl , QuickCheck, quickcheck-instances, scientific, semigroups, syb @@ -22391,18 +23094,18 @@ self: { }: mkDerivation { pname = "aeson"; - version = "0.11.1.0"; - sha256 = "91a03c818312f422d17dddfb91b3d63e8b0e5bbea548a04fea325e926a019eca"; + version = "0.11.1.1"; + sha256 = "1b808376cda535e002e3ac41a205f6ee5a1bceeda2f4e614cecefce47b15abe8"; libraryHaskellDepends = [ attoparsec base bytestring containers deepseq dlist fail ghc-prim hashable mtl scientific semigroups syb tagged template-haskell text time transformers unordered-containers vector ]; testHaskellDepends = [ - attoparsec base base-orphans bytestring containers ghc-prim HUnit - QuickCheck quickcheck-instances semigroups tagged template-haskell - test-framework test-framework-hunit test-framework-quickcheck2 text - time unordered-containers vector + attoparsec base base-orphans bytestring containers ghc-prim + hashable HUnit QuickCheck quickcheck-instances semigroups tagged + template-haskell test-framework test-framework-hunit + test-framework-quickcheck2 text time unordered-containers vector ]; homepage = "https://github.com/bos/aeson"; description = "Fast JSON parsing and encoding"; @@ -22456,6 +23159,7 @@ self: { jailbreak = true; description = "Mapping between Aeson's JSON and Bson objects"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aeson-casing" = callPackage @@ -22793,6 +23497,7 @@ self: { homepage = "http://github.com/mailrank/aeson"; description = "Fast JSON parsing and encoding (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aeson-parsec-picky" = callPackage @@ -22986,6 +23691,7 @@ self: { homepage = "https://github.com/lassoinc/aeson-smart"; description = "Smart derivation of Aeson instances"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aeson-streams" = callPackage @@ -23194,6 +23900,7 @@ self: { homepage = "http://tomahawkins.org"; description = "Infinite state model checking of iterative C programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ag-pictgen" = callPackage @@ -23227,6 +23934,7 @@ self: { ]; description = "Http server for Agda (prototype)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "agda-snippets" = callPackage @@ -23246,6 +23954,7 @@ self: { homepage = "http://github.com/liamoc/agda-snippets#readme"; description = "Render just the Agda snippets of a literate Agda file to HTML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "agda-snippets-hakyll" = callPackage @@ -23264,6 +23973,7 @@ self: { homepage = "https://github.com/liamoc/agda-snippets#readme"; description = "Literate Agda support using agda-snippets, for Hakyll pages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "agentx" = callPackage @@ -23392,6 +24102,7 @@ self: { homepage = "https://github.com/joelteon/airbrake"; description = "An Airbrake notifier for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "airship_0_4_1_0" = callPackage @@ -23627,6 +24338,7 @@ self: { homepage = "http://ajhc.metasepi.org/"; description = "Haskell compiler that produce binary through C language"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "al" = callPackage @@ -23641,6 +24353,7 @@ self: { homepage = "http://github.com/phaazon/al"; description = "OpenAL 1.1 raw API."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openal;}; "alarmclock_0_2_0_5" = callPackage @@ -23697,6 +24410,7 @@ self: { homepage = "https://github.com/Rnhmjoj/alea"; description = "a diceware passphrase generator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "alex_3_1_3" = callPackage @@ -23876,6 +24590,7 @@ self: { homepage = "https://github.com/mrkkrp/alga"; description = "Algorithmic automation for various DAWs"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "algebra" = callPackage @@ -23950,6 +24665,7 @@ self: { homepage = "https://github.com/wdanilo/algebraic"; description = "General linear algebra structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "algebraic-classes" = callPackage @@ -24067,6 +24783,7 @@ self: { homepage = "http://www.ccs.neu.edu/~tov/pubs/alms/"; description = "a practical affine language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "alpha" = callPackage @@ -24089,6 +24806,7 @@ self: { homepage = "http://www.alpha-lang.net/"; description = "A compiler for the Alpha language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "alpino-tools" = callPackage @@ -24113,6 +24831,7 @@ self: { homepage = "http://github.com/danieldk/alpino-tools"; description = "Alpino data manipulation tools"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "alsa" = callPackage @@ -24131,6 +24850,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/ALSA"; description = "Binding to the ALSA Library API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) alsaLib;}; "alsa-core" = callPackage @@ -24184,6 +24904,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/ALSA"; description = "Bindings for the ALSA sequencer API (MIDI stuff)"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) alsaLib;}; "alsa-mixer" = callPackage @@ -24231,6 +24952,7 @@ self: { executableHaskellDepends = [ alsa base ]; description = "Tests for the ALSA audio signal library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "alsa-seq" = callPackage @@ -24266,6 +24988,7 @@ self: { jailbreak = true; description = "Tests for the ALSA sequencer library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "altcomposition" = callPackage @@ -24307,6 +25030,7 @@ self: { homepage = "http://repo.or.cz/w/altfloat.git"; description = "Alternative floating point support for GHC"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "alure" = callPackage @@ -24319,6 +25043,7 @@ self: { librarySystemDepends = [ alure ]; description = "A Haskell binding for ALURE"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {alure = null;}; "amazon-emailer" = callPackage @@ -24340,6 +25065,7 @@ self: { homepage = "https://github.com/dbp/amazon-emailer"; description = "A queue daemon for Amazon's SES with a PostgreSQL table as a queue"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazon-emailer-client-snap" = callPackage @@ -24383,6 +25109,7 @@ self: { homepage = "https://github.com/AndrewRademacher/hs-amazon-products"; description = "Connector for Amazon Products API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka_0_3_3_1" = callPackage @@ -26743,6 +27470,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Relational Database Service SDK"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "amazonka-redshift_0_3_3" = callPackage @@ -27238,6 +27966,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Queue Service SDK"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "amazonka-ssm_0_3_3" = callPackage @@ -27642,6 +28371,7 @@ self: { homepage = "http://wiki.tarski.nl"; description = "Toolsuite for automated design of business processes"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amqp_0_10_1" = callPackage @@ -27897,6 +28627,7 @@ self: { homepage = "https://john-millikin.com/software/anansi/"; description = "Looms which use Pandoc to parse and produce a variety of formats"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "anatomy" = callPackage @@ -27923,6 +28654,7 @@ self: { homepage = "http://atomo-lang.org/"; description = "Anatomy: Atomo documentation system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "android" = callPackage @@ -27962,6 +28694,7 @@ self: { homepage = "https://github.com/passy/android-lint-summary"; description = "A pretty printer for Android Lint errors"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "angel" = callPackage @@ -28228,6 +28961,7 @@ self: { homepage = "http://hub.darcs.net/kowey/antfarm"; description = "Referring expressions for definitions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "anticiv" = callPackage @@ -28252,6 +28986,7 @@ self: { jailbreak = true; description = "This is an IRC bot for Mafia and Resistance"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "antigate" = callPackage @@ -28270,6 +29005,7 @@ self: { homepage = "https://github.com/exbb2/antigate"; description = "Interface for antigate.com captcha recognition API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "antimirov" = callPackage @@ -28284,6 +29020,7 @@ self: { executableHaskellDepends = [ base containers QuickCheck ]; description = "Define the language containment (=subtyping) relation on regulare expressions"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "antiquoter" = callPackage @@ -28333,6 +29070,7 @@ self: { homepage = "https://github.com/markwright/antlrc"; description = "Haskell binding to the ANTLR parser generator C runtime library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {antlr3c = null;}; "anydbm" = callPackage @@ -28348,6 +29086,7 @@ self: { homepage = "http://software.complete.org/anydbm"; description = "Interface for DBM-like database systems"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aosd" = callPackage @@ -28368,6 +29107,7 @@ self: { ]; description = "Bindings to libaosd, a library for Cairo-based on-screen displays"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {libaosd = null;}; "ap-reflect" = callPackage @@ -28424,6 +29164,7 @@ self: { homepage = "http://ojeling.net/apelsin"; description = "Server and community browser for the game Tremulous"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "api-builder" = callPackage @@ -28501,6 +29242,7 @@ self: { homepage = "http://github.com/iconnect/api-tools"; description = "DSL for generating API boilerplate and docs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "apiary_1_4_3" = callPackage @@ -28663,6 +29405,7 @@ self: { homepage = "https://github.com/philopon/apiary"; description = "helics support for apiary web framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "apiary-logger" = callPackage @@ -28765,6 +29508,7 @@ self: { homepage = "https://github.com/philopon/apiary"; description = "purescript compiler for apiary web framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "apiary-session" = callPackage @@ -28821,6 +29565,7 @@ self: { homepage = "https://github.com/fabianbergmark/APIs"; description = "A Template Haskell library for generating type safe API calls"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "apotiki" = callPackage @@ -28852,6 +29597,7 @@ self: { homepage = "https://github.com/pyr/apotiki"; description = "a faster debian repository"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "app-lens" = callPackage @@ -28865,6 +29611,7 @@ self: { homepage = "https://bitbucket.org/kztk/app-lens"; description = "applicative (functional) bidirectional programming beyond composition chains"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "app-settings" = callPackage @@ -28920,6 +29667,7 @@ self: { ]; description = "app container types and tools"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "applicative-extras" = callPackage @@ -29054,6 +29802,7 @@ self: { ]; description = "Perform refactorings specified by the refact library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "apportionment" = callPackage @@ -29098,6 +29847,7 @@ self: { homepage = "http://github.com/danieldk/approx-rand-test"; description = "Approximate randomization test"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "approximate_0_2_1_1" = callPackage @@ -29274,6 +30024,7 @@ self: { homepage = "https://github.com/ian-ross/arb-fft"; description = "Pure Haskell arbitrary length FFT library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arbb-vm" = callPackage @@ -29291,6 +30042,7 @@ self: { homepage = "https://github.com/svenssonjoel/arbb-vm/wiki"; description = "FFI binding to the Intel Array Building Blocks (ArBB) virtual machine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {arbb_dev = null;}; "arbtt_0_8_1_4" = callPackage @@ -29545,6 +30297,7 @@ self: { ]; description = "Archive supplied URLs in WebCite & Internet Archive"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "archlinux" = callPackage @@ -29561,6 +30314,7 @@ self: { homepage = "http://github.com/archhaskell/"; description = "Support for working with Arch Linux packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "archlinux-web" = callPackage @@ -29587,6 +30341,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/archlinux"; description = "Website maintenance for Arch Linux packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "archnews" = callPackage @@ -29621,6 +30376,7 @@ self: { homepage = "http://code.haskell.org/~StefanKersten/code/arff"; description = "Generate Attribute-Relation File Format (ARFF) files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arghwxhaskell" = callPackage @@ -29635,6 +30391,7 @@ self: { homepage = "https://wiki.haskell.org/Argh!"; description = "An interpreter for the Argh! programming language in wxHaskell"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "argon" = callPackage @@ -29711,6 +30468,7 @@ self: { homepage = "https://github.com/ocharles/argon2.git"; description = "Haskell bindings to libargon2 - the reference implementation of the Argon2 password-hashing function"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "argparser" = callPackage @@ -29723,6 +30481,7 @@ self: { testHaskellDepends = [ base containers HTF HUnit ]; description = "Command line parsing framework for console applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arguedit" = callPackage @@ -29741,6 +30500,7 @@ self: { jailbreak = true; description = "A computer assisted argumentation transcription and editing software"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ariadne" = callPackage @@ -29769,6 +30529,7 @@ self: { homepage = "https://github.com/feuerbach/ariadne"; description = "Go-to-definition for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arion" = callPackage @@ -29793,6 +30554,7 @@ self: { homepage = "http://github.com/karun012/arion"; description = "Watcher and runner for Hspec"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arith-encode" = callPackage @@ -29814,6 +30576,7 @@ self: { homepage = "https://github.com/emc2/arith-encode"; description = "A practical arithmetic encoding (aka Godel numbering) library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arithmatic" = callPackage @@ -29852,6 +30615,7 @@ self: { ]; description = "Natural number arithmetic"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "arithmoi_0_4_1_1" = callPackage @@ -29910,6 +30674,7 @@ self: { homepage = "https://github.com/cartazio/arithmoi"; description = "Efficient basic number-theoretic functions. Primes, powers, integer logarithms."; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "armada" = callPackage @@ -29923,6 +30688,7 @@ self: { executableHaskellDepends = [ base GLUT mtl OpenGL stm ]; description = "Space-based real time strategy game"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arpa" = callPackage @@ -29977,6 +30743,7 @@ self: { jailbreak = true; description = "A simple interpreter for arrayForth, the language used on GreenArrays chips"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "array-memoize" = callPackage @@ -30026,6 +30793,7 @@ self: { homepage = "https://github.com/prophile/arrow-improve/"; description = "Improved arrows"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arrow-list_0_6_1_5" = callPackage @@ -30062,6 +30830,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Utilities for working with ArrowApply instances more naturally"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arrowp" = callPackage @@ -30076,6 +30845,7 @@ self: { homepage = "http://www.haskell.org/arrows/"; description = "preprocessor translating arrow notation into Haskell 98"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arrows" = callPackage @@ -30226,6 +30996,7 @@ self: { jailbreak = true; description = "Conduit for encoding ByteString into Ascii85"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "asciidiagram_1_1_1_1" = callPackage @@ -30288,6 +31059,7 @@ self: { homepage = "http://www.pros.upv.es/fittest/"; description = "Action Script Instrumentation Compiler"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "asil" = callPackage @@ -30307,6 +31079,7 @@ self: { homepage = "http://www.pros.upv.es/fittest/"; description = "Action Script Instrumentation Library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "asn1-data_0_7_1" = callPackage @@ -30579,6 +31352,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "The Assimp asset import library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) assimp;}; "astar" = callPackage @@ -30609,6 +31383,7 @@ self: { jailbreak = true; description = "an incomplete 2d space game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "astview" = callPackage @@ -30628,6 +31403,7 @@ self: { ]; description = "A GTK-based abstract syntax tree viewer for custom languages and parsers"; license = stdenv.lib.licenses.bsdOriginal; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "astview-utils" = callPackage @@ -30723,6 +31499,7 @@ self: { homepage = "http://github.com/jfischoff/async-extras"; description = "Extra Utilities for the Async Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "async-manager" = callPackage @@ -30799,6 +31576,7 @@ self: { homepage = "https://github.com/GaloisInc/aterm-utils"; description = "Utility functions for working with aterms as generated by Minitermite"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "atl" = callPackage @@ -30835,6 +31613,7 @@ self: { homepage = "https://bitbucket.org/ajknoll/atlassian-connect-core"; description = "Atlassian Connect snaplet for the Snap Framework and helper code"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "atlassian-connect-descriptor" = callPackage @@ -30857,6 +31636,7 @@ self: { jailbreak = true; description = "Code that helps you create a valid Atlassian Connect Descriptor"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "atmos" = callPackage @@ -30962,6 +31742,7 @@ self: { homepage = "https://github.com/eightyeight/atom-msp430"; description = "Convenience functions for using Atom with the MSP430 microcontroller family"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" ]; }) {}; "atomic-primops_0_8" = callPackage @@ -31020,6 +31801,7 @@ self: { homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; description = "An atomic counter implemented using the FFI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "atomic-primops-vector" = callPackage @@ -31033,6 +31815,7 @@ self: { jailbreak = true; description = "Atomic operations on Data.Vector types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "atomic-write" = callPackage @@ -31078,6 +31861,7 @@ self: { homepage = "http://atomo-lang.org/"; description = "A highly dynamic, extremely simple, very fun programming language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "atp-haskell" = callPackage @@ -31328,6 +32112,7 @@ self: { homepage = "https://github.com/robinbb/attoparsec-csv"; description = "A parser for CSV files that uses Attoparsec"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "attoparsec-enumerator_0_3_3" = callPackage @@ -31399,6 +32184,7 @@ self: { homepage = "http://github.com/gregorycollins"; description = "An adapter to convert attoparsec Parsers into blazing-fast Iteratees"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "attoparsec-parsec" = callPackage @@ -31428,6 +32214,7 @@ self: { homepage = "http://patch-tag.com/r/felipe/attoparsec-text/home"; description = "(deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "attoparsec-text-enumerator" = callPackage @@ -31440,6 +32227,7 @@ self: { jailbreak = true; description = "(deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "attoparsec-trans" = callPackage @@ -31481,6 +32269,7 @@ self: { homepage = "http://www.dcs.st-and.ac.uk/~eb/epic.php"; description = "Embedded Turtle language compiler in Haskell, with Epic output"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "audacity" = callPackage @@ -31516,6 +32305,7 @@ self: { homepage = "https://github.com/fumieval/audiovisual"; description = "A battery-included audiovisual framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "augeas" = callPackage @@ -31535,6 +32325,7 @@ self: { homepage = "http://trac.haskell.org/augeas"; description = "A Haskell FFI wrapper for the Augeas API"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) augeas;}; "augur" = callPackage @@ -31554,6 +32345,7 @@ self: { jailbreak = true; description = "Renaming media collections in a breeze"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aur" = callPackage @@ -31713,6 +32505,7 @@ self: { homepage = "http://github.com/nushio3/authoring"; description = "A library for writing papers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "auto" = callPackage @@ -31850,6 +32643,7 @@ self: { homepage = "http://code.haskell.org/autoproc"; description = "EDSL for Procmail scripts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "avahi" = callPackage @@ -31861,6 +32655,7 @@ self: { libraryHaskellDepends = [ base dbus-core text ]; description = "Minimal DBus bindings for Avahi daemon (http://avahi.org)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "avatar-generator" = callPackage @@ -32079,6 +32874,7 @@ self: { ]; description = "High-level Awesomium bindings"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "awesomium-glut" = callPackage @@ -32090,6 +32886,7 @@ self: { libraryHaskellDepends = [ awesomium awesomium-raw base GLUT ]; description = "Utilities for using Awesomium with GLUT"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "awesomium-raw" = callPackage @@ -32103,6 +32900,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "Low-level Awesomium bindings"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {awesomium = null;}; "aws_0_11" = callPackage @@ -32378,6 +33176,7 @@ self: { ]; description = "Configuration types, parsers & renderers for AWS services"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-dynamodb-conduit" = callPackage @@ -32420,6 +33219,7 @@ self: { jailbreak = true; description = "Haskell bindings for Amazon DynamoDB Streams"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-ec2" = callPackage @@ -32472,6 +33272,7 @@ self: { homepage = "http://github.com/iconnect/aws-elastic-transcoder"; description = "Haskell suite for the Elastic Transcoder service"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-general" = callPackage @@ -32498,6 +33299,7 @@ self: { homepage = "https://github.com/alephcloud/hs-aws-general"; description = "Bindings for Amazon Web Services (AWS) General Reference"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-kinesis" = callPackage @@ -32524,6 +33326,7 @@ self: { homepage = "https://github.com/alephcloud/hs-aws-kinesis"; description = "Bindings for Amazon Kinesis"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-kinesis-client" = callPackage @@ -32559,6 +33362,7 @@ self: { jailbreak = true; description = "A producer & consumer client library for AWS Kinesis"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-kinesis-reshard" = callPackage @@ -32589,6 +33393,7 @@ self: { homepage = "https://github.com/alephcloud/hs-aws-kinesis-reshard"; description = "Reshard AWS Kinesis streams in response to Cloud Watch metrics"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-lambda" = callPackage @@ -32610,6 +33415,7 @@ self: { homepage = "https://github.com/alephcloud/hs-aws-lambda"; description = "Haskell bindings for AWS Lambda"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-performance-tests" = callPackage @@ -32636,6 +33442,7 @@ self: { homepage = "http://github.com/alephcloud/hs-aws-performance-tests"; description = "Performance Tests for the Haskell bindings for Amazon Web Services (AWS)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-route53" = callPackage @@ -32682,6 +33489,7 @@ self: { homepage = "http://worksap-ate.github.com/aws-sdk"; description = "AWS SDK for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-sdk-text-converter" = callPackage @@ -32750,6 +33558,7 @@ self: { homepage = "http://github.com/iconnect/aws-sign4"; description = "Amazon Web Services (AWS) Signature v4 HTTP request signer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-sns" = callPackage @@ -32774,6 +33583,7 @@ self: { homepage = "https://github.com/alephcloud/hs-aws-sns"; description = "Bindings for AWS SNS Version 2013-03-31"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "azure-acs" = callPackage @@ -32812,6 +33622,7 @@ self: { homepage = "github.com/haskell-distributed/azure-service-api"; description = "Haskell bindings for the Microsoft Azure Service Management API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "azure-servicebus" = callPackage @@ -32861,6 +33672,7 @@ self: { homepage = "http://arnovanlumig.com/azure"; description = "A simple library for accessing Azure blob storage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "b-tree" = callPackage @@ -32881,6 +33693,7 @@ self: { homepage = "http://github.com/bgamari/b-tree"; description = "Immutable disk-based B* trees"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "b9_0_5_8" = callPackage @@ -33130,6 +33943,7 @@ self: { ]; description = "An implementation of a simple 2-player board game"; license = "GPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "backdropper" = callPackage @@ -33148,6 +33962,7 @@ self: { jailbreak = true; description = "Rotates backdrops for X11 displays using Imagemagic"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "backtracking-exceptions" = callPackage @@ -33204,6 +34019,7 @@ self: { libraryHaskellDepends = [ base ]; description = "A simple stable bag"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bake_0_2" = callPackage @@ -33279,6 +34095,7 @@ self: { homepage = "http://github.com/nfjinjing/bamboo/tree/master"; description = "A blog engine on Hack"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamboo-launcher" = callPackage @@ -33299,6 +34116,7 @@ self: { homepage = "http://github.com/nfjinjing/bamboo-launcher"; description = "bamboo-launcher"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamboo-plugin-highlight" = callPackage @@ -33316,6 +34134,7 @@ self: { homepage = "http://github.com/nfjinjing/bamboo-plugin-highlight/"; description = "A highlight middleware"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamboo-plugin-photo" = callPackage @@ -33334,6 +34153,7 @@ self: { homepage = "http://github.com/nfjinjing/hack/tree/master"; description = "A photo album middleware"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamboo-theme-blueprint" = callPackage @@ -33352,6 +34172,7 @@ self: { homepage = "http://github.com/nfjinjing/bamboo-theme-blueprint"; description = "bamboo blueprint theme"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamboo-theme-mini-html5" = callPackage @@ -33374,6 +34195,7 @@ self: { homepage = "http://github.com/nfjinjing/bamboo-theme-mini-html5"; description = "bamboo mini html5 theme"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamse" = callPackage @@ -33392,6 +34214,7 @@ self: { executableHaskellDepends = [ HUnit QuickCheck ]; description = "A Windows Installer (MSI) generator framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamstats" = callPackage @@ -33484,6 +34307,7 @@ self: { homepage = "http://sebfisch.github.com/haskell-barchart"; description = "Creating Bar Charts in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "barcodes-code128" = callPackage @@ -33496,6 +34320,7 @@ self: { jailbreak = true; description = "Generate Code 128 barcodes as PDFs"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "barecheck_0_2_0_6" = callPackage @@ -33543,6 +34368,7 @@ self: { jailbreak = true; description = "A web based environment for learning and tinkering with Haskell"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "barrie" = callPackage @@ -33555,6 +34381,7 @@ self: { homepage = "http://thewhitelion.org/haskell/barrie"; description = "Declarative Gtk GUI library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "barrier" = callPackage @@ -33591,6 +34418,7 @@ self: { jailbreak = true; description = "Implementation of barrier monad, can use custom front/back type"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "base_4_8_2_0" = callPackage @@ -34022,6 +34850,7 @@ self: { homepage = "https://github.com/pxqr/base32-bytestring"; description = "Fast base32 and base32hex codec for ByteStrings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "base32string" = callPackage @@ -34297,7 +35126,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "basic-prelude" = callPackage + "basic-prelude_0_5_0" = callPackage ({ mkDerivation, base, bytestring, containers, filepath, hashable , lifted-base, ReadArgs, safe, text, transformers , unordered-containers, vector @@ -34315,9 +35144,10 @@ self: { homepage = "https://github.com/snoyberg/basic-prelude"; description = "An enhanced core prelude; a common foundation for alternate preludes"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "basic-prelude_0_5_1" = callPackage + "basic-prelude" = callPackage ({ mkDerivation, base, bytestring, containers, filepath, hashable , lifted-base, ReadArgs, safe, text, transformers , unordered-containers, vector @@ -34333,7 +35163,6 @@ self: { homepage = "https://github.com/snoyberg/basic-prelude"; description = "An enhanced core prelude; a common foundation for alternate preludes"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "basic-sop" = callPackage @@ -34363,6 +35192,7 @@ self: { homepage = "http://www.cs.mu.oz.au/~bjpop/code.html"; description = "An interpreter for a small functional language"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "battlenet" = callPackage @@ -34427,6 +35257,7 @@ self: { homepage = "https://github.com/zrho/afp"; description = "A web-based implementation of battleships including an AI opponent"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bayes-stack" = callPackage @@ -34447,6 +35278,7 @@ self: { homepage = "https://github.com/bgamari/bayes-stack"; description = "Framework for inferring generative probabilistic models with Gibbs sampling"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bbdb" = callPackage @@ -34580,6 +35412,7 @@ self: { jailbreak = true; description = "Generic serializer/deserializer with compact representation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "beautifHOL" = callPackage @@ -34594,6 +35427,7 @@ self: { homepage = "http://www.cs.indiana.edu/~lepike/pub_pages/holpp.html"; description = "A pretty-printer for higher-order logic"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bed-and-breakfast" = callPackage @@ -34614,6 +35448,7 @@ self: { homepage = "https://hackage.haskell.org/package/bed-and-breakfast"; description = "Efficient Matrix operations in 100% Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bein" = callPackage @@ -34636,6 +35471,7 @@ self: { ]; description = "Bein is a provenance and workflow management system for bioinformatics"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "benchmark-function" = callPackage @@ -34705,6 +35541,7 @@ self: { librarySystemDepends = [ db ]; description = "Pretty BerkeleyDB v4 binding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) db;}; "berp" = callPackage @@ -34732,6 +35569,7 @@ self: { homepage = "http://wiki.github.com/bjpop/berp/"; description = "An implementation of Python 3"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bert" = callPackage @@ -34854,6 +35692,7 @@ self: { jailbreak = true; description = "Bidirectionalization for Free! (POPL'09)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bff-mono" = callPackage @@ -34894,6 +35733,7 @@ self: { ]; description = "Blocked GZip"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bibtex" = callPackage @@ -34927,6 +35767,7 @@ self: { homepage = "http://www.kb.ecei.tohoku.ac.jp/~kztk/b18n-combined/desc.html"; description = "Prototype Implementation of Combining Syntactic and Semantic Bidirectionalization (ICFP'10)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bidispec" = callPackage @@ -34938,6 +35779,7 @@ self: { libraryHaskellDepends = [ base bytestring mtl ]; description = "Specification of generators and parsers"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bidispec-extras" = callPackage @@ -35093,6 +35935,7 @@ self: { homepage = "http://ddmal.music.mcgill.ca/billboard"; description = "A parser for the Billboard chord dataset"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "billeksah-forms" = callPackage @@ -35112,6 +35955,7 @@ self: { homepage = "http://www.leksah.org"; description = "Leksah library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "billeksah-main" = callPackage @@ -35132,6 +35976,7 @@ self: { homepage = "http://www.leksah.org"; description = "Leksah plugin base"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "billeksah-main-static" = callPackage @@ -35175,6 +36020,7 @@ self: { homepage = "http://www.leksah.org"; description = "Leksah library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "billeksah-services" = callPackage @@ -35192,6 +36038,7 @@ self: { homepage = "http://www.leksah.org"; description = "Leksah library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bimap_0_3_0" = callPackage @@ -35263,6 +36110,7 @@ self: { homepage = "https://github.com/choener/bimaps"; description = "bijections with multiple implementations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binary_0_7_6_1" = callPackage @@ -35365,6 +36213,7 @@ self: { jailbreak = true; description = "Automatic deriving of Binary using GHC.Generics"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binary-enum" = callPackage @@ -35420,6 +36269,7 @@ self: { libraryHaskellDepends = [ array base ]; description = "Binary Indexed Trees (a.k.a. Fenwick Trees)."; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binary-list_1_0_1_0" = callPackage @@ -35669,6 +36519,7 @@ self: { homepage = "http://github.com/NicolasT/binary-protocol-zmq"; description = "Monad to ease implementing a binary network protocol over ZeroMQ"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binary-search_0_1" = callPackage @@ -35766,6 +36617,7 @@ self: { homepage = "http://github.com/jonpetterbergman/binary-streams"; description = "data serialization/deserialization io-streams library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binary-strict" = callPackage @@ -35932,6 +36784,7 @@ self: { homepage = "https://github.com/coreyoconnor/bind-marshal"; description = "Data marshaling library that uses type level equations to optimize buffering"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binding-core" = callPackage @@ -35962,6 +36815,7 @@ self: { homepage = "https://bitbucket.org/accursoft/binding"; description = "Data Binding in Gtk2Hs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binding-wx" = callPackage @@ -35977,6 +36831,7 @@ self: { homepage = "https://bitbucket.org/accursoft/binding"; description = "Data Binding in WxHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "bindings" = callPackage @@ -36039,6 +36894,7 @@ self: { homepage = "http://cielonegro.org/Bindings-EsounD.html"; description = "Low level bindings to EsounD (ESD; Enlightened Sound Daemon)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {esound = null;}; "bindings-GLFW" = callPackage @@ -36062,6 +36918,7 @@ self: { doCheck = false; description = "Low-level bindings to GLFW OpenGL library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXcursor; inherit (pkgs.xorg) libXext; inherit (pkgs.xorg) libXfixes; inherit (pkgs.xorg) libXi; inherit (pkgs.xorg) libXinerama; @@ -36079,6 +36936,7 @@ self: { homepage = "https://github.com/jputcu/bindings-K8055"; description = "Bindings to Velleman K8055 dll"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {K8055D = null;}; "bindings-apr" = callPackage @@ -36093,6 +36951,7 @@ self: { homepage = "http://cielonegro.org/Bindings-APR.html"; description = "Low level bindings to Apache Portable Runtime (APR)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {apr-1 = null;}; "bindings-apr-util" = callPackage @@ -36107,6 +36966,7 @@ self: { homepage = "http://cielonegro.org/Bindings-APR.html"; description = "Low level bindings to Apache Portable Runtime Utility (APR Utility)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {apr-util-1 = null;}; "bindings-audiofile" = callPackage @@ -36137,6 +36997,7 @@ self: { homepage = "http://projects.haskell.org/bindings-bfd/"; description = "Bindings for libbfd, a library of the GNU `binutils'"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {bfd = null; opcodes = null;}; "bindings-cctools" = callPackage @@ -36150,6 +37011,7 @@ self: { homepage = "http://bitbucket.org/badi/bindings-cctools"; description = "Bindings to the CCTools WorkQueue C library"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {dttools = null;}; "bindings-codec2" = callPackage @@ -36170,6 +37032,7 @@ self: { homepage = "https://github.com/relrod/bindings-codec2"; description = "Very low-level FFI bindings for Codec2"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {codec2 = null;}; "bindings-common" = callPackage @@ -36181,6 +37044,7 @@ self: { libraryHaskellDepends = [ base ]; description = "This package is obsolete. Look for bindings-DSL instead."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bindings-dc1394" = callPackage @@ -36195,6 +37059,7 @@ self: { homepage = "http://github.com/aleator/bindings-dc1394"; description = "Library for using firewire (iidc-1394) cameras"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {dc1394 = null;}; "bindings-directfb" = callPackage @@ -36222,6 +37087,7 @@ self: { homepage = "http://github.com/a1kmm/bindings-eskit"; description = "Bindings to ESKit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {eskit = null;}; "bindings-fann" = callPackage @@ -36234,6 +37100,7 @@ self: { libraryPkgconfigDepends = [ fann ]; description = "Low level bindings to FANN neural network library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {fann = null;}; "bindings-fluidsynth" = callPackage @@ -36247,6 +37114,7 @@ self: { homepage = "http://github.com/bgamari/bindings-fluidsynth"; description = "Haskell FFI bindings for fluidsynth software synthesizer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) fluidsynth;}; "bindings-friso" = callPackage @@ -36259,6 +37127,7 @@ self: { librarySystemDepends = [ friso ]; description = "Low level bindings for friso"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {friso = null;}; "bindings-glib" = callPackage @@ -36296,6 +37165,7 @@ self: { homepage = "http://bitbucket.org/mauricio/bindings-gpgme"; description = "Project bindings-* raw interface to gpgme"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) gpgme;}; "bindings-gsl" = callPackage @@ -36308,6 +37178,7 @@ self: { libraryPkgconfigDepends = [ gsl ]; description = "Low level bindings to GNU GSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gsl;}; "bindings-gts" = callPackage @@ -36320,6 +37191,7 @@ self: { libraryPkgconfigDepends = [ gts ]; description = "Low level bindings supporting GTS, the GNU Triangulated Surface Library"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gts;}; "bindings-hamlib" = callPackage @@ -36338,6 +37210,7 @@ self: { homepage = "https://github.com/relrod/hamlib-haskell"; description = "Hamlib bindings for Haskell"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) hamlib;}; "bindings-hdf5" = callPackage @@ -36349,6 +37222,7 @@ self: { libraryHaskellDepends = [ base bindings-DSL ]; description = "Project bindings-* raw interface to HDF5 library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bindings-levmar" = callPackage @@ -36375,6 +37249,7 @@ self: { homepage = "http://bitbucket.org/mauricio/bindings-libcddb"; description = "Low level binding to libcddb"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) libcddb;}; "bindings-libffi" = callPackage @@ -36399,6 +37274,7 @@ self: { libraryPkgconfigDepends = [ libftdi libusb ]; description = "Low level bindings to libftdi"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libftdi; inherit (pkgs) libusb;}; "bindings-librrd" = callPackage @@ -36412,6 +37288,7 @@ self: { homepage = "http://cielonegro.org/Bindings-librrd.html"; description = "Low level bindings to RRDtool"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {librrd = null;}; "bindings-libstemmer" = callPackage @@ -36428,6 +37305,7 @@ self: { librarySystemDepends = [ stemmer ]; description = "Binding for libstemmer with low level binding"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {stemmer = null;}; "bindings-libusb" = callPackage @@ -36454,6 +37332,7 @@ self: { homepage = "https://gitorious.org/hsv4l2"; description = "bindings to libv4l2 for Linux"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {v4l2 = null;}; "bindings-libzip" = callPackage @@ -36467,6 +37346,7 @@ self: { homepage = "http://bitbucket.org/astanin/hs-libzip/"; description = "Low level bindings to libzip"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libzip;}; "bindings-libzip_0_11" = callPackage @@ -36493,6 +37373,7 @@ self: { homepage = "https://gitorious.org/hsv4l2"; description = "bindings to Video For Linux Two (v4l2) kernel interfaces"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bindings-lxc" = callPackage @@ -36517,6 +37398,7 @@ self: { libraryHaskellDepends = [ bindings-posix ]; description = "(deprecated) see bindings-posix instead"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "bindings-mpdecimal" = callPackage @@ -36530,6 +37412,7 @@ self: { homepage = "http://www.github.com/massysett/bindings-mpdecimal"; description = "bindings to mpdecimal library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bindings-nettle" = callPackage @@ -36559,6 +37442,7 @@ self: { libraryHaskellDepends = [ base bindings-DSL ]; description = "parport bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "bindings-portaudio" = callPackage @@ -36571,6 +37455,7 @@ self: { libraryPkgconfigDepends = [ portaudio ]; description = "Low-level bindings to portaudio library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) portaudio;}; "bindings-posix" = callPackage @@ -36582,6 +37467,7 @@ self: { libraryHaskellDepends = [ base bindings-DSL ]; description = "Low level bindings to posix"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "bindings-potrace" = callPackage @@ -36606,6 +37492,7 @@ self: { libraryHaskellDepends = [ base bindings-DSL ioctl ]; description = "PPDev bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "bindings-saga-cmd" = callPackage @@ -36640,6 +37527,7 @@ self: { homepage = "http://floss.scru.org/bindings-sane"; description = "FFI bindings to libsane"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {saneBackends = null;}; "bindings-sc3" = callPackage @@ -36653,6 +37541,7 @@ self: { homepage = "https://github.com/kaoskorobase/bindings-sc3/"; description = "Low-level bindings to the SuperCollider synthesis engine library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {scsynth = null;}; "bindings-sipc" = callPackage @@ -36669,6 +37558,7 @@ self: { homepage = "https://github.com/justinethier/hs-bindings-sipc"; description = "Low level bindings to SIPC"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {sipc = null;}; "bindings-sophia" = callPackage @@ -36704,6 +37594,7 @@ self: { homepage = "http://github.com/tanimoto/bindings-svm"; description = "Low level bindings to libsvm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "bindings-uname" = callPackage @@ -36776,6 +37667,7 @@ self: { homepage = "http://code.mathr.co.uk/binembed"; description = "Example project using binembed to embed data in object files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "bini" = callPackage @@ -36813,6 +37705,7 @@ self: { homepage = "http://biohaskell.org/Libraries/Bio"; description = "A bioinformatics library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bioace" = callPackage @@ -36907,37 +37800,43 @@ self: { homepage = "http://github.com/udo-stenzel/biohazard"; description = "bioinformatics support library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bioinformatics-toolkit" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bbi, binary, bytestring - , bytestring-lexing, clustering, colour, conduit, containers - , data-default-class, double-conversion, hexpat, http-conduit - , IntervalMap, matrices, mtl, palette, parallel, primitive, random + ({ mkDerivation, aeson, aeson-pretty, base, binary, bytestring + , bytestring-lexing, clustering, colour, conduit + , conduit-combinators, containers, data-default-class + , double-conversion, hexpat, http-conduit, IntervalMap, matrices + , mtl, optparse-applicative, palette, parallel, primitive, random , samtools, shelly, split, statistics, tasty, tasty-golden , tasty-hunit, text, transformers, unordered-containers, vector , vector-algorithms, word8 }: mkDerivation { pname = "bioinformatics-toolkit"; - version = "0.1.1"; - sha256 = "ac95d23555ac96d87ebf90c90fd665587b037ae22d2fd92864efb95a8725863f"; + version = "0.2.0"; + sha256 = "daed7af121b14dfbe493b15eb470323a17c1bf28ba330d73e8690e76f13dc8c2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson aeson-pretty base bbi binary bytestring bytestring-lexing - clustering colour conduit containers data-default-class + aeson aeson-pretty base binary bytestring bytestring-lexing + clustering colour conduit-combinators containers data-default-class double-conversion hexpat http-conduit IntervalMap matrices mtl palette parallel primitive samtools split statistics text transformers unordered-containers vector vector-algorithms word8 ]; - executableHaskellDepends = [ base bytestring shelly text ]; + executableHaskellDepends = [ + base bytestring clustering data-default-class optparse-applicative + shelly split text + ]; testHaskellDepends = [ - base bytestring conduit data-default-class mtl random tasty - tasty-golden tasty-hunit unordered-containers vector + base bytestring conduit conduit-combinators data-default-class mtl + random tasty tasty-golden tasty-hunit unordered-containers vector ]; description = "A collection of bioinformatics tools"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "biophd" = callPackage @@ -37035,6 +37934,7 @@ self: { homepage = "http://biohaskell.org/"; description = "Library and executables for working with SFF files"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "biostockholm" = callPackage @@ -37058,6 +37958,7 @@ self: { jailbreak = true; description = "Parsing and rendering of Stockholm files (used by Pfam, Rfam and Infernal)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bird" = callPackage @@ -37078,6 +37979,7 @@ self: { homepage = "http://github.com/moonmaster9000/bird"; description = "A simple, sinatra-inspired web framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bit-array" = callPackage @@ -37108,6 +38010,7 @@ self: { homepage = "https://github.com/acfoltzer/bit-vector"; description = "Simple bit vectors for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "bitarray" = callPackage @@ -37212,6 +38115,7 @@ self: { jailbreak = true; description = "Library to communicate with the Satoshi Bitcoin daemon"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bitcoin-script" = callPackage @@ -37285,6 +38189,7 @@ self: { homepage = "http://bitbucket.org/jetxee/hs-bitly/"; description = "A command line tool to access bit.ly URL shortener."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bitmap" = callPackage @@ -37309,6 +38214,7 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "OpenGL support for Data.Bitmap."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "bitmaps" = callPackage @@ -37369,6 +38275,7 @@ self: { jailbreak = true; description = "Bitstream support for Conduit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bits-extras" = callPackage @@ -37383,6 +38290,7 @@ self: { librarySystemDepends = [ gcc_s ]; description = "Efficient high-level bit operations not found in Data.Bits"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {gcc_s = null;}; "bitset" = callPackage @@ -37399,6 +38307,7 @@ self: { jailbreak = true; description = "A space-efficient set data structure"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gmp;}; "bitspeak" = callPackage @@ -37418,6 +38327,7 @@ self: { jailbreak = true; description = "Proof-of-concept tool for writing using binary choices"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {gdk2 = null; gtk2 = pkgs.gnome2.gtk; inherit (pkgs.gnome) pango;}; @@ -37439,6 +38349,7 @@ self: { homepage = "https://github.com/phonohawk/bitstream"; description = "Fast, packed, strict and lazy bit streams with stream fusion"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bitstring" = callPackage @@ -37485,6 +38396,7 @@ self: { homepage = "https://github.com/cobit/bittorrent"; description = "Bittorrent protocol implementation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bitvec" = callPackage @@ -37503,6 +38415,7 @@ self: { homepage = "https://github.com/mokus0/bitvec"; description = "Unboxed vectors of bits / dense IntSets"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bitwise_0_1_0_2" = callPackage @@ -37591,6 +38504,7 @@ self: { homepage = "https://github.com/ingesson/bkr"; description = "Backup utility for backing up to cloud storage services (S3 only right now)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bktrees" = callPackage @@ -37616,6 +38530,7 @@ self: { homepage = "http://github.com/nfjinjing/bla"; description = "a stupid cron"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "black-jewel" = callPackage @@ -37637,6 +38552,7 @@ self: { homepage = "http://git.kaction.name/black-jewel"; description = "The pirate bay client"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blacktip" = callPackage @@ -37674,6 +38590,7 @@ self: { homepage = "https://github.com/centromere/blake2"; description = "A library providing BLAKE2"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "blakesum" = callPackage @@ -37687,6 +38604,7 @@ self: { homepage = "https://github.com/killerswan/Haskell-BLAKE"; description = "The BLAKE SHA-3 candidate hashes, in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blakesum-demo" = callPackage @@ -37706,6 +38624,7 @@ self: { homepage = "https://github.com/killerswan/Haskell-BLAKE"; description = "The BLAKE SHA-3 candidate hashes, in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blank-canvas_0_5" = callPackage @@ -37769,6 +38688,7 @@ self: { homepage = "http://github.com/patperry/blas"; description = "Bindings to the BLAS library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blas-hs" = callPackage @@ -37783,6 +38703,7 @@ self: { homepage = "https://github.com/Rufflewind/blas-hs"; description = "Low-level Haskell bindings to Blas"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) blas;}; "blastxml" = callPackage @@ -38072,6 +38993,7 @@ self: { homepage = "https://github.com/egonSchiele/blaze-html-contrib"; description = "Some contributions to add handy things to blaze html"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blaze-html-hexpat" = callPackage @@ -38085,6 +39007,7 @@ self: { homepage = "https://github.com/jaspervdj/blaze-html-hexpat"; description = "A hexpat backend for blaze-html"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blaze-html-truncate" = callPackage @@ -38358,6 +39281,7 @@ self: { homepage = "http://github.com/mailrank/blaze-textual"; description = "Fast rendering of common datatypes (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blazeMarker" = callPackage @@ -38369,6 +39293,7 @@ self: { libraryHaskellDepends = [ base blaze-html blaze-markup ]; description = "..."; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blink1" = callPackage @@ -38403,6 +39328,7 @@ self: { homepage = "https://github.com/bjpop/blip"; description = "Python to bytecode compiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bliplib" = callPackage @@ -38452,6 +39378,7 @@ self: { executableHaskellDepends = [ base ConfigFile haskell98 old-time ]; description = "Very simple static blog software"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bloodhound_0_4_0_2" = callPackage @@ -38597,6 +39524,28 @@ self: { homepage = "https://github.com/bitemyapp/bloodhound"; description = "ElasticSearch client library for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "bloodhound-amazonka-auth" = callPackage + ({ mkDerivation, amazonka-core, amazonka-elasticsearch, base + , bloodhound, exceptions, http-client, http-types, tasty + , tasty-hunit, time, transformers, uri-bytestring + }: + mkDerivation { + pname = "bloodhound-amazonka-auth"; + version = "0.1.0.0"; + sha256 = "8a0bff2793fe8493e3d6239b43da5b15c1d31bfec71cad6bac0b20f0fd57c297"; + 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 + ]; + homepage = "http://github.com/MichaelXavier/bloodhound-amazonka-auth#readme"; + description = "Adds convenient Amazon ElasticSearch Service authentication to Bloodhound"; + license = stdenv.lib.licenses.bsd3; }) {}; "bloomfilter" = callPackage @@ -38628,6 +39577,7 @@ self: { executableHaskellDepends = [ base GLFW OpenGL ]; description = "OpenGL Logic Game"; license = "GPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "blubber" = callPackage @@ -38647,6 +39597,7 @@ self: { homepage = "https://secure.plaimi.net/games/blubber.html"; description = "The blubber client; connects to the blubber server"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "blubber-server" = callPackage @@ -38691,6 +39642,7 @@ self: { homepage = "http://www.bluetile.org/"; description = "full-featured tiling for the GNOME desktop environment"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {gtk2 = pkgs.gnome2.gtk;}; "bluetileutils" = callPackage @@ -38705,6 +39657,7 @@ self: { jailbreak = true; description = "Utilities for Bluetile"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "blunt" = callPackage @@ -38766,6 +39719,7 @@ self: { homepage = "http://code.haskell.org/~thielema/games/"; description = "Three games for inclusion in a web server"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bogre-banana" = callPackage @@ -38783,6 +39737,7 @@ self: { ]; executableHaskellDepends = [ base hogre hois random ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bond" = callPackage @@ -38814,6 +39769,32 @@ self: { homepage = "https://github.com/Microsoft/bond"; description = "Bond schema compiler and code generator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "bond-haskell" = callPackage + ({ mkDerivation, aeson, array, base, binary, bond-haskell-compiler + , bytestring, containers, either, extra, filepath, hashable, mtl + , scientific, tasty, tasty-golden, tasty-hunit, tasty-quickcheck + , text, unordered-containers, vector + }: + mkDerivation { + pname = "bond-haskell"; + version = "0.1.1.1"; + sha256 = "4784f683c30aa70f4524519d1745c9c3873888c91c69f3dc265d4d1eb8ad37c0"; + revision = "1"; + editedCabalFile = "fa660fa43b66bed4b48f9d43f5845bd5a5ece32024ddcbfc159d657ae2eaf70a"; + libraryHaskellDepends = [ + aeson array base binary bond-haskell-compiler bytestring containers + extra hashable mtl scientific text unordered-containers vector + ]; + testHaskellDepends = [ + aeson base bytestring containers either filepath mtl tasty + tasty-golden tasty-hunit tasty-quickcheck unordered-containers + ]; + homepage = "http://github.com/rblaze/bond-haskell#readme"; + description = "Runtime support for BOND serialization"; + license = stdenv.lib.licenses.bsd3; }) {}; "bond-haskell-compiler" = callPackage @@ -38822,8 +39803,10 @@ self: { }: mkDerivation { pname = "bond-haskell-compiler"; - version = "0.1.0.0"; - sha256 = "06bbfd191a7a2d901df2862196ae4e518306af9c363e908fd03802d7dfe27ba5"; + version = "0.1.1.0"; + sha256 = "0fe161873d716e1738ce8906095369952724a1361bc6f6ad3532b0dc52a2d8e2"; + revision = "1"; + editedCabalFile = "52cb37d09ecb7c2389f26cfe1a485a2aaef0dae2b3e9e33a2dbe0e57d58355a3"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bond filepath haskell-src-exts ]; @@ -38831,9 +39814,10 @@ self: { aeson base bond bytestring cmdargs directory filepath monad-loops ]; testHaskellDepends = [ base ]; - homepage = "http://github.com/rblaze/bond-haskell-compiler#readme"; + homepage = "http://github.com/rblaze/bond-haskell#readme"; description = "Bond code generator for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bool-extras" = callPackage @@ -38877,6 +39861,7 @@ self: { ]; description = "Boolean normal form: NNF, DNF & CNF"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "boolexpr" = callPackage @@ -38910,6 +39895,7 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Simplification tools for simple propositional formulas"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "boomange" = callPackage @@ -38974,6 +39960,7 @@ self: { jailbreak = true; description = "Boomshine clone"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "borel" = callPackage @@ -39007,6 +39994,7 @@ self: { homepage = "https://github.com/anchor/borel-core"; description = "Metering System for OpenStack metrics provided by Vaultaire"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bot" = callPackage @@ -39019,6 +40007,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Bot"; description = "bots for functional reactive programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "both" = callPackage @@ -39211,6 +40200,7 @@ self: { homepage = "http://code.mathr.co.uk/bowntz"; description = "audio-visual pseudo-physical simulation of colliding circles"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "boxes" = callPackage @@ -39322,6 +40312,7 @@ self: { homepage = "http://github.com/Peaker/breakout/tree/master"; description = "A simple Breakout game implementation"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "breve" = callPackage @@ -39345,6 +40336,7 @@ self: { homepage = "https://github.com/rnhmjoj/breve"; description = "a url shortener"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "brians-brain" = callPackage @@ -39359,6 +40351,7 @@ self: { homepage = "http://github.com/willdonnelly/brians-brain"; description = "A Haskell implementation of the Brian's Brain cellular automaton"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "brick_0_3_1" = callPackage @@ -39451,6 +40444,7 @@ self: { jailbreak = true; description = "Simple part of speech tagger"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "broadcast-chan" = callPackage @@ -39489,6 +40483,7 @@ self: { homepage = "https://github.com/capn-freako/broker-haskell"; description = "Haskell bindings to Broker, Bro's messaging library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {broker = null;}; "bsd-sysctl" = callPackage @@ -39500,6 +40495,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Access to the BSD sysctl(3) interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bson_0_3_1" = callPackage @@ -39599,6 +40595,7 @@ self: { jailbreak = true; description = "Generics functionality for BSON"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bson-lens" = callPackage @@ -39626,6 +40623,7 @@ self: { ]; description = "Mapping between BSON and algebraic data types"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bspack" = callPackage @@ -39678,6 +40676,7 @@ self: { homepage = "https://github.com/brinchj/btree-concurrent"; description = "A backend agnostic, concurrent BTree"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "btrfs_0_1_1_1" = callPackage @@ -39709,6 +40708,7 @@ self: { homepage = "https://github.com/redneb/hs-btrfs"; description = "Bindings to the btrfs API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "buffer-builder_0_2_4_0" = callPackage @@ -39753,6 +40753,7 @@ self: { homepage = "https://github.com/chadaustin/buffer-builder"; description = "Library for efficiently building up buffers, one piece at a time"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "buffer-builder-aeson" = callPackage @@ -39778,6 +40779,7 @@ self: { ]; description = "Serialize Aeson values with Data.BufferBuilder"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "buffer-pipe" = callPackage @@ -39808,6 +40810,7 @@ self: { homepage = "https://github.com/derekelkins/buffon"; description = "An implementation of Buffon machines"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bugzilla" = callPackage @@ -39875,6 +40878,7 @@ self: { homepage = "http://code.ouroborus.net/buildbox"; description = "Tools for working with buildbox benchmark result files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "buildwrapper" = callPackage @@ -39914,6 +40918,7 @@ self: { homepage = "https://github.com/JPMoresmau/BuildWrapper"; description = "A library and an executable that provide an easy API for a Haskell IDE"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bullet" = callPackage @@ -39928,6 +40933,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Bullet"; description = "A wrapper for the Bullet physics engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) bullet;}; "bumper_0_6_0_2" = callPackage @@ -40016,6 +41022,7 @@ self: { homepage = "http://vis.renci.org/jeff/buster"; description = "Almost but not quite entirely unlike FRP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "buster-gtk" = callPackage @@ -40033,6 +41040,7 @@ self: { homepage = "http://vis.renci.org/jeff/buster"; description = "Almost but not quite entirely unlike FRP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "buster-network" = callPackage @@ -40050,6 +41058,7 @@ self: { homepage = "http://vis.renci.org/jeff/buster"; description = "Almost but not quite entirely unlike FRP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bustle_0_5_2" = callPackage @@ -40133,6 +41142,7 @@ self: { homepage = "http://www.freedesktop.org/wiki/Software/Bustle/"; description = "Draw sequence diagrams of D-Bus traffic"; license = "unknown"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {system-glib = pkgs.glib;}; "butterflies" = callPackage @@ -40154,6 +41164,7 @@ self: { homepage = "http://code.mathr.co.uk/butterflies"; description = "butterfly tilings"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bv" = callPackage @@ -40199,6 +41210,7 @@ self: { libraryHaskellDepends = [ base bytestring word24 ]; description = "data from/to ByteString"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "byteable" = callPackage @@ -40504,6 +41516,7 @@ self: { jailbreak = true; description = "Classes for automatic conversion to and from strict and lazy bytestrings. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bytestring-conversion_0_3_0" = callPackage @@ -40557,6 +41570,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/bytestring-csv"; description = "Parse CSV formatted data efficiently"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bytestring-delta" = callPackage @@ -40770,6 +41784,7 @@ self: { homepage = "github.com/tcrayford/rematch"; description = "Rematch support for ByteString"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bytestring-short" = callPackage @@ -40855,6 +41870,7 @@ self: { libraryHaskellDepends = [ base bytestring containers ]; description = "Combinator parsing with Data.ByteString.Lazy"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bytestringparser-temporary" = callPackage @@ -40877,6 +41893,7 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "A ReadP style parser library for ByteString"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bzlib_0_5_0_4" = callPackage @@ -40950,6 +41967,7 @@ self: { libraryHaskellDepends = [ base ]; description = "C IO"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "c-storable-deriving" = callPackage @@ -41196,6 +42214,7 @@ self: { homepage = "https://github.com/benarmston/cabal-constraints"; description = "Repeatable builds for cabalized Haskell projects"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-db" = callPackage @@ -41359,6 +42378,7 @@ self: { homepage = "http://github.com/creswick/cabal-dev"; description = "Manage sandboxed Haskell build environments"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-dir" = callPackage @@ -41416,6 +42436,7 @@ self: { homepage = "http://github.com/atnnn/cabal-ghci"; description = "Set up ghci with options taken from a .cabal file"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-graphdeps" = callPackage @@ -41434,6 +42455,7 @@ self: { homepage = "https://john-millikin.com/software/cabal-graphdeps/"; description = "Generate graphs of install-time Cabal dependencies"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-helper_0_6_2_0" = callPackage @@ -41885,6 +42907,7 @@ self: { executableSystemDepends = [ zlib ]; description = "The (bundled) command-line interface for Cabal and Hackage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) zlib;}; "cabal-install-ghc72" = callPackage @@ -41906,6 +42929,7 @@ self: { homepage = "http://www.haskell.org/cabal/"; description = "Temporary version of cabal-install for ghc-7.2"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-install-ghc74" = callPackage @@ -41927,6 +42951,7 @@ self: { homepage = "http://www.haskell.org/cabal/"; description = "Temporary version of cabal-install for ghc-7.4"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-lenses" = callPackage @@ -42060,6 +43085,7 @@ self: { homepage = "http://github.com/explicitcall/cabal-query"; description = "Helpers for quering .cabal files or hackageDB's 00-index.tar"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-rpm_0_9_4" = callPackage @@ -42218,6 +43244,7 @@ self: { homepage = "http://www.haskell.org/cabal/"; description = "The user interface for building and installing Cabal packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-sign" = callPackage @@ -42392,6 +43419,7 @@ self: { ]; description = "Automated test tool for cabal projects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-test-bin" = callPackage @@ -42474,6 +43502,7 @@ self: { jailbreak = true; description = "Command-line tool for uploading packages to Hackage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal2arch" = callPackage @@ -42493,6 +43522,7 @@ self: { homepage = "http://github.com/archhaskell/"; description = "Create Arch Linux packages from Cabal packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal2doap" = callPackage @@ -42510,6 +43540,7 @@ self: { homepage = "http://gregheartsfield.com/cabal2doap/"; description = "Cabal to Description-of-a-Project (DOAP)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal2ebuild" = callPackage @@ -42587,6 +43618,7 @@ self: { homepage = "https://fedorahosted.org/cabal2spec/"; description = "Generates RPM Spec files from cabal files"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabalQuery" = callPackage @@ -42640,6 +43672,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/cabalgraph"; description = "Generate pretty graphs of module trees from cabal files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabalmdvrpm" = callPackage @@ -42655,6 +43688,7 @@ self: { homepage = "http://nanardon.zarb.org/darcsweb/darcsweb.cgi?r=haskell-cabalmdvrpm;a=shortlog;topi=0"; description = "Create mandriva rpm from cabal package"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabalrpmdeps" = callPackage @@ -42670,6 +43704,7 @@ self: { homepage = "http://nanardon.zarb.org/darcsweb/darcsweb.cgi?r=haskell-CabalRpmDeps;a=summary"; description = "Autogenerate rpm dependencies from cabal files"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabalvchk" = callPackage @@ -42714,6 +43749,7 @@ self: { testHaskellDepends = [ base text-format ]; homepage = "http://github.com/pecorarista/hscabocha"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {cabocha = null;}; "cached-io" = callPackage @@ -42923,6 +43959,7 @@ self: { executableHaskellDepends = [ base cairo glib gtk ]; description = "A template for building new GUI applications using GTK and Cairo"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "cake" = callPackage @@ -42973,6 +44010,7 @@ self: { homepage = "https://github.com/grwlf/cake3"; description = "Third cake the Makefile EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cakyrespa" = callPackage @@ -42991,6 +44029,7 @@ self: { homepage = "http://homepage3.nifty.com/salamander/myblog/cakyrespa.html"; description = "run turtle like LOGO with lojban"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cal3d" = callPackage @@ -43004,6 +44043,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Cal3d_animation"; description = "Haskell binding to the Cal3D animation library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {cal3d = null;}; "cal3d-examples" = callPackage @@ -43019,6 +44059,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Cal3d_animation"; description = "Examples for the Cal3d animation library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cal3d-opengl" = callPackage @@ -43032,6 +44073,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Cal3d_animation"; description = "OpenGL rendering for the Cal3D animation library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "calc" = callPackage @@ -43045,6 +44087,7 @@ self: { executableHaskellDepends = [ array base harpy haskell98 mtl ]; description = "A small compiler for arithmetic expressions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "calculator" = callPackage @@ -43067,6 +44110,7 @@ self: { homepage = "https://github.com/sumitsahrawat/calculator"; description = "A calculator repl, with variables, functions & Mathematica like dynamic plots"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "caldims" = callPackage @@ -43087,6 +44131,7 @@ self: { ]; description = "Calculation tool and library supporting units"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "caledon" = callPackage @@ -43106,6 +44151,7 @@ self: { homepage = "https://github.com/mmirman/caledon"; description = "a logic programming language based on the calculus of constructions"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "call" = callPackage @@ -43133,6 +44179,7 @@ self: { homepage = "https://github.com/fumieval/call"; description = "The call game engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "call-haskell-from-anything" = callPackage @@ -43152,6 +44199,34 @@ self: { homepage = "https://github.com/nh2/call-haskell-from-anything"; description = "Call Haskell functions from other languages via serialization and dynamic libraries"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "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 { + pname = "camfort"; + version = "0.700"; + sha256 = "f5978dfbc1af77fc7fb0ff0190fae5d58f797301acbec7115ce66ab146913151"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base comonad containers directory fclabels generic-deriving + 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 + ]; + description = "CamFort - Cambridge Fortran infrastructure"; + license = stdenv.lib.licenses.asl20; }) {}; "camh" = callPackage @@ -43186,6 +44261,7 @@ self: { homepage = "http://github.com/michaelxavier/Campfire"; description = "Haskell implementation of the Campfire API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "canonical-filepath" = callPackage @@ -43282,6 +44358,7 @@ self: { homepage = "https://github.com/klangner/cantor"; description = "Application for analysis of java source code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cao" = callPackage @@ -43303,6 +44380,7 @@ self: { homepage = "http://haslab.uminho.pt/mbb/software/cao-domain-specific-language-cryptography"; description = "CAO Compiler"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cap" = callPackage @@ -43316,6 +44394,7 @@ self: { executableHaskellDepends = [ array base containers haskell98 ]; description = "Interprets and debug the cap language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "capped-list" = callPackage @@ -43342,6 +44421,7 @@ self: { ]; description = "A simple wrapper over cabal-install to operate in project-private mode"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "car-pool" = callPackage @@ -43391,6 +44471,7 @@ self: { homepage = "https://github.com/Noeda/caramia/"; description = "High-level OpenGL bindings"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "carboncopy" = callPackage @@ -43409,6 +44490,7 @@ self: { homepage = "http://github.com/jdevelop/carboncopy"; description = "Drop emails from threads being watched into special CC folder"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "carettah" = callPackage @@ -43428,6 +44510,7 @@ self: { homepage = "https://github.com/master-q/carettah"; description = "A presentation tool written with Haskell"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "carray_0_1_6_2" = callPackage @@ -43567,6 +44650,7 @@ self: { homepage = "http://github.com/ghorn/casadi-bindings"; description = "mid-level bindings to CasADi"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {casadi = null;}; "casadi-bindings-control" = callPackage @@ -43584,6 +44668,7 @@ self: { jailbreak = true; description = "low level bindings to casadi-control"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {casadi_control = null;}; "casadi-bindings-core" = callPackage @@ -43600,6 +44685,7 @@ self: { libraryPkgconfigDepends = [ casadi ]; description = "autogenerated low level bindings to casadi"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {casadi = null;}; "casadi-bindings-internal" = callPackage @@ -43613,6 +44699,7 @@ self: { homepage = "http://github.com/ghorn/casadi-bindings"; description = "low level bindings to CasADi"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {casadi = null;}; "casadi-bindings-ipopt-interface" = callPackage @@ -43629,6 +44716,7 @@ self: { libraryPkgconfigDepends = [ casadi_ipopt_interface ]; description = "low level bindings to casadi-ipopt_interface"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {casadi_ipopt_interface = null;}; "casadi-bindings-snopt-interface" = callPackage @@ -43645,6 +44733,7 @@ self: { libraryPkgconfigDepends = [ casadi_snopt_interface ]; description = "low level bindings to casadi-snopt_interface"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {casadi_snopt_interface = null;}; "cascading" = callPackage @@ -43662,6 +44751,7 @@ self: { jailbreak = true; description = "DSL for HTML CSS (Cascading Style Sheets)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "case-conversion" = callPackage @@ -43842,6 +44932,7 @@ self: { homepage = "http://www.cs.st-andrews.ac.uk/~hwloidl/SCIEnce/SymGrid-Par/CASH/"; description = "the Computer Algebra SHell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "casing" = callPackage @@ -43900,6 +44991,7 @@ self: { homepage = "http://cassandra.apache.org/"; description = "thrift bindings to the cassandra database"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cassava_0_4_2_0" = callPackage @@ -44158,6 +45250,7 @@ self: { homepage = "https://github.com/domdere/cassava-conduit"; description = "Conduit interface for cassava package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cassava-streams" = callPackage @@ -44220,6 +45313,7 @@ self: { homepage = "http://github.com/ozataman/cassy"; description = "A high level driver for the Cassandra datastore"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "castle" = callPackage @@ -44254,6 +45348,7 @@ self: { homepage = "http://code.atnnn.com/projects/casui"; description = "Equation Manipulator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "catamorphism" = callPackage @@ -44279,6 +45374,7 @@ self: { homepage = "http://github.com/sonyandy/catch-fd"; description = "MonadThrow and MonadCatch, using functional dependencies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "categorical-algebra" = callPackage @@ -44290,6 +45386,7 @@ self: { libraryHaskellDepends = [ base newtype pointless-haskell void ]; description = "Categorical Monoids and Semirings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "categories" = callPackage @@ -44330,6 +45427,7 @@ self: { homepage = "http://comonad.com/reader/"; description = "A meta-package documenting various packages inspired by category theory"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "category-traced" = callPackage @@ -44452,6 +45550,7 @@ self: { jailbreak = true; description = "Tool to maintain a database of CABAL packages and their dependencies"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cci" = callPackage @@ -44472,6 +45571,7 @@ self: { ]; description = "Bindings for the CCI networking library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {cci = null;}; "ccnx" = callPackage @@ -44502,6 +45602,7 @@ self: { homepage = "http://bitbucket.org/badi/hs-cctools-workqueue"; description = "High-level interface to CCTools' WorkQueue library"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {dttools = null;}; "cedict" = callPackage @@ -44520,6 +45621,7 @@ self: { jailbreak = true; description = "Convenient Chinese phrase & character lookup"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cef" = callPackage @@ -44559,6 +45661,7 @@ self: { homepage = "https://github.com/anchor/ceilometer-common"; description = "Common Haskell types and encoding for OpenStack Ceilometer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cellrenderer-cairo" = callPackage @@ -44573,6 +45676,7 @@ self: { jailbreak = true; description = "Cairo-based CellRenderer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {gtk2 = pkgs.gnome2.gtk;}; "cerberus" = callPackage @@ -44672,7 +45776,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cereal-conduit" = callPackage + "cereal-conduit_0_7_2_5" = callPackage ({ mkDerivation, base, bytestring, cereal, conduit, HUnit, mtl , resourcet, transformers }: @@ -44689,6 +45793,26 @@ self: { homepage = "https://github.com/snoyberg/conduit"; description = "Turn Data.Serialize Gets and Puts into Sources, Sinks, and Conduits"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "cereal-conduit" = callPackage + ({ mkDerivation, base, bytestring, cereal, conduit, HUnit, mtl + , resourcet, transformers + }: + mkDerivation { + pname = "cereal-conduit"; + version = "0.7.3"; + sha256 = "05bf926a6292ad6e17f2667c248c33f820266ea8a703749923cc936a824c00a2"; + libraryHaskellDepends = [ + base bytestring cereal conduit resourcet transformers + ]; + testHaskellDepends = [ + base bytestring cereal conduit HUnit mtl resourcet transformers + ]; + homepage = "https://github.com/snoyberg/conduit"; + description = "Turn Data.Serialize Gets and Puts into Sources, Sinks, and Conduits"; + license = stdenv.lib.licenses.bsd3; }) {}; "cereal-derive" = callPackage @@ -44712,6 +45836,7 @@ self: { libraryHaskellDepends = [ base bytestring cereal enumerator ]; description = "Deserialize things with cereal and enumerator"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cereal-ieee754" = callPackage @@ -44725,6 +45850,7 @@ self: { homepage = "http://github.com/jystic/cereal-ieee754"; description = "Floating point support for the 'cereal' serialization library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cereal-plus" = callPackage @@ -44750,6 +45876,7 @@ self: { homepage = "https://github.com/nikita-volkov/cereal-plus"; description = "An extended serialization library on top of \"cereal\""; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cereal-text" = callPackage @@ -44798,6 +45925,7 @@ self: { homepage = "http://github.com/vincenthz/hs-certificate"; description = "Certificates and Key Reader/Writer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cf" = callPackage @@ -44816,6 +45944,7 @@ self: { homepage = "http://github.com/mvr/cf"; description = "Exact real arithmetic using continued fractions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cfipu" = callPackage @@ -44834,6 +45963,7 @@ self: { homepage = "https://github.com/bairyn/cfipu"; description = "cfipu processor for toy brainfuck-like language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cflp" = callPackage @@ -44853,6 +45983,7 @@ self: { homepage = "http://www-ps.informatik.uni-kiel.de/~sebf/projects/cflp.html"; description = "Constraint Functional-Logic Programming in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cfopu" = callPackage @@ -44870,6 +46001,7 @@ self: { ]; description = "cfopu processor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cg" = callPackage @@ -44911,6 +46043,7 @@ self: { homepage = "http://anttisalonen.github.com/cgen"; description = "generates Haskell bindings and C wrappers for C++ libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cgi_3001_2_2_2" = callPackage @@ -44993,6 +46126,7 @@ self: { homepage = "http://github.com/chrisdone/haskell-cgi-utils"; description = "Simple modular utilities for CGI/FastCGI (sessions, etc.)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cgrep" = callPackage @@ -45063,6 +46197,7 @@ self: { homepage = "http://www.ittc.ku.edu/csdl/fpg/ChalkBoard"; description = "Combinators for building and processing 2D images"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chalkboard-viewer" = callPackage @@ -45076,6 +46211,7 @@ self: { homepage = "http://ittc.ku.edu/~andygill/chalkboard.php"; description = "OpenGL based viewer for chalkboard rendered images"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chalmers-lava2000" = callPackage @@ -45139,6 +46275,7 @@ self: { homepage = "https://github.com/soostone/charade"; description = "Rapid prototyping websites with Snap and Heist"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "charset_0_3_7" = callPackage @@ -45185,6 +46322,7 @@ self: { homepage = "http://www.github.com/batterseapower/charsetdetect"; description = "Character set detection using Mozilla's Universal Character Set Detector"; license = "LGPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "charsetdetect-ae" = callPackage @@ -45197,6 +46335,7 @@ self: { homepage = "http://github.com/aelve/charsetdetect-ae"; description = "Character set detection using Mozilla's Universal Character Set Detector"; license = "LGPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "chart-histogram" = callPackage @@ -45267,6 +46406,7 @@ self: { homepage = "http://github.com/creswick/chatter"; description = "A library of simple NLP algorithms"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chatty" = callPackage @@ -45392,6 +46532,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Import_modules_properly"; description = "Check whether module and package imports conform to the PVP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "checked" = callPackage @@ -45403,6 +46544,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Bounds-checking integer types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "checkers_0_4_1" = callPackage @@ -45502,6 +46644,7 @@ self: { homepage = "https://john-millikin.com/software/chell/"; description = "HUnit support for the Chell testing library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chell-quickcheck_0_2_4" = callPackage @@ -45560,6 +46703,25 @@ self: { jailbreak = true; description = "Query interface for Chevalier"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "chorale" = callPackage + ({ mkDerivation, base, containers, HUnit, ieee754, QuickCheck, safe + , test-framework, test-framework-hunit, test-framework-quickcheck2 + }: + mkDerivation { + pname = "chorale"; + version = "0.1.1"; + sha256 = "1b0fb54ed282ff0189cb55b230efd616edc70030fe3bd4a990194ea5d81eb6aa"; + libraryHaskellDepends = [ base containers safe ]; + testHaskellDepends = [ + base containers HUnit ieee754 QuickCheck safe test-framework + test-framework-hunit test-framework-quickcheck2 + ]; + homepage = "https://github.com/mocnik-science/chorale"; + description = "A module containing basic functions that the prelude does not offer"; + license = stdenv.lib.licenses.mit; }) {}; "chp" = callPackage @@ -45576,6 +46738,7 @@ self: { homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/"; description = "An implementation of concurrency ideas from Communicating Sequential Processes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chp-mtl" = callPackage @@ -45589,6 +46752,7 @@ self: { homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/"; description = "MTL class instances for the CHP library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chp-plus" = callPackage @@ -45606,6 +46770,7 @@ self: { homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/"; description = "A set of high-level concurrency utilities built on Communicating Haskell Processes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chp-spec" = callPackage @@ -45623,6 +46788,7 @@ self: { homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/"; description = "A mirror implementation of chp that generates a specification of the program"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chp-transformers" = callPackage @@ -45636,6 +46802,7 @@ self: { homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/"; description = "Transformers instances for the CHP library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chronograph" = callPackage @@ -45686,6 +46853,7 @@ self: { homepage = "http://github.com/marcotmarcot/chuchu"; description = "Behaviour Driven Development like Cucumber for Haskell"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chunked-data_0_1_0_1" = callPackage @@ -45736,6 +46904,7 @@ self: { homepage = "http://www.wellquite.org/chunks/"; description = "Simple template library with static safety"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chunky" = callPackage @@ -45777,6 +46946,7 @@ self: { homepage = "http://tomahawkins.org"; description = "An interface to CIL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cinvoke" = callPackage @@ -45790,6 +46960,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Library/cinvoke"; description = "A binding to cinvoke"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {cinvoke = null;}; "cio" = callPackage @@ -45802,6 +46973,7 @@ self: { homepage = "https://github.com/nikita-volkov/cio"; description = "A monad for concurrent IO on a thread pool"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cipher-aes_0_2_9" = callPackage @@ -46096,6 +47268,7 @@ self: { homepage = "https://github.com/nushio3/citation-resolve"; description = "convert document IDs such as DOI, ISBN, arXiv ID to bibliographic reference"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "citeproc-hs" = callPackage @@ -46116,6 +47289,7 @@ self: { homepage = "http://istitutocolli.org/repos/citeproc-hs/"; description = "A Citation Style Language implementation in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "citeproc-hs-pandoc-filter" = callPackage @@ -46136,6 +47310,7 @@ self: { homepage = "http://istitutocolli.org/repos/citeproc-hs-pandoc-filter/"; description = "A Pandoc filter for processing bibliographic references with citeproc-hs"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cityhash" = callPackage @@ -46154,6 +47329,7 @@ self: { homepage = "http://github.com/thoughtpolice/hs-cityhash"; description = "Bindings to CityHash"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "cjk" = callPackage @@ -46171,6 +47347,7 @@ self: { homepage = "http://github.com/batterseapower/cjk"; description = "Data about Chinese, Japanese and Korean characters and languages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clac" = callPackage @@ -46224,6 +47401,7 @@ self: { homepage = "http://clafer.org"; description = "Compiles Clafer models to other formats: Alloy, JavaScript, JSON, HTML, Dot"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "claferIG" = callPackage @@ -46256,6 +47434,7 @@ self: { homepage = "http://clafer.org"; description = "claferIG is an interactive tool that generates instances of Clafer models"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "claferwiki" = callPackage @@ -46275,6 +47454,7 @@ self: { homepage = "http://github.com/gsdlab/claferwiki"; description = "A wiki-based IDE for literate modeling with Clafer"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clang-pure" = callPackage @@ -46292,6 +47472,7 @@ self: { librarySystemDepends = [ clang ]; description = "Pure C++ code analysis with libclang"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (self.llvmPackages) clang;}; "clanki" = callPackage @@ -46345,6 +47526,7 @@ self: { homepage = "http://clash.ewi.utwente.nl/"; description = "CAES Language for Synchronous Hardware (CLaSH)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clash-ghc_0_5_11" = callPackage @@ -46544,7 +47726,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clash-ghc" = callPackage + "clash-ghc_0_6_10" = callPackage ({ mkDerivation, array, base, bifunctors, bytestring, clash-lib , clash-prelude, clash-systemverilog, clash-verilog, clash-vhdl , containers, directory, filepath, ghc, ghc-typelits-extra @@ -46568,6 +47750,61 @@ self: { homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "clash-ghc" = callPackage + ({ mkDerivation, array, base, bifunctors, bytestring, clash-lib + , clash-prelude, clash-systemverilog, clash-verilog, clash-vhdl + , containers, directory, filepath, ghc, ghc-typelits-extra + , ghc-typelits-natnormalise, hashable, haskeline, lens, mtl + , process, text, transformers, unbound-generics, unix + , unordered-containers + }: + mkDerivation { + pname = "clash-ghc"; + version = "0.6.11"; + sha256 = "712ddbf0eec7184d43bdb27bf4247805e5025dae163370a898aa159f8ca9fc8c"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + array base bifunctors bytestring clash-lib clash-prelude + clash-systemverilog clash-verilog clash-vhdl containers directory + filepath ghc ghc-typelits-extra ghc-typelits-natnormalise hashable + haskeline lens mtl process text transformers unbound-generics unix + unordered-containers + ]; + homepage = "http://www.clash-lang.org/"; + description = "CAES Language for Synchronous Hardware"; + license = stdenv.lib.licenses.bsd2; + }) {}; + + "clash-ghc_0_6_12" = callPackage + ({ mkDerivation, array, base, bifunctors, bytestring, clash-lib + , clash-prelude, clash-systemverilog, clash-verilog, clash-vhdl + , containers, directory, filepath, ghc, ghc-typelits-extra + , ghc-typelits-natnormalise, hashable, haskeline, lens, mtl + , process, text, transformers, unbound-generics, unix + , unordered-containers + }: + mkDerivation { + pname = "clash-ghc"; + version = "0.6.12"; + sha256 = "d60cc11f954661be1289153804e00f0014d91945b68338026f3d0dac21e01f87"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + array base bifunctors bytestring clash-lib clash-prelude + clash-systemverilog clash-verilog clash-vhdl containers directory + filepath ghc ghc-typelits-extra ghc-typelits-natnormalise hashable + haskeline lens mtl process text transformers unbound-generics unix + unordered-containers + ]; + jailbreak = true; + homepage = "http://www.clash-lang.org/"; + description = "CAES Language for Synchronous Hardware"; + license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clash-lib_0_5_10" = callPackage @@ -46735,7 +47972,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clash-lib" = callPackage + "clash-lib_0_6_10" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, clash-prelude , concurrent-supply, containers, deepseq, directory, errors, fgl , filepath, hashable, lens, mtl, pretty, process, template-haskell @@ -46755,6 +47992,52 @@ self: { homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - As a Library"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "clash-lib" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, clash-prelude + , concurrent-supply, containers, deepseq, directory, errors, fgl + , filepath, hashable, lens, mtl, pretty, process, template-haskell + , text, time, transformers, unbound-generics, unordered-containers + , uu-parsinglib, wl-pprint-text + }: + mkDerivation { + pname = "clash-lib"; + version = "0.6.11"; + sha256 = "4130917c99ad14143823e98dc8bdede4382519268d8db9dd61498d85a65216e8"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring clash-prelude concurrent-supply + containers deepseq directory errors fgl filepath hashable lens mtl + pretty process template-haskell text time transformers + unbound-generics unordered-containers uu-parsinglib wl-pprint-text + ]; + homepage = "http://www.clash-lang.org/"; + description = "CAES Language for Synchronous Hardware - As a Library"; + license = stdenv.lib.licenses.bsd2; + }) {}; + + "clash-lib_0_6_12" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, clash-prelude + , concurrent-supply, containers, deepseq, directory, errors, fgl + , filepath, hashable, lens, mtl, pretty, process, template-haskell + , text, time, transformers, unbound-generics, unordered-containers + , uu-parsinglib, wl-pprint-text + }: + mkDerivation { + pname = "clash-lib"; + version = "0.6.12"; + sha256 = "54a09d7727ab39541612058a54447533cdc5ddfde93432f4df7431d97b9cb747"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring clash-prelude concurrent-supply + containers deepseq directory errors fgl filepath hashable lens mtl + pretty process template-haskell text time transformers + unbound-generics unordered-containers uu-parsinglib wl-pprint-text + ]; + homepage = "http://www.clash-lang.org/"; + description = "CAES Language for Synchronous Hardware - As a Library"; + license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clash-prelude_0_9_2" = callPackage @@ -46873,6 +48156,7 @@ self: { jailbreak = true; description = "QuickCheck instances for various types in the CλaSH Prelude"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clash-systemverilog_0_5_7" = callPackage @@ -46983,7 +48267,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clash-systemverilog" = callPackage + "clash-systemverilog_0_6_5" = callPackage ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl , text, unordered-containers, wl-pprint-text }: @@ -46998,6 +48282,24 @@ self: { homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - SystemVerilog backend"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "clash-systemverilog" = callPackage + ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl + , text, unordered-containers, wl-pprint-text + }: + mkDerivation { + pname = "clash-systemverilog"; + version = "0.6.6"; + sha256 = "89afc5fb0ed8abc66412ee28a01742be14f08b11f976dd2a9efb357ae4d8840a"; + libraryHaskellDepends = [ + base clash-lib clash-prelude fgl lens mtl text unordered-containers + wl-pprint-text + ]; + homepage = "http://www.clash-lang.org/"; + description = "CAES Language for Synchronous Hardware - SystemVerilog backend"; + license = stdenv.lib.licenses.bsd2; }) {}; "clash-verilog_0_5_7" = callPackage @@ -47108,7 +48410,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clash-verilog" = callPackage + "clash-verilog_0_6_5" = callPackage ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl , text, unordered-containers, wl-pprint-text }: @@ -47123,6 +48425,24 @@ self: { homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - Verilog backend"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "clash-verilog" = callPackage + ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl + , text, unordered-containers, wl-pprint-text + }: + mkDerivation { + pname = "clash-verilog"; + version = "0.6.6"; + sha256 = "8dda7b2d72f849016fc32f563efcf59d22efc68d29f2eb2f3c8b7338701bb844"; + libraryHaskellDepends = [ + base clash-lib clash-prelude fgl lens mtl text unordered-containers + wl-pprint-text + ]; + homepage = "http://www.clash-lang.org/"; + description = "CAES Language for Synchronous Hardware - Verilog backend"; + license = stdenv.lib.licenses.bsd2; }) {}; "clash-vhdl_0_5_8" = callPackage @@ -47251,7 +48571,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clash-vhdl" = callPackage + "clash-vhdl_0_6_7" = callPackage ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl , text, unordered-containers, wl-pprint-text }: @@ -47266,6 +48586,24 @@ self: { homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - VHDL backend"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "clash-vhdl" = callPackage + ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl + , text, unordered-containers, wl-pprint-text + }: + mkDerivation { + pname = "clash-vhdl"; + version = "0.6.8"; + sha256 = "3ce8c07101d625c7028360b5f311950f6a0818237d8e789231137b84a62bf3c1"; + libraryHaskellDepends = [ + base clash-lib clash-prelude fgl lens mtl text unordered-containers + wl-pprint-text + ]; + homepage = "http://www.clash-lang.org/"; + description = "CAES Language for Synchronous Hardware - VHDL backend"; + license = stdenv.lib.licenses.bsd2; }) {}; "classify" = callPackage @@ -48235,6 +49573,7 @@ self: { homepage = "http://clckwrks.com/"; description = "bug tracking plugin for clckwrks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clckwrks-plugin-ircbot" = callPackage @@ -48378,6 +49717,7 @@ self: { homepage = "http://divshot.github.com/geo-bootstrap/"; description = "geo bootstrap based template for clckwrks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cld2" = callPackage @@ -48392,6 +49732,7 @@ self: { homepage = "https://github.com/dfoxfranke/haskell-cld2"; description = "Haskell bindings to Google's Compact Language Detector 2"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "clean-home" = callPackage @@ -48456,6 +49797,7 @@ self: { homepage = "http://sandbox.pocoo.org/clevercss-hs/"; description = "A CSS preprocessor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cli" = callPackage @@ -48492,6 +49834,7 @@ self: { jailbreak = true; description = "Toy game (tetris on billiard board). Hipmunk in action."; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clientsession" = callPackage @@ -48549,6 +49892,7 @@ self: { homepage = "http://github.com/spacekitteh/haskell-clifford"; description = "A Clifford algebra library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clippard" = callPackage @@ -48574,6 +49918,7 @@ self: { homepage = "https://github.com/chetant/clipper"; description = "Haskell API to clipper (2d polygon union/intersection/xor/clipping API)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clippings" = callPackage @@ -48598,6 +49943,7 @@ self: { ]; description = "A parser/generator for Kindle-format clipping files (`My Clippings.txt`),"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clist" = callPackage @@ -48696,6 +50042,7 @@ self: { homepage = "http://patch-tag.com/r/shahn/clocked/home"; description = "timer functionality to clock IO commands"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {QtCore = null;}; "clogparse" = callPackage @@ -48712,6 +50059,7 @@ self: { ]; description = "Parse IRC logs such as the #haskell logs on tunes.org"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clone-all" = callPackage @@ -48733,6 +50081,7 @@ self: { homepage = "https://github.com/silky/clone-all"; description = "Clone all github repositories from a given user"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "closure" = callPackage @@ -48788,6 +50137,7 @@ self: { homepage = "http://github.com/cdornan/cloudfront-signer"; description = "CloudFront URL signer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cloudyfs" = callPackage @@ -48808,6 +50158,7 @@ self: { homepage = "https://github.com/bhickey/cloudyfs"; description = "A cloud in the file system"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cltw" = callPackage @@ -48840,6 +50191,7 @@ self: { homepage = "http://zwizwa.be/-/meta"; description = "C to Lua data wrapper generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clumpiness" = callPackage @@ -48863,6 +50215,7 @@ self: { homepage = "https://github.com/Kinokkory/cluss"; description = "simple alternative to type classes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clustering" = callPackage @@ -48903,6 +50256,7 @@ self: { homepage = "http://malde.org/~ketil/"; description = "Tools for manipulating sequence clusters"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clutterhs" = callPackage @@ -48920,6 +50274,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "Bindings to the Clutter animation library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) clutter; inherit (pkgs.gnome) pango;}; "cmaes" = callPackage @@ -48990,6 +50345,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/cmath"; description = "A binding to the standard C math library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cmathml3" = callPackage @@ -49009,6 +50365,7 @@ self: { executableHaskellDepends = [ base Cabal filepath ]; description = "Data model, parser, serialiser and transformations for Content MathML 3"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cmd-item" = callPackage @@ -49104,6 +50461,7 @@ self: { homepage = "http://community.haskell.org/~ndm/cmdargs/"; description = "Helper to enter cmdargs command lines using a web browser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cmdlib" = callPackage @@ -49140,6 +50498,7 @@ self: { homepage = "http://github.com/eli-frey/cmdtheline"; description = "Declarative command-line option parsing and documentation library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cml" = callPackage @@ -49163,6 +50522,7 @@ self: { libraryHaskellDepends = [ array base ]; description = "A library for C-like programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cmu" = callPackage @@ -49198,6 +50558,7 @@ self: { homepage = "http://software.intel.com/en-us/articles/intel-concurrent-collections-for-cc/"; description = "Compiler/Translator for CnC Specification Files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cndict" = callPackage @@ -49214,6 +50575,7 @@ self: { homepage = "https://github.com/Lemmih/cndict"; description = "Chinese/Mandarin <-> English dictionary, Chinese lexer"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "code-builder" = callPackage @@ -49269,6 +50631,7 @@ self: { ]; description = "Cross-platform structure serialisation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "codec-mbox" = callPackage @@ -49303,6 +50666,7 @@ self: { homepage = "https://github.com/guillaume-nargeot/codecov-haskell"; description = "Codecov.io support for Haskell."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "codemonitor" = callPackage @@ -49322,6 +50686,7 @@ self: { homepage = "http://github.com/rickardlindberg/codemonitor"; description = "Tool that automatically runs arbitrary commands when files change on disk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "codepad" = callPackage @@ -49337,6 +50702,7 @@ self: { homepage = "http://github.com/chrisdone/codepad"; description = "Submit and retrieve paste output from CodePad.org."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "codex_0_3_0_8" = callPackage @@ -49500,6 +50866,7 @@ self: { homepage = "https://github.com/Cognimeta/cognimeta-utils"; description = "Utilities for Cognimeta products (such as perdure). API may change often."; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "coinbase-exchange" = callPackage @@ -49539,6 +50906,7 @@ self: { jailbreak = true; description = "Connector library for the coinbase exchange"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "colada" = callPackage @@ -49564,6 +50932,7 @@ self: { homepage = "https://bitbucket.org/gchrupala/colada"; description = "Colada implements incremental word class class induction using online LDA"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "colchis" = callPackage @@ -49600,6 +50969,7 @@ self: { jailbreak = true; description = "Generate animated 3d objects in COLLADA"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "collada-types" = callPackage @@ -49616,6 +50986,7 @@ self: { jailbreak = true; description = "Data exchange between graphic applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "collapse-util" = callPackage @@ -49658,6 +51029,7 @@ self: { jailbreak = true; description = "Useful standard collections types and related functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "collections-api" = callPackage @@ -49670,6 +51042,7 @@ self: { homepage = "http://code.haskell.org/collections/"; description = "API for collection data structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "collections-base-instances" = callPackage @@ -49686,6 +51059,7 @@ self: { homepage = "http://code.haskell.org/collections/"; description = "Useful standard collections types and related functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "colock" = callPackage @@ -49756,6 +51130,7 @@ self: { homepage = "https://github.com/wellecks/coltrane"; description = "A jazzy, minimal web framework for Haskell, inspired by Sinatra"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "com" = callPackage @@ -49767,6 +51142,7 @@ self: { doHaddock = false; description = "Haskell COM support library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "combinat" = callPackage @@ -49787,6 +51163,7 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "Generate and manipulate various combinatorial objects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "combinat-diagrams" = callPackage @@ -49804,6 +51181,7 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "Graphical representations for various combinatorial objects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "combinator-interactive" = callPackage @@ -49827,6 +51205,7 @@ self: { homepage = "https://github.com/fumieval/combinator-interactive"; description = "SKI Combinator interpreter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "combinatorial-problems" = callPackage @@ -49843,6 +51222,7 @@ self: { homepage = "http://www.comp.leeds.ac.uk/sc06r2s/Projects/HaskellCombinatorialProblems"; description = "A number of data structures to represent and allow the manipulation of standard combinatorial problems, used as test problems in computer science"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "combinatorics" = callPackage @@ -49920,6 +51300,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "commander" = callPackage + ({ mkDerivation, base, containers, mtl, transformers }: + mkDerivation { + pname = "commander"; + version = "0.1.0.0"; + sha256 = "acfa4916071c9b67551c08340af0ef764170c5b64c969e7f1dff8edc0786f425"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base containers mtl transformers ]; + executableHaskellDepends = [ base containers ]; + testHaskellDepends = [ base ]; + homepage = "https://github.com/jsdw/hs-commander"; + description = "pattern matching against string based commands"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "commodities" = callPackage ({ mkDerivation, base, comonad, containers, directory, distributive , doctest, filepath, hspec, hspec-expectations, keys, lens, linear @@ -49941,6 +51337,7 @@ self: { jailbreak = true; description = "Library for working with commoditized amounts and price histories"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "commsec" = callPackage @@ -49956,6 +51353,7 @@ self: { ]; description = "Provide communications security using symmetric ephemeral keys"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "commsec-keyexchange" = callPackage @@ -49975,6 +51373,7 @@ self: { homepage = "https://github.com/TomMD/commsec-keyExchange"; description = "Key agreement for commsec"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "commutative" = callPackage @@ -50153,6 +51552,7 @@ self: { homepage = "http://github.com/ekmett/comonad-extras/"; description = "Exotic comonad transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "comonad-random" = callPackage @@ -50165,6 +51565,7 @@ self: { jailbreak = true; description = "Comonadic interface for random values"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "comonad-transformers" = callPackage @@ -50206,6 +51607,7 @@ self: { ]; description = "Compact Data.Map implementation using Data.Binary"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "compact-socket" = callPackage @@ -50236,6 +51638,7 @@ self: { homepage = "http://twan.home.fmf.nl/compact-string/"; description = "Fast, packed and strict strings with Unicode support, based on bytestrings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "compact-string-fix" = callPackage @@ -50454,6 +51857,7 @@ self: { libraryHaskellDepends = [ base MissingH ]; description = "Haskell functionality for quickly assembling simple compilers"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "complex-generic" = callPackage @@ -50495,6 +51899,7 @@ self: { jailbreak = true; description = "Empirical algorithmic complexity"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "compose-ltr" = callPackage @@ -50519,6 +51924,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Composable monad transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "composition_1_0_1_0" = callPackage @@ -50631,6 +52037,7 @@ self: { homepage = "http://urchin.earth.li/~ian/cabal/compression/"; description = "Common compression algorithms"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "compstrat" = callPackage @@ -50647,6 +52054,7 @@ self: { jailbreak = true; description = "Strategy combinators for compositional data types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "comptrans" = callPackage @@ -50665,6 +52073,7 @@ self: { homepage = "https://github.com/jkoppel/comptrans"; description = "Automatically converting ASTs into compositional data types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "computational-algebra" = callPackage @@ -50684,6 +52093,7 @@ self: { homepage = "https://github.com/konn/computational-algebra"; description = "Well-kinded computational algebra library, currently supporting Groebner basis"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "computations" = callPackage @@ -50758,6 +52168,7 @@ self: { homepage = "http://zil.ipipan.waw.pl/Concraft"; description = "Morphological disambiguation based on constrained CRFs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "concraft-hr" = callPackage @@ -50780,6 +52191,7 @@ self: { homepage = "https://github.com/vjeranc/concraft-hr"; description = "Part-of-speech tagger for Croatian"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "concraft-pl" = callPackage @@ -50802,6 +52214,7 @@ self: { homepage = "http://zil.ipipan.waw.pl/Concraft"; description = "Morphological tagger for Polish"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "concrete-relaxng-parser" = callPackage @@ -50840,6 +52253,7 @@ self: { jailbreak = true; description = "Binary and Hashable instances for TypeRep"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "concurrent-barrier" = callPackage @@ -50963,7 +52377,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "concurrent-output" = callPackage + "concurrent-output_1_7_3" = callPackage ({ mkDerivation, ansi-terminal, async, base, directory, exceptions , process, stm, terminal-size, text, transformers, unix }: @@ -50977,6 +52391,23 @@ self: { ]; description = "Ungarble output from several threads or commands"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "concurrent-output" = callPackage + ({ mkDerivation, ansi-terminal, async, base, directory, exceptions + , process, stm, terminal-size, text, transformers, unix + }: + mkDerivation { + pname = "concurrent-output"; + version = "1.7.4"; + sha256 = "d95827e051a7576820fd76e2eebe7c02185870c6bb63fb953fdec1e608414e9e"; + libraryHaskellDepends = [ + ansi-terminal async base directory exceptions process stm + terminal-size text transformers unix + ]; + description = "Ungarble output from several threads or commands"; + license = stdenv.lib.licenses.bsd2; }) {}; "concurrent-sa" = callPackage @@ -51014,6 +52445,7 @@ self: { homepage = "https://github.com/joelteon/concurrent-state"; description = "MTL-like library using TVars"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "concurrent-supply_0_1_7" = callPackage @@ -51114,6 +52546,7 @@ self: { homepage = "https://github.com/klangner/Condor"; description = "Information retrieval library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "condorcet" = callPackage @@ -51126,6 +52559,7 @@ self: { homepage = "http://neugierig.org/software/darcs/condorcet"; description = "Library for Condorcet voting"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "conductive-base" = callPackage @@ -51168,6 +52602,7 @@ self: { homepage = "http://www.renickbell.net/doku.php?id=conductive-hsc3"; description = "a library with examples of using Conductive with hsc3"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "conductive-song" = callPackage @@ -51392,7 +52827,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "conduit" = callPackage + "conduit_1_2_6_3" = callPackage ({ mkDerivation, base, containers, exceptions, hspec, lifted-base , mmorph, mtl, QuickCheck, resourcet, safe, transformers , transformers-base @@ -51412,6 +52847,29 @@ self: { homepage = "http://github.com/snoyberg/conduit"; description = "Streaming data processing library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "conduit" = callPackage + ({ mkDerivation, base, containers, exceptions, hspec, lifted-base + , mmorph, mtl, QuickCheck, resourcet, safe, transformers + , transformers-base + }: + mkDerivation { + pname = "conduit"; + version = "1.2.6.4"; + sha256 = "1fc5e407580ebfa8196f714928a5362ce215f916b96bbf5ab15c17b0b47573f3"; + libraryHaskellDepends = [ + base exceptions lifted-base mmorph mtl resourcet transformers + transformers-base + ]; + testHaskellDepends = [ + base containers exceptions hspec mtl QuickCheck resourcet safe + transformers + ]; + homepage = "http://github.com/snoyberg/conduit"; + description = "Streaming data processing library"; + license = stdenv.lib.licenses.mit; }) {}; "conduit-audio" = callPackage @@ -51442,6 +52900,7 @@ self: { homepage = "http://github.com/mtolly/conduit-audio"; description = "conduit-audio interface to the LAME MP3 library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {mp3lame = null;}; "conduit-audio-samplerate" = callPackage @@ -51460,6 +52919,7 @@ self: { homepage = "http://github.com/mtolly/conduit-audio"; description = "conduit-audio interface to the libsamplerate resampling library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {samplerate = null;}; "conduit-audio-sndfile" = callPackage @@ -51477,6 +52937,7 @@ self: { homepage = "http://github.com/mtolly/conduit-audio"; description = "conduit-audio interface to the libsndfile audio file library"; license = "LGPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "conduit-combinators_0_3_0_4" = callPackage @@ -52083,6 +53544,7 @@ self: { ]; description = "A base layer for network protocols using Conduits"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "conduit-parse" = callPackage @@ -52121,6 +53583,7 @@ self: { homepage = "http://github.com/A1kmm/conduit-resumablesink"; description = "Allows conduit to resume sinks to feed multiple sources into it"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "conduit-tokenize-attoparsec" = callPackage @@ -52173,6 +53636,7 @@ self: { ]; description = "A small program for swapping out dot files"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "config-value" = callPackage @@ -52366,6 +53830,7 @@ self: { ]; description = "A BitTorrent client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "conlogger" = callPackage @@ -52480,6 +53945,7 @@ self: { testHaskellDepends = [ base lifted-async transformers ]; description = "Eventually consistent STM transactions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "console-program" = callPackage @@ -52510,6 +53976,7 @@ self: { homepage = "https://github.com/kfish/const-math-ghc-plugin"; description = "Compiler plugin for constant math elimination"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "constrained-categories" = callPackage @@ -52536,6 +54003,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "constraint-classes" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "constraint-classes"; + version = "0.2.0"; + sha256 = "7cc34540b60d0e1a89230d1ea65ea05af49524e102915aa3b3d908158b134580"; + libraryHaskellDepends = [ base ]; + homepage = "http://github.com/guaraqe/constraint-classes#readme"; + description = "Prelude classes using ConstraintKinds"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "constraints_0_4" = callPackage ({ mkDerivation, base, ghc-prim, newtype }: mkDerivation { @@ -52643,6 +54122,7 @@ self: { homepage = "http://andersk.mit.edu/haskell/constructible/"; description = "Exact computation with constructible real numbers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "constructive-algebra" = callPackage @@ -52655,6 +54135,7 @@ self: { jailbreak = true; description = "A library of constructive algebra"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "consul-haskell_0_1" = callPackage @@ -52745,6 +54226,7 @@ self: { homepage = "https://github.com/scrive/consumers"; description = "Concurrent PostgreSQL data consumers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "container" = callPackage @@ -52764,6 +54246,7 @@ self: { homepage = "https://github.com/wdanilo/containers"; description = "Containers abstraction and utilities"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "container-classes" = callPackage @@ -52890,6 +54373,7 @@ self: { homepage = "http://github.com/thinkpad20/context-stack"; description = "An abstraction of a stack and stack-based monadic context"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "continue" = callPackage @@ -52907,6 +54391,7 @@ self: { jailbreak = true; description = "Monads with suspension and arbitrary-spot reentry"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "continued-fractions" = callPackage @@ -52943,6 +54428,7 @@ self: { ]; executableSystemDepends = [ hyperleveldb ]; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {hyperleveldb = null;}; "continuum-client" = callPackage @@ -53172,6 +54658,7 @@ self: { libraryHaskellDepends = [ base containers stm time ]; description = "Event scheduling system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "control-monad-attempt" = callPackage @@ -53185,6 +54672,7 @@ self: { homepage = "http://github.com/snoyberg/control-monad-attempt"; description = "Monad transformer for attempt. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "control-monad-exception" = callPackage @@ -53260,6 +54748,7 @@ self: { homepage = "http://github.com/pepeiborra/control-monad-failure"; description = "A class for monads which can fail with an error. (deprecated)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "control-monad-failure-mtl" = callPackage @@ -53273,6 +54762,7 @@ self: { homepage = "http://github.com/pepeiborra/control-monad-failure"; description = "A class for monads which can fail with an error for mtl 1 (deprecated)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "control-monad-free_0_5_3" = callPackage @@ -53369,6 +54859,7 @@ self: { libraryHaskellDepends = [ base contstuff monads-tf ]; description = "ContStuff instances for monads-tf transformers (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "contstuff-transformers" = callPackage @@ -53381,6 +54872,7 @@ self: { jailbreak = true; description = "Deprecated interface between contstuff 0.7.0 and the transformers package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "converge" = callPackage @@ -53465,6 +54957,7 @@ self: { homepage = "https://github.com/wdanilo/convert"; description = "Safe and unsafe data conversion utilities with strong type-level operation. checking."; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "convertible_1_1_0_0" = callPackage @@ -53522,6 +55015,7 @@ self: { homepage = "https://github.com/phonohawk/convertible-ascii"; description = "convertible instances for ascii"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "convertible-text" = callPackage @@ -53542,6 +55036,7 @@ self: { homepage = "http://github.com/snoyberg/convertible/tree/text"; description = "Typeclasses and instances for converting between types (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cookbook" = callPackage @@ -53668,6 +55163,7 @@ self: { homepage = "http://leepike.github.com/Copilot/"; description = "A stream DSL for writing embedded C programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "copilot-c99" = callPackage @@ -53706,6 +55202,7 @@ self: { ]; description = "Copilot interface to a C model-checker"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "copilot-core" = callPackage @@ -53819,6 +55316,7 @@ self: { libraryHaskellDepends = [ base bytestring parsec pretty ]; description = "External core parser and pretty printer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "core-haskell" = callPackage @@ -53835,6 +55333,7 @@ self: { homepage = "https://github.com/happlebao/Core-Haskell"; description = "A subset of Haskell using in UCC for teaching purpose"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "corebot-bliki" = callPackage @@ -53861,6 +55360,7 @@ self: { homepage = "http://github.com/coreyoconnor/corebot-bliki"; description = "A bliki written using yesod. Uses pandoc to process files stored in git."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "coroutine-enumerator" = callPackage @@ -53887,6 +55387,7 @@ self: { homepage = "http://trac.haskell.org/SCC/wiki/coroutine-iteratee"; description = "Bridge between the monad-coroutine and iteratee packages"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "coroutine-object" = callPackage @@ -53917,6 +55418,7 @@ self: { jailbreak = true; description = "A CouchDB view server for Haskell"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "couch-simple" = callPackage @@ -53944,6 +55446,7 @@ self: { homepage = "https://github.com/mdorman/couch-simple"; description = "A modern, lightweight, complete client for CouchDB"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) couchdb;}; "couchdb-conduit" = callPackage @@ -53975,6 +55478,7 @@ self: { homepage = "https://github.com/akaspin/couchdb-conduit"; description = "Couch DB client library using http-conduit and aeson"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "couchdb-enumerator" = callPackage @@ -54004,6 +55508,7 @@ self: { homepage = "http://bitbucket.org/wuzzeb/couchdb-enumerator"; description = "Couch DB client library using http-enumerator and aeson"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "count" = callPackage @@ -54170,6 +55675,7 @@ self: { homepage = "http://hub.darcs.net/thoferon/court"; description = "Simple and flexible CI system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "coverage" = callPackage @@ -54204,8 +55710,26 @@ self: { homepage = "http://github.com/da-x/cpio-conduit"; description = "Conduit-based CPIO"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "cplex-hs" = callPackage + ({ mkDerivation, base, containers, cplex, mtl, primitive + , transformers, vector + }: + mkDerivation { + pname = "cplex-hs"; + version = "0.2.0.1"; + sha256 = "4d2c06753d28eba293ea0a4ef6a6dc3a1a5875c9111932dface41a3f3776c7b0"; + libraryHaskellDepends = [ + base containers mtl primitive transformers vector + ]; + librarySystemDepends = [ cplex ]; + homepage = "https://github.com/stefan-j/cplex-haskell"; + description = "high-level CPLEX interface"; + license = stdenv.lib.licenses.bsd3; + }) {cplex = null;}; + "cplusplus-th" = callPackage ({ mkDerivation, base, bytestring, containers, process, QuickCheck , template-haskell @@ -54222,6 +55746,7 @@ self: { homepage = "https://github.com/nicta/cplusplus-th"; description = "C++ Foreign Import Generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cpphs_1_18_6" = callPackage @@ -54482,6 +56007,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/cpuperf"; description = "Modify the cpu frequency on OpenBSD systems"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cpython" = callPackage @@ -54496,6 +56022,7 @@ self: { homepage = "https://john-millikin.com/software/haskell-python/"; description = "Bindings for libpython"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {python34 = null;}; "cql_3_0_5" = callPackage @@ -54701,6 +56228,7 @@ self: { jailbreak = true; description = "PostgreSQL backend for the cqrs package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cqrs-sqlite3" = callPackage @@ -54722,6 +56250,7 @@ self: { jailbreak = true; description = "SQLite3 backend for the cqrs package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cqrs-test" = callPackage @@ -54739,6 +56268,7 @@ self: { jailbreak = true; description = "Command-Query Responsibility Segregation Test Support"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cqrs-testkit" = callPackage @@ -54786,6 +56316,7 @@ self: { homepage = "https://github.com/scvalex/cr"; description = "Code review tool"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crack" = callPackage @@ -54798,6 +56329,7 @@ self: { librarySystemDepends = [ crack ]; description = "A haskell binding to cracklib"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {crack = null;}; "crackNum_1_3" = callPackage @@ -54842,6 +56374,7 @@ self: { homepage = "http://mahrz.github.com/craftwerk.html"; description = "2D graphics library with integrated TikZ output"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "craftwerk-cairo" = callPackage @@ -54855,6 +56388,7 @@ self: { homepage = "http://mahrz.github.com/craftwerk.html"; description = "Cairo backend for Craftwerk"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "craftwerk-gtk" = callPackage @@ -54874,6 +56408,7 @@ self: { homepage = "http://mahrz.github.com/craftwerk.html"; description = "Gtk UI for Craftwerk"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crc16" = callPackage @@ -54885,6 +56420,7 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Calculate the crc16-ccitt"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crc16-table" = callPackage @@ -54944,6 +56480,7 @@ self: { homepage = "https://github.com/kawu/crf-chain1"; description = "First-order, linear-chain conditional random fields"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crf-chain1-constrained" = callPackage @@ -54962,6 +56499,7 @@ self: { homepage = "https://github.com/kawu/crf-chain1-constrained"; description = "First-order, constrained, linear-chain conditional random fields"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crf-chain2-generic" = callPackage @@ -54981,6 +56519,7 @@ self: { homepage = "https://github.com/kawu/crf-chain2-generic"; description = "Second-order, generic, constrained, linear conditional random fields"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crf-chain2-tiers" = callPackage @@ -54999,6 +56538,7 @@ self: { homepage = "https://github.com/kawu/crf-chain2-tiers"; description = "Second-order, tiered, constrained, linear conditional random fields"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "critbit" = callPackage @@ -55145,6 +56685,7 @@ self: { homepage = "https://github.com/nikita-volkov/criterion-plus"; description = "Enhancement of the \"criterion\" benchmarking library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "criterion-to-html" = callPackage @@ -55194,6 +56735,7 @@ self: { homepage = "https://github.com/TomHammersley/HaskellRenderer/"; description = "An offline renderer supporting ray tracing and photon mapping"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cron_0_3_0" = callPackage @@ -55261,6 +56803,7 @@ self: { homepage = "http://github.com/michaelxavier/cron"; description = "Cron datatypes and Attoparsec parser"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cruncher-types" = callPackage @@ -55274,6 +56817,7 @@ self: { homepage = "http://github.com/eval-so/cruncher-types"; description = "Request and Response types for Eval.so's API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crunghc" = callPackage @@ -55293,6 +56837,7 @@ self: { jailbreak = true; description = "A runghc replacement with transparent caching"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crypto-api" = callPackage @@ -55345,6 +56890,7 @@ self: { homepage = "http://github.com/vincenthz/hs-crypto-cipher"; description = "Generic cryptography cipher benchmarks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crypto-cipher-tests" = callPackage @@ -55439,6 +56985,7 @@ self: { homepage = "https://github.com/orome/crypto-enigma-hs"; description = "An Enigma machine simulator with display"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crypto-numbers_0_2_3" = callPackage @@ -56063,6 +57610,7 @@ self: { jailbreak = true; description = "Bindings for Cryptsy cryptocurrency exchange API"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crystalfontz" = callPackage @@ -56074,6 +57622,7 @@ self: { libraryHaskellDepends = [ base crc16-table MaybeT serialport ]; description = "Control Crystalfontz LCD displays"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cse-ghc-plugin" = callPackage @@ -56086,6 +57635,7 @@ self: { homepage = "http://thoughtpolice.github.com/cse-ghc-plugin"; description = "Compiler plugin for common subexpression elimination"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "csound-catalog" = callPackage @@ -56102,6 +57652,7 @@ self: { homepage = "https://github.com/anton-k/csound-catalog"; description = "a gallery of Csound instruments"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "csound-expression" = callPackage @@ -56199,6 +57750,7 @@ self: { testHaskellDepends = [ base nondeterminism tasty tasty-hunit ]; description = "Discrete constraint satisfaction problem (CSP) solver"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cspmchecker" = callPackage @@ -56216,6 +57768,7 @@ self: { homepage = "https://github.com/tomgr/libcspm"; description = "A command line type checker for CSPM files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "css" = callPackage @@ -56227,6 +57780,7 @@ self: { libraryHaskellDepends = [ base mtl text ]; description = "Minimal monadic CSS DSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "css-syntax" = callPackage @@ -56402,6 +57956,7 @@ self: { homepage = "http://darcs.imperialviolet.org/ctemplate"; description = "Binding to the Google ctemplate library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {ctemplate = null;}; "ctkl" = callPackage @@ -56414,6 +57969,7 @@ self: { jailbreak = true; description = "packaging of Manuel Chakravarty's CTK Light for Hackage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ctpl" = callPackage @@ -56426,6 +57982,7 @@ self: { jailbreak = true; description = "A programming language for text modification"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ctrie" = callPackage @@ -56501,6 +58058,7 @@ self: { testHaskellDepends = [ base parsec tasty tasty-hunit ]; description = "Efficient manipulating of 2D cubic bezier curves"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cubicspline_0_1_1" = callPackage @@ -56560,6 +58118,7 @@ self: { executableHaskellDepends = [ base GLUT Yampa ]; description = "3D Yampa/GLUT Puzzle Game"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-linux" ]; }) {}; "cuda" = callPackage @@ -56595,6 +58154,7 @@ self: { homepage = "https://github.com/adamwalker/haskell_cudd"; description = "Bindings to the CUDD binary decision diagrams library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {cudd = null; dddmp = null; epd = null; inherit (pkgs) mtr; inherit (pkgs) st; util = null;}; @@ -56692,6 +58252,7 @@ self: { homepage = "http://www.curry-language.org"; description = "Functions for manipulating Curry programs"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "curry-frontend" = callPackage @@ -56711,6 +58272,7 @@ self: { homepage = "http://www.curry-language.org"; description = "Compile the functional logic language Curry to several intermediate formats"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cursedcsv" = callPackage @@ -56764,6 +58326,7 @@ self: { ]; description = "Library for drawing curve based images"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "custom-prelude" = callPackage @@ -56807,6 +58370,7 @@ self: { libraryHaskellDepends = [ arithmoi base containers ]; description = "A subfield of the complex numbers for exact calculation"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "cypher" = callPackage @@ -56827,6 +58391,7 @@ self: { jailbreak = true; description = "Haskell bindings for the neo4j \"cypher\" query language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "d-bus" = callPackage @@ -56971,6 +58536,7 @@ self: { ]; description = "Dao is meta programming language with its own built-in interpreted language, designed with artificial intelligence applications in mind"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dapi" = callPackage @@ -56991,6 +58557,7 @@ self: { homepage = "http://massysett.github.com/dapi"; description = "Prints a series of dates"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcs_2_10_2" = callPackage @@ -57106,6 +58673,7 @@ self: { homepage = "http://wiki.darcs.net/Development/Benchmarks"; description = "Comparative benchmark suite for darcs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcs-beta" = callPackage @@ -57139,6 +58707,7 @@ self: { homepage = "http://darcs.net/"; description = "a distributed, interactive, smart revision control system"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) curl;}; "darcs-buildpackage" = callPackage @@ -57157,6 +58726,7 @@ self: { ]; description = "Tools to help manage Debian packages with Darcs"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcs-cabalized" = callPackage @@ -57178,6 +58748,7 @@ self: { homepage = "http://darcs.net/"; description = "David's Advanced Version Control System"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) curl; inherit (pkgs) ncurses; inherit (pkgs) zlib;}; @@ -57199,6 +58770,7 @@ self: { jailbreak = true; description = "Import/export git fast-import streams to/from darcs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcs-graph" = callPackage @@ -57218,6 +58790,7 @@ self: { jailbreak = true; description = "Generate graphs of darcs repository activity"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcs-monitor" = callPackage @@ -57236,6 +58809,7 @@ self: { homepage = "http://wiki.darcs.net/RelatedSoftware/DarcsMonitor"; description = "Darcs repository monitor (sends email)"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcs-scripts" = callPackage @@ -57266,6 +58840,7 @@ self: { jailbreak = true; description = "Outputs dependencies of darcs patches in dot format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcsden" = callPackage @@ -57295,6 +58870,7 @@ self: { homepage = "http://hackage.haskell.org/package/darcsden"; description = "Darcs repository UI and hosting/collaboration app (hub.darcs.net branch)."; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcswatch" = callPackage @@ -57317,6 +58893,7 @@ self: { homepage = "http://darcswatch.nomeata.de/"; description = "Track application of Darcs patches"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darkplaces-demo" = callPackage @@ -57343,6 +58920,7 @@ self: { homepage = "https://github.com/bacher09/darkplaces-demo"; description = "Utility and parser for DarkPlaces demo files"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darkplaces-rcon" = callPackage @@ -57684,6 +59262,7 @@ self: { ]; description = "a cyclic doubly linked list"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-default" = callPackage @@ -57906,6 +59485,7 @@ self: { homepage = "http://monoid.at/code"; description = "Space-efficient and privacy-preserving data dispersal algorithms"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-dword" = callPackage @@ -57943,6 +59523,7 @@ self: { homepage = "https://github.com/jcristovao/data-easy"; description = "Consistent set of utility functions for Maybe, Either, List and Monoids"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-embed" = callPackage @@ -58059,8 +59640,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "data-fix"; - version = "0.0.2"; - sha256 = "27335dc34276f3915a42db3e49d6e63abf8eb4a673b302651acdd6f4933b2248"; + version = "0.0.3"; + sha256 = "f6c69e973a110c36c738d9f37bf3092eff5d25ec11782c301e255844b5010e57"; libraryHaskellDepends = [ base ]; homepage = "https://github.com/anton-k/data-fix"; description = "Fixpoint data types"; @@ -58183,6 +59764,7 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Write-once variables with concurrency support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-json-token" = callPackage @@ -58228,6 +59810,7 @@ self: { homepage = "https://github.com/wdanilo/layer"; description = "Data layering utilities. Layer is a data-type which wrapps other one, but keeping additional information. If you want to access content of simple newtype object, use Lens.Wrapper instead."; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-layout" = callPackage @@ -58284,6 +59867,7 @@ self: { homepage = "https://github.com/dag/data-lens-ixset"; description = "A Lens for IxSet"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-lens-light" = callPackage @@ -58357,6 +59941,7 @@ self: { homepage = "https://github.com/kawu/data-named"; description = "Data types for named entities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-nat" = callPackage @@ -58370,6 +59955,7 @@ self: { homepage = "http://github.com/glehel/data-nat"; description = "data Nat = Zero | Succ Nat"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-object" = callPackage @@ -58401,6 +59987,7 @@ self: { homepage = "http://github.com/snoyberg/data-object-json/tree/master"; description = "Serialize JSON data to/from Haskell using the data-object library. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-object-yaml" = callPackage @@ -58421,6 +60008,7 @@ self: { homepage = "http://github.com/snoyberg/data-object-yaml"; description = "Serialize data to and from Yaml files (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-or" = callPackage @@ -58478,6 +60066,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Reference cells that need two independent indices to be accessed"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-r-tree" = callPackage @@ -58579,6 +60168,7 @@ self: { homepage = "https://github.com/wdanilo/data-result"; description = "Data types for returning results distinguishable by types"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-rev" = callPackage @@ -58603,6 +60193,7 @@ self: { libraryHaskellDepends = [ base bytestring bytestring-mmap unix ]; description = "Ropes, an alternative to (Byte)Strings"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-rtuple" = callPackage @@ -58615,6 +60206,7 @@ self: { homepage = "https://github.com/wdanilo/rtuple"; description = "Recursive tuple data structure. It is very usefull when implementing some lo-level operations, allowing to traverse different elements using Haskell's type classes."; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-size" = callPackage @@ -58663,6 +60255,7 @@ self: { homepage = "https://github.com/Palmik/data-store"; description = "Type safe, in-memory dictionary with multidimensional keys"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-stringmap" = callPackage @@ -58785,6 +60378,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Basic type wrangling types and classes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-util" = callPackage @@ -58858,6 +60452,7 @@ self: { homepage = "https://github.com/iand675/datadog"; description = "Datadog client for Haskell. Currently only StatsD supported, other support forthcoming."; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "dataenc" = callPackage @@ -58925,6 +60520,7 @@ self: { jailbreak = true; description = "An implementation of datalog in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "datapacker" = callPackage @@ -59124,6 +60720,7 @@ self: { homepage = "http://devel.comunidadhaskell.org/dbjava/"; description = "Decompiler Bytecode Java"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dbmigrations_1_0" = callPackage @@ -59277,6 +60874,7 @@ self: { homepage = "http://john-millikin.com/software/haskell-dbus/"; description = "Monadic and object-oriented interfaces to DBus"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dbus-core" = callPackage @@ -59296,6 +60894,7 @@ self: { homepage = "https://john-millikin.com/software/dbus-core/"; description = "Low-level D-Bus protocol implementation"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dbus-qq" = callPackage @@ -59367,6 +60966,7 @@ self: { jailbreak = true; description = "This packge is deprecated. See the the \"LIO.DCLabel\" in the \"lio\" package."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dclabel-eci11" = callPackage @@ -59416,6 +61016,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler build framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-code" = callPackage @@ -59446,6 +61047,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler core language and type checker"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-core-eval" = callPackage @@ -59463,6 +61065,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler semantic evaluator for the core language"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-core-flow" = callPackage @@ -59481,6 +61084,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler data flow compiler"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-core-llvm" = callPackage @@ -59499,6 +61103,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler LLVM code generator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-core-salt" = callPackage @@ -59516,6 +61121,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler C code generator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-core-simpl" = callPackage @@ -59533,6 +61139,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler code transformations"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-core-tetra" = callPackage @@ -59551,6 +61158,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler intermediate language"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-driver" = callPackage @@ -59573,6 +61181,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler top-level driver"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-interface" = callPackage @@ -59604,6 +61213,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler source language"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-tools" = callPackage @@ -59629,6 +61239,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler command line tools"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-war" = callPackage @@ -59668,6 +61279,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciple Core language interactive interpreter"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dead-code-detection" = callPackage @@ -59711,6 +61323,7 @@ self: { homepage = "http://hub.darcs.net/scravy/dead-simple-json"; description = "Dead simple JSON parser, with some Template Haskell sugar"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "debian_3_87_2" = callPackage @@ -59838,6 +61451,7 @@ self: { jailbreak = true; description = "The categorical dual of transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "declarative" = callPackage @@ -59886,6 +61500,7 @@ self: { homepage = "https://github.com/hansonkd/decoder-conduit"; description = "Conduit for decoding ByteStrings using Data.Binary.Get"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dedukti" = callPackage @@ -59909,6 +61524,7 @@ self: { homepage = "http://www.lix.polytechnique.fr/dedukti"; description = "A type-checker for the λΠ-modulo calculus"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "deepcontrol" = callPackage @@ -59955,6 +61571,7 @@ self: { homepage = "https://github.com/ajtulloch/deeplearning-hs"; description = "Deep Learning in Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "deepseq_1_3_0_1" = callPackage @@ -60009,6 +61626,7 @@ self: { homepage = "http://fremissant.net/deepseq-bounded"; description = "Bounded deepseq, including support for generic deriving"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "deepseq-generics_0_1_1_1" = callPackage @@ -60090,6 +61708,7 @@ self: { jailbreak = true; description = "Template Haskell based deriver for optimised NFData instances"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "deepzoom" = callPackage @@ -60101,6 +61720,7 @@ self: { libraryHaskellDepends = [ base directory filepath hsmagick ]; description = "A DeepZoom image slicer. Only known to work on 32bit Linux"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "defargs" = callPackage @@ -60113,6 +61733,7 @@ self: { homepage = "https://github.com/Kinokkory/defargs"; description = "default arguments in haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "definitive-base" = callPackage @@ -60131,6 +61752,7 @@ self: { homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "The base modules of the Definitive framework"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "definitive-filesystem" = callPackage @@ -60153,6 +61775,7 @@ self: { homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "A library that enable you to interact with the filesystem in a definitive way"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "definitive-graphics" = callPackage @@ -60177,6 +61800,7 @@ self: { homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "A definitive package allowing you to open windows, read image files and render text to be displayed or saved"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "definitive-parser" = callPackage @@ -60196,6 +61820,7 @@ self: { homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "A parser combinator library for the Definitive framework"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "definitive-reactive" = callPackage @@ -60216,6 +61841,7 @@ self: { homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "A simple Reactive library"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "definitive-sound" = callPackage @@ -60237,6 +61863,7 @@ self: { homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "A definitive package to handle sound and play it back"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "deiko-config" = callPackage @@ -60285,6 +61912,7 @@ self: { homepage = "https://github.com/massysett/deka"; description = "Decimal floating point arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {mpdec = null;}; "deka-tests" = callPackage @@ -60307,6 +61935,7 @@ self: { homepage = "https://github.com/massysett/deka"; description = "Tests for deka, decimal floating point arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "delaunay" = callPackage @@ -60339,6 +61968,7 @@ self: { homepage = "https://github.com/sof/delicious"; description = "Accessing the del.icio.us APIs from Haskell (v2)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "delimited-text" = callPackage @@ -60391,6 +62021,7 @@ self: { homepage = "https://github.com/kryoxide/delta"; description = "A library for detecting file changes"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "delta-h" = callPackage @@ -60412,6 +62043,7 @@ self: { homepage = "https://bitbucket.org/gchrupala/delta-h"; description = "Online entropy-based model of lexical category acquisition"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "demarcate" = callPackage @@ -60425,6 +62057,7 @@ self: { homepage = "https://github.com/fizruk/demarcate"; description = "Demarcating transformed monad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "denominate" = callPackage @@ -60441,6 +62074,7 @@ self: { homepage = "http://protempore.net/denominate/"; description = "Functions supporting bulk file and directory name normalization"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dependent-map_0_1_1_3" = callPackage @@ -60479,6 +62113,7 @@ self: { homepage = "https://github.com/wdanilo/dependent-state"; description = "Control structure similar to Control.Monad.State, allowing multiple nested states, distinguishable by provided phantom types."; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dependent-sum_0_2_1_0" = callPackage @@ -60540,6 +62175,7 @@ self: { ]; description = "A simple configuration management tool for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dephd" = callPackage @@ -60558,6 +62194,7 @@ self: { homepage = "http://malde.org/~ketil/biohaskell/dephd"; description = "Analyze quality of nucleotide sequences"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dequeue" = callPackage @@ -60572,6 +62209,7 @@ self: { testHaskellDepends = [ base Cabal cabal-test-quickcheck ]; description = "A typeclass and an implementation for double-ended queues"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "derangement" = callPackage @@ -60583,6 +62221,7 @@ self: { libraryHaskellDepends = [ base fgl ]; description = "Find derangements of lists"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "derivation-trees" = callPackage @@ -60597,6 +62236,7 @@ self: { jailbreak = true; description = "Typeset Derivation Trees via MetaPost"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "derive_2_5_18" = callPackage @@ -60740,6 +62380,7 @@ self: { homepage = "http://github.com/konn/derive-IG"; description = "Macro to derive instances for Instant-Generics using Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "derive-enumerable" = callPackage @@ -60775,6 +62416,7 @@ self: { jailbreak = true; description = "Instance deriving for (a subset of) GADTs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "derive-monoid" = callPackage @@ -60807,6 +62449,7 @@ self: { homepage = "https://github.com/HaskellZhangSong/derive-topdown"; description = "This library will help you generate Haskell empty Generic instances and deriving type instances from the top automatically to the bottom for composited data types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "derive-trie" = callPackage @@ -60820,6 +62463,7 @@ self: { homepage = "http://github.com/baldo/derive-trie"; description = "Automatic derivation of Trie implementations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "deriving-compat" = callPackage @@ -60862,6 +62506,7 @@ self: { homepage = "http://darcsden.com/kyagrd/derp-lib"; description = "combinators based on parsing with derivatives (derp) package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "descrilo" = callPackage @@ -61011,6 +62656,7 @@ self: { homepage = "https://github.com/luanzhu/devil"; description = "A small tool to make it easier to update program managed by Angel"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "dewdrop" = callPackage @@ -61025,6 +62671,7 @@ self: { homepage = "https://github.com/kmcallister/dewdrop"; description = "Find gadgets for return-oriented programming on x86"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dfrac" = callPackage @@ -61055,6 +62702,7 @@ self: { ]; description = "Build Debian From Scratch CD/DVD images"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dgim" = callPackage @@ -61069,6 +62717,7 @@ self: { homepage = "https://github.com/musically-ut/haskell-dgim"; description = "Implementation of DGIM algorithm"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dgs" = callPackage @@ -61082,6 +62731,7 @@ self: { homepage = "http://www.dmwit.com/dgs"; description = "Haskell front-end for DGS' bot interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dia-base" = callPackage @@ -61337,6 +62987,7 @@ self: { homepage = "http://projects.haskell.org/diagrams"; description = "hint-based build service for the diagrams graphics EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "diagrams-cairo_1_2_0_4" = callPackage @@ -61500,6 +63151,7 @@ self: { homepage = "http://projects.haskell.org/diagrams"; description = "Cairo backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "diagrams-canvas_0_3_0_3" = callPackage @@ -61981,6 +63633,7 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "Backend for rendering diagrams directly to GTK windows"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "diagrams-haddock_0_2_2_12" = callPackage @@ -62154,6 +63807,7 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "Preprocessor for embedding diagrams in Haddock documentation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "diagrams-hsqml" = callPackage @@ -62433,6 +64087,7 @@ self: { jailbreak = true; description = "A Pandoc filter to express diagrams inline using the Haskell EDSL _Diagrams_"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "diagrams-pdf" = callPackage @@ -62452,6 +64107,7 @@ self: { homepage = "http://www.alpheccar.org"; description = "PDF backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-pgf" = callPackage @@ -62472,6 +64128,7 @@ self: { homepage = "http://github.com/cchalmers/diagrams-pgf"; description = "PGF backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-postscript_1_1_0_3" = callPackage @@ -62739,6 +64396,7 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "reflex backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "diagrams-rubiks-cube" = callPackage @@ -63005,6 +64663,7 @@ self: { homepage = "http://projects.haskell.org/diagrams"; description = "TikZ backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dialog" = callPackage @@ -63054,6 +64713,7 @@ self: { homepage = "http://monoid.at/code"; description = "Cryptographically secure n-sided dice via rejection sampling"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dicom" = callPackage @@ -63084,6 +64744,7 @@ self: { homepage = "http://github.com/mwotton/dictparser"; description = "Parsec parsers for the DICT format produced by dictfmt -t"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diet" = callPackage @@ -63171,6 +64832,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/diffcabal"; description = "Diff two .cabal files syntactically"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diffdump" = callPackage @@ -63538,6 +65200,7 @@ self: { homepage = "http://src.seereason.com/digestive-functors-hsp"; description = "HSP support for digestive-functors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "digestive-functors-lucid" = callPackage @@ -63589,16 +65252,16 @@ self: { }) {}; "digit" = callPackage - ({ mkDerivation, base, directory, doctest, filepath, lens + ({ mkDerivation, base, directory, doctest, filepath, lens, parsers , QuickCheck, template-haskell }: mkDerivation { pname = "digit"; - version = "0.1.2"; - sha256 = "61b56e10673dd3e3ca7fb6bdcd9fc07bd79a38fe75fd3554c5b2598caa51ff6f"; - libraryHaskellDepends = [ base lens template-haskell ]; + version = "0.2.2"; + sha256 = "7f7ceba1e7a0da717de58bf754bc62215fd5e55e6572f919398f0366fddccb2f"; + libraryHaskellDepends = [ base lens parsers template-haskell ]; testHaskellDepends = [ - base directory doctest filepath QuickCheck + base directory doctest filepath QuickCheck template-haskell ]; homepage = "https://github.com/NICTA/digit"; description = "A data-type representing digits 0-9 and other combinations"; @@ -63723,6 +65386,7 @@ self: { jailbreak = true; description = "Dingo is a Rich Internet Application platform based on the Warp web server"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dingo-example" = callPackage @@ -63743,6 +65407,7 @@ self: { jailbreak = true; description = "Dingo Example"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dingo-widgets" = callPackage @@ -63762,6 +65427,7 @@ self: { jailbreak = true; description = "Dingo Widgets"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diophantine" = callPackage @@ -63775,6 +65441,7 @@ self: { homepage = "https://github.com/llllllllll/Math.Diophantine"; description = "A quadratic diophantine equation solving library"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diplomacy" = callPackage @@ -63817,6 +65484,7 @@ self: { homepage = "https://github.com/avieth/diplomacy-server"; description = "Play Diplomacy over HTTP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "direct-binary-files" = callPackage @@ -63829,6 +65497,7 @@ self: { homepage = "http://ireneknapp.com/software/"; description = "Serialization and deserialization monads for streams and ByteStrings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "direct-daemonize" = callPackage @@ -63858,6 +65527,7 @@ self: { homepage = "http://dankna.com/software/"; description = "Native implementation of the FastCGI protocol"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "direct-http" = callPackage @@ -63878,6 +65548,7 @@ self: { homepage = "http://ireneknapp.com/software/"; description = "Native webserver that acts as a library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "direct-murmur-hash" = callPackage @@ -63902,6 +65573,7 @@ self: { homepage = "http://dankna.com/software/"; description = "Lightweight replacement for Plugins, specific to GHC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "direct-sqlite_2_3_14" = callPackage @@ -63992,6 +65664,7 @@ self: { jailbreak = true; description = "Finite directed cubical complexes and associated algorithms"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "directory_1_2_5_1" = callPackage @@ -64072,6 +65745,7 @@ self: { unordered-containers ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dirstream" = callPackage @@ -64125,6 +65799,7 @@ self: { homepage = "http://github.com/lightquake/discount"; description = "Haskell bindings to the discount Markdown library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {markdown = null;}; "discrete-space-map" = callPackage @@ -64179,6 +65854,7 @@ self: { homepage = "https://github.com/maxwellsayles/disjoint-set"; description = "Persistent disjoint-sets, a.k.a union-find."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "disjoint-sets-st" = callPackage @@ -64437,6 +66113,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process"; description = "Microsoft Azure backend for Cloud Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-client-server_0_1_2" = callPackage @@ -64509,8 +66186,8 @@ self: { }: mkDerivation { pname = "distributed-process-ekg"; - version = "0.1.0.0"; - sha256 = "ae61370b9268a2143930eac6cf3d397ed8c15fba5cb32e20f2bb194e3b4e6fdd"; + version = "0.1.1.0"; + sha256 = "25c15ef930311ba0d6f56b460b60a2dd2e03a8dee1e80d47721b043713240a3a"; libraryHaskellDepends = [ base distributed-process ekg-core text unordered-containers ]; @@ -64677,6 +66354,7 @@ self: { homepage = "https://github.com/jeremyjh/distributed-process-lifted"; description = "monad-control style typeclass and transformer instances for Process monad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-monad-control" = callPackage @@ -64747,6 +66425,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-platform"; description = "The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-registry" = callPackage @@ -64780,6 +66459,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-registry"; description = "Cloud Haskell Extended Process Registry"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-darwin" ]; }) {}; "distributed-process-simplelocalnet_0_2_2_0" = callPackage @@ -65038,6 +66718,7 @@ self: { homepage = "https://github.com/jeremyjh/distributed-process-zookeeper"; description = "A Zookeeper back-end for Cloud Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-static_0_3_1_0" = callPackage @@ -65120,6 +66801,7 @@ self: { homepage = "https://github.com/redelmann/haskell-distribution"; description = "Finite discrete probability distributions"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distribution-plot" = callPackage @@ -65138,6 +66820,7 @@ self: { homepage = "https://github.com/redelmann/haskell-distribution-plot"; description = "Easily plot distributions from the distribution package.."; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributive_0_4_4" = callPackage @@ -65347,6 +67030,7 @@ self: { homepage = "https://github.com/reedrosenbluth/Djembe"; description = "Hit drums with haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "djinn" = callPackage @@ -65420,6 +67104,7 @@ self: { homepage = "http://gitorious.org/djinn-th"; description = "Generate executable Haskell code from a type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dlist_0_7_1" = callPackage @@ -65542,6 +67227,7 @@ self: { jailbreak = true; description = "Caching DNS resolver library and mass DNS resolver utility"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dnsrbl" = callPackage @@ -65568,6 +67254,7 @@ self: { homepage = "https://github.com/maxpow4h/dnssd"; description = "DNS service discovery bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {dns_sd = null;}; "doc-review" = callPackage @@ -65594,6 +67281,7 @@ self: { homepage = "https://github.com/j3h/doc-review"; description = "Document review Web application, like http://book.realworldhaskell.org/"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "doccheck" = callPackage @@ -65613,6 +67301,7 @@ self: { homepage = "https://github.com/Fuuzetsu/doccheck"; description = "Checks Haddock comments for pitfalls and version changes"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "docidx" = callPackage @@ -65632,6 +67321,7 @@ self: { homepage = "http://github.com/gimbo/docidx.hs"; description = "Generate an HTML index of installed Haskell packages and their documentation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "docker" = callPackage @@ -65662,36 +67352,39 @@ self: { }) {}; "dockercook" = callPackage - ({ mkDerivation, attoparsec, base, base16-bytestring, bytestring - , conduit, conduit-combinators, conduit-extra, cryptohash - , directory, filepath, hashable, hslogger, HTF, lens, monad-logger - , mtl, optparse-applicative, persistent-sqlite, persistent-template + ({ mkDerivation, aeson, aeson-pretty, attoparsec, base + , base16-bytestring, bytestring, conduit, conduit-combinators + , conduit-extra, containers, cryptohash, directory, filepath + , hashable, hslogger, HTF, http-client, lens, monad-logger, mtl + , optparse-applicative, persistent-sqlite, persistent-template , process, regex-compat, resourcet, retry, stm, streaming-commons , system-filepath, temporary, text, time, transformers, unix , unordered-containers, vector, wreq }: mkDerivation { pname = "dockercook"; - version = "0.4.3.0"; - sha256 = "6c23a3e4090a0de6a0594353c4449cfd79b073dd1c0ac44f006ab4b530e04a3f"; + version = "0.5.0.0"; + sha256 = "fbb9373444c64cc1e16659f4d16edb60f80db4c6254e7e24feca16ad20f7c4fb"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - attoparsec base base16-bytestring bytestring conduit - conduit-combinators conduit-extra cryptohash directory filepath - hashable hslogger lens monad-logger mtl persistent-sqlite - persistent-template process regex-compat resourcet retry stm - streaming-commons system-filepath temporary text time transformers - unix unordered-containers vector wreq + aeson attoparsec base base16-bytestring bytestring conduit + conduit-combinators conduit-extra containers cryptohash directory + filepath hashable hslogger http-client lens monad-logger mtl + persistent-sqlite persistent-template process regex-compat + resourcet retry stm streaming-commons system-filepath temporary + text time transformers unix unordered-containers vector wreq ]; executableHaskellDepends = [ - base directory filepath hslogger optparse-applicative process + aeson-pretty base bytestring directory filepath hslogger + optparse-applicative process text unordered-containers ]; testHaskellDepends = [ base HTF text vector ]; jailbreak = true; homepage = "https://github.com/factisresearch/dockercook"; description = "A build tool for multiple docker image layers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dockerfile" = callPackage @@ -65858,6 +67551,7 @@ self: { homepage = "http://github.com/karun012/doctest-discover"; description = "Easy way to run doctests via cabal"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "doctest-discover-configurator" = callPackage @@ -65884,6 +67578,7 @@ self: { homepage = "http://github.com/relrod/doctest-discover-noaeson"; description = "Easy way to run doctests via cabal (no aeson dependency, uses configurator instead)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "doctest-prop" = callPackage @@ -66093,6 +67788,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "dotnet-timespan" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "dotnet-timespan"; + version = "0.0.1.0"; + sha256 = "d8ca8dffbc916ff5139d6f0df4a22c947ab5f996c376f1ab8c2e120789209ac3"; + libraryHaskellDepends = [ base ]; + homepage = "http://github.com/YoEight/dotnet-timespan"; + description = ".NET TimeSpan"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "double-conversion" = callPackage ({ mkDerivation, base, bytestring, ghc-prim, integer-gmp , test-framework, test-framework-quickcheck2, text @@ -66116,10 +67823,8 @@ self: { ({ mkDerivation, base, bytestring }: mkDerivation { pname = "double-metaphone"; - version = "0.0.1"; - sha256 = "7a73926453e670475b350a7a4474fc871efacec42b150cd767c3ea34426be5d1"; - revision = "1"; - editedCabalFile = "bd8a01ddbe3c8ed20556e0f16f3bced93c6867ac51b859bd91ff8c04bf5fddde"; + version = "0.0.2"; + sha256 = "2c8255787a90709b049fc6c10972bfe74b1678e479b0d5fa6ea1de113be43c97"; libraryHaskellDepends = [ base bytestring ]; homepage = "https://github.com/christian-marie/double-metaphone"; description = "Haskell bindings to a C double-metaphone implementation"; @@ -66152,19 +67857,21 @@ self: { ]; description = "Dungeons of Wor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "download" = callPackage ({ mkDerivation, base, bytestring, feed, hspec, tagsoup, xml }: mkDerivation { pname = "download"; - version = "0.3.2.3"; - sha256 = "8fa68c80182f763202a9301443613fe642af64b1d48251ba01b4d63c83715fc2"; + version = "0.3.2.4"; + sha256 = "f8ef9cca18a4829ab640c6f00ed7e707e29e0ed40bc662dfaa1ef42d7ee358bc"; libraryHaskellDepends = [ base bytestring feed tagsoup xml ]; testHaskellDepends = [ base hspec ]; homepage = "https://github.com/psibi/download"; description = "High-level file download based on URLs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "download-curl" = callPackage @@ -66198,6 +67905,7 @@ self: { homepage = "http://github.com/jaspervdj/download-media-content"; description = "Simple tool to download images from RSS feeds (e.g. Flickr, Picasa)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dozenal" = callPackage @@ -66267,6 +67975,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell example programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-lifted-base" = callPackage @@ -66285,6 +67994,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell common definitions used by other dph-lifted packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-lifted-copy" = callPackage @@ -66302,6 +68012,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell lifted array combinators. (deprecated version)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-lifted-vseg" = callPackage @@ -66320,6 +68031,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell lifted array combinators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-par" = callPackage @@ -66363,6 +68075,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell segmented arrays. (production version)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-prim-seq" = callPackage @@ -66380,6 +68093,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell segmented arrays. (sequential implementation)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-seq" = callPackage @@ -66411,6 +68125,7 @@ self: { testPkgconfigDepends = [ libdpkg ]; description = "libdpkg bindings"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) dpkg; libdpkg = null;}; "drClickOn" = callPackage @@ -66423,6 +68138,7 @@ self: { homepage = "https://github.com/cwi-swat/monadic-frp"; description = "Monadic FRP"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "draw-poker" = callPackage @@ -66479,6 +68195,7 @@ self: { jailbreak = true; description = "Library and program for querying DVB (Dresdner Verkehrsbetriebe AG)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "drifter" = callPackage @@ -66538,6 +68255,7 @@ self: { homepage = "http://github.com/cakoose/dropbox-sdk-haskell"; description = "A library to access the Dropbox HTTP API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dropsolve" = callPackage @@ -66557,6 +68275,7 @@ self: { jailbreak = true; description = "A command line tool for resolving dropbox conflicts. Deprecated! Please use confsolve."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ds-kanren" = callPackage @@ -66571,6 +68290,7 @@ self: { testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck ]; description = "A subset of the miniKanren language"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dsh-sql" = callPackage @@ -66616,6 +68336,7 @@ self: { jailbreak = true; description = "DSMC library for rarefied gas dynamics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dsmc-tools" = callPackage @@ -66635,6 +68356,7 @@ self: { jailbreak = true; description = "DSMC toolkit for rarefied gas dynamics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dson" = callPackage @@ -66689,6 +68411,7 @@ self: { homepage = "https://github.com/basvandijk/dstring"; description = "Difference strings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dtab" = callPackage @@ -66730,6 +68453,7 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Parse and render DTD files (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dtd-text" = callPackage @@ -66746,6 +68470,7 @@ self: { homepage = "http://github.com/m15k/hs-dtd-text"; description = "Parse and render XML DTDs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dtd-types" = callPackage @@ -66758,6 +68483,7 @@ self: { homepage = "http://projects.haskell.org/dtd/"; description = "Basic types for representing XML DTDs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dtrace" = callPackage @@ -66909,6 +68635,7 @@ self: { jailbreak = true; description = "Frontend development build tool"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dvda" = callPackage @@ -66931,6 +68658,7 @@ self: { ]; description = "Efficient automatic differentiation and code generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dvdread" = callPackage @@ -66944,6 +68672,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "A monadic interface to libdvdread"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {dvdread = null;}; "dvi-processing" = callPackage @@ -67093,6 +68822,7 @@ self: { homepage = "https://github.com/adamwalker/dynamic-graph"; description = "Draw and update graphs in real time with OpenGL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dynamic-linker-template" = callPackage @@ -67151,6 +68881,7 @@ self: { ]; description = "Object-oriented programming with duck typing and singleton classes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dynamic-plot" = callPackage @@ -67174,6 +68905,7 @@ self: { homepage = "https://github.com/leftaroundabout/dynamic-plot"; description = "Interactive diagram windows"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dynamic-pp" = callPackage @@ -67195,6 +68927,7 @@ self: { homepage = "https://github.com/emc2/dynamic-pp"; description = "A pretty-print library that employs a dynamic programming algorithm for optimal rendering"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dynamic-state_0_2_0_0" = callPackage @@ -67267,6 +69000,7 @@ self: { ]; description = "your dynamic optimization buddy"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dyre" = callPackage @@ -67337,6 +69071,7 @@ self: { homepage = "http://github.com/sanetracker/easy-api"; description = "Utility code for building HTTP API bindings more quickly"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "easy-bitcoin" = callPackage @@ -67397,6 +69132,7 @@ self: { homepage = "https://github.com/thinkpad20/easyjson"; description = "Haskell JSON library with an emphasis on simplicity, minimal dependencies, and ease of use"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "easyplot" = callPackage @@ -67409,6 +69145,7 @@ self: { homepage = "http://hub.darcs.net/scravy/easyplot"; description = "A tiny plotting library, utilizes gnuplot for plotting"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "easyrender" = callPackage @@ -67424,6 +69161,7 @@ self: { homepage = "http://www.mathstat.dal.ca/~selinger/easyrender/"; description = "User-friendly creation of EPS, PostScript, and PDF files"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ebeats" = callPackage @@ -67455,6 +69193,7 @@ self: { jailbreak = true; description = "Parser combinators & EBNF, BFFs!"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ec2-signature" = callPackage @@ -67491,6 +69230,7 @@ self: { homepage = "https://github.com/singpolyma/ecdsa-haskell"; description = "Basic ECDSA signing implementation"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ecma262" = callPackage @@ -67511,6 +69251,7 @@ self: { homepage = "https://github.com/fabianbergmark/ECMA-262"; description = "A ECMA-262 interpreter library"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ecu" = callPackage @@ -67530,6 +69271,7 @@ self: { jailbreak = true; description = "Tools for automotive ECU development"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {canlib = null;}; "ed25519" = callPackage @@ -67549,6 +69291,7 @@ self: { homepage = "http://thoughtpolice.github.com/hs-ed25519"; description = "Ed25519 cryptographic signatures"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ed25519-donna" = callPackage @@ -67691,6 +69434,7 @@ self: { homepage = "http://www.mathematik.uni-marburg.de/~eden"; description = "Semi-explicit parallel programming library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "edenskel" = callPackage @@ -67702,6 +69446,7 @@ self: { libraryHaskellDepends = [ base edenmodules parallel ]; description = "Semi-explicit parallel programming skeleton library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "edentv" = callPackage @@ -67722,6 +69467,7 @@ self: { homepage = "http://www.mathematik.uni-marburg.de/~eden"; description = "A Tool to Visualize Parallel Functional Program Executions"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "edge" = callPackage @@ -67741,6 +69487,7 @@ self: { homepage = "http://frigidcode.com/code/edge"; description = "Top view space combat arcade game"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "edis" = callPackage @@ -67847,6 +69594,7 @@ self: { ]; description = "Symmetric, stateful edit lenses"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "edit-lenses-demo" = callPackage @@ -67886,6 +69634,7 @@ self: { homepage = "http://code.haskell.org/editline"; description = "Bindings to the editline library (libedit)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "editor-open" = callPackage @@ -67957,6 +69706,7 @@ self: { jailbreak = true; description = "Embeds effect systems into Haskell using parameteric effect monads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "effective-aspects" = callPackage @@ -67979,6 +69729,7 @@ self: { homepage = "http://pleiad.cl/EffectiveAspects"; description = "A monadic embedding of aspect oriented programming"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "effective-aspects-mzv" = callPackage @@ -68001,6 +69752,7 @@ self: { homepage = "http://pleiad.cl/EffectiveAspects"; description = "A monadic embedding of aspect oriented programming, using \"Monads, Zippers and Views\" instead of mtl"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "effects" = callPackage @@ -68081,6 +69833,7 @@ self: { homepage = "https://github.com/xenophobia/Egison-Quote"; description = "A quasi quotes for using Egison expression in Haskell code"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "egison-tutorial" = callPackage @@ -68121,6 +69874,7 @@ self: { homepage = "http://homepage3.nifty.com/salamander/second/projects/ehaskell/index.xhtml"; description = "like eruby, ehaskell is embedded haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ehs" = callPackage @@ -68143,6 +69897,7 @@ self: { homepage = "http://github.com/minpou/ehs/"; description = "Embedded haskell template using quasiquotes"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "eibd-client-simple" = callPackage @@ -68162,6 +69917,7 @@ self: { jailbreak = true; description = "EIBd Client"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {eibclient = null;}; "eigen" = callPackage @@ -68181,6 +69937,7 @@ self: { homepage = "https://github.com/osidorkin/haskell-eigen"; description = "Eigen C++ library (linear algebra: matrices, sparse matrices, vectors, numerical solvers)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "either_4_3_2" = callPackage @@ -68522,6 +70279,7 @@ self: { homepage = "https://bitbucket.org/davecturner/ekg-rrd"; description = "Passes ekg statistics to rrdtool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "ekg-statsd" = callPackage @@ -68550,6 +70308,7 @@ self: { testHaskellDepends = [ base tasty tasty-quickcheck ]; description = "easy to remember mnemonic for a high-entropy value"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "elerea" = callPackage @@ -68577,6 +70336,7 @@ self: { executableHaskellDepends = [ base elerea GLFW OpenGL ]; description = "Example applications for Elerea"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "elerea-sdl" = callPackage @@ -68589,6 +70349,7 @@ self: { homepage = "http://github.com/singpolyma/elerea-sdl"; description = "Elerea FRP wrapper for SDL"; license = "unknown"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "elevator" = callPackage @@ -68628,6 +70389,7 @@ self: { homepage = "http://github.com/crough/elision#readme"; description = "Arrows with holes"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "elm-bridge_0_1_0_0" = callPackage @@ -69105,6 +70867,7 @@ self: { homepage = "https://github.com/cocreature/emacs-keys"; description = "library to parse emacs style keybinding into the modifiers and the chars"; license = stdenv.lib.licenses.isc; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "email" = callPackage @@ -69122,6 +70885,7 @@ self: { jailbreak = true; description = "Sending eMail in Haskell made easy"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "email-header" = callPackage @@ -69144,6 +70908,7 @@ self: { homepage = "http://github.com/knrafto/email-header"; description = "Parsing and rendering of email and MIME headers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "email-postmark" = callPackage @@ -69160,6 +70925,7 @@ self: { jailbreak = true; description = "A simple wrapper to send emails via the api of the service postmark (http://postmarkapp.com/)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "email-validate_2_0_1" = callPackage @@ -69262,6 +71028,7 @@ self: { homepage = "https://github.com/nushio3/embeddock"; description = "Embed the values in scope in the haddock documentation of the module"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "embeddock-example" = callPackage @@ -69274,6 +71041,7 @@ self: { homepage = "https://github.com/nushio3/embeddock-example"; description = "Example of using embeddock"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "embroidery" = callPackage @@ -69293,6 +71061,7 @@ self: { homepage = "https://ludflu@github.com/ludflu/embroidery.git"; description = "support for embroidery formats in haskell"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "emgm" = callPackage @@ -69307,6 +71076,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/EMGM"; description = "Extensible and Modular Generics for the Masses"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "empty" = callPackage @@ -69662,6 +71432,7 @@ self: { homepage = "https://github.com/sboosali/enumerate"; description = "enumerate all the values in a finite type (automatically)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "enumeration" = callPackage @@ -69681,6 +71452,7 @@ self: { homepage = "https://github.com/emc2/enumeration"; description = "A practical API for building recursive enumeration procedures and enumerating datatypes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "enumerator" = callPackage @@ -69733,6 +71505,7 @@ self: { homepage = "https://github.com/liyang/enumfun"; description = "Finitely represented /total/ EnumMaps"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "enummapmap" = callPackage @@ -69755,6 +71528,7 @@ self: { jailbreak = true; description = "Map of maps using Enum types as keys"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "enummapset" = callPackage @@ -69814,19 +71588,20 @@ self: { homepage = "http://github.com/tel/env-parser"; description = "Pull configuration information from the ENV"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "envparse" = callPackage ({ mkDerivation, base, containers, hspec }: mkDerivation { pname = "envparse"; - version = "0.2.2"; - sha256 = "72bbac6a4c6755c6f1f0b68a68475afb71cd6763e8fb90c88411457ff16f4a03"; + version = "0.3.0"; + sha256 = "7dfe65dd787b6975a738e6753682f65631f2bd7def489a1153dc2852d7a0b72f"; libraryHaskellDepends = [ base containers ]; testHaskellDepends = [ base containers hspec ]; homepage = "https://supki.github.io/envparse"; description = "Parse environment variables"; - license = stdenv.lib.licenses.bsd2; + license = stdenv.lib.licenses.bsd3; }) {}; "envy" = callPackage @@ -69861,6 +71636,7 @@ self: { homepage = "http://epanet.de/developer/haskell.html"; description = "Haskell binding for EPANET"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "epass" = callPackage @@ -69891,6 +71667,7 @@ self: { homepage = "http://www.dcs.st-and.ac.uk/~eb/epic.php"; description = "Compiler for a simple functional language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "epoll" = callPackage @@ -69905,6 +71682,7 @@ self: { homepage = "https://gitlab.com/twittner/epoll"; description = "epoll bindings"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "eprocess" = callPackage @@ -69954,6 +71732,7 @@ self: { homepage = "http://hub.darcs.net/dino/epub-metadata"; description = "Library for parsing epub document metadata"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "epub-tools" = callPackage @@ -69976,6 +71755,7 @@ self: { homepage = "http://hub.darcs.net/dino/epub-tools"; description = "Command line utilities for working with epub files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "epubname" = callPackage @@ -69993,6 +71773,7 @@ self: { homepage = "http://ui3.info/d/proj/epubname.html"; description = "Rename epub ebook files based on meta information"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "eq_4_0_3" = callPackage @@ -70159,6 +71940,7 @@ self: { jailbreak = true; description = "DEPRECATED in favor of eros-http"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "eros-http" = callPackage @@ -70268,6 +72050,7 @@ self: { homepage = "http://github.com/gcross/error-message"; description = "Composable error messages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "error-util" = callPackage @@ -70469,6 +72252,7 @@ self: { homepage = "http://github.com/ekmett/ersatz"; description = "A monad for expressing SAT or QSAT problems using observable sharing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ersatz-toysat" = callPackage @@ -70489,6 +72273,7 @@ self: { homepage = "https://github.com/msakai/ersatz-toysat"; description = "toysat driver as backend for ersatz"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ert" = callPackage @@ -70538,6 +72323,7 @@ self: { homepage = "http://www.killersmurf.com/projects/esotericbot"; description = "Esotericbot is a sophisticated, lightweight IRC bot"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "esqueleto_2_1_2_1" = callPackage @@ -70762,6 +72548,7 @@ self: { jailbreak = true; description = "Tool for managing probability estimation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "estreps" = callPackage @@ -70779,6 +72566,7 @@ self: { homepage = "http://blog.malde.org/"; description = "Repeats from ESTs"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "etcd" = callPackage @@ -70813,6 +72601,7 @@ self: { ]; description = "everything breaking the Fairbairn threshold"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ether_0_3_0_0" = callPackage @@ -70906,6 +72695,7 @@ self: { ]; description = "A Haskell version of an Ethereum client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ethereum-merkle-patricia-db" = callPackage @@ -70930,6 +72720,7 @@ self: { ]; description = "A modified Merkle Patricia DB"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ethereum-rlp" = callPackage @@ -71010,6 +72801,7 @@ self: { homepage = "http://github.com/tsurucapital/euphoria"; description = "Dynamic network FRP with events and continuous values"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "eurofxref" = callPackage @@ -71027,6 +72819,7 @@ self: { jailbreak = true; description = "Free foreign exchange/currency feed from the European Central Bank"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "event_0_1_1" = callPackage @@ -71095,6 +72888,7 @@ self: { libraryHaskellDepends = [ base monads-tf yjtools ]; description = "library for event driven programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "event-handlers" = callPackage @@ -71143,6 +72937,7 @@ self: { homepage = "http://code.haskell.org/~mokus/event-monad"; description = "Event-graph simulation monad transformer"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "eventloop" = callPackage @@ -71161,6 +72956,7 @@ self: { homepage = "-"; description = "A different take on an IO system. Based on Amanda's IO loop, this eventloop takes a function that maps input events to output events. It can easily be extended by modules that represent IO devices or join multiple modules together."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "eventstore_0_10_0_1" = callPackage @@ -71213,21 +73009,21 @@ self: { "eventstore" = callPackage ({ mkDerivation, aeson, array, async, base, bytestring, cereal - , containers, dns, http-client, network, protobuf, random - , semigroups, stm, tasty, tasty-hunit, text, time + , containers, dns, dotnet-timespan, http-client, network, protobuf + , random, semigroups, stm, tasty, tasty-hunit, text, time , unordered-containers, uuid }: mkDerivation { pname = "eventstore"; - version = "0.11.0.0"; - sha256 = "841ea8c033dde7b59aa9eed6dfb5726866f53c4a4309fa074e357bc7cfb72915"; + version = "0.12.0.0"; + sha256 = "c88c65239fd37b4ede7e291ac714384f89aaff6235d65bd41cdbc7421554fda5"; libraryHaskellDepends = [ - aeson array async base bytestring cereal containers dns http-client - network protobuf random semigroups stm text time - unordered-containers uuid + aeson array async base bytestring cereal containers dns + dotnet-timespan http-client network protobuf random semigroups stm + text time unordered-containers uuid ]; testHaskellDepends = [ - aeson base stm tasty tasty-hunit text time + aeson base dotnet-timespan stm tasty tasty-hunit text time ]; doCheck = false; homepage = "http://github.com/YoEight/eventstore"; @@ -71246,6 +73042,7 @@ self: { homepage = "http://research.microsoft.com/en-us/people/dimitris/pearl.pdf"; description = "A functional pearl on encoding and decoding using question-and-answer strategies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ewe" = callPackage @@ -71265,6 +73062,7 @@ self: { homepage = "http://github.com/jfcmacro/ewe"; description = "A language for teaching simple programming languages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ex-pool" = callPackage @@ -71703,6 +73501,7 @@ self: { librarySystemDepends = [ exif ]; description = "A Haskell binding to a subset of libexif"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) exif;}; "exinst" = callPackage @@ -71802,6 +73601,7 @@ self: { homepage = "http://github.com/glehel/exists"; description = "Existential datatypes holding evidence of constraints"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "exit-codes" = callPackage @@ -71847,6 +73647,7 @@ self: { homepage = "https://github.com/Bodigrim/exp-pairs"; description = "Linear programming over exponent pairs"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "expand" = callPackage @@ -71861,6 +73662,7 @@ self: { jailbreak = true; description = "Extensible Pandoc"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "expat-enumerator" = callPackage @@ -71878,6 +73680,7 @@ self: { homepage = "http://john-millikin.com/software/expat-enumerator/"; description = "Enumerator-based API for Expat"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "expiring-cache-map" = callPackage @@ -71925,6 +73728,7 @@ self: { homepage = "https://github.com/joelteon/explain"; description = "Show how expressions are parsed"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "explicit-determinant" = callPackage @@ -72021,6 +73825,7 @@ self: { homepage = "http://sebfisch.github.com/explicit-sharing"; description = "Explicit Sharing of Monadic Effects"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "explore" = callPackage @@ -72035,6 +73840,7 @@ self: { homepage = "http://corsis.sourceforge.net/haskell/explore"; description = "Experimental Plot data Reconstructor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "exposed-containers" = callPackage @@ -72056,6 +73862,7 @@ self: { jailbreak = true; description = "A distribution of the 'containers' package, with all modules exposed"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "expression-parser" = callPackage @@ -72083,6 +73890,7 @@ self: { ]; description = "Libraries for processing GHC Core"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "extemp" = callPackage @@ -72106,6 +73914,7 @@ self: { homepage = "http://patch-tag.com/r/salazar/extemp"; description = "automated printing for extemp speakers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "extended-categories" = callPackage @@ -72119,6 +73928,7 @@ self: { homepage = "github.com/ian-mi/extended-categories"; description = "Extended Categories"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "extended-reals" = callPackage @@ -72409,6 +74219,7 @@ self: { homepage = "https://github.com/nikita-volkov/ez-couch"; description = "A high level static library for working with CouchDB"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "faceted" = callPackage @@ -72422,6 +74233,7 @@ self: { homepage = "http://github.com/haskell-faceted/haskell-faceted"; description = "Faceted computation for dynamic information flow security"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "factory" = callPackage @@ -72446,6 +74258,7 @@ self: { homepage = "http://functionalley.eu/Factory/factory.html"; description = "Rational arithmetic in an irrational world"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "factual-api" = callPackage @@ -72464,6 +74277,7 @@ self: { homepage = "https://github.com/rudyl313/factual-haskell-driver"; description = "A driver for the Factual API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fad" = callPackage @@ -72568,6 +74382,7 @@ self: { homepage = "http://github.com/tranma/falling-turnip"; description = "Falling sand game/cellular automata simulation using regular parallel arrays"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" ]; }) {}; "fallingblocks" = callPackage @@ -72587,6 +74402,7 @@ self: { homepage = "http://bencode.blogspot.com/2009/03/falling-blocks-tetris-clone-in-haskell.html"; description = "A fun falling blocks game"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "family-tree" = callPackage @@ -72605,6 +74421,7 @@ self: { homepage = "https://github.com/Taneb/family-tree"; description = "A family tree library for the Haskell programming language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "farmhash" = callPackage @@ -72618,6 +74435,7 @@ self: { homepage = "https://github.com/abhinav/farmhash"; description = "Fast hash functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "fast-builder" = callPackage @@ -72651,6 +74469,7 @@ self: { homepage = "https://github.com/Bodigrim/fast-digits"; description = "The fast library for integer-to-digits conversion"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "fast-logger_2_2_3" = callPackage @@ -72769,6 +74588,7 @@ self: { homepage = "https://github.com/elaforge/fast-tags"; description = "Fast incremental vi and emacs tags"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fast-tagsoup" = callPackage @@ -72843,6 +74663,7 @@ self: { homepage = "https://github.com/cscherrer/fastbayes"; description = "Bayesian modeling algorithms accelerated for particular model structures"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fastcgi" = callPackage @@ -72895,6 +74716,7 @@ self: { ]; description = "Fast Internet Relay Chat (IRC) library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fault-tree" = callPackage @@ -72907,6 +74729,7 @@ self: { homepage = "http://tomahawkins.org"; description = "A fault tree analysis library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fay_0_21_2_1" = callPackage @@ -73332,6 +75155,7 @@ self: { homepage = "http://www.happstack.com/"; description = "Clientside HTML generation for fay"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fay-jquery_0_6_0_2" = callPackage @@ -73754,6 +75578,7 @@ self: { homepage = "https://github.com/Neki/fcd"; description = "A faster way to navigate directories using the command line"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fckeditor" = callPackage @@ -73767,6 +75592,7 @@ self: { homepage = "http://peteg.org/"; description = "Server-Side Integration for FCKeditor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fclabels_2_0_2" = callPackage @@ -73894,6 +75720,7 @@ self: { homepage = "https://github.com/jkarlson/fdo-trash"; description = "Utilities related to freedesktop Trash standard"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "feature-flags" = callPackage @@ -74080,6 +75907,8 @@ self: { pname = "feed"; version = "0.3.11.1"; sha256 = "ed04d0fc120a4b1b47c7675d395afbb419506431bc6f8e0f2c382c73a4afc983"; + revision = "1"; + editedCabalFile = "c5f129b41daa9931f100efb01cee561e61a04b2118436e10e64141d68edab7fb"; libraryHaskellDepends = [ base old-locale old-time time time-locale-compat utf8-string xml ]; @@ -74109,6 +75938,7 @@ self: { homepage = "http://www.syntaxpolice.org/darcs_repos/feed-cli"; description = "A simple command line interface for creating and updating feeds like RSS"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "feed-collect" = callPackage @@ -74168,6 +75998,7 @@ self: { homepage = "https://github.com/dahlia/feed-translator"; description = "Translate syndication feeds"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "feed2lj" = callPackage @@ -74186,6 +76017,7 @@ self: { ]; description = "(unsupported)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "feed2twitter" = callPackage @@ -74203,6 +76035,7 @@ self: { homepage = "http://github.com/tomlokhorst/feed2twitter"; description = "Send posts from a feed to Twitter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "feldspar-compiler" = callPackage @@ -74230,6 +76063,7 @@ self: { homepage = "http://feldspar.github.com"; description = "Compiler for the Feldspar language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {gcc_s = null;}; "feldspar-language" = callPackage @@ -74255,6 +76089,7 @@ self: { homepage = "http://feldspar.github.com"; description = "A functional embedded language for DSP and parallelism"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "feldspar-signal" = callPackage @@ -74328,6 +76163,7 @@ self: { homepage = "http://fenfire.org/"; description = "Graph-based notetaking system"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {raptor = null;}; "fez-conf" = callPackage @@ -74354,6 +76190,7 @@ self: { executableHaskellDepends = [ base pretty ]; description = "Haskell binding to the FriendFeed API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fficxx" = callPackage @@ -74428,6 +76265,7 @@ self: { homepage = "http://patch-tag.com/r/VasylPasternak/ffmpeg-tutorials"; description = "Tutorials on ffmpeg usage to play video/audio"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fft_0_1_8_2" = callPackage @@ -74598,6 +76436,7 @@ self: { homepage = "http://github.com/dmpots/fibon/wiki"; description = "Tools for running and analyzing Haskell benchmarks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fibonacci" = callPackage @@ -74626,6 +76465,7 @@ self: { homepage = "http://github.com/AstraFIN/fields"; description = "First-class record field combinators with infix record field syntax"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fields-json" = callPackage @@ -74654,6 +76494,7 @@ self: { jailbreak = true; description = "Provides Fieldwise typeclass for operations of fields of records treated as independent components"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fig" = callPackage @@ -74900,6 +76741,7 @@ self: { homepage = "https://github.com/gregwebs/FileLocation.hs"; description = "common functions that show file location information"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "file-modules" = callPackage @@ -74942,6 +76784,7 @@ self: { homepage = "http://lpuppet.banquise.net/"; description = "A Linux-only cache system associating values to files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "filediff" = callPackage @@ -75097,6 +76940,7 @@ self: { homepage = "http://github.com/snoyberg/conduit"; description = "Use system-filepath data types with conduits. (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "filesystem-enumerator" = callPackage @@ -75113,6 +76957,7 @@ self: { homepage = "https://john-millikin.com/software/haskell-filesystem/"; description = "Enumerator-based API for manipulating the filesystem"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "filesystem-trees" = callPackage @@ -75212,6 +77057,7 @@ self: { ]; description = "A file-finding conduit that allows user control over traversals"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fingertree_0_1_0_0" = callPackage @@ -75382,6 +77228,7 @@ self: { homepage = "http://www-users.cs.york.ac.uk/~ndm/firstify/"; description = "Defunctionalisation for Yhc Core"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fishfood" = callPackage @@ -75404,6 +77251,7 @@ self: { homepage = "http://functionalley.eu"; description = "Calculates file-size frequency-distribution"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fit" = callPackage @@ -75423,6 +77271,7 @@ self: { ]; description = "FIT file decoder"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fitsio" = callPackage @@ -75436,6 +77285,7 @@ self: { homepage = "http://github.com/esessoms/fitsio"; description = "A library for reading and writing data files in the FITS data format"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) cfitsio;}; "fix-imports" = callPackage @@ -75466,6 +77316,7 @@ self: { libraryHaskellDepends = [ base mmtl ]; description = "Simple fix-expression parser"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fix-symbols-gitit" = callPackage @@ -75477,6 +77328,7 @@ self: { libraryHaskellDepends = [ base containers gitit ]; description = "Gitit plugin: Turn some Haskell symbols into pretty math symbols"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fixed_0_2_1" = callPackage @@ -75553,6 +77405,7 @@ self: { jailbreak = true; description = "Binary fixed-point arithmetic"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fixed-point-vector" = callPackage @@ -75565,6 +77418,7 @@ self: { jailbreak = true; description = "Unbox instances for the fixed-point package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fixed-point-vector-space" = callPackage @@ -75577,6 +77431,7 @@ self: { jailbreak = true; description = "vector-space instances for the fixed-point package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fixed-precision" = callPackage @@ -75594,6 +77449,7 @@ self: { homepage = "http://github.com/ekmett/fixed-precision"; description = "Fixed Precision Arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fixed-storable-array" = callPackage @@ -75606,6 +77462,7 @@ self: { jailbreak = true; description = "Fixed-size wrapper for StorableArray, providing a Storable instance. Deprecated - use storable-static-array instead."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fixed-vector_0_7_0_3" = callPackage @@ -75746,6 +77603,7 @@ self: { homepage = "https://github.com/revnull/fixfile"; description = "File-backed recursive data structures"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fixhs" = callPackage @@ -75964,6 +77822,7 @@ self: { jailbreak = true; description = "Flexible wrappers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flexiwrap-smallcheck" = callPackage @@ -75978,6 +77837,7 @@ self: { jailbreak = true; description = "SmallCheck (Serial) instances for flexiwrap"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flickr" = callPackage @@ -75996,6 +77856,7 @@ self: { executableHaskellDepends = [ xhtml ]; description = "Haskell binding to the Flickr API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flippers" = callPackage @@ -76027,6 +77888,7 @@ self: { homepage = "http://www.cs.york.ac.uk/fp/reduceron/"; description = "f-lite compiler, interpreter and libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flo" = callPackage @@ -76076,6 +77938,7 @@ self: { testHaskellDepends = [ base ]; description = "Conversions between floating and integral values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "floatshow" = callPackage @@ -76151,6 +78014,7 @@ self: { homepage = "http://adept.linux.kiev.ua:8080/repos/flow2dot"; description = "Library and binary to generate sequence/flow diagrams from plain text source"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flowdock" = callPackage @@ -76208,6 +78072,7 @@ self: { homepage = "https://github.com/gabemc/flowdock-api"; description = "API integration with Flowdock"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flowdock-rest" = callPackage @@ -76237,6 +78102,7 @@ self: { homepage = "https://github.com/futurice/haskell-flowdock-rest#readme"; description = "Flowdock REST API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flower" = callPackage @@ -76256,6 +78122,7 @@ self: { homepage = "http://biohaskell.org/Applications/Flower"; description = "Analyze 454 flowgrams (.SFF files)"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flowlocks-framework" = callPackage @@ -76268,6 +78135,7 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "Generalized Flow Locks Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flowsim" = callPackage @@ -76287,6 +78155,7 @@ self: { homepage = "http://biohaskell.org/Applications/FlowSim"; description = "Simulate 454 pyrosequencing"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fltkhs" = callPackage @@ -76295,8 +78164,8 @@ self: { }: mkDerivation { pname = "fltkhs"; - version = "0.4.0.6"; - sha256 = "f449467e3094b719da3209b14330e7e57da5ced3c8bca8dd02c1cbac6f635684"; + version = "0.4.0.7"; + sha256 = "69c20beaab65c6fe76af6c1087b494891a7eff22ce719f2296f367c8ce4b0330"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bytestring ]; @@ -76418,6 +78287,7 @@ self: { homepage = "https://github.com/MostAwesomeDude/hsfluidsynth"; description = "Haskell bindings to FluidSynth"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) fluidsynth;}; "fmark" = callPackage @@ -76503,8 +78373,8 @@ self: { }: mkDerivation { pname = "fn"; - version = "0.3.0.0"; - sha256 = "f617f7dbd3ee30bdfdce1bcdd7637bfcaa276616c3958f15c84c58dc63b21ee5"; + version = "0.3.0.1"; + sha256 = "72cfbb697e52324f092a4436468f8f63dc063eeb6edbd4885a05d604af62d4bd"; libraryHaskellDepends = [ base blaze-builder bytestring directory filepath http-types text unordered-containers wai wai-extra @@ -76513,7 +78383,7 @@ self: { base directory filepath hspec http-types text unordered-containers wai wai-extra ]; - homepage = "http://github.com/dbp/fn#readme"; + homepage = "http://github.com/positiondev/fn#readme"; description = "A functional web framework"; license = stdenv.lib.licenses.isc; }) {}; @@ -76561,14 +78431,14 @@ self: { }: mkDerivation { pname = "fn-extra"; - version = "0.3.0.0"; - sha256 = "fbbc710d612c5fe0780e87a88a9aa70ad60208d4b2b8bdd42f7ecb8f0bfabb6b"; + version = "0.3.0.1"; + sha256 = "5aba71b4edc9b8550514d6d1ac2ce51e8f0959dd68f5d12909fb05e8a6fff207"; libraryHaskellDepends = [ base blaze-builder bytestring digestive-functors directory either fn heist http-types lens mtl resourcet text wai wai-extra wai-util xmlhtml ]; - homepage = "http://github.com/dbp/fn#readme"; + homepage = "http://github.com/positiondev/fn#readme"; description = "Extras for Fn, a functional web framework"; license = stdenv.lib.licenses.isc; }) {}; @@ -76614,6 +78484,7 @@ self: { homepage = "https://github.com/debug-ito/fold-debounce"; description = "Fold multiple events that happen in a given period of time"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "fold-debounce-conduit" = callPackage @@ -76635,6 +78506,7 @@ self: { homepage = "https://github.com/debug-ito/fold-debounce-conduit"; description = "Regulate input traffic from conduit Source with Control.FoldDebounce"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "foldl_1_0_7" = callPackage @@ -76793,7 +78665,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "foldl" = callPackage + "foldl_1_1_5" = callPackage ({ mkDerivation, base, bytestring, comonad, containers, mwc-random , primitive, profunctors, text, transformers, vector }: @@ -76807,6 +78679,23 @@ self: { ]; description = "Composable, streaming, and efficient left folds"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "foldl" = callPackage + ({ mkDerivation, base, bytestring, comonad, containers, mwc-random + , primitive, profunctors, text, transformers, vector + }: + mkDerivation { + pname = "foldl"; + version = "1.1.6"; + sha256 = "aac488a29798c24f7a46bb81ecee4ec7d798ad8b6934ea17262296079df57766"; + libraryHaskellDepends = [ + base bytestring comonad containers mwc-random primitive profunctors + text transformers vector + ]; + description = "Composable, streaming, and efficient left folds"; + license = stdenv.lib.licenses.bsd3; }) {}; "foldl-incremental" = callPackage @@ -76828,6 +78717,7 @@ self: { homepage = "https://github.com/tonyday567/foldl-incremental"; description = "incremental folds"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "foldl-transduce" = callPackage @@ -76897,6 +78787,7 @@ self: { homepage = "http://github.com/ekmett/folds"; description = "Beautiful Folding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "folds-common" = callPackage @@ -76910,6 +78801,7 @@ self: { testHaskellDepends = [ base containers tasty tasty-quickcheck ]; description = "A playground of common folds for folds"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "follower" = callPackage @@ -76929,6 +78821,7 @@ self: { homepage = "http://rebworks.net/projects/follower/"; description = "Follow Tweets anonymously"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "foma" = callPackage @@ -76942,6 +78835,7 @@ self: { homepage = "http://github.com/joom/foma.hs"; description = "Simple Haskell bindings for Foma"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {foma = null;}; "font-opengl-basic4x6" = callPackage @@ -76957,6 +78851,7 @@ self: { jailbreak = true; description = "Basic4x6 font for OpenGL"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "foo" = callPackage @@ -76973,6 +78868,7 @@ self: { homepage = "http://sourceforge.net/projects/fooengine/?abmode=1"; description = "Paper soccer, an OpenGL game"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "for-free" = callPackage @@ -76990,6 +78886,7 @@ self: { jailbreak = true; description = "Functor, Monad, MonadPlus, etc for free"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "forbidden-fruit" = callPackage @@ -77012,6 +78909,7 @@ self: { homepage = "http://github.com/minpou/forbidden-fruit"; description = "A library accelerates imperative style programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "force-layout_0_3_0_8" = callPackage @@ -77127,6 +79025,7 @@ self: { executableHaskellDepends = [ base process transformers ]; description = "Run a command on files with magic substituion support (sequencing and regexp)"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "forecast-io" = callPackage @@ -77255,6 +79154,7 @@ self: { jailbreak = true; description = "A statically typed, functional programming language"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "format" = callPackage @@ -77269,6 +79169,7 @@ self: { homepage = "https://github.com/bytbox/hs-format"; description = "Rendering from and scanning to format strings"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "format-status" = callPackage @@ -77287,6 +79188,7 @@ self: { jailbreak = true; description = "A utility for writing the date to dzen2"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "formattable" = callPackage @@ -77405,6 +79307,7 @@ self: { homepage = "http://texodus.github.com/forml"; description = "A statically typed, functional programming language"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "formlets" = callPackage @@ -77423,6 +79326,7 @@ self: { homepage = "http://github.com/chriseidhof/formlets/tree/master"; description = "Formlets implemented in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "formlets-hsp" = callPackage @@ -77439,6 +79343,7 @@ self: { libraryToolDepends = [ trhsx ]; description = "HSP support for Formlets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "formura" = callPackage @@ -77473,6 +79378,7 @@ self: { jailbreak = true; description = "A simple eDSL for generating arrayForth code"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "foscam-directory" = callPackage @@ -77510,6 +79416,7 @@ self: { testHaskellDepends = [ base directory doctest filepath parsec QuickCheck template-haskell ]; + jailbreak = true; homepage = "https://github.com/tonymorris/foscam-filename"; description = "Foscam File format"; license = stdenv.lib.licenses.bsd3; @@ -77537,9 +79444,11 @@ self: { testHaskellDepends = [ base directory doctest filepath QuickCheck template-haskell ]; + jailbreak = true; homepage = "https://github.com/tonymorris/foscam-sort"; description = "Foscam File format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fountain" = callPackage @@ -77627,6 +79536,7 @@ self: { homepage = "https://www.fpcomplete.com/page/api"; description = "Simple interface to the FP Complete IDE API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fpipe" = callPackage @@ -77673,6 +79583,7 @@ self: { ]; description = "Example implementations for FPNLA library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fptest" = callPackage @@ -77768,6 +79679,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Frag"; description = "A 3-D First Person Shooter Game"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "frame" = callPackage @@ -77816,6 +79728,7 @@ self: { libraryHaskellDepends = [ base ]; description = "A package for configuring and building Haskell software"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free_4_9" = callPackage @@ -77970,6 +79883,7 @@ self: { homepage = "https://github.com/fumieval/free-game"; description = "Create games for free"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free-http" = callPackage @@ -78003,6 +79917,7 @@ self: { jailbreak = true; description = "Operational Applicative, Alternative, Monad and MonadPlus from free types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free-theorems" = callPackage @@ -78018,6 +79933,7 @@ self: { ]; description = "Automatic generation of free theorems"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free-theorems-counterexamples" = callPackage @@ -78036,6 +79952,7 @@ self: { executableHaskellDepends = [ cgi free-theorems utf8-string xhtml ]; description = "Automatically Generating Counterexamples to Naive Free Theorems"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free-theorems-seq" = callPackage @@ -78054,6 +79971,7 @@ self: { jailbreak = true; description = "Taming Selective Strictness"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free-theorems-seq-webui" = callPackage @@ -78072,6 +79990,7 @@ self: { ]; description = "Taming Selective Strictness"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free-theorems-webui" = callPackage @@ -78090,6 +80009,7 @@ self: { ]; description = "CGI-based web interface for the free-theorems package"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free-vl" = callPackage @@ -78129,6 +80049,7 @@ self: { homepage = "http://github.com/anttisalonen/freekick2"; description = "A soccer game"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "freenect_1_2" = callPackage @@ -78183,6 +80104,7 @@ self: { homepage = "https://gitlab.com/cpp.cabrera/freer"; description = "Implementation of the Freer Monad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "freesect" = callPackage @@ -78202,6 +80124,7 @@ self: { homepage = "http://fremissant.net/freesect"; description = "A Haskell syntax extension for generalised sections"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "freesound" = callPackage @@ -78224,6 +80147,7 @@ self: { homepage = "https://github.com/kaoskorobase/freesound"; description = "Access the Freesound Project database"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "freetype-simple" = callPackage @@ -78319,6 +80243,7 @@ self: { homepage = "https://github.com/TomMD/friday-juicypixels"; description = "Converts between the Friday and JuicyPixels image types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "friday-scale-dct" = callPackage @@ -78402,6 +80327,7 @@ self: { homepage = "http://github.com/frp-arduino/frp-arduino"; description = "Arduino programming without the hassle of C"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "frpnow" = callPackage @@ -78429,6 +80355,7 @@ self: { homepage = "https://github.com/atzeus/FRPNow"; description = "Program awesome stuff with Gloss and frpnow!"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "frpnow-gtk" = callPackage @@ -78445,6 +80372,7 @@ self: { homepage = "https://github.com/atzeus/FRPNow"; description = "Program GUIs with GTK and frpnow!"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "frquotes" = callPackage @@ -78471,6 +80399,7 @@ self: { homepage = "http://github.com/nkpart/fs-events"; description = "A haskell binding to the FSEvents API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fsharp" = callPackage @@ -78498,6 +80427,7 @@ self: { homepage = "http://projects.haskell.org/fsmActions/"; description = "Finite state machines and FSM actions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fsnotify_0_1_0_3" = callPackage @@ -78615,6 +80545,7 @@ self: { jailbreak = true; description = "A thin layer over USB to communicate with FTDI chips"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ftp-conduit" = callPackage @@ -78633,6 +80564,7 @@ self: { homepage = "https://github.com/litherum/ftp-conduit"; description = "FTP client package with conduit interface based off http-conduit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ftphs" = callPackage @@ -78681,6 +80613,7 @@ self: { jailbreak = true; description = "Shell interface to the FreeTheorems library"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fugue" = callPackage @@ -78704,6 +80637,7 @@ self: { homepage = "http://www.agusa.i.is.nagoya-u.ac.jp/person/sydney/full-sessions.html"; description = "a monad for protocol-typed network programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "full-text-search" = callPackage @@ -78724,6 +80658,7 @@ self: { jailbreak = true; description = "In-memory full text search engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fullstop" = callPackage @@ -78745,6 +80680,7 @@ self: { homepage = "http://hub.darcs.net/kowey/fullstop"; description = "Simple sentence segmenter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "funbot" = callPackage @@ -78774,6 +80710,7 @@ self: { homepage = "https://notabug.org/fr33domlover/funbot"; description = "IRC bot for fun, learning, creativity and collaboration"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "funbot-client" = callPackage @@ -78793,6 +80730,7 @@ self: { homepage = "https://notabug.org/fr33domlover/funbot-client/"; description = "Report events to FunBot over a JSON/HTTP API"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "funbot-ext-events" = callPackage @@ -78825,6 +80763,7 @@ self: { homepage = "https://notabug.org/fr33domlover/funbot-git-hook/"; description = "Git hook which sends events to FunBot"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "funcmp" = callPackage @@ -78872,6 +80811,7 @@ self: { libraryHaskellDepends = [ base data-type ]; description = "Combining functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "function-instances-algebra" = callPackage @@ -78897,6 +80837,7 @@ self: { jailbreak = true; description = "Combinators that allow for a more functional/monadic style of Arrow programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "functional-kmp" = callPackage @@ -78984,6 +80925,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Data.FunctorM (compatibility package)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "functors" = callPackage @@ -79015,6 +80957,7 @@ self: { homepage = "http://github.com/nathanwiegand/funion"; description = "A unioning file-system using HFuse"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "funpat" = callPackage @@ -79050,6 +80993,7 @@ self: { homepage = "http://github.com/dbueno/funsat"; description = "A modern DPLL-style SAT solver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fusion" = callPackage @@ -79091,6 +81035,7 @@ self: { homepage = "http://hackage.haskell.org/cgi-bin/hackage-scripts/package/future"; description = "Supposed to mimics and enhance proposed C++ \"future\" features"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "future-resource" = callPackage @@ -79172,6 +81117,7 @@ self: { ]; description = "A 'ten past six' style clock"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fwgl" = callPackage @@ -79189,6 +81135,7 @@ self: { homepage = "https://github.com/ziocroc/FWGL"; description = "Game engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "fwgl-glfw" = callPackage @@ -79206,6 +81153,7 @@ self: { homepage = "https://github.com/ziocroc/FWGL"; description = "FWGL GLFW backend"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-linux" ]; }) {}; "fwgl-javascript" = callPackage @@ -79237,6 +81185,7 @@ self: { executableHaskellDepends = [ base HTTP json ]; description = "Generate Gentoo ebuilds from NodeJS/npm packages"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gact" = callPackage @@ -79254,6 +81203,7 @@ self: { ]; description = "General Alignment Clustering Tool"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "game-of-life" = callPackage @@ -79305,6 +81255,7 @@ self: { executableHaskellDepends = [ base cairo containers glib gtk time ]; description = "Game clock that shows two analog clock faces"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gamma" = callPackage @@ -79375,6 +81326,7 @@ self: { homepage = "http://www.daneel0yaitskov.000space.com"; description = "planar graph embedding into a plane"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gc" = callPackage @@ -79409,6 +81361,7 @@ self: { homepage = "https://github.com/yihuang/gc-monitoring-wai"; description = "a wai application to show GHC.GCStats"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gconf" = callPackage @@ -79470,6 +81423,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/InstantGenerics"; description = "Generic diff for the instant-generics library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gdiff-th" = callPackage @@ -79490,6 +81444,7 @@ self: { homepage = "https://github.com/jfischoff/gdiff-th"; description = "Generate gdiff GADTs and Instances"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gdo" = callPackage @@ -79523,6 +81478,7 @@ self: { homepage = "http://code.mathr.co.uk/gearbox"; description = "zooming rotating fractal gears graphics demo"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "geek" = callPackage @@ -79544,6 +81500,7 @@ self: { homepage = "http://github.com/nfjinjing/geek"; description = "Geek blog engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "geek-server" = callPackage @@ -79567,6 +81524,7 @@ self: { homepage = "http://github.com/nfjinjing/geek"; description = "Geek blog engine server"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gelatin" = callPackage @@ -79590,6 +81548,7 @@ self: { ]; description = "An experimental real time renderer"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gemstone" = callPackage @@ -79609,6 +81568,7 @@ self: { homepage = "http://corbinsimpson.com/"; description = "A simple library of helpers for SDL+GL games"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gencheck" = callPackage @@ -79626,6 +81586,7 @@ self: { homepage = "http://github.com/JacquesCarette/GenCheck"; description = "A testing framework inspired by QuickCheck and SmallCheck"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gender" = callPackage @@ -79642,6 +81603,7 @@ self: { homepage = "https://github.com/womfoo/gender"; description = "Identify a persons gender by their first name"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "genders" = callPackage @@ -79657,6 +81619,7 @@ self: { testHaskellDepends = [ base bytestring hspec network vector ]; description = "Bindings to libgenders"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {genders = null;}; "general-prelude" = callPackage @@ -79671,6 +81634,7 @@ self: { ]; description = "Prelude replacement using generalized type classes where possible"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "generator" = callPackage @@ -79696,6 +81660,7 @@ self: { homepage = "http://liamoc.net/pdf/Generator.pdf"; description = "Actually useful monadic random value generators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "generic-accessors" = callPackage @@ -79874,6 +81839,7 @@ self: { ]; description = "Automatically convert Generic instances to and from church representations"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "generic-deepseq" = callPackage @@ -80018,6 +81984,7 @@ self: { jailbreak = true; description = "Generic implementation of Storable"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "generic-tree" = callPackage @@ -80055,6 +82022,7 @@ self: { ]; description = "Marshalling Haskell values to/from XML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "generic-xmlpickler_0_1_0_0" = callPackage @@ -80266,6 +82234,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Serialization library using Data.Generics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "genetics" = callPackage @@ -80279,6 +82248,7 @@ self: { executableHaskellDepends = [ base random-fu ]; description = "A Genetic Algorithm library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "geni-gui" = callPackage @@ -80301,6 +82271,7 @@ self: { homepage = "http://projects.haskell.org/GenI"; description = "GenI graphical user interface"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "geni-util" = callPackage @@ -80325,6 +82296,7 @@ self: { homepage = "http://kowey.github.io/GenI"; description = "Companion tools for use with the GenI surface realiser"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "geniconvert" = callPackage @@ -80345,6 +82317,7 @@ self: { homepage = "http://wiki.loria.fr/wiki/GenI"; description = "Conversion utility for the GenI generator"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "genifunctors" = callPackage @@ -80417,6 +82390,7 @@ self: { jailbreak = true; description = "Simple HTTP server for GenI results"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "genprog" = callPackage @@ -80467,6 +82441,7 @@ self: { homepage = "https://github.com/markenwerk/haskell-geo-resolver/"; description = "Performs geo location lookups and parses the results"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "geo-uk" = callPackage @@ -80572,6 +82547,7 @@ self: { ]; description = "Pure haskell interface to MaxMind GeoIP database"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "geojson" = callPackage @@ -80594,6 +82570,7 @@ self: { homepage = "https://github.com/domdere/hs-geojson"; description = "A thin GeoJSON Layer above the aeson library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "geom2d" = callPackage @@ -80607,6 +82584,7 @@ self: { jailbreak = true; description = "package for geometry in euklidean 2d space"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-linux" ]; }) {}; "getemx" = callPackage @@ -80626,6 +82604,7 @@ self: { homepage = "http://bitbucket.org/kenko/getemx"; description = "Fetch from emusic using .emx files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "getflag" = callPackage @@ -80637,6 +82616,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Command-line parser"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "getopt-generics_0_10_0_1" = callPackage @@ -80742,6 +82722,7 @@ self: { homepage = "http://a319-101.ipm.edu.mo/~wke/ggts/impl/"; description = "A type checker and runtime system of rCOS/g (impl. of ggts-FCS)."; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghc-core" = callPackage @@ -80825,6 +82806,7 @@ self: { jailbreak = true; description = "Explicitly prevent sharing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghc-events" = callPackage @@ -80892,6 +82874,7 @@ self: { ]; description = "Library and tool for parsing .eventlog files from parallel GHC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghc-exactprint" = callPackage @@ -80913,6 +82896,7 @@ self: { ]; description = "ExactPrint for GHC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "ghc-gc-tune" = callPackage @@ -81298,6 +83282,7 @@ self: { jailbreak = true; description = "Simple utility to fix BROKEN package dependencies for cabal-install"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghc-pkg-lib" = callPackage @@ -81432,6 +83417,7 @@ self: { homepage = "http://github.com/nominolo/ghc-syb"; description = "Data and Typeable instances for the GHC API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghc-syb-utils_0_2_2" = callPackage @@ -81609,6 +83595,7 @@ self: { homepage = "http://felsin9.de/nnis/ghc-vis"; description = "Live visualization of data structures in GHCi"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "ghci-diagrams" = callPackage @@ -81621,6 +83608,7 @@ self: { jailbreak = true; description = "Display simple diagrams from ghci"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghci-haskeline" = callPackage @@ -81641,6 +83629,7 @@ self: { homepage = "http://code.haskell.org/~judah/ghci-haskeline"; description = "An implementation of ghci using the Haskeline line-input library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghci-lib" = callPackage @@ -81922,6 +83911,7 @@ self: { homepage = "http://github.com/shapr/ghclive/"; description = "Interactive Haskell interpreter in a browser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghczdecode" = callPackage @@ -81959,6 +83949,7 @@ self: { ]; description = "Trivial routines for inspecting git repositories"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gi-atk" = callPackage @@ -81977,6 +83968,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Atk bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-linux" ]; }) {inherit (pkgs) atk;}; "gi-cairo" = callPackage @@ -81994,6 +83986,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "cairo bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {cairo-gobject = null;}; "gi-gdk" = callPackage @@ -82013,6 +84006,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Gdk bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {gdk3 = null;}; "gi-gdkpixbuf" = callPackage @@ -82031,6 +84025,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GdkPixbuf bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-linux" ]; }) {inherit (pkgs) gdk_pixbuf;}; "gi-gio" = callPackage @@ -82049,6 +84044,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Gio bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {inherit (pkgs) glib;}; "gi-girepository" = callPackage @@ -82068,6 +84064,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GIRepository bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-linux" ]; }) {inherit (pkgs) gobjectIntrospection;}; "gi-glib" = callPackage @@ -82085,6 +84082,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GLib bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {inherit (pkgs) glib;}; "gi-gobject" = callPackage @@ -82103,6 +84101,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GObject bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {inherit (pkgs) glib;}; "gi-gtk" = callPackage @@ -82123,6 +84122,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Gtk bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {gtk3 = pkgs.gnome2.gtk;}; "gi-javascriptcore" = callPackage @@ -82140,6 +84140,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "JavaScriptCore bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {javascriptcoregtk = null;}; "gi-notify" = callPackage @@ -82159,6 +84160,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Notify bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-linux" ]; }) {inherit (pkgs) gdk_pixbuf;}; "gi-pango" = callPackage @@ -82177,6 +84179,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Pango bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-linux" ]; }) {inherit (pkgs.gnome) pango;}; "gi-poppler" = callPackage @@ -82195,6 +84198,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Poppler bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) poppler;}; "gi-soup" = callPackage @@ -82213,6 +84217,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Soup bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-linux" ]; }) {inherit (pkgs.gnome) libsoup;}; "gi-vte" = callPackage @@ -82232,6 +84237,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Vte bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs.gnome) vte;}; "gi-webkit" = callPackage @@ -82254,6 +84260,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "WebKit bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) webkit;}; "gi-webkit2" = callPackage @@ -82274,6 +84281,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "WebKit2 bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {webkit2gtk = null;}; "gi-webkit2webextension" = callPackage @@ -82293,6 +84301,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "WebKit2WebExtension bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {webkit2gtk-web-extension = null;}; "gimlh" = callPackage @@ -82314,8 +84323,8 @@ self: { }: mkDerivation { pname = "ginger"; - version = "0.1.5.0"; - sha256 = "3bce9121a6a351288878839c4dc189dca3e178e89ebe2c9b717bdb54808c361a"; + version = "0.1.7.0"; + sha256 = "07acb34e888171d765487e559d2e6bfa018ad0e040c06d3fc66b7f5903b32b16"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -82558,6 +84567,7 @@ self: { homepage = "http://github.com/simonmichael/gist"; description = "A reliable command-line client for gist.github.com"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "git-all" = callPackage @@ -82577,6 +84587,7 @@ self: { homepage = "https://github.com/jwiegley/git-all"; description = "Determine which Git repositories need actions to be taken"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "git-annex_5_20150727" = callPackage @@ -82861,6 +84872,7 @@ self: { homepage = "https://github.com/dougalstanton/git-checklist"; description = "Maintain per-branch checklists in Git"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "git-date" = callPackage @@ -82879,6 +84891,7 @@ self: { homepage = "https://github.com/singpolyma/git-date-haskell"; description = "Bindings to the date parsing from Git"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "git-embed" = callPackage @@ -82960,6 +84973,7 @@ self: { homepage = "http://github.com/jwiegley/gitlib"; description = "More intelligent push-to-GitHub utility"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "git-jump" = callPackage @@ -83037,6 +85051,7 @@ self: { homepage = "http://git-repair.branchable.com/"; description = "repairs a damanged git repisitory"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "git-sanity" = callPackage @@ -83146,6 +85161,7 @@ self: { homepage = "https://github.com/mattyhall/gitdo"; description = "Create Github issues out of TODO comments in code"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "github_0_14_0" = callPackage @@ -83234,6 +85250,7 @@ self: { homepage = "https://github.com/joeyh/github-backup"; description = "backs up everything github knows about a repository, to the repository"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) git;}; "github-post-receive" = callPackage @@ -83282,6 +85299,7 @@ self: { homepage = "https://github.com/greenrd/github-utils"; description = "Useful functions that use the GitHub API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "github-webhook-handler" = callPackage @@ -83477,6 +85495,7 @@ self: { ]; description = "Run tests between repositories"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gitlib-libgit2_3_1_0_3" = callPackage @@ -83620,6 +85639,7 @@ self: { ]; description = "Gitlib repository backend for storing Git objects in Amazon S3"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gitlib-sample" = callPackage @@ -83688,6 +85708,7 @@ self: { ]; description = "Generic utility functions for working with Git repositories"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gitrev_1_0_0" = callPackage @@ -83927,6 +85948,7 @@ self: { librarySystemDepends = [ mesa ]; description = "Complete OpenGL raw bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) mesa;}; "gl-capture" = callPackage @@ -83938,6 +85960,7 @@ self: { libraryHaskellDepends = [ base bytestring OpenGL ]; description = "simple image capture from OpenGL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "glade" = callPackage @@ -83953,6 +85976,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the glade library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) libglade;}; "gladexml-accessor" = callPackage @@ -83964,6 +85988,7 @@ self: { libraryHaskellDepends = [ base glade HaXml template-haskell ]; description = "Automagically declares getters for widget handles in specified interface file"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "glambda" = callPackage @@ -84007,6 +86032,7 @@ self: { homepage = "zyghost.com"; description = "An OpenGL micro framework"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "glasso" = callPackage @@ -84155,6 +86181,7 @@ self: { testHaskellDepends = [ base data-default hspec lens QuickCheck ]; description = "Glicko-2 implementation in Haskell"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "glider-nlp" = callPackage @@ -84169,6 +86196,7 @@ self: { homepage = "https://github.com/klangner/glider-nlp"; description = "Natural Language Processing library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "glintcollider" = callPackage @@ -84214,6 +86242,7 @@ self: { homepage = "https://github.com/bairyn/global"; description = "Library enabling unique top-level declarations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "global-config" = callPackage @@ -84283,6 +86312,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Glome"; description = "ray tracer"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gloss_1_9_2_1" = callPackage @@ -84318,6 +86348,7 @@ self: { homepage = "http://gloss.ouroborus.net"; description = "Painless 2D vector graphics, animations and simulations"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gloss-accelerate" = callPackage @@ -84331,6 +86362,7 @@ self: { libraryHaskellDepends = [ accelerate base gloss gloss-rendering ]; description = "Extras to interface Gloss and Accelerate"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gloss-algorithms" = callPackage @@ -84343,6 +86375,7 @@ self: { homepage = "http://gloss.ouroborus.net"; description = "Data structures and algorithms for working with 2D graphics"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gloss-banana" = callPackage @@ -84358,6 +86391,7 @@ self: { homepage = "https://github.com/Twey/gloss-banana"; description = "An Interface for gloss in terms of a reactive-banana Behavior"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gloss-devil" = callPackage @@ -84369,6 +86403,7 @@ self: { libraryHaskellDepends = [ base bytestring gloss repa repa-devil ]; description = "Display images in Gloss using libdevil for decoding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gloss-examples" = callPackage @@ -84391,6 +86426,7 @@ self: { homepage = "http://gloss.ouroborus.net"; description = "Examples using the gloss library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gloss-game" = callPackage @@ -84403,6 +86439,7 @@ self: { homepage = "https://github.com/mchakravarty/gloss-game"; description = "Gloss wrapper that simplifies writing games"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gloss-juicy" = callPackage @@ -84423,6 +86460,7 @@ self: { homepage = "http://github.com/alpmestan/gloss-juicy"; description = "Load any image supported by Juicy.Pixels in your gloss application"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gloss-raster" = callPackage @@ -84439,6 +86477,7 @@ self: { homepage = "http://gloss.ouroborus.net"; description = "Parallel rendering of raster images"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gloss-raster-accelerate" = callPackage @@ -84469,6 +86508,7 @@ self: { jailbreak = true; description = "Gloss picture data types and rendering functions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gloss-sodium" = callPackage @@ -84482,6 +86522,7 @@ self: { homepage = "https://github.com/Twey/gloss-sodium"; description = "A Sodium interface to the Gloss drawing package"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "glpk-hs" = callPackage @@ -84624,6 +86665,7 @@ self: { ]; description = "turtle like LOGO with glut"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gmap" = callPackage @@ -84639,6 +86681,7 @@ self: { ]; description = "Composable maps and generic tries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gmndl" = callPackage @@ -84658,6 +86701,7 @@ self: { jailbreak = true; description = "Mandelbrot Set explorer using GTK"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gnome-desktop" = callPackage @@ -84673,6 +86717,7 @@ self: { ]; description = "Randomly set a picture as the GNOME desktop background"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gnome-keyring" = callPackage @@ -84689,6 +86734,7 @@ self: { homepage = "https://john-millikin.com/software/haskell-gnome-keyring/"; description = "Bindings for libgnome-keyring"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs.gnome) gnome_keyring;}; "gnomevfs" = callPackage @@ -84708,6 +86754,7 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "Binding to the GNOME Virtual File System library"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs.gnome) gnome_vfs; gnome_vfs_module = null;}; "gnss-converters" = callPackage @@ -84717,8 +86764,8 @@ self: { }: mkDerivation { pname = "gnss-converters"; - version = "0.1.5"; - sha256 = "832993a18cb5561ec396061e6f1beeb206ea5e4b4103a34bef601f29f25cda96"; + version = "0.1.6"; + sha256 = "3d88c38c096cd3887a18acb6b8947436b9b5a6f64e7d2168e946387b817a0993"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -84731,6 +86778,7 @@ self: { homepage = "http://github.com/swift-nav/gnss-converters"; description = "GNSS Converters"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gnuidn_0_2_1" = callPackage @@ -84818,6 +86866,7 @@ self: { libraryHaskellDepends = [ base directory filepath process ]; description = "GHCi bindings to lambdabot"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "goal-core" = callPackage @@ -84838,6 +86887,7 @@ self: { jailbreak = true; description = "Core imports for Geometric Optimization Libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "goal-geometry" = callPackage @@ -84852,6 +86902,7 @@ self: { executableHaskellDepends = [ base goal-core ]; description = "Scientific computing on geometric objects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "goal-probability" = callPackage @@ -84871,6 +86922,7 @@ self: { executableHaskellDepends = [ base goal-core goal-geometry vector ]; description = "Manifolds of probability distributions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "goal-simulation" = callPackage @@ -84894,6 +86946,7 @@ self: { ]; description = "Mealy based simulation tools"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "goatee" = callPackage @@ -84947,6 +87000,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/gofer-prelude"; description = "The Gofer 2.30 standard prelude"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol" = callPackage @@ -86048,6 +88102,7 @@ self: { jailbreak = true; description = "Graphical user interfaces that are renderable, change over time and eventually produce a value"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "google-cloud" = callPackage @@ -86119,6 +88174,7 @@ self: { jailbreak = true; description = "Google HTML5 Slide generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "google-mail-filters" = callPackage @@ -86136,6 +88192,7 @@ self: { homepage = "https://github.com/liyang/google-mail-filters"; description = "Write GMail filters and output to importable XML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "google-oauth2" = callPackage @@ -86167,6 +88224,7 @@ self: { homepage = "https://github.com/liyang/google-search"; description = "EDSL for Google and GMail search expressions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "google-translate" = callPackage @@ -86201,6 +88259,7 @@ self: { homepage = "http://github.com/michaelxavier/GooglePlus"; description = "Haskell implementation of the Google+ API v1"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "googlepolyline" = callPackage @@ -86238,6 +88297,7 @@ self: { ]; description = "Spidering robot to download files from Gopherspace"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gore-and-ash" = callPackage @@ -86247,8 +88307,8 @@ self: { }: mkDerivation { pname = "gore-and-ash"; - version = "1.1.0.1"; - sha256 = "3fc41721e92097558f4247a5b195bac9d9d9bd9313b2d92f402d3535aa90d149"; + version = "1.2.1.0"; + sha256 = "216c58cf971d991aedcdda7100da3dfda433371c6fa47404df9431357cd84f82"; libraryHaskellDepends = [ base containers deepseq exceptions hashable linear mtl parallel profunctors random semigroups time transformers @@ -86324,6 +88384,7 @@ self: { homepage = "https://github.com/Teaspot-Studio/gore-and-ash-demo"; description = "Demonstration game for Gore&Ash game engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gore-and-ash-glfw" = callPackage @@ -86341,20 +88402,22 @@ self: { homepage = "https://github.com/Teaspot-Studio/gore-and-ash-glfw"; description = "Core module for Gore&Ash engine for GLFW input events"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gore-and-ash-logging" = callPackage - ({ mkDerivation, base, containers, deepseq, exceptions - , gore-and-ash, mtl, resourcet, text, text-show, transformers - , transformers-base + ({ mkDerivation, base, containers, deepseq, exceptions, extra + , gore-and-ash, hashable, mtl, resourcet, text, text-show + , transformers, transformers-base, unordered-containers }: mkDerivation { pname = "gore-and-ash-logging"; - version = "1.2.1.0"; - sha256 = "e036991edeaf1ba9eefa57a8668d1793a63bba816ffbf856a001fb5674881293"; + version = "2.0.0.0"; + sha256 = "a01fa0ba3867c791462f17f4910a155e5d814c113789b2b5d12766c399d65b93"; libraryHaskellDepends = [ - base containers deepseq exceptions gore-and-ash mtl resourcet text - text-show transformers transformers-base + base containers deepseq exceptions extra gore-and-ash hashable mtl + resourcet text text-show transformers transformers-base + unordered-containers ]; homepage = "https://github.com/Teaspot-Studio/gore-and-ash-logging"; description = "Core module for gore-and-ash with logging utilities"; @@ -86442,6 +88505,7 @@ self: { ]; description = "Generic Programming Use in Hackage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gpcsets" = callPackage @@ -86485,6 +88549,7 @@ self: { ]; description = "For manipulating GPS coordinates and trails"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gps2htmlReport" = callPackage @@ -86507,6 +88572,7 @@ self: { homepage = "https://github.com/robstewart57/Gps2HtmlReport"; description = "GPS to HTML Summary Report"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gpx-conduit" = callPackage @@ -86524,6 +88590,7 @@ self: { jailbreak = true; description = "Read GPX files using conduits"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graceful" = callPackage @@ -86558,6 +88625,7 @@ self: { homepage = "http://projects.haskell.org/grammar-combinators/"; description = "A parsing library of context-free grammar combinators"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "grapefruit-examples" = callPackage @@ -86575,6 +88643,7 @@ self: { homepage = "http://grapefruit-project.org/"; description = "Examples using the Grapefruit library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "grapefruit-frp" = callPackage @@ -86592,6 +88661,7 @@ self: { homepage = "http://grapefruit-project.org/"; description = "Functional Reactive Programming core"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "grapefruit-records" = callPackage @@ -86604,6 +88674,7 @@ self: { homepage = "http://grapefruit-project.org/"; description = "A record system for Functional Reactive Programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "grapefruit-ui" = callPackage @@ -86621,6 +88692,7 @@ self: { homepage = "http://grapefruit-project.org/"; description = "Declarative user interface programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "grapefruit-ui-gtk" = callPackage @@ -86639,6 +88711,7 @@ self: { homepage = "http://grapefruit-project.org/"; description = "GTK+-based backend for declarative user interface programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graph-core_0_2_1_0" = callPackage @@ -86780,6 +88853,7 @@ self: { homepage = "http://rochel.info/#graph-rewriting"; description = "Interactive graph rewriting system implementing various well-known combinators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graph-rewriting-gl" = callPackage @@ -86797,6 +88871,7 @@ self: { homepage = "http://rochel.info/#graph-rewriting"; description = "OpenGL interface for interactive port graph rewriting"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "graph-rewriting-lambdascope" = callPackage @@ -86818,6 +88893,7 @@ self: { homepage = "http://rochel.info/#graph-rewriting"; description = "Lambdascope, an optimal evaluator of the lambda calculus, as an interactive graph-rewriting system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "graph-rewriting-layout" = callPackage @@ -86853,6 +88929,7 @@ self: { homepage = "http://rochel.info/#graph-rewriting"; description = "Two evalutors of the SKI combinator calculus as interactive graph rewrite systems"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "graph-rewriting-strategies" = callPackage @@ -86890,6 +88967,7 @@ self: { homepage = "http://rochel.info/#graph-rewriting"; description = "Evaluate first-order applicative term rewrite systems interactively using graph reduction"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "graph-rewriting-ww" = callPackage @@ -86910,6 +88988,7 @@ self: { homepage = "http://rochel.info/#graph-rewriting"; description = "Evaluator of the lambda-calculus in an interactive graph rewriting system with explicit sharing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "graph-serialize" = callPackage @@ -86939,6 +89018,7 @@ self: { homepage = "http://github.com/konn/graph-utils/"; description = "A simple wrapper & quasi quoter for fgl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graph-visit" = callPackage @@ -86991,6 +89071,7 @@ self: { homepage = "https://github.com/tel/graphbuilder"; description = "A declarative, monadic graph construction language for small graphs"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graphene" = callPackage @@ -87045,6 +89126,7 @@ self: { homepage = "http://github.com/luqui/collada"; description = "Load 3D geometry in the COLLADA format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graphicsFormats" = callPackage @@ -87056,6 +89138,7 @@ self: { libraryHaskellDepends = [ base haskell98 OpenGL QuickCheck ]; description = "Classes for renderable objects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graphicstools" = callPackage @@ -87075,6 +89158,7 @@ self: { homepage = "https://yousource.it.jyu.fi/cvlab/pages/GraphicsTools"; description = "Tools for creating graphical UIs, based on wxHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graphmod" = callPackage @@ -87171,6 +89255,7 @@ self: { homepage = "http://github.com/explicitcall/graphtype"; description = "A simple tool to illustrate dependencies between Haskell types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graphviz_2999_17_0_1" = callPackage @@ -87368,6 +89453,7 @@ self: { homepage = "https://github.com/AndrewRademacher/haskell-graylog"; description = "Support for graylog output"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "greencard" = callPackage @@ -87383,6 +89469,7 @@ self: { homepage = "https://github.com/sof/greencard"; description = "GreenCard, a foreign function pre-processor for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "greencard-lib" = callPackage @@ -87395,6 +89482,7 @@ self: { homepage = "http://www.haskell.org/greencard/"; description = "A foreign function interface pre-processor library for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "greg-client" = callPackage @@ -87411,6 +89499,7 @@ self: { homepage = "http://code.google.com/p/greg/"; description = "A scalable distributed logger with a high-precision global time axis"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gremlin-haskell" = callPackage @@ -87435,6 +89524,7 @@ self: { homepage = "http://github.com/nakaji-dayo/gremlin-haskell"; description = "Graph database client for TinkerPop3 Gremlin Server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "greplicate" = callPackage @@ -87488,6 +89578,7 @@ self: { homepage = "http://github.com/btubbs/haskell-gridfs#readme"; description = "GridFS (MongoDB file storage) implementation"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gridland" = callPackage @@ -87527,6 +89618,7 @@ self: { executableToolDepends = [ happy ]; description = "grm grammar converter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "groom" = callPackage @@ -87951,6 +90043,7 @@ self: { jailbreak = true; description = "fractal explorer GUI using the ruff library"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gruff-examples" = callPackage @@ -87970,6 +90063,7 @@ self: { jailbreak = true; description = "Mandelbrot Set examples using ruff and gruff"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gsasl" = callPackage @@ -88007,6 +90101,7 @@ self: { homepage = "http://github.com/patperry/hs-gsl-random"; description = "Bindings the the GSL random number generation facilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gsl-random-fu" = callPackage @@ -88019,6 +90114,7 @@ self: { homepage = "http://code.haskell.org/~mokus/gsl-random-fu"; description = "Instances for using gsl-random with random-fu"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gsmenu" = callPackage @@ -88038,6 +90134,7 @@ self: { homepage = "http://sigkill.dk/programs/gsmenu"; description = "A visual generic menu"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gstreamer" = callPackage @@ -88057,6 +90154,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GStreamer open source multimedia framework"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gst_plugins_base; inherit (pkgs) gstreamer;}; "gt-tools" = callPackage @@ -88090,6 +90188,7 @@ self: { ]; description = "The General Transit Feed Specification format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk_0_13_3" = callPackage @@ -88231,6 +90330,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Gtk+ graphical user interface library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {gtk2 = pkgs.gnome2.gtk;}; "gtk-helpers" = callPackage @@ -88247,6 +90347,7 @@ self: { homepage = "http://keera.es/blog/community"; description = "A collection of auxiliary operations and widgets related to Gtk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gtk-jsinput" = callPackage @@ -88259,6 +90360,7 @@ self: { homepage = "http://github.com/timthelion/gtk-jsinput"; description = "A simple custom form widget for gtk which allows inputing of JSON values"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gtk-largeTreeStore" = callPackage @@ -88275,6 +90377,7 @@ self: { testHaskellDepends = [ base containers gtk3 hspec ]; description = "Large TreeStore support for gtk2hs"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gtk-mac-integration" = callPackage @@ -88291,6 +90394,7 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "Bindings for the Gtk/OS X integration library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {gtk-mac-integration-gtk2 = null;}; "gtk-serialized-event" = callPackage @@ -88309,6 +90413,7 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "GTK+ Serialized event"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {gdk2 = null;}; "gtk-simple-list-view" = callPackage @@ -88321,6 +90426,7 @@ self: { homepage = "http://github.com/timthelion/gtk-simple-list-view"; description = "A simple custom form widget for gtk which allows single LOC creation/updating of list views"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gtk-toggle-button-list" = callPackage @@ -88333,6 +90439,7 @@ self: { homepage = "http://github.com/timthelion/gtk-toggle-button-list"; description = "A simple custom form widget for gtk which allows single LOC creation/updating of toggle button lists"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gtk-toy" = callPackage @@ -88345,6 +90452,7 @@ self: { jailbreak = true; description = "Convenient Gtk canvas with mouse and keyboard input"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk-traymanager" = callPackage @@ -88358,6 +90466,7 @@ self: { homepage = "http://github.com/travitch/gtk-traymanager"; description = "A wrapper around the eggtraymanager library for Linux system trays"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {gtk2 = pkgs.gnome2.gtk; inherit (pkgs) x11;}; "gtk2hs-buildtools_0_13_0_3" = callPackage @@ -88435,6 +90544,7 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: glade package"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk2hs-cast-glib" = callPackage @@ -88461,6 +90571,7 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: gnomevfs package"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gtk2hs-cast-gtk" = callPackage @@ -88476,6 +90587,7 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: gtk package"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk2hs-cast-gtkglext" = callPackage @@ -88491,6 +90603,7 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: gtkglext package"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gtk2hs-cast-gtksourceview2" = callPackage @@ -88507,6 +90620,7 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: gtksourceview2 package"; license = "unknown"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gtk2hs-cast-th" = callPackage @@ -88533,6 +90647,7 @@ self: { homepage = "http://www.haskell.org/hello/"; description = "Gtk2Hs Hello World, an example package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gtk2hs-rpn" = callPackage @@ -88545,6 +90660,7 @@ self: { jailbreak = true; description = "Adds a module to gtk2hs allowing layouts to be defined using reverse polish notation"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk3_0_13_4" = callPackage @@ -88754,6 +90870,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Gtk+ 3 graphical user interface library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) gtk3;}; "gtk3-mac-integration" = callPackage @@ -88770,6 +90887,7 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "Bindings for the Gtk/OS X integration library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {gtk-mac-integration-gtk3 = null;}; "gtkglext" = callPackage @@ -88787,6 +90905,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GTK+ OpenGL Extension"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs.gnome) gtkglext;}; "gtkimageview" = callPackage @@ -88806,6 +90925,7 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "Binding to the GtkImageView library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gtkimageview;}; "gtkrsync" = callPackage @@ -88824,6 +90944,7 @@ self: { homepage = "http://hg.complete.org/gtkrsync"; description = "Gnome rsync progress display"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtksourceview2" = callPackage @@ -88843,6 +90964,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GtkSourceView library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs.gnome) gtksourceview;}; "gtksourceview3" = callPackage @@ -88885,6 +91007,7 @@ self: { homepage = "http://code.atnnn.com/project/guess"; description = "Generate simple combinators given their type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gulcii" = callPackage @@ -88900,6 +91023,7 @@ self: { homepage = "http://code.mathr.co.uk/gulcii"; description = "graphical untyped lambda calculus interactive interpreter"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gutenberg-fibonaccis" = callPackage @@ -88949,6 +91073,7 @@ self: { homepage = "https://github.com/Fuuzetsu/h-booru"; description = "Haskell library for retrieving data from various booru image sites"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "h-gpgme" = callPackage @@ -88970,6 +91095,7 @@ self: { jailbreak = true; homepage = "https://github.com/rethab/h-gpgme"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "h2048" = callPackage @@ -89034,6 +91160,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "An FFI binding to CMU/Long's BDD library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {bdd = null; mem = null;}; "hBDD-CUDD" = callPackage @@ -89049,6 +91176,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "An FFI binding to the CUDD library"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {cudd = null; epd = null; inherit (pkgs) mtr; inherit (pkgs) st; util = null;}; @@ -89066,6 +91194,7 @@ self: { jailbreak = true; description = "interface to CSound API"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {csound64 = null; inherit (pkgs) libsndfile;}; "hDFA" = callPackage @@ -89077,6 +91206,7 @@ self: { libraryHaskellDepends = [ base containers directory process ]; description = "A simple library for representing and minimising DFAs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hF2" = callPackage @@ -89088,6 +91218,7 @@ self: { libraryHaskellDepends = [ base cereal vector ]; description = "F(2^e) math for cryptography"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hGelf" = callPackage @@ -89147,6 +91278,7 @@ self: { homepage = "http://github.com/itkovian/hMollom"; description = "Library to interact with the @Mollom anti-spam service"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hOpenPGP_1_11" = callPackage @@ -89568,6 +91700,7 @@ self: { homepage = "https://github.com/BioHaskell/hPDB-examples"; description = "Examples for hPDB library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hPushover" = callPackage @@ -89596,6 +91729,7 @@ self: { libraryHaskellDepends = [ array base containers unix ]; description = "R bindings and interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hRESP" = callPackage @@ -89661,6 +91795,7 @@ self: { jailbreak = true; description = "Interface to Amazon's SimpleDB service"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hTalos" = callPackage @@ -89675,6 +91810,7 @@ self: { homepage = "https://github.com/mgajda/hTalos"; description = "Parser, print and manipulate structures in PDB file format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hTensor" = callPackage @@ -89702,6 +91838,7 @@ self: { homepage = "http://dslsrv4.cs.missouri.edu/~qqbm9"; description = "Optimal variable selection in chain graphical model"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) blas; inherit (pkgs) liblapack;}; "hXmixer" = callPackage @@ -89719,6 +91856,7 @@ self: { ]; description = "A Gtk mixer GUI application for FreeBSD"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "haar" = callPackage @@ -89737,6 +91875,7 @@ self: { homepage = "https://github.com/mhwombat/haar"; description = "Haar wavelet transforms"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hacanon-light" = callPackage @@ -89779,6 +91918,7 @@ self: { homepage = "http://github.com/nfjinjing/hack-contrib"; description = "Hack contrib"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-contrib-press" = callPackage @@ -89796,6 +91936,7 @@ self: { homepage = "http://github.com/bickfordb/hack-contrib-press"; description = "Hack helper that renders Press templates"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-frontend-happstack" = callPackage @@ -89813,6 +91954,7 @@ self: { homepage = "http://github.com/nfjinjing/hack/tree/master"; description = "hack-frontend-happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-frontend-monadcgi" = callPackage @@ -89856,6 +91998,7 @@ self: { homepage = "https://gitlab.com/twittner/hack-handler-epoll"; description = "hack handler implementation using epoll"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-handler-evhttp" = callPackage @@ -89874,6 +92017,7 @@ self: { homepage = "http://github.com/bickfordb/hack-handler-evhttp"; description = "Hack EvHTTP (libevent) Handler"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {event = null;}; "hack-handler-fastcgi" = callPackage @@ -89888,6 +92032,7 @@ self: { homepage = "http://github.com/snoyberg/hack-handler-fastcgi/tree/master"; description = "Hack handler direct to fastcgi (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) fcgi;}; "hack-handler-happstack" = callPackage @@ -89905,6 +92050,7 @@ self: { homepage = "http://github.com/nfjinjing/hack-handler-happstack"; description = "Hack Happstack server handler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-handler-hyena" = callPackage @@ -89921,6 +92067,7 @@ self: { homepage = "http://github.com/nfjinjing/hack-handler-hyena"; description = "Hyena hack handler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-handler-kibro" = callPackage @@ -89935,6 +92082,7 @@ self: { homepage = "http://github.com/nfjinjing/hack/tree/master"; description = "Hack Kibro handler"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-handler-simpleserver" = callPackage @@ -89952,6 +92100,7 @@ self: { homepage = "http://github.com/snoyberg/hack-handler-simpleserver/tree/master"; description = "A simplistic HTTP server handler for Hack. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-middleware-cleanpath" = callPackage @@ -89966,6 +92115,7 @@ self: { homepage = "http://github.com/snoyberg/hack-middleware-cleanpath/tree/master"; description = "Applies some basic redirect rules to get cleaner paths. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-middleware-clientsession" = callPackage @@ -89982,6 +92132,7 @@ self: { homepage = "http://github.com/snoyberg/hack-middleware-clientsession/tree/master"; description = "Middleware for easily keeping session data in client cookies. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-middleware-gzip" = callPackage @@ -90010,6 +92161,7 @@ self: { homepage = "http://github.com/snoyberg/hack-middleware-jsonp/tree/master"; description = "Automatic wrapping of JSON responses to convert into JSONP. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack2" = callPackage @@ -90075,6 +92227,7 @@ self: { homepage = "https://github.com/nfjinjing/hack2-handler-happstack-server"; description = "Hack2 Happstack server handler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack2-handler-mongrel2-http" = callPackage @@ -90095,6 +92248,7 @@ self: { homepage = "https://github.com/nfjinjing/hack2-handler-mongrel2-http"; description = "Hack2 Mongrel2 HTTP handler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack2-handler-snap-server" = callPackage @@ -90130,6 +92284,7 @@ self: { homepage = "https://github.com/nfjinjing/hack2-handler-warp"; description = "Hack2 warp handler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack2-interface-wai" = callPackage @@ -90148,6 +92303,7 @@ self: { homepage = "https://github.com/nfjinjing/hack2-interface-wai"; description = "Hack2 interface of WAI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage-db" = callPackage @@ -90294,6 +92450,7 @@ self: { homepage = "http://github.com/snoyberg/hackage-proxy"; description = "Provide a proxy for Hackage which modifies responses in some way. (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage-repo-tool" = callPackage @@ -90316,6 +92473,7 @@ self: { homepage = "https://github.com/well-typed/hackage-security"; description = "Utility to manage secure file-based package repositories"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage-security" = callPackage @@ -90342,6 +92500,7 @@ self: { homepage = "https://github.com/well-typed/hackage-security"; description = "Hackage security library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage-security-HTTP" = callPackage @@ -90359,6 +92518,7 @@ self: { homepage = "https://github.com/well-typed/hackage-security"; description = "Hackage security bindings against the HTTP library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage-server" = callPackage @@ -90397,6 +92557,7 @@ self: { jailbreak = true; description = "The Hackage web server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage-sparks" = callPackage @@ -90416,6 +92577,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/hackage-sparks"; description = "Generate sparkline graphs of hackage statistics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage-whatsnew" = callPackage @@ -90448,6 +92610,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/hackage2hwn"; description = "Convert Hackage RSS feeds to wiki format for publishing on Haskell.org"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage2twitter" = callPackage @@ -90462,6 +92625,7 @@ self: { homepage = "http://github.com/tomlokhorst/hackage2twitter"; description = "Send new Hackage releases to Twitter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackager" = callPackage @@ -90498,6 +92662,7 @@ self: { testHaskellDepends = [ base hspec transformers ]; description = "API for Hacker News"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackertyper" = callPackage @@ -90578,6 +92743,7 @@ self: { homepage = "https://github.com/Forkk/hactor"; description = "Lightweight Erlang-style actors for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hactors" = callPackage @@ -90706,6 +92872,7 @@ self: { homepage = "http://www.haskell.org/haddock/"; description = "A documentation-generation tool for Haskell libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haddock-library_1_1_1" = callPackage @@ -90880,6 +93047,7 @@ self: { homepage = "http://github.com/tych0/haggis"; description = "A static site generator with blogging/comments support"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haha" = callPackage @@ -90933,6 +93101,7 @@ self: { ]; description = "A typed template engine, subset of jinja2"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hailgun" = callPackage @@ -91057,6 +93226,7 @@ self: { homepage = "https://github.com/tfausak/hairy"; description = "A JSON REST API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hakaru" = callPackage @@ -91087,6 +93257,7 @@ self: { homepage = "http://indiana.edu/~ppaml/"; description = "A probabilistic programming embedded DSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hake" = callPackage @@ -91117,6 +93288,7 @@ self: { homepage = "https://code.reaktor42.de/projects/hakismet"; description = "Akismet spam protection library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hako" = callPackage @@ -91567,6 +93739,7 @@ self: { jailbreak = true; description = "A package allowing to write Hakyll blog posts in Rmd"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hakyll-agda" = callPackage @@ -91585,6 +93758,7 @@ self: { homepage = "https://github.com/bitonic/hakyll-agda"; description = "Wrapper to integrate literate Agda files with Hakyll"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hakyll-blaze-templates" = callPackage @@ -91597,6 +93771,7 @@ self: { jailbreak = true; description = "Blaze templates for Hakyll"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hakyll-contrib" = callPackage @@ -91613,6 +93788,7 @@ self: { homepage = "http://jaspervdj.be/hakyll"; description = "Extra modules for the hakyll website compiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hakyll-contrib-hyphenation" = callPackage @@ -91646,6 +93822,7 @@ self: { jailbreak = true; description = "A hakyll library that helps maintain a separate links database"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hakyll-convert" = callPackage @@ -91667,6 +93844,7 @@ self: { homepage = "http://github.com/kowey/hakyll-convert"; description = "Convert from other blog engines to Hakyll"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hakyll-elm" = callPackage @@ -91745,6 +93923,7 @@ self: { homepage = "http://github.com/haskell-suite/halberd/"; description = "A tool to generate missing import statements for Haskell modules"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "half_0_2_0_1" = callPackage @@ -91822,6 +94001,7 @@ self: { jailbreak = true; description = "The HAskelL File System (\"halfs\" -- intended for use on the HaLVM)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "halipeto" = callPackage @@ -91835,6 +94015,7 @@ self: { homepage = "http://github.com/peti/halipeto"; description = "Haskell Static Web Page Generator"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "halive" = callPackage @@ -91885,6 +94066,7 @@ self: { homepage = "https://github.com/timjb/halma"; description = "Library implementing Halma rules"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "haltavista" = callPackage @@ -91909,6 +94091,7 @@ self: { libraryHaskellDepends = [ base HCodecs newtype ]; description = "Binding to the OS level Midi services (fork of system-midi)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hamlet" = callPackage @@ -91942,6 +94125,7 @@ self: { jailbreak = true; description = "Haskell macro preprocessor"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hamtmap" = callPackage @@ -91954,6 +94138,7 @@ self: { homepage = "https://github.com/exclipy/pdata"; description = "A purely functional and persistent hash map"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hamusic" = callPackage @@ -91975,6 +94160,7 @@ self: { homepage = "https://troglodita.di.uminho.pt/svn/musica/work/HaMusic"; description = "Library to handle abstract music"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "handa-gdata" = callPackage @@ -92042,6 +94228,7 @@ self: { homepage = "https://bitbucket.org/bwbush/handa-opengl"; description = "Utility functions for OpenGL and GLUT"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "handle-like" = callPackage @@ -92075,6 +94262,7 @@ self: { homepage = "https://github.com/utdemir/handsy"; description = "A DSL to describe common shell operations and interpeters for running them locally and remotely"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "handwriting" = callPackage @@ -92084,8 +94272,8 @@ self: { }: mkDerivation { pname = "handwriting"; - version = "0.1.0.0"; - sha256 = "ce50861bc2b6957e34cc52d05cb6f7837806988bcc82edc30123e1525bdc79f9"; + version = "0.1.0.3"; + sha256 = "7e1b406d19b2f39b34910462dce214c7ca91bb9d78bf9fafb9f906dd44d5beaa"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -92133,6 +94321,7 @@ self: { jailbreak = true; description = "Simple Continuous Integration/Deployment System"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hans" = callPackage @@ -92199,6 +94388,7 @@ self: { ]; description = "Graphviz code generation with Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hapistrano" = callPackage @@ -92241,6 +94431,7 @@ self: { jailbreak = true; description = "Binding to the appindicator library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {appindicator = null;}; "happindicator3" = callPackage @@ -92258,6 +94449,7 @@ self: { homepage = "https://github.com/mlacorte/happindicator3"; description = "Binding to the appindicator library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {appindicator = null;}; "happraise" = callPackage @@ -92271,6 +94463,7 @@ self: { executableHaskellDepends = [ base directory filepath ]; description = "A small program for counting the comments in haskell source"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happs-hsp" = callPackage @@ -92284,6 +94477,7 @@ self: { base bytestring HAppS-Server hsp mtl plugins ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happs-hsp-template" = callPackage @@ -92300,6 +94494,7 @@ self: { ]; description = "Utilities for using HSP templates in HAppS applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happs-tutorial" = callPackage @@ -92325,6 +94520,7 @@ self: { jailbreak = true; description = "A Happstack Tutorial that is its own web 2.0-type demo."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack" = callPackage @@ -92361,6 +94557,7 @@ self: { homepage = "http://n-sch.de/happstack-auth"; description = "A Happstack Authentication Suite"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-authenticate_2_3_2" = callPackage @@ -92491,6 +94688,7 @@ self: { homepage = "http://happstack.com"; description = "Web related tools and services"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-data" = callPackage @@ -92514,6 +94712,7 @@ self: { homepage = "http://happstack.com"; description = "Happstack data manipulation libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-dlg" = callPackage @@ -92532,6 +94731,7 @@ self: { homepage = "http://patch-tag.com/r/cdsmith/happstack-dlg"; description = "Cross-request user interactions for Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-facebook" = callPackage @@ -92559,6 +94759,7 @@ self: { homepage = "http://src.seereason.com/happstack-facebook/"; description = "A package for building Facebook applications using Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-fastcgi" = callPackage @@ -92592,6 +94793,7 @@ self: { homepage = "http://www.happstack.com/"; description = "Support for using Fay with Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-fay-ajax" = callPackage @@ -92656,6 +94858,7 @@ self: { homepage = "http://www.happstack.com/"; description = "Support for using Heist templates in Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-helpers" = callPackage @@ -92681,6 +94884,7 @@ self: { homepage = "http://patch-tag.com/r/tphyahoo/HAppSHelpers/home"; description = "Convenience functions for Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-hsp" = callPackage @@ -92735,6 +94939,7 @@ self: { homepage = "http://happstack.com"; description = "Efficient relational queries on Haskell sets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-jmacro" = callPackage @@ -92782,6 +94987,7 @@ self: { ]; description = "monad-peel instances for Happstack types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-plugins" = callPackage @@ -92799,6 +95005,7 @@ self: { homepage = "http://happstack.com"; description = "The haskell application server stack + reload"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-server_7_3_9" = callPackage @@ -93042,6 +95249,7 @@ self: { homepage = "http://happstack.com"; description = "Event-based distributed state"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-static-routing" = callPackage @@ -93058,6 +95266,7 @@ self: { homepage = "https://github.com/scrive/happstack-static-routing"; description = "Support for static URL routing with overlap detection for Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-util" = callPackage @@ -93081,6 +95290,7 @@ self: { homepage = "http://happstack.com"; description = "Web framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-yui" = callPackage @@ -93103,6 +95313,7 @@ self: { homepage = "http://hub.darcs.net/dag/yui/browse/happstack-yui"; description = "Utilities for using YUI3 with Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happy_1_19_4" = callPackage @@ -93174,6 +95385,7 @@ self: { homepage = "https://github.com/cstrahan/happybara"; description = "Acceptance test framework for web applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happybara-webkit" = callPackage @@ -93195,6 +95407,7 @@ self: { homepage = "https://github.com/cstrahan/happybara/happybara-webkit"; description = "WebKit Happybara driver"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happybara-webkit-server" = callPackage @@ -93208,6 +95421,7 @@ self: { homepage = "https://github.com/cstrahan/happybara/happybara-webkit-server"; description = "WebKit Server binary for Happybara (taken from capybara-webkit)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "har" = callPackage @@ -93243,6 +95457,7 @@ self: { homepage = "http://www.davidb.org/darcs/harchive/"; description = "Networked content addressed backup and restore software"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openssl; inherit (pkgs) sqlite;}; "hardware-edsl" = callPackage @@ -93260,6 +95475,7 @@ self: { homepage = "https://github.com/markus-git/hardware-edsl"; description = "Deep embedding of hardware descriptions with code generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hark" = callPackage @@ -93279,6 +95495,7 @@ self: { homepage = "http://code.google.com/p/hark/"; description = "A Gentoo package query tool"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "harmony" = callPackage @@ -93303,6 +95520,7 @@ self: { ]; description = "A web service specification compiler that generates implementation and tests"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haroonga" = callPackage @@ -93319,6 +95537,7 @@ self: { libraryPkgconfigDepends = [ groonga ]; description = "Low level bindings for Groonga"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {groonga = null;}; "haroonga-httpd" = callPackage @@ -93338,6 +95557,7 @@ self: { jailbreak = true; description = "Yet another Groonga http server"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "harp" = callPackage @@ -93381,6 +95601,7 @@ self: { homepage = "http://github.com/nonowarn/has"; description = "Entity based records"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "has-th" = callPackage @@ -93393,6 +95614,7 @@ self: { homepage = "http://github.com/chrisdone/has-th"; description = "Template Haskell function for Has records"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hascal" = callPackage @@ -93410,6 +95632,7 @@ self: { homepage = "http://darcsden.com/mekeor/hascal"; description = "A minimalistic but extensible and precise calculator"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hascat" = callPackage @@ -93429,6 +95652,7 @@ self: { jailbreak = true; description = "Hascat Web Server"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hascat-lib" = callPackage @@ -93447,6 +95671,7 @@ self: { jailbreak = true; description = "Hascat Package"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hascat-setup" = callPackage @@ -93468,6 +95693,7 @@ self: { doHaddock = false; description = "Hascat Installation helper"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hascat-system" = callPackage @@ -93485,6 +95711,7 @@ self: { jailbreak = true; description = "Hascat System Package"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hash" = callPackage @@ -93505,6 +95732,7 @@ self: { homepage = "http://github.com/analytics/hash/"; description = "Hashing tools"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hashable_1_2_3_0" = callPackage @@ -93721,6 +95949,7 @@ self: { homepage = "https://github.com/wowus/hashable-generics"; description = "Automatically generates Hashable instances with GHC.Generics."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hashable-time" = callPackage @@ -93769,6 +95998,7 @@ self: { ]; description = "Hashed file storage support code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hashids" = callPackage @@ -93782,6 +96012,7 @@ self: { homepage = "http://hashids.org/"; description = "Hashids generates short, unique, non-sequential ids from numbers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hashmap" = callPackage @@ -93899,6 +96130,7 @@ self: { homepage = "http://huygens.functor.nl/hasim/"; description = "Process-Based Discrete Event Simulation library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hask" = callPackage @@ -93917,6 +96149,7 @@ self: { homepage = "http://github.com/ekmett/hask"; description = "Categories"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hask-home" = callPackage @@ -93936,6 +96169,7 @@ self: { homepage = "http://gregheartsfield.com/hask-home"; description = "Generate homepages for cabal packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskades" = callPackage @@ -93994,6 +96228,7 @@ self: { homepage = "http://github.com/ivanperez-keera/haskanoid"; description = "A breakout game written in Yampa using SDL"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "haskarrow" = callPackage @@ -94011,6 +96246,7 @@ self: { ]; description = "A dialect of haskell with order of execution based on dependency resolution"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskbot-core" = callPackage @@ -94097,6 +96333,7 @@ self: { homepage = "http://www.korgwal.com/haskeem/"; description = "A small scheme interpreter"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskeline_0_7_2_1" = callPackage @@ -94148,6 +96385,7 @@ self: { homepage = "http://community.haskell.org/~aslatter/code/haskeline-class"; description = "Class interface for working with Haskeline"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-aliyun" = callPackage @@ -94171,6 +96409,7 @@ self: { homepage = "https://github.com/yihuang/haskell-aliyun/"; description = "haskell client of aliyun service"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-awk" = callPackage @@ -94201,6 +96440,7 @@ self: { ]; description = "Transform text from the command-line using Haskell expressions"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-bcrypt" = callPackage @@ -94234,6 +96474,7 @@ self: { jailbreak = true; description = "BrainFuck interpreter"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-cnc" = callPackage @@ -94255,6 +96496,7 @@ self: { homepage = "http://software.intel.com/en-us/articles/intel-concurrent-collections-for-cc/"; description = "Library for parallel programming in the Intel Concurrent Collections paradigm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-coffee" = callPackage @@ -94297,6 +96539,7 @@ self: { jailbreak = true; description = "Small modules for a Haskell course in which Haskell is taught by implementing Prelude functionality"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-docs" = callPackage @@ -94363,6 +96606,7 @@ self: { homepage = "https://github.com/evolutics/haskell-formatter"; description = "Haskell source code formatter"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-ftp" = callPackage @@ -94391,6 +96635,7 @@ self: { homepage = "https://github.com/yihuang/haskell-ftp"; description = "A Haskell ftp server with configurable backend"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-generate" = callPackage @@ -94431,6 +96676,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Generate Haskell bindings for GObject Introspection capable libraries"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-linux" ]; }) {inherit (pkgs) glib; inherit (pkgs) gobjectIntrospection;}; "haskell-gi-base" = callPackage @@ -94448,6 +96694,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi-base"; description = "Foundation for libraries generated by haskell-gi"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {inherit (pkgs) glib;}; "haskell-import-graph" = callPackage @@ -94546,6 +96793,7 @@ self: { homepage = "http://github.com/comius/haskell-mpfr"; description = "Correctly-rounded arbitrary-precision floating-point arithmetic"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-mpi" = callPackage @@ -94681,6 +96929,7 @@ self: { homepage = "http://documentup.com/haskell-suite/haskell-names"; description = "Name resolution library for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-neo4j-client_0_3_1_4" = callPackage @@ -94793,6 +97042,7 @@ self: { homepage = "https://github.com/brooksbp/haskell-openflow"; description = "OpenFlow protocol in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-packages_0_2_4_3" = callPackage @@ -94879,6 +97129,7 @@ self: { homepage = "http://michaeldadams.org/projects/haskell-pdf-presenter/"; description = "Tool for presenting PDF-based presentations"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-platform-test" = callPackage @@ -94909,6 +97160,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/haskell-platform-test"; description = "A test system for the Haskell Platform environment"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-plot" = callPackage @@ -94926,6 +97178,7 @@ self: { homepage = "https://github.com/kaizhang/haskell-plot"; description = "A library for generating 2D plots painlessly"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-qrencode" = callPackage @@ -94968,6 +97221,7 @@ self: { ]; description = "Reflect Haskell types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-rules" = callPackage @@ -94979,6 +97233,7 @@ self: { libraryHaskellDepends = [ base syb ]; description = "A DSL for expressing natural deduction rules in Haskell"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-spacegoo" = callPackage @@ -95221,6 +97476,7 @@ self: { jailbreak = true; description = "Parse source to template-haskell abstract syntax"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-token-utils" = callPackage @@ -95246,6 +97502,7 @@ self: { homepage = "https://github.com/alanz/haskell-token-utils"; description = "Utilities to tie up tokens to an AST"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-tor" = callPackage @@ -95281,6 +97538,7 @@ self: { homepage = "http://github.com/GaloisInc/haskell-tor"; description = "A Haskell Tor Node"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-type-exts" = callPackage @@ -95295,6 +97553,7 @@ self: { homepage = "http://code.haskell.org/haskell-type-exts"; description = "A type checker for Haskell/haskell-src-exts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-typescript" = callPackage @@ -95319,6 +97578,7 @@ self: { homepage = "https://github.com/PeterScott/haskell-tyrant"; description = "Haskell implementation of the Tokyo Tyrant binary protocol"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-updater" = callPackage @@ -95356,6 +97616,7 @@ self: { homepage = "http://patch-tag.com/r/adept/haskell-xmpp/home"; description = "Haskell XMPP (eXtensible Message Passing Protocol, a.k.a. Jabber) library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell2010" = callPackage @@ -95369,6 +97630,7 @@ self: { homepage = "http://www.haskell.org/onlinereport/haskell2010/"; description = "Compatibility with Haskell 2010"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell98" = callPackage @@ -95386,6 +97648,7 @@ self: { homepage = "http://www.haskell.org/definition/"; description = "Compatibility with Haskell 98"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell98libraries" = callPackage @@ -95431,6 +97694,7 @@ self: { homepage = "http://twitter.com/khibino"; description = "Bracketed HDBC session for HaskellDB"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-connect-hdbc-catchio-mtl" = callPackage @@ -95447,6 +97711,7 @@ self: { homepage = "http://twitter.com/khibino"; description = "Bracketed HaskellDB HDBC session using MonadCatchIO-mtl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-connect-hdbc-catchio-tf" = callPackage @@ -95464,6 +97729,7 @@ self: { homepage = "http://twitter.com/khibino"; description = "Bracketed HaskellDB HDBC session using MonadCatchIO-transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-connect-hdbc-catchio-transformers" = callPackage @@ -95481,6 +97747,7 @@ self: { homepage = "http://twitter.com/khibino"; description = "Bracketed HaskellDB HDBC session using MonadCatchIO-transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-connect-hdbc-lifted" = callPackage @@ -95498,6 +97765,7 @@ self: { homepage = "http://twitter.com/khibino"; description = "Bracketed HaskellDB HDBC session using lifted-base"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-dynamic" = callPackage @@ -95514,6 +97782,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the dynamically loaded drivers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-flat" = callPackage @@ -95567,6 +97836,7 @@ self: { jailbreak = true; description = "HaskellDB support for the HDBC MySQL driver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-hdbc-odbc" = callPackage @@ -95635,6 +97905,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for HSQL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-hsql-mysql" = callPackage @@ -95654,6 +97925,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the HSQL MySQL driver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-hsql-odbc" = callPackage @@ -95673,6 +97945,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the HSQL ODBC driver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-hsql-oracle" = callPackage @@ -95712,6 +97985,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the HSQL PostgreSQL driver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-hsql-sqlite" = callPackage @@ -95751,6 +98025,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the HSQL SQLite3 driver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-th" = callPackage @@ -95775,6 +98050,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for WXHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskellscrabble" = callPackage @@ -95800,6 +98076,7 @@ self: { homepage = "http://www.github.com/happy0/haskellscrabble"; description = "A scrabble library capturing the core game logic of scrabble"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskellscript" = callPackage @@ -95863,6 +98140,7 @@ self: { homepage = "http://haskell.org/haskellwiki/HaskGame"; description = "Haskell game library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskheap" = callPackage @@ -95881,6 +98159,7 @@ self: { homepage = "https://github.com/Raynes/haskheap"; description = "Haskell bindings to refheap"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskhol-core" = callPackage @@ -95901,6 +98180,7 @@ self: { homepage = "http://haskhol.org"; description = "The core logical system of HaskHOL, an EDSL for HOL theorem proving"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskintex_0_5_0_2" = callPackage @@ -95997,13 +98277,12 @@ self: { }: mkDerivation { pname = "haskmon"; - version = "0.2.1.0"; - sha256 = "69ac7e21a62f20c2fce94db01c373dbd66876a0cb016ab25a99a9dedc4f62677"; + version = "0.2.2.0"; + sha256 = "8bdf7eb4ca3f41d24b3d05195835215b20327d034752fd18149c132dd82d7f0c"; libraryHaskellDepends = [ aeson base bytestring containers http-streams io-streams time vector ]; - jailbreak = true; description = "A haskell wrapper for PokeAPI.co (www.pokeapi.co)"; license = stdenv.lib.licenses.mit; }) {}; @@ -96031,6 +98310,7 @@ self: { homepage = "http://github.com/haskoin/haskoin"; description = "Implementation of the Bitcoin protocol"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoin-core" = callPackage @@ -96060,6 +98340,7 @@ self: { homepage = "http://github.com/haskoin/haskoin"; description = "Implementation of the core Bitcoin protocol features"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoin-crypto" = callPackage @@ -96084,6 +98365,7 @@ self: { homepage = "http://github.com/plaprade/haskoin-crypto"; description = "Implementation of Bitcoin cryptographic primitives"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoin-node" = callPackage @@ -96114,6 +98396,7 @@ self: { homepage = "http://github.com/haskoin/haskoin"; description = "Implementation of a Bitoin node"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoin-protocol" = callPackage @@ -96136,6 +98419,7 @@ self: { homepage = "http://github.com/plaprade/haskoin-protocol"; description = "Implementation of the Bitcoin network protocol messages"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoin-script" = callPackage @@ -96160,6 +98444,7 @@ self: { homepage = "http://github.com/plaprade/haskoin-script"; description = "Implementation of Bitcoin script parsing and evaluation"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoin-util" = callPackage @@ -96182,6 +98467,7 @@ self: { homepage = "http://github.com/plaprade/haskoin-util"; description = "Utility functions for the Network.Haskoin project"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoin-wallet" = callPackage @@ -96222,6 +98508,7 @@ self: { homepage = "http://github.com/haskoin/haskoin"; description = "Implementation of a Bitcoin SPV Wallet with BIP32 and multisig support"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoon" = callPackage @@ -96239,6 +98526,7 @@ self: { ]; description = "Web Application Abstraction"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoon-httpspec" = callPackage @@ -96254,6 +98542,7 @@ self: { ]; description = "Integrating HttpSpec with Haskoon"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoon-salvia" = callPackage @@ -96271,6 +98560,7 @@ self: { ]; description = "Integrating HttpSpec with Haskoon"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskore" = callPackage @@ -96296,6 +98586,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Haskore"; description = "The Haskore Computer Music System"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskore-realtime" = callPackage @@ -96314,6 +98605,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Haskore/"; description = "Routines for realtime playback of Haskore songs"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskore-supercollider" = callPackage @@ -96337,6 +98629,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/SuperCollider"; description = "Haskore back-end for SuperCollider"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskore-synthesizer" = callPackage @@ -96358,6 +98651,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Music rendering coded in Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskore-vintage" = callPackage @@ -96403,6 +98697,7 @@ self: { executableHaskellDepends = [ mtl old-time QuickCheck time wtk ]; description = "Loan calculator engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hasloGUI" = callPackage @@ -96421,6 +98716,7 @@ self: { ]; description = "Loan calculator Gtk GUI. Based on haslo (Haskell Loan) library."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hasparql-client" = callPackage @@ -96433,6 +98729,7 @@ self: { homepage = "https://github.com/lhpaladin/HaSparql-Client"; description = "This package enables to write SPARQL queries to remote endpoints"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haspell" = callPackage @@ -97296,6 +99593,7 @@ self: { homepage = "https://github.com/nikita-volkov/hasql-postgres"; description = "A \"PostgreSQL\" backend for the \"hasql\" library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hasql-postgres-options" = callPackage @@ -97312,6 +99610,7 @@ self: { homepage = "https://github.com/nikita-volkov/hasql-postgres-options"; description = "An \"optparse-applicative\" parser for \"hasql-postgres\""; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hasql-th" = callPackage @@ -97494,6 +99793,7 @@ self: { homepage = "https://github.com/agocorona/haste-perch"; description = "Create, navigate and modify the DOM tree with composable syntax, with the haste compiler"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hastily" = callPackage @@ -97560,6 +99860,7 @@ self: { homepage = "http://projects.haskell.org/hat/"; description = "The Haskell tracer, generating and viewing Haskell execution traces"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hatex-guide" = callPackage @@ -97576,6 +99877,7 @@ self: { ]; description = "HaTeX User's Guide"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hath" = callPackage @@ -97646,6 +99948,7 @@ self: { jailbreak = true; description = "Implementation of the rules of Love Letter"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hawitter" = callPackage @@ -97667,6 +99970,7 @@ self: { homepage = "http://d.hatena.ne.jp/xanxys/20100321/1269137834"; description = "A twitter client for GTK+. Beta version."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haxl" = callPackage @@ -97762,6 +100066,7 @@ self: { homepage = "https://github.com/joelteon/haxparse"; description = "Readable HaxBall replays"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haxr_3000_10_3_1" = callPackage @@ -97923,6 +100228,7 @@ self: { jailbreak = true; description = "Haskell bindings for the C Wayland library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) mesa; inherit (pkgs) wayland;}; "hayoo-cli" = callPackage @@ -97943,6 +100249,7 @@ self: { homepage = "https://github.com/Gonzih/hayoo-cli"; description = "Hayoo CLI"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hback" = callPackage @@ -97961,6 +100268,7 @@ self: { homepage = "http://hback.googlecode.com/"; description = "N-back memory game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hbayes" = callPackage @@ -97982,6 +100290,7 @@ self: { homepage = "http://www.alpheccar.org"; description = "Bayesian Networks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hbb" = callPackage @@ -98000,6 +100309,7 @@ self: { homepage = "https://bitbucket.org/bhris/hbb"; description = "Haskell Busy Bee, a backend for text editors"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hbcd" = callPackage @@ -98046,6 +100356,7 @@ self: { homepage = "http://www.dockerz.net/software/hbeat.html"; description = "A simple step sequencer GUI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) SDL_mixer;}; "hblas" = callPackage @@ -98065,6 +100376,7 @@ self: { homepage = "http://github.com/wellposed/hblas/"; description = "Human friendly BLAS and Lapack bindings for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) blas; inherit (pkgs) liblapack;}; "hblock" = callPackage @@ -98085,6 +100397,7 @@ self: { jailbreak = true; description = "A mutable vector that provides indexation on the datatype fields it stores"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hbro" = callPackage @@ -98114,6 +100427,7 @@ self: { homepage = "https://github.com/k0ral/hbro"; description = "Minimal extensible web-browser"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hbro-contrib" = callPackage @@ -98152,6 +100466,7 @@ self: { homepage = "http://www.bytelabs.org/hburg.html"; description = "Haskell Bottom Up Rewrite Generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hcc" = callPackage @@ -98207,6 +100522,7 @@ self: { homepage = "http://github.com/nfjinjing/hcheat/"; description = "A collection of code cheatsheet"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hchesslib" = callPackage @@ -98224,6 +100540,7 @@ self: { homepage = "https://github.com/nablaa/hchesslib"; description = "Chess library"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hcltest" = callPackage @@ -98287,6 +100604,7 @@ self: { homepage = "http://github.com/tbh/hcron"; description = "A simple job scheduler, which just runs some IO action at a given time"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hcube" = callPackage @@ -98306,6 +100624,7 @@ self: { ]; description = "Virtual Rubik's cube of arbitrary size"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hcwiid" = callPackage @@ -98368,6 +100687,7 @@ self: { homepage = "http://github.com/madhadron/hdaemonize"; description = "Library to handle the details of writing daemons for UNIX"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdbc-aeson" = callPackage @@ -98439,6 +100759,7 @@ self: { homepage = "https://github.com/s9gf4ult/hdbi"; description = "Haskell Database Independent interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdbi-conduit" = callPackage @@ -98460,6 +100781,7 @@ self: { homepage = "https://github.com/s9gf4ult/hdbi-conduit"; description = "Conduit glue for HDBI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdbi-postgresql" = callPackage @@ -98489,6 +100811,7 @@ self: { homepage = "https://github.com/s9gf4ult/hdbi-postgresql"; description = "PostgreSQL driver for hdbi"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdbi-sqlite" = callPackage @@ -98509,6 +100832,7 @@ self: { homepage = "https://github.com/s9gf4ult/hdbi-sqlite"; description = "SQlite driver for HDBI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdbi-tests" = callPackage @@ -98530,6 +100854,7 @@ self: { homepage = "https://github.com/s9gf4ult/hdbi-tests"; description = "test suite for testing HDBI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdevtools_0_1_0_6" = callPackage @@ -98702,6 +101027,7 @@ self: { ]; description = "Server-side HTTP Digest (RFC2617) in the CGI monad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdirect" = callPackage @@ -98719,6 +101045,7 @@ self: { homepage = "http://www.haskell.org/hdirect/"; description = "An IDL compiler for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdis86" = callPackage @@ -98731,6 +101058,7 @@ self: { homepage = "https://github.com/kmcallister/hdis86"; description = "Interface to the udis86 disassembler for x86 and x86-64 / AMD64"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdiscount" = callPackage @@ -98745,6 +101073,7 @@ self: { homepage = "https://github.com/jamwt/hdiscount"; description = "Haskell bindings to the Discount markdown library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {markdown = null;}; "hdm" = callPackage @@ -98758,6 +101087,7 @@ self: { executableHaskellDepends = [ base directory process unix vty ]; description = "a small display manager"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdocs_0_4_1_3" = callPackage @@ -98840,6 +101170,7 @@ self: { homepage = "https://github.com/PatrickMaier/HdpH"; description = "Haskell distributed parallel Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdph-closure" = callPackage @@ -98857,6 +101188,7 @@ self: { homepage = "https://github.com/PatrickMaier/HdpH"; description = "Explicit closures in Haskell distributed parallel Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdr-histogram" = callPackage @@ -98876,6 +101208,7 @@ self: { homepage = "http://github.com/joshbohde/hdr-histogram#readme"; description = "Haskell implementation of High Dynamic Range (HDR) Histograms"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "headergen" = callPackage @@ -99028,6 +101361,7 @@ self: { libraryHaskellDepends = [ base cereal crypto-api hF2 ]; description = "Elliptic Curve Cryptography for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hedis_0_6_9" = callPackage @@ -99211,6 +101545,7 @@ self: { homepage = "https://bitbucket.org/dpwiz/hedn"; description = "EDN parsing and encoding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hein" = callPackage @@ -99284,7 +101619,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "heist" = callPackage + "heist_0_14_1_1" = callPackage ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html , bytestring, containers, directory, directory-tree, dlist, either , filepath, hashable, map-syntax, MonadCatchIO-transformers, mtl @@ -99306,6 +101641,29 @@ self: { homepage = "http://snapframework.com/"; description = "An Haskell template system supporting both HTML5 and XML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "heist" = callPackage + ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html + , bytestring, containers, directory, directory-tree, dlist, either + , filepath, hashable, map-syntax, MonadCatchIO-transformers, mtl + , process, random, text, time, transformers, unordered-containers + , vector, xmlhtml + }: + mkDerivation { + pname = "heist"; + version = "0.14.1.2"; + sha256 = "e8609f87a31cd750ceab30f1eeb43dc098ce603f113d5d17bacfa19670139f7e"; + libraryHaskellDepends = [ + aeson attoparsec base blaze-builder blaze-html bytestring + containers directory directory-tree dlist either filepath hashable + map-syntax MonadCatchIO-transformers mtl process random text time + transformers unordered-containers vector xmlhtml + ]; + homepage = "http://snapframework.com/"; + description = "An Haskell template system supporting both HTML5 and XML"; + license = stdenv.lib.licenses.bsd3; }) {}; "heist-aeson" = callPackage @@ -99322,6 +101680,7 @@ self: { ]; description = "Use JSON directly from Heist templates"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "heist-async" = callPackage @@ -99360,6 +101719,7 @@ self: { homepage = "https://github.com/philopon/helics"; description = "New Relic® agent SDK wrapper for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {newrelic-collector-client = null; newrelic-common = null; newrelic-transaction = null;}; @@ -99380,6 +101740,7 @@ self: { homepage = "https://github.com/philopon/helics"; description = "New Relic® agent SDK wrapper for wai"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "helisp" = callPackage @@ -99417,6 +101778,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/bin/view/Helium/WebHome"; description = "The Helium Compiler"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "helix" = callPackage @@ -99466,6 +101828,7 @@ self: { executableHaskellDepends = [ base transformers utf8-string ]; description = "A Haskell shell based on shell-conduit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hellage" = callPackage @@ -99486,6 +101849,7 @@ self: { homepage = "http://bitcheese.net/wiki/hellnet/hellage"; description = "Distributed hackage mirror"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hellnet" = callPackage @@ -99511,6 +101875,7 @@ self: { homepage = "http://bitcheese.net/wiki/hellnet/hspawn"; description = "Simple, distributed, anonymous data sharing network"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hello" = callPackage @@ -99549,6 +101914,7 @@ self: { homepage = "http://github.com/switchface/helm"; description = "A functionally reactive game engine"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "help-esb" = callPackage @@ -99583,6 +101949,7 @@ self: { ]; description = "A module music mixer and player"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hemkay-core" = callPackage @@ -99645,6 +102012,7 @@ self: { homepage = "https://github.com/selectel/hen"; description = "Haskell bindings to Xen hypervisor interface"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {xenctrl = null;}; "henet" = callPackage @@ -99659,6 +102027,7 @@ self: { ]; description = "Bindings and high level interface for to ENet v1.3.9"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hepevt" = callPackage @@ -99670,6 +102039,7 @@ self: { libraryHaskellDepends = [ bytestring haskell2010 lha ]; description = "HEPEVT parser"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "her-lexer" = callPackage @@ -99682,6 +102052,7 @@ self: { homepage = "http://personal.cis.strath.ac.uk/~conor/pub/she"; description = "A lexer for Haskell source code"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "her-lexer-parsec" = callPackage @@ -99693,6 +102064,7 @@ self: { libraryHaskellDepends = [ base her-lexer parsec transformers ]; description = "Parsec frontend to \"her-lexer\" for Haskell source code"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "herbalizer" = callPackage @@ -99711,6 +102083,7 @@ self: { homepage = "https://github.com/danchoi/herbalizer"; description = "HAML to ERB translator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "here_1_2_6" = callPackage @@ -99798,6 +102171,7 @@ self: { ]; description = "Haskell Equational Reasoning Model-to-Implementation Tunnel"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hermit-syb" = callPackage @@ -99813,6 +102187,7 @@ self: { ]; description = "HERMIT plugin for optimizing Scrap-Your-Boilerplate traversals"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hero-club-five-tenets" = callPackage @@ -99876,6 +102251,7 @@ self: { ]; description = "A library for compiling and serving static web assets"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "herringbone-embed" = callPackage @@ -99892,6 +102268,7 @@ self: { ]; description = "Embed preprocessed web assets in your executable with Template Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "herringbone-wai" = callPackage @@ -99908,6 +102285,7 @@ self: { ]; description = "Wai adapter for the Herringbone web asset preprocessor"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hesh" = callPackage @@ -99918,8 +102296,8 @@ self: { }: mkDerivation { pname = "hesh"; - version = "1.0.0"; - sha256 = "22244996bb3bd911aff18e8008454f9407034a8422ebddbe76736248e6955aab"; + version = "1.4.0"; + sha256 = "d8848e58c13556159b11a8693029563fcfc91270da7115ea8ed5a86dd86f13ca"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -99930,10 +102308,10 @@ self: { directory filepath hackage-db haskell-src-exts parsec process text time uniplate ]; - jailbreak = true; homepage = "https://github.com/jekor/hesh"; description = "the Haskell Extensible Shell: Haskell for Bash-style scripts"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hesql" = callPackage @@ -99952,6 +102330,7 @@ self: { jailbreak = true; description = "Haskell's embedded SQL"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hetero-map" = callPackage @@ -99980,6 +102359,7 @@ self: { homepage = "http://web.comlab.ox.ac.uk/oucl/work/ian.lynagh/Hetris/"; description = "Text Tetris"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ncurses;}; "heukarya" = callPackage @@ -99995,6 +102375,7 @@ self: { homepage = "https://github.com/t3476/heukarya"; description = "A genetic programming based on tree structure"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hevolisa" = callPackage @@ -100010,6 +102391,7 @@ self: { ]; description = "Genetic Mona Lisa problem in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hevolisa-dph" = callPackage @@ -100027,6 +102409,7 @@ self: { ]; description = "Genetic Mona Lisa problem in Haskell - using Data Parallel Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hex" = callPackage @@ -100098,6 +102481,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Hexpat/"; description = "Chunked XML parsing using iteratees"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hexpat-lens" = callPackage @@ -100148,6 +102532,7 @@ self: { ]; description = "Picklers for de/serialising Generic data types to and from XML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hexpat-tagsoup" = callPackage @@ -100190,6 +102575,7 @@ self: { ]; description = "Hexadecimal ByteString literals, with placeholders that bind variables"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hexstring" = callPackage @@ -100256,6 +102642,7 @@ self: { executableSystemDepends = [ doublefann ]; description = "Haskell binding to the FANN library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {doublefann = null; fann = null;}; "hfd" = callPackage @@ -100275,6 +102662,7 @@ self: { jailbreak = true; description = "Flash debugger"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hfiar" = callPackage @@ -100291,9 +102679,10 @@ self: { homepage = "http://github.com/elbrujohalcon/hfiar"; description = "Four in a Row in Haskell!!"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hflags" = callPackage + "hflags_0_4" = callPackage ({ mkDerivation, base, containers, template-haskell, text }: mkDerivation { pname = "hflags"; @@ -100303,6 +102692,19 @@ self: { homepage = "http://github.com/errge/hflags"; description = "Command line flag parser, very similar to Google's gflags"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hflags" = callPackage + ({ mkDerivation, base, containers, template-haskell, text }: + mkDerivation { + pname = "hflags"; + version = "0.4.1"; + sha256 = "147d65cba2959b682e4a33378a80766a1011a78ed767a4d08ae463af6d428a0c"; + libraryHaskellDepends = [ base containers template-haskell text ]; + homepage = "http://github.com/errge/hflags"; + description = "Command line flag parser, very similar to Google's gflags"; + license = stdenv.lib.licenses.asl20; }) {}; "hfmt" = callPackage @@ -100330,6 +102732,7 @@ self: { homepage = "http://github.com/danstiner/hfmt"; description = "Haskell source code formatter"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hfoil" = callPackage @@ -100349,6 +102752,7 @@ self: { executableHaskellDepends = [ base ]; description = "Hess-Smith panel code for inviscid 2-d airfoil analysis"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hformat" = callPackage @@ -100394,6 +102798,7 @@ self: { homepage = "http://github.com/cmh/Hfractal"; description = "OpenGL fractal renderer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hfsevents_0_1_5" = callPackage @@ -100436,6 +102841,7 @@ self: { homepage = "http://www.fing.edu.uy/inco/proyectos/fusion"; description = "A library for fusing a subset of Haskell programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hg-buildpackage" = callPackage @@ -100454,6 +102860,7 @@ self: { ]; description = "Tools to help manage Debian packages with Mercurial"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgal" = callPackage @@ -100476,6 +102883,7 @@ self: { libraryHaskellDepends = [ array base haskell98 mtl ]; description = "Haskell Genetic Algorithm Library"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgdbmi" = callPackage @@ -100530,6 +102938,7 @@ self: { homepage = "http://www.glyc.dc.uba.ar/intohylo/hgen.php"; description = "Random generation of modal and hybrid logic formulas"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgeometric" = callPackage @@ -100542,6 +102951,7 @@ self: { homepage = "ftp://ftp.cs.man.ac.uk/pub/toby/gpc/"; description = "A geometric library with bindings to GPC"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgeometry" = callPackage @@ -100564,6 +102974,7 @@ self: { homepage = "http://fstaals.net/software/hgeometry"; description = "Data types for geometric objects, geometric algorithms, and data structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgettext" = callPackage @@ -100605,6 +103016,7 @@ self: { homepage = "https://github.com/noteed/hgithub"; description = "Haskell bindings to the GitHub API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgl-example" = callPackage @@ -100641,6 +103053,7 @@ self: { homepage = "http://github.com/polux/hgom"; description = "An haskell port of the java version of gom"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgopher" = callPackage @@ -100690,6 +103103,7 @@ self: { homepage = "https://github.com/mjakob/hgrib"; description = "Unofficial bindings for GRIB API"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {grib_api = null;}; "hharp" = callPackage @@ -100704,6 +103118,7 @@ self: { homepage = "http://www.harphttp.org"; description = "Binding to libharp"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {harp = null;}; "hi" = callPackage @@ -100775,6 +103190,7 @@ self: { homepage = "http://hiccup.googlecode.com/"; description = "Relatively efficient Tcl interpreter with support for basic operations"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hichi" = callPackage @@ -100788,6 +103204,7 @@ self: { executableHaskellDepends = [ array base bytestring mtl network ]; description = "haskell robot for IChat protocol"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hid_0_2_1" = callPackage @@ -100840,6 +103257,7 @@ self: { libraryHaskellDepends = [ base containers HUnit mtl multiset ]; description = "Automated clustering of arbitrary elements in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hierarchical-clustering" = callPackage @@ -100873,6 +103291,7 @@ self: { jailbreak = true; description = "Draw diagrams of dendrograms made by hierarchical-clustering"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hierarchical-exceptions" = callPackage @@ -100924,6 +103343,7 @@ self: { homepage = "http://github.com/paolino/hiernotify"; description = "Notification library for a filesystem hierarchy"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "highWaterMark" = callPackage @@ -100938,6 +103358,7 @@ self: { homepage = "http://www.cs.mu.oz.au/~bjpop/code.html"; description = "Memory usage statistics"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "higher-leveldb" = callPackage @@ -100960,6 +103381,7 @@ self: { homepage = "https://github.com/jeremyjh/higher-leveldb"; description = "A rich monadic API for working with leveldb databases"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "higherorder" = callPackage @@ -100973,6 +103395,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Some higher order functions for Bool and []"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "highjson" = callPackage @@ -100992,6 +103415,7 @@ self: { homepage = "https://github.com/agrafix/highjson"; description = "Very fast JSON serialisation and parsing library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "highlight-versions" = callPackage @@ -101242,6 +103666,7 @@ self: { homepage = "http://github.com/Fuuzetsu/himg"; description = "Simple gtk2hs image viewer. Point it at an image and fire away."; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "himpy" = callPackage @@ -101265,6 +103690,7 @@ self: { homepage = "https://github.com/pyr/himpy"; description = "multithreaded snmp poller for riemann"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hindent_4_4_1" = callPackage @@ -101440,6 +103866,7 @@ self: { libraryHaskellDepends = [ base hinduce-missingh layout ]; description = "Interface and utilities for classifiers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hinduce-classifier-decisiontree" = callPackage @@ -101455,6 +103882,7 @@ self: { ]; description = "Decision Tree Classifiers for hInduce"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hinduce-examples" = callPackage @@ -101473,6 +103901,7 @@ self: { ]; description = "Example data for hInduce"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hinduce-missingh" = callPackage @@ -101598,7 +104027,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hint" = callPackage + "hint_0_4_2_3" = callPackage ({ mkDerivation, base, directory, exceptions, extensible-exceptions , filepath, ghc, ghc-mtl, ghc-paths, HUnit, mtl, random, unix }: @@ -101618,6 +104047,49 @@ self: { homepage = "http://hub.darcs.net/jcpetruzza/hint"; description = "Runtime Haskell interpreter (GHC API wrapper)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hint" = callPackage + ({ mkDerivation, base, directory, exceptions, extensible-exceptions + , filepath, ghc, ghc-mtl, ghc-paths, HUnit, mtl, random, unix + }: + mkDerivation { + pname = "hint"; + version = "0.4.3"; + sha256 = "5f66ecbd8e36b4c277c9a8603f1218bf6fbfab086a5deeeeb5713a2903af7ddb"; + libraryHaskellDepends = [ + base directory exceptions extensible-exceptions filepath ghc + ghc-mtl ghc-paths mtl random unix + ]; + testHaskellDepends = [ + base directory exceptions extensible-exceptions filepath HUnit mtl + ]; + jailbreak = true; + doCheck = false; + homepage = "https://github.com/mvdan/hint"; + description = "Runtime Haskell interpreter (GHC API wrapper)"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "hint_0_5_0" = callPackage + ({ mkDerivation, base, directory, exceptions, extensible-exceptions + , filepath, ghc, ghc-paths, HUnit, mtl, random, unix + }: + mkDerivation { + pname = "hint"; + version = "0.5.0"; + sha256 = "0e8275937a8a59268e720b387be721309b1303b942bd857ed30f29b0d63e9279"; + libraryHaskellDepends = [ + base directory exceptions filepath ghc ghc-paths mtl random unix + ]; + testHaskellDepends = [ + base directory exceptions extensible-exceptions filepath HUnit + ]; + homepage = "https://github.com/mvdan/hint"; + description = "Runtime Haskell interpreter (GHC API wrapper)"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hint-server" = callPackage @@ -101646,6 +104118,7 @@ self: { homepage = "http://www.cs.mu.oz.au/~bjpop/code.html"; description = "Space Invaders"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hinze-streams" = callPackage @@ -101658,6 +104131,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/hinze-streams"; description = "Streams and Unique Fixed Points"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hip" = callPackage @@ -101677,6 +104151,7 @@ self: { homepage = "https://github.com/lehins/hip"; description = "Haskell Image Processing (HIP) Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hipbot" = callPackage @@ -101719,6 +104194,7 @@ self: { ]; description = "Hipchat API bindings in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hipe" = callPackage @@ -101735,6 +104211,7 @@ self: { homepage = "http://fstaals.net/software/hipe"; description = "Support for reading and writing ipe7 files (http://ipe7.sourceforge.net)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hips" = callPackage @@ -101769,6 +104246,7 @@ self: { ]; description = "IRC client"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hirt" = callPackage @@ -101791,6 +104269,7 @@ self: { homepage = "https://people.ksp.sk/~ivan/hirt"; description = "Calculates IRT 2PL and 3PL models"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hissmetrics" = callPackage @@ -101808,6 +104287,7 @@ self: { homepage = "https://github.com/prowdsponsor/hissmetrics"; description = "Unofficial API bindings to KISSmetrics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hist-pl" = callPackage @@ -101833,6 +104313,7 @@ self: { homepage = "https://github.com/kawu/hist-pl/tree/master/umbrella"; description = "Umbrella package for the historical dictionary of Polish"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hist-pl-dawg" = callPackage @@ -101865,6 +104346,7 @@ self: { homepage = "https://github.com/kawu/hist-pl/tree/master/fusion"; description = "Merging historical dictionary with PoliMorf"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hist-pl-lexicon" = callPackage @@ -101896,6 +104378,7 @@ self: { homepage = "https://github.com/kawu/hist-pl/tree/master/lmf"; description = "LMF parsing for the historical dictionary of Polish"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hist-pl-transliter" = callPackage @@ -101995,6 +104478,7 @@ self: { jailbreak = true; description = "Extract the interesting bits from shell history"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hit_0_6_2" = callPackage @@ -102096,6 +104580,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Libraries_and_tools/HJS"; description = "JavaScript Parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hjsmin_0_1_4_7" = callPackage @@ -102376,6 +104861,7 @@ self: { homepage = "https://github.com/seagreen/hjsonschema"; description = "JSON Schema library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hkdf" = callPackage @@ -102430,6 +104916,7 @@ self: { homepage = "http://people.ksp.sk/~ivan/hlbfgsb"; description = "Haskell binding to L-BFGS-B version 3.0"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gfortran;}; "hlcm" = callPackage @@ -102452,6 +104939,7 @@ self: { homepage = "http://membres-liglab.imag.fr/termier/HLCM/hlcm.html"; description = "Fast algorithm for mining closed frequent itemsets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hleap" = callPackage @@ -102692,6 +105180,7 @@ self: { homepage = "http://hledger.org"; description = "A pie chart image generator for the hledger accounting tool"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hledger-diff" = callPackage @@ -102921,6 +105410,7 @@ self: { homepage = "http://hledger.org"; description = "A curses-style console interface for the hledger accounting tool"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hledger-web_0_24_1" = callPackage @@ -103072,6 +105562,7 @@ self: { homepage = "http://github.com/aycanirican/hlibev"; description = "FFI interface to libev"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {ev = null;}; "hlibfam" = callPackage @@ -103084,6 +105575,7 @@ self: { librarySystemDepends = [ fam ]; description = "FFI interface to libFAM"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) fam;}; "hlibgit2_0_18_0_13" = callPackage @@ -103424,6 +105916,7 @@ self: { homepage = "http://www.pontarius.org/sub-projects/hlogger/"; description = "Simple, concurrent, extendable and easy-to-use logging library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hlongurl" = callPackage @@ -103487,6 +105980,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hly"; description = "Haskell LilyPond"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmark" = callPackage @@ -103506,6 +106000,7 @@ self: { homepage = "http://bitcheese.net/wiki/code/hmark"; description = "A tool and library for Markov chains based text generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmarkup" = callPackage @@ -103519,6 +106014,7 @@ self: { ]; description = "Simple wikitext-like markup format implementation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmatrix_0_16_1_0" = callPackage @@ -103679,6 +106175,7 @@ self: { homepage = "http://code.haskell.org/~thielema/hmatrix-banded/"; description = "HMatrix interface to LAPACK functions for banded matrices"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) liblapack;}; "hmatrix-csv" = callPackage @@ -103827,6 +106324,7 @@ self: { homepage = "http://github.com/alanfalloon/hmatrix-mmap"; description = "Memory map Vector from disk into memory efficiently"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmatrix-nipals" = callPackage @@ -103841,6 +106339,7 @@ self: { homepage = "http://github.com/alanfalloon/hmatrix-nipals"; description = "NIPALS method for Principal Components Analysis on large data-sets"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmatrix-quadprogpp" = callPackage @@ -103853,6 +106352,7 @@ self: { librarySystemDepends = [ QuadProgpp ]; description = "Bindings to the QuadProg++ quadratic programming library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {QuadProgpp = null;}; "hmatrix-repa" = callPackage @@ -103865,6 +106365,7 @@ self: { homepage = "http://code.haskell.org/hmatrix-repa"; description = "Adaptors for interoperability between hmatrix and repa"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmatrix-special" = callPackage @@ -103877,6 +106378,7 @@ self: { homepage = "https://github.com/albertoruiz/hmatrix"; description = "Interface to GSL special functions"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hmatrix-static" = callPackage @@ -103894,6 +106396,7 @@ self: { homepage = "http://code.haskell.org/hmatrix-static/"; description = "hmatrix with vector and matrix sizes encoded in types"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmatrix-svdlibc" = callPackage @@ -103910,6 +106413,7 @@ self: { homepage = "http://github.com/bgamari/hmatrix-svdlibc"; description = "SVDLIBC bindings for HMatrix"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmatrix-syntax" = callPackage @@ -103927,6 +106431,7 @@ self: { homepage = "http://github.com/reinerp/hmatrix-syntax"; description = "MATLAB-like syntax for hmatrix vectors and matrices"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmatrix-tests" = callPackage @@ -103960,6 +106465,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hmeap"; description = "Haskell Meapsoft Parser"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmeap-utils" = callPackage @@ -103980,6 +106486,7 @@ self: { homepage = "http://slavepianos.org/rd/?t=hmeap-utils"; description = "Haskell Meapsoft Parser Utilities"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmemdb" = callPackage @@ -104009,18 +106516,20 @@ self: { jailbreak = true; description = "CLI fuzzy finder and launcher"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmidi" = callPackage ({ mkDerivation, base, stm }: mkDerivation { pname = "hmidi"; - version = "0.2.2.0"; - sha256 = "8b2924618203f50042cec2bdf6724a20ebd8cd41bfff8b241e6e0d960c8718ce"; + version = "0.2.2.1"; + sha256 = "5e81917354f6bf85a398b1fd5c910e4545c0a20c27f5858eadeb5b94bb2c4e97"; libraryHaskellDepends = [ base stm ]; homepage = "http://code.haskell.org/~bkomuves/"; description = "Binding to the OS level MIDI services"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hmk" = callPackage @@ -104041,6 +106550,7 @@ self: { homepage = "http://www.github.com/mboes/hmk"; description = "A make alternative based on Plan9's mk"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmm" = callPackage @@ -104057,6 +106567,7 @@ self: { homepage = "https://github.com/mikeizbicki/hmm"; description = "A hidden markov model library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmm-hmatrix" = callPackage @@ -104076,6 +106587,7 @@ self: { homepage = "http://hub.darcs.net/thielema/hmm-hmatrix"; description = "Hidden Markov Models using HMatrix primitives"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmp3" = callPackage @@ -104097,6 +106609,7 @@ self: { homepage = "http://www.cse.unsw.edu.au/~dons/hmp3.html"; description = "An ncurses mp3 player written in Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ncurses;}; "hmpfr" = callPackage @@ -104110,6 +106623,7 @@ self: { homepage = "http://code.google.com/p/hmpfr/"; description = "Haskell binding to the MPFR library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) mpfr;}; "hmt" = callPackage @@ -104166,6 +106680,7 @@ self: { jailbreak = true; description = "Interpreter for the MUMPS langugae"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hnetcdf" = callPackage @@ -104197,6 +106712,7 @@ self: { homepage = "https://github.com/ian-ross/hnetcdf"; description = "Haskell NetCDF library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) netcdf;}; "hnix" = callPackage @@ -104240,6 +106756,7 @@ self: { homepage = "http://github.com/alpmestan/hnn"; description = "A reasonably fast and simple neural network library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hnop" = callPackage @@ -104287,6 +106804,7 @@ self: { ]; description = "A Haskell implementation of OAuth 1.0a protocol."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoauth2_0_4_3" = callPackage @@ -104502,6 +107020,7 @@ self: { homepage = "http://svalaskevicius.github.io/hob/"; description = "A source code editor aiming for the convenience of use"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hobbes" = callPackage @@ -104521,6 +107040,7 @@ self: { homepage = "http://github.com/jhickner/hobbes"; description = "A small file watcher for OSX"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hobbits" = callPackage @@ -104539,6 +107059,7 @@ self: { jailbreak = true; description = "A library for canonically representing terms with binding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoe" = callPackage @@ -104570,6 +107091,7 @@ self: { jailbreak = true; description = "defining @mtl@-ready monads as * -> * fixed-points"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hog" = callPackage @@ -104588,6 +107110,7 @@ self: { jailbreak = true; description = "Simple IRC logger bot"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hogg" = callPackage @@ -104606,6 +107129,7 @@ self: { homepage = "http://www.kfish.org/software/hogg/"; description = "Library and tools to manipulate the Ogg container format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hogre" = callPackage @@ -104622,6 +107146,7 @@ self: { homepage = "http://anttisalonen.github.com/hogre"; description = "Haskell binding to a subset of OGRE"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {OGRE = null; OgreMain = null; cgen-hs = null; grgen = null;}; "hogre-examples" = callPackage @@ -104637,6 +107162,7 @@ self: { homepage = "http://github.com/anttisalonen/hogre-examples"; description = "Examples for using Hogre"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {OgreMain = null;}; "hois" = callPackage @@ -104653,6 +107179,7 @@ self: { jailbreak = true; description = "OIS bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {OIS = null;}; "hoist-error" = callPackage @@ -104689,6 +107216,7 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Higher kinded type removal"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "holey-format" = callPackage @@ -104816,6 +107344,7 @@ self: { homepage = "http://www-users.cs.york.ac.uk/~ndm/homeomorphic/"; description = "Homeomorphic Embedding Test"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hommage" = callPackage @@ -104829,6 +107358,7 @@ self: { ]; description = "Haskell Offline Music Manipulation And Generation EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hommage-ds" = callPackage @@ -104868,6 +107398,7 @@ self: { homepage = "https://github.com/mgajda/homplexity"; description = "Haskell code quality tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "honi" = callPackage @@ -104884,6 +107415,7 @@ self: { testSystemDepends = [ freenect OpenNI2 ]; description = "OpenNI 2 binding"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {OpenNI2 = null; inherit (pkgs) freenect;}; "honk" = callPackage @@ -104896,6 +107428,7 @@ self: { homepage = "https://lambda.xyz/honk/"; description = "Cross-platform interface to the PC speaker"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hoobuddy" = callPackage @@ -104941,6 +107474,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Dummy package to disable Hood without having to remove all the calls to observe"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hood2" = callPackage @@ -104971,6 +107505,7 @@ self: { jailbreak = true; description = "A small, toy roguelike"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoodle" = callPackage @@ -104991,6 +107526,7 @@ self: { homepage = "http://ianwookim.org/hoodle"; description = "Executable for hoodle"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoodle-builder" = callPackage @@ -105007,6 +107543,7 @@ self: { ]; description = "text builder for hoodle file format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoodle-core" = callPackage @@ -105040,6 +107577,7 @@ self: { homepage = "http://ianwookim.org/hoodle"; description = "Core library for hoodle"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXi;}; "hoodle-extra" = callPackage @@ -105066,6 +107604,7 @@ self: { homepage = "http://ianwookim.org/hoodle"; description = "extra hoodle tools"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoodle-parser" = callPackage @@ -105084,6 +107623,7 @@ self: { homepage = "http://ianwookim.org/hoodle"; description = "Hoodle file parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoodle-publish" = callPackage @@ -105111,6 +107651,7 @@ self: { homepage = "http://ianwookim.org/hoodle"; description = "publish hoodle files as a static web site"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoodle-render" = callPackage @@ -105131,6 +107672,7 @@ self: { ]; description = "Hoodle file renderer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoodle-types" = callPackage @@ -105146,6 +107688,7 @@ self: { ]; description = "Data types for programs for hoodle file format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoogle_4_2_36" = callPackage @@ -105506,6 +108049,7 @@ self: { homepage = "https://bitbucket.org/pvdbrand/hoovie"; description = "Haskell Media Server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hopencc" = callPackage @@ -105524,6 +108068,7 @@ self: { homepage = "https://github.com/MnO2/hopencc"; description = "Haskell binding to libopencc"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {opencc = null;}; "hopencl" = callPackage @@ -105544,6 +108089,7 @@ self: { homepage = "https://github.com/merijn/hopencl"; description = "Haskell bindings for OpenCL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {OpenCL = null;}; "hopenpgp-tools_0_13" = callPackage @@ -105709,6 +108255,7 @@ self: { homepage = "https://github.com/imperialhopfield/hopfield"; description = "Hopfield Networks, Boltzmann Machines and Clusters"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {MagickCore = null; inherit (pkgs) imagemagick;}; "hopfield-networks" = callPackage @@ -105815,6 +108362,7 @@ self: { homepage = "http://akc.is/hops"; description = "Handy Operations on Power Series"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoq" = callPackage @@ -105834,6 +108382,7 @@ self: { homepage = "http://github.com/valis/hoq"; description = "A language based on homotopy type theory with an interval type"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "horizon" = callPackage @@ -105949,6 +108498,7 @@ self: { homepage = "https://github.com/yihuang/hosts-server"; description = "An dns server which is extremely easy to config"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hothasktags" = callPackage @@ -105969,6 +108519,7 @@ self: { homepage = "http://github.com/luqui/hothasktags"; description = "Generates ctags for Haskell, incorporating import lists and qualified imports"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hotswap" = callPackage @@ -106069,6 +108620,7 @@ self: { homepage = "https://gitlab.com/doshitan/hourglass-fuzzy-parsing"; description = "A small library for parsing more human friendly date/time formats"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hp2any-core" = callPackage @@ -106086,6 +108638,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Hp2any"; description = "Heap profiling helper library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hp2any-graph" = callPackage @@ -106108,6 +108661,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Hp2any"; description = "Real-time heap graphing utility and profile stream server with a reusable graphing module"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; "hp2any-manager" = callPackage @@ -106128,6 +108682,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Hp2any"; description = "A utility to visualise and compare heap profiles"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hp2html" = callPackage @@ -106162,27 +108717,28 @@ self: { }) {}; "hpack" = callPackage - ({ mkDerivation, aeson, aeson-qq, base, base-compat, deepseq - , directory, filepath, Glob, hspec, interpolate, mockery, temporary - , text, unordered-containers, yaml + ({ mkDerivation, aeson, aeson-qq, base, base-compat, containers + , deepseq, directory, filepath, Glob, hspec, interpolate, mockery + , temporary, text, unordered-containers, yaml }: mkDerivation { pname = "hpack"; - version = "0.10.0"; - sha256 = "1c35a222ab76c418115e9fca2b88eea0ac63fd75149155440ff54d9ae7278f7a"; + version = "0.11.0"; + sha256 = "7ba2b43771ae71a5ae01706ef8c903abe03f8fbb89e023c8ab823af501b4494b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson base base-compat deepseq directory filepath Glob text - unordered-containers yaml + aeson base base-compat containers deepseq directory filepath Glob + text unordered-containers yaml ]; executableHaskellDepends = [ - aeson base base-compat deepseq directory filepath Glob text - unordered-containers yaml + aeson base base-compat containers deepseq directory filepath Glob + text unordered-containers yaml ]; testHaskellDepends = [ - aeson aeson-qq base base-compat deepseq directory filepath Glob - hspec interpolate mockery temporary text unordered-containers yaml + aeson aeson-qq base base-compat containers deepseq directory + filepath Glob hspec interpolate mockery temporary text + unordered-containers yaml ]; jailbreak = true; homepage = "https://github.com/sol/hpack#readme"; @@ -106248,6 +108804,7 @@ self: { homepage = "http://haskell.hpage.com"; description = "A scrapbook for Haskell developers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpapi" = callPackage @@ -106260,6 +108817,7 @@ self: { librarySystemDepends = [ papi ]; description = "Binding for the PAPI library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {papi = null;}; "hpaste" = callPackage @@ -106289,6 +108847,7 @@ self: { homepage = "http://hpaste.org/"; description = "Haskell paste web site"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpasteit" = callPackage @@ -106310,6 +108869,7 @@ self: { homepage = "http://github.com/parcs/hpasteit"; description = "A command-line client for hpaste.org"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpc_0_6_0_2" = callPackage @@ -106408,19 +108968,20 @@ self: { ]; description = "Tracer with AJAX interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpdft" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, directory - , file-embed, parsec, text, utf8-string, zlib + ({ mkDerivation, attoparsec, base, binary, bytestring, containers + , directory, file-embed, parsec, text, utf8-string, zlib }: mkDerivation { pname = "hpdft"; - version = "0.1.0.3"; - sha256 = "e8ea8a57e82685a3b178df4a2048fe229a6c3794d9613836cd5b7d0f028b64b6"; + version = "0.1.0.4"; + sha256 = "51ba7bc799184d8fa1fbb27845d0424e6e84b504fce0bd3d047333a31d16b9e7"; libraryHaskellDepends = [ - base binary bytestring containers directory file-embed parsec text - utf8-string zlib + attoparsec base binary bytestring containers directory file-embed + parsec text utf8-string zlib ]; homepage = "https://github.com/k16shikano/hpdft"; description = "A tool for looking through PDF file using Haskell"; @@ -106442,6 +109003,7 @@ self: { homepage = "https://github.com/agocorona/hplayground"; description = "monadic, reactive Formlets running in the Web browser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hplaylist" = callPackage @@ -106455,6 +109017,7 @@ self: { executableHaskellDepends = [ base directory filepath process ]; description = "Application for managing playlist files on a music player"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpodder" = callPackage @@ -106476,6 +109039,7 @@ self: { homepage = "http://software.complete.org/hpodder"; description = "Podcast Aggregator (downloader)"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpp" = callPackage @@ -106525,6 +109089,7 @@ self: { homepage = "https://github.com/scrive/hpqtypes"; description = "Haskell bindings to libpqtypes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) postgresql;}; "hprotoc_2_1_4" = callPackage @@ -106763,6 +109328,7 @@ self: { homepage = "http://darcs.factisresearch.com/pub/protocol-buffers-fork/"; description = "Parse Google Protocol Buffer specifications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hps" = callPackage @@ -106796,6 +109362,7 @@ self: { homepage = "http://slavepianos.org/rd/?t=hps-cairo"; description = "Cairo rendering for the haskell postscript library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hps-kmeans" = callPackage @@ -106854,6 +109421,7 @@ self: { homepage = "http://sourceforge.net/projects/hpylos/"; description = "AI of Pylos game with GLUT interface"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpyrg" = callPackage @@ -106893,6 +109461,7 @@ self: { homepage = "http://github.com/paulrzcz/hquantlib.git"; description = "HQuantLib is a port of essencial parts of QuantLib to Haskell"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hquery" = callPackage @@ -106923,6 +109492,7 @@ self: { executableHaskellDepends = [ base HCL NonEmpty ]; description = "Basic utility for ranking a list of items"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hreader" = callPackage @@ -106976,6 +109546,7 @@ self: { ]; description = "Embed a Ruby intepreter in your Haskell program !"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {inherit (pkgs) ruby;}; "hs-GeoIP" = callPackage @@ -106989,6 +109560,7 @@ self: { homepage = "http://github.com/ozataman/hs-GeoIP"; description = "Haskell bindings to the MaxMind GeoIPCity database via the C library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {GeoIP = null;}; "hs-bibutils_5_0" = callPackage @@ -107076,6 +109648,7 @@ self: { ]; description = "Example Monte Carlo simulations implemented with Carbon"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-cdb" = callPackage @@ -107092,6 +109665,7 @@ self: { homepage = "http://github.com/adamsmasher/hs-cdb"; description = "A library for reading CDB (Constant Database) files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-dotnet" = callPackage @@ -107104,6 +109678,7 @@ self: { librarySystemDepends = [ ole32 oleaut32 ]; description = "Pragmatic .NET interop for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {ole32 = null; oleaut32 = null;}; "hs-duktape" = callPackage @@ -107125,6 +109700,7 @@ self: { homepage = "https://github.com/myfreeweb/hs-duktape"; description = "Haskell bindings for a very compact embedded ECMAScript (JavaScript) engine"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-excelx" = callPackage @@ -107154,6 +109730,7 @@ self: { homepage = "http://patch-tag.com/r/VasylPasternak/hs-ffmpeg"; description = "Bindings to FFMPEG library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-fltk" = callPackage @@ -107167,6 +109744,7 @@ self: { homepage = "http://www.cs.helsinki.fi/u/ekarttun/hs-fltk/"; description = "Binding to GUI library FLTK"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {fltk = null; fltk_images = null;}; "hs-gchart" = callPackage @@ -107179,6 +109757,7 @@ self: { homepage = "http://github.com/deepakjois/hs-gchart"; description = "Haskell wrapper for the Google Chart API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-gen-iface" = callPackage @@ -107197,6 +109776,7 @@ self: { ]; description = "Utility to generate haskell-names interface files"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-gizapp" = callPackage @@ -107244,6 +109824,7 @@ self: { ]; description = "Java .class files assembler/disassembler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-json-rpc" = callPackage @@ -107258,6 +109839,7 @@ self: { homepage = "http://patch-tag.com/r/Azel/hs-json-rpc"; description = "JSON-RPC client library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-logo" = callPackage @@ -107285,6 +109867,7 @@ self: { homepage = "http://deepakjois.github.com/hs-logo"; description = "Logo interpreter written in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-mesos" = callPackage @@ -107309,6 +109892,7 @@ self: { tasty-quickcheck ]; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) mesos; inherit (pkgs) protobuf;}; "hs-nombre-generator" = callPackage @@ -107323,6 +109907,7 @@ self: { jailbreak = true; description = "Name generator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-pgms" = callPackage @@ -107341,6 +109926,7 @@ self: { ]; description = "Programmer's Mine Sweeper in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-php-session" = callPackage @@ -107389,6 +109975,7 @@ self: { homepage = "https://github.com/tazjin/hs-pkpass"; description = "A library for Passbook pass creation & signing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-re" = callPackage @@ -107438,6 +110025,7 @@ self: { ]; description = "Haskell binding to the Twitter API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-twitterarchiver" = callPackage @@ -107452,6 +110040,7 @@ self: { homepage = "https://github.com/deepakjois/hs-twitterarchiver"; description = "Commandline Twitter feed archiver"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-vcard" = callPackage @@ -107464,6 +110053,7 @@ self: { homepage = "http://qrcard.us/"; description = "Implements the RFC 2426 vCard 3.0 spec"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs2048" = callPackage @@ -107504,6 +110094,7 @@ self: { homepage = "http://www.xanxys.net/hs2bf/"; description = "Haskell to Brainfuck compiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs2dot" = callPackage @@ -107523,6 +110114,7 @@ self: { homepage = "http://www.github.com/finnsson/hs2graphviz"; description = "Generate graphviz-code from Haskell-code"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsConfigure" = callPackage @@ -107553,6 +110145,7 @@ self: { jailbreak = true; description = "Sqlite3 bindings"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsXenCtrl" = callPackage @@ -107567,6 +110160,7 @@ self: { homepage = "http://haskell.org/haskellwiki/HsXenCtrl"; description = "FFI bindings to the Xen Control library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {xenctrl = null;}; "hsass_0_3_0" = callPackage @@ -107659,6 +110253,7 @@ self: { ]; description = "simple utility for rolling filesystem backups"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsbencher" = callPackage @@ -107722,6 +110317,7 @@ self: { ]; description = "Backend for uploading benchmark data to Google Fusion Tables"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc2hs" = callPackage @@ -107736,6 +110332,7 @@ self: { jailbreak = true; description = "A preprocessor that helps with writing Haskell bindings to C code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3" = callPackage @@ -107770,6 +110367,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-auditor"; description = "Haskell SuperCollider Auditor"; license = "GPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hsc3-cairo" = callPackage @@ -107783,6 +110381,7 @@ self: { homepage = "http://rd.slavepianos.org/?t=hsc3-cairo"; description = "haskell supercollider cairo drawing"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-data" = callPackage @@ -107800,6 +110399,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-data"; description = "haskell supercollider data"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-db" = callPackage @@ -107843,6 +110443,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-forth"; description = "FORTH SUPERCOLLIDER"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-graphs" = callPackage @@ -107874,6 +110475,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-graphs"; description = "Haskell SuperCollider Graphs"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-lang" = callPackage @@ -107894,6 +110496,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-lang"; description = "Haskell SuperCollider Language"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-lisp" = callPackage @@ -107913,6 +110516,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-lisp"; description = "LISP SUPERCOLLIDER"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-plot" = callPackage @@ -107930,6 +110534,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-plot"; description = "Haskell SuperCollider Plotting"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-process" = callPackage @@ -107964,6 +110569,7 @@ self: { homepage = "http://rd.slavepianos.org/?t=hsc3-rec"; description = "Haskell SuperCollider Record Variants"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-rw" = callPackage @@ -108011,6 +110617,7 @@ self: { homepage = "https://github.com/kaoskorobase/hsc3-server"; description = "SuperCollider server resource management and synchronization"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-sf" = callPackage @@ -108039,6 +110646,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-sf-hsndfile"; description = "Haskell SuperCollider SoundFile"; license = "GPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hsc3-unsafe" = callPackage @@ -108052,6 +110660,7 @@ self: { homepage = "http://rd.slavepianos.org/?t=hsc3-unsafe"; description = "Unsafe Haskell SuperCollider"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-utils" = callPackage @@ -108088,6 +110697,7 @@ self: { jailbreak = true; description = "Haskell bindings to IIDC1394 cameras, via Camwire"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {camwire_1394 = null; dc1394_control = null; raw1394 = null;}; "hscassandra" = callPackage @@ -108105,6 +110715,7 @@ self: { homepage = "https://github.com/necrobious/hscassandra"; description = "cassandra database interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hscd" = callPackage @@ -108135,6 +110746,7 @@ self: { homepage = "http://haskell.org/gtk2hs/archives/2006/01/26/cairo-eye-candy/"; description = "An elegant analog clock using Haskell, GTK and Cairo"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hscolour_1_20_3" = callPackage @@ -108392,6 +111004,7 @@ self: { homepage = "http://neugierig.org/software/darcs/hsdip/"; description = "hsdip - a Diplomacy parser/renderer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsdns" = callPackage @@ -108422,6 +111035,7 @@ self: { homepage = "https://github.com/bazqux/hsdns-cache"; description = "Caching asynchronous DNS resolver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hse-cpp" = callPackage @@ -108545,7 +111159,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hsexif" = callPackage + "hsexif_0_6_0_7" = callPackage ({ mkDerivation, base, binary, bytestring, containers, hspec, HUnit , iconv, text, time }: @@ -108562,6 +111176,26 @@ self: { homepage = "https://github.com/emmanueltouzery/hsexif"; description = "EXIF handling library in pure Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hsexif" = callPackage + ({ mkDerivation, base, binary, bytestring, containers, hspec, HUnit + , iconv, text, time + }: + mkDerivation { + pname = "hsexif"; + version = "0.6.0.8"; + sha256 = "ad7644484993252ae6eec48e7d9b583ac0f311737068a35ea43781adc61c7590"; + libraryHaskellDepends = [ + base binary bytestring containers iconv text time + ]; + testHaskellDepends = [ + base binary bytestring containers hspec HUnit iconv text time + ]; + homepage = "https://github.com/emmanueltouzery/hsexif"; + description = "EXIF handling library in pure Haskell"; + license = stdenv.lib.licenses.bsd3; }) {}; "hsfacter" = callPackage @@ -108574,6 +111208,7 @@ self: { homepage = "http://lpuppet.banquise.net"; description = "A small and ugly library that emulates the output of the puppet facter program"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsfcsh" = callPackage @@ -108618,6 +111253,7 @@ self: { homepage = "http://www.cs.helsinki.fi/u/ekarttun/hsgnutls"; description = "Library wrapping the GnuTLS API"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {gcrypt = null; inherit (pkgs) gnutls;}; "hsgnutls-yj" = callPackage @@ -108631,6 +111267,7 @@ self: { homepage = "http://www.cs.helsinki.fi/u/ekarttun/hsgnutls"; description = "Library wrapping the GnuTLS API"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {gcrypt = null; inherit (pkgs) gnutls;}; "hsgsom" = callPackage @@ -108642,6 +111279,7 @@ self: { libraryHaskellDepends = [ base containers random stm time ]; description = "An implementation of the GSOM clustering algorithm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsgtd" = callPackage @@ -108805,6 +111443,7 @@ self: { libraryHaskellDepends = [ base Cabal ]; description = "Skeleton for new Haskell programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hslackbuilder" = callPackage @@ -108821,6 +111460,7 @@ self: { homepage = "http://code.haskell.org/~arossato/hslackbuilder"; description = "HSlackBuilder automatically generates slackBuild scripts from a cabal package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hslibsvm" = callPackage @@ -108833,6 +111473,7 @@ self: { librarySystemDepends = [ svm ]; description = "A FFI binding to libsvm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {svm = null;}; "hslinks" = callPackage @@ -109055,6 +111696,7 @@ self: { homepage = "https://github.com/vincentg/hsmagick"; description = "FFI bindings for the GraphicsMagick library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {GraphicsMagick = null; inherit (pkgs) bzip2; freetype2 = null; inherit (pkgs) jasper; inherit (pkgs) lcms; inherit (pkgs) libjpeg; inherit (pkgs) libpng; @@ -109088,6 +111730,7 @@ self: { homepage = "http://code.google.com/p/hsmtpclient/"; description = "Simple SMTP Client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsndfile" = callPackage @@ -109102,6 +111745,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Hsndfile"; description = "Haskell bindings for libsndfile"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) libsndfile;}; "hsndfile-storablevector" = callPackage @@ -109114,6 +111758,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Hsndfile"; description = "Haskell bindings for libsndfile (Data.StorableVector interface)"; license = stdenv.lib.licenses.lgpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsndfile-vector" = callPackage @@ -109126,6 +111771,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Hsndfile"; description = "Haskell bindings for libsndfile (Data.Vector interface)"; license = stdenv.lib.licenses.lgpl2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hsnock" = callPackage @@ -109147,6 +111793,7 @@ self: { homepage = "https://github.com/mrdomino/hsnock/"; description = "Nock 5K interpreter"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsnoise" = callPackage @@ -109172,6 +111819,7 @@ self: { executableHaskellDepends = [ base network pcap ]; description = "a miniature network sniffer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsnsq" = callPackage @@ -109208,6 +111856,7 @@ self: { homepage = "http://www.cs.helsinki.fi/u/ekarttun/util/"; description = "Libraries to use SNTP protocol and small client/server implementations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsoptions" = callPackage @@ -109234,6 +111883,7 @@ self: { homepage = "https://github.com/josercruz01/hsoptions"; description = "Haskell library that supports command-line flag processing"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsp" = callPackage @@ -109258,6 +111908,7 @@ self: { homepage = "http://code.google.com/p/hsp"; description = "Facilitates running Haskell Server Pages web pages as CGI programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsparklines" = callPackage @@ -109292,6 +111943,7 @@ self: { homepage = "https://github.com/robstewart57/hsparql"; description = "A SPARQL query generator and DSL, and a client to query a SPARQL server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hspear" = callPackage @@ -109308,6 +111960,7 @@ self: { homepage = "http://rd.slavepianos.org/?t=hspear"; description = "Haskell Spear Parser"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hspec_2_1_2" = callPackage @@ -110095,6 +112748,7 @@ self: { jailbreak = true; description = "An experimental DSL for testing on top of Hspec"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hspec-jenkins" = callPackage @@ -110315,6 +112969,7 @@ self: { libraryHaskellDepends = [ hspec test-shouldbe ]; description = "Convenience wrapper and utilities for hspec"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hspec-smallcheck_0_3_0" = callPackage @@ -110500,7 +113155,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hspec-wai" = callPackage + "hspec-wai_0_6_4" = callPackage ({ mkDerivation, base, base-compat, bytestring, case-insensitive , hspec, hspec-core, hspec-expectations, http-types, QuickCheck , text, transformers, wai, wai-extra @@ -110522,6 +113177,31 @@ self: { homepage = "https://github.com/hspec/hspec-wai#readme"; description = "Experimental Hspec support for testing WAI applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hspec-wai" = callPackage + ({ mkDerivation, base, base-compat, bytestring, case-insensitive + , hspec, hspec-core, hspec-expectations, http-types, QuickCheck + , text, transformers, wai, wai-extra, with-location + }: + mkDerivation { + pname = "hspec-wai"; + version = "0.6.5"; + sha256 = "186f8ca2b8412f7e3305fbe1054e27ca217fdbcca8478235f15ab7019f4f9525"; + libraryHaskellDepends = [ + base base-compat bytestring case-insensitive hspec-core + hspec-expectations http-types QuickCheck text transformers wai + wai-extra with-location + ]; + testHaskellDepends = [ + base base-compat bytestring case-insensitive hspec hspec-core + hspec-expectations http-types QuickCheck text transformers wai + wai-extra with-location + ]; + homepage = "https://github.com/hspec/hspec-wai#readme"; + description = "Experimental Hspec support for testing WAI applications"; + license = stdenv.lib.licenses.mit; }) {}; "hspec-wai-json_0_6_0" = callPackage @@ -110660,6 +113340,7 @@ self: { ]; description = "A client library for the spread toolkit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hspresent" = callPackage @@ -110675,6 +113356,7 @@ self: { jailbreak = true; description = "A terminal presentation tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsprocess" = callPackage @@ -110700,6 +113382,7 @@ self: { ]; description = "The Haskell Stream Processor command line utility"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsql" = callPackage @@ -110725,6 +113408,7 @@ self: { librarySystemDepends = [ mysqlclient ]; description = "MySQL driver for HSQL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {mysqlclient = null;}; "hsql-odbc" = callPackage @@ -110795,6 +113479,7 @@ self: { homepage = "https://github.com/marcinmrotek/hsqml-datamodel"; description = "HsQML (Qt5) data model"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {qt5 = null;}; "hsqml-datamodel-vinyl" = callPackage @@ -110812,6 +113497,7 @@ self: { homepage = "https://github.com/marcinmrotek/hsqml-datamodel-vinyl"; description = "HsQML DataModel instances for Vinyl Rec"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsqml-demo-morris" = callPackage @@ -110830,6 +113516,7 @@ self: { homepage = "http://www.gekkou.co.uk/software/hsqml/"; description = "HsQML-based implementation of Nine Men's Morris"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "hsqml-demo-notes" = callPackage @@ -110863,6 +113550,7 @@ self: { homepage = "http://www.gekkou.co.uk/software/hsqml/"; description = "HsQML sample programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsqml-morris" = callPackage @@ -110882,6 +113570,7 @@ self: { homepage = "http://www.gekkou.co.uk/"; description = "HsQML-based implementation of Nine Men's Morris"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsreadability" = callPackage @@ -110920,6 +113609,7 @@ self: { testHaskellDepends = [ base tasty tasty-hunit unix ]; description = "Haskell bindings to libseccomp"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {seccomp = null;}; "hsshellscript" = callPackage @@ -110933,6 +113623,7 @@ self: { homepage = "http://www.volker-wysk.de/hsshellscript/"; description = "Haskell for Unix shell scripting tasks"; license = "LGPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hssourceinfo" = callPackage @@ -110948,6 +113639,7 @@ self: { ]; description = "get haskell source code info"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hssqlppp" = callPackage @@ -111047,6 +113739,7 @@ self: { homepage = "http://bitbucket.org/dave4420/hstest/wiki/Home"; description = "Runs tests via QuickCheck1 and HUnit; like quickCheck-script but uses GHC api"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hstidy" = callPackage @@ -111061,6 +113754,7 @@ self: { homepage = "http://code.haskell.org/~morrow/code/haskell/hstidy"; description = "Takes haskell source on stdin, parses it, then prettyprints it to stdout"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hstorchat" = callPackage @@ -111089,6 +113783,7 @@ self: { jailbreak = true; description = "Distributed instant messaging over Tor"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hstradeking" = callPackage @@ -111114,6 +113809,7 @@ self: { jailbreak = true; description = "Tradeking API bindings for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hstyle" = callPackage @@ -111132,6 +113828,7 @@ self: { jailbreak = true; description = "Checks Haskell source code for style compliance"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hstzaar" = callPackage @@ -111152,6 +113849,7 @@ self: { homepage = "http://www.dcc.fc.up.pt/~pbv/stuff/hstzaar"; description = "A two player abstract strategy game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsubconvert" = callPackage @@ -111174,6 +113872,7 @@ self: { homepage = "https://github.com/jwiegley/hsubconvert"; description = "One-time, faithful conversion of Subversion repositories to Git"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsverilog" = callPackage @@ -111205,6 +113904,7 @@ self: { librarySystemDepends = [ ncurses readline swipl ]; description = "embedding prolog in haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ncurses; inherit (pkgs) readline; swipl = null;}; @@ -111223,6 +113923,7 @@ self: { homepage = "http://patch-tag.com/r/nibro/hsx"; description = "HSX (Haskell Source with XML) allows literal XML syntax in Haskell source code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsx-jmacro" = callPackage @@ -111249,6 +113950,7 @@ self: { homepage = "http://code.google.com/hsp"; description = "XHTML utilities to use together with HSX"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsx2hs" = callPackage @@ -111280,6 +113982,7 @@ self: { homepage = "http://github.com/aycanirican/hsyscall"; description = "FFI to syscalls"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsyslog" = callPackage @@ -111306,6 +114009,7 @@ self: { librarySystemDepends = [ com_err zephyr ]; description = "Simple libzephyr bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {com_err = null; zephyr = null;}; "htaglib_1_0_1" = callPackage @@ -111544,6 +114248,7 @@ self: { homepage = "https://github.com/nikita-volkov/html-entities"; description = "A codec library for HTML-escaped text and HTML-entities"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "html-kure" = callPackage @@ -111581,6 +114286,7 @@ self: { homepage = "http://github.com/kylcarte/html-rules/"; description = "Perform traversals of HTML structures using sets of rules"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "html-tokenizer" = callPackage @@ -111691,6 +114397,7 @@ self: { homepage = "https://github.com/cies/htoml"; description = "Parser for TOML files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "htrace" = callPackage @@ -111779,6 +114486,7 @@ self: { ]; description = "Import XML files from The Sports Network into an RDBMS"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-accept" = callPackage @@ -112777,6 +115485,23 @@ self: { homepage = "https://github.com/spl/http-client-request-modifiers"; description = "Convenient monadic HTTP request modifiers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "http-client-session" = callPackage + ({ mkDerivation, base-prelude, bytestring, either, http-client + , mtl-prelude + }: + mkDerivation { + pname = "http-client-session"; + version = "0.1.1"; + sha256 = "41d9210795f0a0bdb984ca462d8d1e214679dda1b1a606dbce69ee52189162ca"; + libraryHaskellDepends = [ + base-prelude bytestring either http-client mtl-prelude + ]; + homepage = "https://github.com/sannsyn/http-client-session"; + description = "A simple abstraction over the \"http-client\" connection manager"; + license = stdenv.lib.licenses.mit; }) {}; "http-client-streams" = callPackage @@ -113016,6 +115741,7 @@ self: { homepage = "https://github.com/exbb2/http-conduit-browser"; description = "Browser interface to the http-conduit package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-conduit-downloader" = callPackage @@ -113036,6 +115762,7 @@ self: { homepage = "https://github.com/bazqux/http-conduit-downloader"; description = "HTTP downloader tailored for web-crawler needs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-date_0_0_4" = callPackage @@ -113147,6 +115874,7 @@ self: { homepage = "http://github.com/snoyberg/http-enumerator"; description = "HTTP client package with enumerator interface and HTTPS support. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-kinder" = callPackage @@ -113311,6 +116039,7 @@ self: { jailbreak = true; description = "Monad abstraction for HTTP allowing lazy transfer and non-I/O simulation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-proxy" = callPackage @@ -113333,6 +116062,7 @@ self: { homepage = "https://github.com/erikd/http-proxy"; description = "A library for writing HTTP and HTTPS proxies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-querystring" = callPackage @@ -113492,6 +116222,7 @@ self: { libraryHaskellDepends = [ base network ]; description = "A simple websever with an interact style API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-streams" = callPackage @@ -113759,8 +116490,8 @@ self: { }: mkDerivation { pname = "http2"; - version = "1.5.1"; - sha256 = "3beba1a59d5c533ef58c715a3b54a069b24f81170e80d662e6267a2ad218eb5d"; + version = "1.5.2"; + sha256 = "8517079c1418c93e33324612a7fa657af40dedef3c0d56a9a2031bfcf6900f70"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -113817,6 +116548,7 @@ self: { homepage = "https://github.com/fmap/https-everywhere-rules"; description = "High-level access to HTTPS Everywhere rulesets"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "https-everywhere-rules-raw" = callPackage @@ -113849,6 +116581,7 @@ self: { ]; description = "Specification of HTTP request/response generators and parsers"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "htune" = callPackage @@ -113863,6 +116596,7 @@ self: { jailbreak = true; description = "harmonic analyser and tuner for musical instruments"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "htzaar" = callPackage @@ -113878,6 +116612,7 @@ self: { homepage = "http://tomahawkins.org"; description = "A two player abstract strategy game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hub" = callPackage @@ -113934,6 +116669,7 @@ self: { jailbreak = true; description = "Support library for Hubris, the Ruby <=> Haskell bridge"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ruby;}; "huckleberry" = callPackage @@ -113974,6 +116710,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Yhc"; description = "Hugs Front-end to Yhc Core"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hulk" = callPackage @@ -114001,6 +116738,7 @@ self: { jailbreak = true; description = "IRC server written in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "human-readable-duration_0_1_0_0" = callPackage @@ -114063,6 +116801,7 @@ self: { jailbreak = true; description = "Haskell UPnP Media Server"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hunch" = callPackage @@ -114114,6 +116853,7 @@ self: { homepage = "http://patch-tag.com/r/kwallmar/hunit_gui/home"; description = "A GUI testrunner for HUnit"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hunit-parsec" = callPackage @@ -114139,6 +116879,7 @@ self: { homepage = "github.com/tcrayford/rematch"; description = "HUnit support for rematch"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hunp" = callPackage @@ -114189,6 +116930,7 @@ self: { homepage = "http://github.com/hunt-framework/"; description = "A search and indexing engine"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hunt-server" = callPackage @@ -114214,6 +116956,7 @@ self: { homepage = "http://github.com/hunt-framework"; description = "A search and indexing engine server"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hunt-server-cli" = callPackage @@ -114257,6 +117000,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Extract function names from Windows DLLs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "husk-scheme" = callPackage @@ -114316,6 +117060,7 @@ self: { homepage = "http://github.com/markusle/husky/tree/master"; description = "A simple command line calculator"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hutton" = callPackage @@ -114337,6 +117082,7 @@ self: { jailbreak = true; description = "A program for the button on Reddit"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "huttons-razor" = callPackage @@ -114363,6 +117109,7 @@ self: { jailbreak = true; description = "Fuzzy logic library with support for T1, IT2, GT2"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hvect_0_2_0_0" = callPackage @@ -114485,6 +117232,7 @@ self: { jailbreak = true; description = "Simple Haskell Web Server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hwsl2" = callPackage @@ -114558,6 +117306,7 @@ self: { jailbreak = true; description = "Haskell XMPP (Jabber Client) Command Line Interface (CLI)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hxournal" = callPackage @@ -114585,6 +117334,7 @@ self: { homepage = "http://ianwookim.org/hxournal"; description = "A pen notetaking program written in haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hxt_9_3_1_7" = callPackage @@ -114681,6 +117431,7 @@ self: { homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html"; description = "Serialisation and deserialisation of HXT XmlTrees"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hxt-cache" = callPackage @@ -114791,6 +117542,7 @@ self: { homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html"; description = "A collection of tools for processing XML with Haskell (Filter variant)"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hxt-http_9_1_5" = callPackage @@ -115043,6 +117795,7 @@ self: { jailbreak = true; description = "Helper functions for HXT"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hxweb" = callPackage @@ -115054,6 +117807,7 @@ self: { libraryHaskellDepends = [ base cgi fastcgi libxml mtl xslt ]; description = "Minimal webframework using fastcgi, libxml2 and libxslt"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hyahtzee" = callPackage @@ -115106,6 +117860,7 @@ self: { homepage = "http://repos.mine.nu/davve/darcs/hybrid"; description = "A implementation of a type-checker for Lambda-H"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hybrid-vectors_0_1_2" = callPackage @@ -115165,6 +117920,7 @@ self: { homepage = "https://github.com/mruegenberg/hydra-hs"; description = "Haskell binding to the Sixense SDK for the Razer Hydra"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {sixense_x64 = null;}; "hydra-print" = callPackage @@ -115236,6 +117992,7 @@ self: { homepage = "https://scravy.de/hydrogen-cli/"; description = "Hydrogen Data"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hydrogen-cli-args" = callPackage @@ -115253,6 +118010,7 @@ self: { homepage = "https://scravy.de/hydrogen-cli-args/"; description = "Hydrogen Command Line Arguments Parser"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hydrogen-data" = callPackage @@ -115266,6 +118024,7 @@ self: { homepage = "https://scravy.de/hydrogen-data/"; description = "Hydrogen Data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hydrogen-multimap" = callPackage @@ -115293,6 +118052,7 @@ self: { homepage = "https://scravy.de/hydrogen-parsing/"; description = "Hydrogen Parsing Utilities"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hydrogen-prelude" = callPackage @@ -115313,6 +118073,7 @@ self: { homepage = "http://scravy.de/hydrogen-prelude/"; description = "Hydrogen Prelude"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hydrogen-prelude-parsec" = callPackage @@ -115326,6 +118087,7 @@ self: { homepage = "http://scravy.de/hydrogen-prelude-parsec/"; description = "Hydrogen Prelude /w Parsec"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hydrogen-syntax" = callPackage @@ -115344,6 +118106,7 @@ self: { homepage = "https://scravy.de/hydrogen-syntax/"; description = "Hydrogen Syntax"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hydrogen-util" = callPackage @@ -115360,6 +118123,7 @@ self: { homepage = "https://scravy.de/hydrogen-util/"; description = "Hydrogen Tools"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hydrogen-version" = callPackage @@ -115391,6 +118155,7 @@ self: { homepage = "http://github.com/tibbe/hyena"; description = "Simple web application server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hylolib" = callPackage @@ -115407,6 +118172,7 @@ self: { jailbreak = true; description = "Tools for hybrid logics related programs"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hylotab" = callPackage @@ -115421,6 +118187,7 @@ self: { homepage = "http://www.glyc.dc.uba.ar/intohylo/hylotab.php"; description = "Tableau based theorem prover for hybrid logics"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hyloutils" = callPackage @@ -115436,6 +118203,7 @@ self: { ]; description = "Very small programs for hybrid logics"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hyperdrive" = callPackage @@ -115455,6 +118223,7 @@ self: { jailbreak = true; description = "a fast, trustworthy HTTP(s) server built"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hyperfunctions" = callPackage @@ -115542,6 +118311,7 @@ self: { homepage = "https://github.com/mkscrg/hyperpublic-haskell"; description = "A thin wrapper for the Hyperpublic API"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hyphenate" = callPackage @@ -115684,6 +118454,7 @@ self: { homepage = "https://github.com/zoetic-community/hypher"; description = "A Haskell neo4j client"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hzaif" = callPackage @@ -115789,6 +118560,7 @@ self: { ]; description = "Internationalization for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iCalendar" = callPackage @@ -115819,6 +118591,7 @@ self: { libraryHaskellDepends = [ base interleavableIO mtl ]; description = "Version of Control.Exception using InterleavableIO."; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iap-verifier" = callPackage @@ -116581,6 +119354,7 @@ self: { homepage = "http://ideas.cs.uu.nl/www/"; description = "Feedback services for intelligent tutoring systems"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ideas-math" = callPackage @@ -116600,6 +119374,7 @@ self: { homepage = "http://ideas.cs.uu.nl/www/"; description = "Interactive domain reasoner for logic and mathematics"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "idempotent" = callPackage @@ -116659,6 +119434,7 @@ self: { ]; description = "ID3v2 (tagging standard for MP3 files) library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "idna" = callPackage @@ -116682,6 +119458,7 @@ self: { jailbreak = true; description = "Converts Unicode hostnames into ASCII"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "idris" = callPackage @@ -116721,6 +119498,7 @@ self: { homepage = "http://www.idris-lang.org/"; description = "Functional Programming Language with Dependent Types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gmp;}; "ieee" = callPackage @@ -116744,6 +119522,7 @@ self: { libraryHaskellDepends = [ base ]; description = "ieee-utils"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ieee-utils-tempfix" = callPackage @@ -116897,6 +119676,7 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "Bindings for the Gtk/OS X integration library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {ige-mac-integration = null;}; "ignore" = callPackage @@ -116935,6 +119715,7 @@ self: { homepage = "http://giorgidze.github.com/igraph/"; description = "Bindings to the igraph C library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {igraph = null;}; "igrf" = callPackage @@ -117171,6 +119952,7 @@ self: { homepage = "http://www.github.com/gibiansky/ihaskell"; description = "IHaskell display instances for diagram types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "ihaskell-display" = callPackage @@ -117214,6 +119996,7 @@ self: { homepage = "https://tweag.github.io/HaskellR/"; description = "Embed R quasiquotes and plots in IHaskell notebooks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ihaskell-juicypixels" = callPackage @@ -117275,6 +120058,7 @@ self: { homepage = "http://www.github.com/gibiansky/ihaskell"; description = "IHaskell display instance for Plot (from plot package)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "ihaskell-rlangqq" = callPackage @@ -117311,6 +120095,7 @@ self: { homepage = "http://www.github.com/gibiansky/IHaskell"; description = "IPython standard widgets for IHaskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ihttp" = callPackage @@ -117329,6 +120114,7 @@ self: { executableHaskellDepends = [ base network ]; description = "Incremental HTTP iteratee"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "illuminate" = callPackage @@ -117350,6 +120136,7 @@ self: { homepage = "http://github.com/jgm/illuminate"; description = "A fast syntax highlighting library built with alex"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "image-type" = callPackage @@ -117402,6 +120189,7 @@ self: { testPkgconfigDepends = [ imagemagick ]; description = "bindings to imagemagick library"; license = "unknown"; + hydraPlatforms = [ "x86_64-linux" ]; }) {inherit (pkgs) imagemagick;}; "imagepaste" = callPackage @@ -117422,6 +120210,7 @@ self: { homepage = "https://bitbucket.org/balta2ar/imagepaste"; description = "Command-line image paste utility"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "imagesize-conduit_1_0_0_4" = callPackage @@ -117486,6 +120275,7 @@ self: { ]; description = "An efficient IMAP client library, with SSL and streaming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "imapget" = callPackage @@ -117525,6 +120315,7 @@ self: { jailbreak = true; description = "Minimalistic reference manager"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "imgurder" = callPackage @@ -117545,6 +120336,7 @@ self: { ]; description = "Uploader for Imgur"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "imm" = callPackage @@ -117574,6 +120366,7 @@ self: { jailbreak = true; description = "Retrieve RSS/Atom feeds and write one mail per new item in a maildir"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "immortal" = callPackage @@ -117617,6 +120410,7 @@ self: { jailbreak = true; description = "Multi-platform parser analyzer and generator"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "imperative-edsl" = callPackage @@ -117640,6 +120434,7 @@ self: { homepage = "https://github.com/emilaxelsson/imperative-edsl"; description = "Deep embedding of imperative programs with code generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-linux" ]; }) {}; "imperative-edsl-vhdl" = callPackage @@ -117656,6 +120451,7 @@ self: { ]; description = "Deep embedding of VHDL programs with code generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "implicit" = callPackage @@ -117683,6 +120479,18 @@ self: { license = "GPL"; }) {}; + "implicit-logging" = callPackage + ({ mkDerivation, base, mtl, time, transformers }: + mkDerivation { + pname = "implicit-logging"; + version = "0.1.0.0"; + sha256 = "98032042eee95714c2f0e0c1a25a03f15e75223bacc85b9857b1d66d639805c0"; + libraryHaskellDepends = [ base mtl time transformers ]; + homepage = "https://github.com/revnull/implicit-logging"; + description = "A logging framework built around implicit parameters"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "implicit-params" = callPackage ({ mkDerivation, base, data-default-class }: mkDerivation { @@ -117731,6 +120539,7 @@ self: { homepage = "http://github.com/tomahawkins/improve/wiki/ImProve"; description = "An imperative, verifiable programming language for high assurance applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "inc-ref" = callPackage @@ -117766,6 +120575,7 @@ self: { homepage = "https://github.com/adamgundry/inch/"; description = "A type-checker for Haskell with integer constraints"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "include-file_0_1_0_2" = callPackage @@ -117815,6 +120625,7 @@ self: { homepage = "http://darcs.wolfgang.jeltsch.info/haskell/incremental-computing"; description = "Incremental computing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "incremental-parser_0_2_3_3" = callPackage @@ -117900,6 +120711,7 @@ self: { homepage = "http://github.com/sebfisch/incremental-sat-solver"; description = "Simple, Incremental SAT Solving as a Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "increments" = callPackage @@ -117920,6 +120732,7 @@ self: { jailbreak = true; description = "type classes for incremental updates to data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "indentation" = callPackage @@ -117975,6 +120788,7 @@ self: { jailbreak = true; description = "Indexed Types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "indexed" = callPackage @@ -118038,6 +120852,7 @@ self: { libraryHaskellDepends = [ base gtk HDBC HDBC-sqlite3 ]; description = "Indian Language Font Converter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "indices" = callPackage @@ -118050,6 +120865,7 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "Multi-dimensional statically bounded indices"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "indieweb-algorithms" = callPackage @@ -118076,6 +120892,7 @@ self: { homepage = "https://github.com/myfreeweb/indieweb-algorithms"; description = "A collection of implementations of IndieWeb algorithms"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "inf-interval" = callPackage @@ -118090,6 +120907,7 @@ self: { homepage = "https://github.com/RaminHAL9001/inf-interval"; description = "Non-contiguous interval data types with potentially infinite ranges"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "infer-upstream" = callPackage @@ -118109,6 +120927,7 @@ self: { homepage = "https://github.com/silky/infer-upstream"; description = "Find the repository from where a given repo was forked"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "infernu" = callPackage @@ -118158,6 +120977,7 @@ self: { ]; jailbreak = true; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "infix" = callPackage @@ -118170,6 +120990,7 @@ self: { homepage = "http://www.cs.mu.oz.au/~bjpop/code.html"; description = "Infix expression re-parsing (for HsParser library)"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "inflections" = callPackage @@ -118201,6 +121022,7 @@ self: { homepage = "https://bitbucket.org/eegg/inflist"; description = "An infinite list type and operations thereon"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "influxdb" = callPackage @@ -118232,6 +121054,7 @@ self: { homepage = "https://github.com/maoe/influxdb-haskell"; description = "Haskell client library for InfluxDB"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "informative" = callPackage @@ -118260,6 +121083,7 @@ self: { homepage = "http://doomanddarkness.eu/pub/informative"; description = "A yesod subsite serving a wiki"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ini_0_2_2" = callPackage @@ -118366,6 +121190,7 @@ self: { homepage = "https://chiselapp.com/user/mwm/repository/inilist"; description = "Processing for .ini files with duplicate sections and options"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "inject" = callPackage @@ -118467,6 +121292,7 @@ self: { testHaskellDepends = [ base ]; description = "Lets you embed C++ code into Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "inline-c-win32" = callPackage @@ -118514,6 +121340,7 @@ self: { ]; description = "Seamlessly call R from Haskell and vice versa. No FFI required."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-linux" ]; }) {inherit (pkgs) R;}; "inquire" = callPackage @@ -118531,6 +121358,29 @@ self: { broken = true; }) {aether = null;}; + "insert-ordered-containers" = callPackage + ({ mkDerivation, aeson, base, base-compat, hashable, lens + , QuickCheck, semigroupoids, semigroups, tasty, tasty-quickcheck + , text, transformers, unordered-containers + }: + mkDerivation { + pname = "insert-ordered-containers"; + version = "0.1.0.1"; + sha256 = "4905e5d128c19887a79b281150acb16cb3b043ab2c5a7788b0151ba7d46b900a"; + libraryHaskellDepends = [ + aeson base base-compat hashable lens semigroupoids semigroups text + transformers unordered-containers + ]; + testHaskellDepends = [ + aeson base base-compat hashable lens QuickCheck semigroupoids + semigroups tasty tasty-quickcheck text transformers + unordered-containers + ]; + homepage = "https://github.com/phadej/insert-ordered-containers#readme"; + description = "Associative containers retating insertion order for traversals"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "inserts" = callPackage ({ mkDerivation, attoparsec, base, bytestring, dlist }: mkDerivation { @@ -118645,6 +121495,7 @@ self: { jailbreak = true; description = "Heterogenous Zipper in Instant Generics"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "instinct" = callPackage @@ -118711,6 +121562,7 @@ self: { homepage = "http://projects.haskell.org/~malcolm/integer-pure"; description = "A pure-Haskell implementation of arbitrary-precision Integers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "integration_0_2_0_1" = callPackage @@ -118755,6 +121607,7 @@ self: { homepage = "https://github.com/rrnewton/intel-aes/wiki"; description = "Hardware accelerated AES encryption and Random Number Generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {intel_aes = null;}; "interchangeable" = callPackage @@ -118780,6 +121633,7 @@ self: { executableHaskellDepends = [ base directory haskell-src hint mtl ]; description = "Generates a version of a module using InterleavableIO"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "interleavableIO" = callPackage @@ -118791,6 +121645,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Use other Monads in functions that asks for an IO Monad"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "interleave" = callPackage @@ -118849,6 +121704,7 @@ self: { homepage = "http://code.haskell.org/~thielema/internetmarke/"; description = "Shell command for constructing custom stamps for German Post"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "interpol" = callPackage @@ -118934,6 +121790,7 @@ self: { ]; description = "QuasiQuoter for Ruby-style multi-line interpolated strings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "interpolatedstring-qq-mwotton" = callPackage @@ -118949,6 +121806,7 @@ self: { jailbreak = true; description = "DO NOT USE THIS. interpolatedstring-qq works now."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "interpolation" = callPackage @@ -119058,6 +121916,7 @@ self: { homepage = "https://github.com/pxqr/intset"; description = "Pure, mergeable, succinct Int sets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "invariant_0_2" = callPackage @@ -119233,6 +122092,7 @@ self: { executableHaskellDepends = [ base ]; description = "An API for generating TIMBER style reactive objects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "io-region" = callPackage @@ -119444,6 +122304,7 @@ self: { homepage = "https://bitbucket.org/dshearer/iotransaction/"; description = "Supports the automatic undoing of IO operations when an exception is thrown"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ip-quoter" = callPackage @@ -119492,6 +122353,7 @@ self: { homepage = "http://darcs.nomeata.de/ipatch"; description = "interactive patch editor"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ipc" = callPackage @@ -119508,6 +122370,7 @@ self: { jailbreak = true; description = "High level inter-process communication library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ipcvar" = callPackage @@ -119543,6 +122406,7 @@ self: { jailbreak = true; description = "haskell binding to ipopt and nlopt including automatic differentiation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ipopt; nlopt = null;}; "ipprint" = callPackage @@ -119658,6 +122522,7 @@ self: { jailbreak = true; description = "iptables rules parser/printer library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iptadmin" = callPackage @@ -119684,6 +122549,7 @@ self: { homepage = "http://iptadmin.117.su"; description = "web-interface for iptables"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ipython-kernel_0_6_1_2" = callPackage @@ -120039,6 +122905,33 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "iridium" = callPackage + ({ mkDerivation, ansi-terminal, base, bytestring, Cabal, containers + , extra, foldl, http-conduit, lifted-base, monad-control + , multistate, process, split, system-filepath, tagged, text + , transformers, transformers-base, turtle, unordered-containers + , unsafe, vector, xmlhtml, yaml + }: + mkDerivation { + pname = "iridium"; + version = "0.1.5.2"; + sha256 = "97709297aae761e274de08e9d47cab14e87065e9787357a0e45f817cfefaa640"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + ansi-terminal base bytestring Cabal containers extra foldl + http-conduit lifted-base monad-control multistate process split + system-filepath tagged text transformers transformers-base turtle + unordered-containers unsafe vector xmlhtml yaml + ]; + executableHaskellDepends = [ + base extra multistate text transformers unordered-containers yaml + ]; + homepage = "https://github.com/lspitzner/iridium"; + description = "Automated Testing and Package Uploading"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "iron-mq" = callPackage ({ mkDerivation, aeson, base, http-client, lens, text, wreq }: mkDerivation { @@ -120115,6 +123008,7 @@ self: { jailbreak = true; description = "Check whether a value has been evaluated"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "isiz" = callPackage @@ -120128,6 +123022,7 @@ self: { executableHaskellDepends = [ base gtk3 ]; description = "A program to show the size of image and whether suitable for wallpaper"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "islink" = callPackage @@ -120156,6 +123051,7 @@ self: { ]; description = "Advanced ESMTP library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iso3166-country-codes" = callPackage @@ -120264,6 +123160,7 @@ self: { homepage = "https://github.com/JohnLato/iter-stats"; description = "iteratees for statistical processing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iterIO" = callPackage @@ -120284,6 +123181,7 @@ self: { homepage = "http://www.scs.stanford.edu/~dm/iterIO"; description = "Iteratee-based IO with pipe operators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) zlib;}; "iterable" = callPackage @@ -120323,6 +123221,7 @@ self: { homepage = "http://www.tiresiaspress.us/haskell/iteratee"; description = "Iteratee-based I/O"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iteratee-compress" = callPackage @@ -120335,6 +123234,7 @@ self: { librarySystemDepends = [ bzip2 zlib ]; description = "Enumeratees for compressing and decompressing streams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) bzip2; inherit (pkgs) zlib;}; "iteratee-mtl" = callPackage @@ -120371,6 +123271,7 @@ self: { jailbreak = true; description = "Package allowing parsec parser initeratee"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iteratee-stm" = callPackage @@ -120386,6 +123287,7 @@ self: { homepage = "http://www.tiresiaspress.us/~jwlato/haskell/iteratee-stm"; description = "Concurrent iteratees using STM"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iterio-server" = callPackage @@ -120404,6 +123306,7 @@ self: { homepage = "https://github.com/alevy/iterio-server"; description = "Library for building servers with IterIO"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivar-simple" = callPackage @@ -120434,6 +123337,7 @@ self: { homepage = "http://www.dcs.st-and.ac.uk/~eb/Ivor/"; description = "Theorem proving library based on dependent type theory"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory" = callPackage @@ -120451,6 +123355,7 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Safe embedded C programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory-backend-c" = callPackage @@ -120471,6 +123376,7 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory C backend"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory-bitdata" = callPackage @@ -120491,6 +123397,7 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory bit-data support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory-examples" = callPackage @@ -120513,6 +123420,7 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory examples"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory-hw" = callPackage @@ -120530,6 +123438,7 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory hardware model (STM32F4)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory-opts" = callPackage @@ -120547,6 +123456,7 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory compiler optimizations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory-quickcheck" = callPackage @@ -120560,6 +123470,7 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "QuickCheck driver for Ivory"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory-stdlib" = callPackage @@ -120573,6 +123484,7 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory standard library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivy-web" = callPackage @@ -120589,6 +123501,7 @@ self: { homepage = "https://github.com/lilac/ivy-web/"; description = "A lightweight web framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ix-shapable" = callPackage @@ -120615,6 +123528,7 @@ self: { homepage = "http://www.eecs.harvard.edu/~tov/pubs/haskell-session-types/"; description = "A preprocessor for expanding \"ixdo\" notation for indexed monads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ixmonad" = callPackage @@ -120698,6 +123612,7 @@ self: { ]; description = "CLI (command line interface) to YQL"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "j2hs" = callPackage @@ -120719,6 +123634,7 @@ self: { jailbreak = true; description = "j2hs"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ja-base-extra" = callPackage @@ -120751,6 +123667,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/JACK"; description = "Bindings for the JACK Audio Connection Kit"; license = "GPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) libjack2;}; "jack-bindings" = callPackage @@ -120764,6 +123681,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "DEPRECATED Bindings to the JACK Audio Connection Kit"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libjack2;}; "jackminimix" = callPackage @@ -120777,6 +123695,7 @@ self: { homepage = "http://www.renickbell.net/doku.php?id=jackminimix"; description = "control JackMiniMix"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jacobi-roots" = callPackage @@ -120790,6 +123709,7 @@ self: { homepage = "http://github.com/ghorn/jacobi-roots"; description = "Roots of two shifted Jacobi polynomials (Legendre and Radau) to double precision"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jail" = callPackage @@ -120858,6 +123778,7 @@ self: { homepage = "https://github.com/cgo/jalla"; description = "Higher level functions for linear algebra. Wraps BLAS and LAPACKE."; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) blas; cblas = null; lapacke = null;}; "jammittools" = callPackage @@ -120900,6 +123821,7 @@ self: { ]; description = "Tool for searching java classes, members and fields in classfiles and JAR archives"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "java-bridge" = callPackage @@ -120923,6 +123845,7 @@ self: { ]; description = "Bindings to the JNI and a high level interface generator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "java-bridge-extras" = callPackage @@ -120935,6 +123858,7 @@ self: { jailbreak = true; description = "Utilities for working with the java-bridge package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "java-character" = callPackage @@ -120974,6 +123898,28 @@ self: { jailbreak = true; description = "Tools for reflecting on Java classes"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "javaclass" = callPackage + ({ mkDerivation, base, bytestring, directory, doctest, filepath + , greplicate, lens, QuickCheck, semigroupoids, semigroups, tagged + , template-haskell, tickle + }: + mkDerivation { + pname = "javaclass"; + version = "0.0.1"; + sha256 = "d449613b21b5d124c9bbde4ba2354af57122f5364c29fc188371b39a64d164f5"; + libraryHaskellDepends = [ + base bytestring greplicate lens semigroupoids semigroups tagged + tickle + ]; + testHaskellDepends = [ + base directory doctest filepath QuickCheck template-haskell + ]; + homepage = "https://github.com/NICTA/javaclass"; + description = "Java class files"; + license = "unknown"; }) {}; "javasf" = callPackage @@ -120995,6 +123941,7 @@ self: { homepage = "https://github.com/tonymorris/javasf"; description = "A utility to print the SourceFile attribute of one or more Java class files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "javav" = callPackage @@ -121012,6 +123959,7 @@ self: { homepage = "https://github.com/tonymorris/javav"; description = "A utility to print the target version of Java class files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jcdecaux-vls" = callPackage @@ -121080,6 +124028,7 @@ self: { homepage = "http://github.com/achudnov/jespresso"; description = "Extract all JavaScript from an HTML page and consolidate it in one script"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "jmacro_0_6_11" = callPackage @@ -121276,6 +124225,7 @@ self: { homepage = "http://sulzmann.blogspot.com/2008/12/parallel-join-patterns-with-guards-and.html"; description = "Parallel Join Patterns with Guards and Propagation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "joinlist" = callPackage @@ -121288,6 +124238,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Join list - symmetric list type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jonathanscard" = callPackage @@ -121305,6 +124256,7 @@ self: { homepage = "http://rawr.mschade.me/jonathanscard/"; description = "An implementation of the Jonathan's Card API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jort" = callPackage @@ -121319,6 +124271,7 @@ self: { jailbreak = true; description = "JP's own ray tracer"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jose" = callPackage @@ -121472,6 +124425,7 @@ self: { homepage = "https://github.com/sseefried/js-good-parts.git"; description = "Javascript: The Good Parts -- AST & Pretty Printer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "js-jquery_1_11_1" = callPackage @@ -121567,6 +124521,7 @@ self: { ]; description = "High level interface for webkit-javascriptcore"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "jsaddle-hello" = callPackage @@ -121582,6 +124537,7 @@ self: { homepage = "https://github.com/ghcjs/jsaddle-hello"; description = "JSaddle Hello World, an example package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "jsc" = callPackage @@ -121604,6 +124560,7 @@ self: { jailbreak = true; description = "High level interface for webkit-javascriptcore"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "jsmw" = callPackage @@ -121616,6 +124573,7 @@ self: { jailbreak = true; description = "Javascript Monadic Writer base package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json" = callPackage @@ -121889,7 +124847,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "json-autotype" = callPackage + "json-autotype_1_0_11" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, directory , filepath, GenericPretty, hashable, hflags, hint, lens, mmap, mtl , pretty, process, QuickCheck, scientific, smallcheck, text @@ -121919,6 +124877,72 @@ self: { homepage = "https://github.com/mgajda/json-autotype"; description = "Automatic type declaration for JSON input data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "json-autotype" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers, directory + , filepath, GenericPretty, hashable, hflags, hint, lens, mmap, mtl + , pretty, process, QuickCheck, scientific, smallcheck, text + , uniplate, unordered-containers, vector + }: + mkDerivation { + pname = "json-autotype"; + version = "1.0.12"; + sha256 = "3ae9f925262fac423e33f7768ba7b9ce3c34a1d32ec7042d4db430084d5a1ed1"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring containers filepath GenericPretty hashable + hflags hint lens mmap mtl pretty process scientific text uniplate + unordered-containers vector + ]; + executableHaskellDepends = [ + aeson base bytestring containers filepath GenericPretty hashable + hflags hint lens mtl pretty process scientific text uniplate + unordered-containers vector + ]; + testHaskellDepends = [ + aeson base bytestring containers directory filepath GenericPretty + hashable hflags lens mtl pretty process QuickCheck scientific + smallcheck text uniplate unordered-containers vector + ]; + homepage = "https://github.com/mgajda/json-autotype"; + description = "Automatic type declaration for JSON input data"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "json-autotype_1_0_13" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers, directory + , filepath, GenericPretty, hashable, hflags, hint, lens, mmap, mtl + , pretty, process, QuickCheck, scientific, smallcheck, text + , uniplate, unordered-containers, vector + }: + mkDerivation { + pname = "json-autotype"; + version = "1.0.13"; + sha256 = "ae564db762724c1ac50c1c2afff69bfd9021a1b083d064c5400caa80e3a12ea9"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring containers filepath GenericPretty hashable + hflags hint lens mmap mtl pretty process scientific text uniplate + unordered-containers vector + ]; + executableHaskellDepends = [ + aeson base bytestring containers filepath GenericPretty hashable + hflags hint lens mtl pretty process scientific text uniplate + unordered-containers vector + ]; + testHaskellDepends = [ + aeson base bytestring containers directory filepath GenericPretty + hashable hflags lens mtl pretty process QuickCheck scientific + smallcheck text uniplate unordered-containers vector + ]; + homepage = "https://github.com/mgajda/json-autotype"; + description = "Automatic type declaration for JSON input data"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json-b" = callPackage @@ -121943,6 +124967,7 @@ self: { homepage = "http://github.com/jsnx/JSONb/"; description = "JSON parser that uses byte strings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json-builder" = callPackage @@ -121997,6 +125022,7 @@ self: { homepage = "http://github.com/snoyberg/json-enumerator"; description = "Pure-Haskell utilities for dealing with JSON with the enumerator package. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json-extra" = callPackage @@ -122082,6 +125108,7 @@ self: { homepage = "https://github.com/sannsyn/json-pointer-hasql"; description = "JSON Pointer extensions for Hasql"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json-python" = callPackage @@ -122115,6 +125142,7 @@ self: { homepage = "http://github.com/finnsson/json-qq"; description = "Json Quasiquatation library for Haskell"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json-rpc" = callPackage @@ -122497,6 +125525,7 @@ self: { homepage = "https://github.com/ondrap/json-stream"; description = "Incremental applicative JSON parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "json-togo" = callPackage @@ -122534,6 +125563,7 @@ self: { ]; description = "A collection of JSON tools"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json-types" = callPackage @@ -122561,6 +125591,7 @@ self: { ]; description = "Library provides support for JSON"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json2-hdbc" = callPackage @@ -122576,6 +125607,7 @@ self: { ]; description = "Support JSON for SQL Database"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json2-types" = callPackage @@ -122618,6 +125650,7 @@ self: { homepage = "https://github.com/dpwright/jsonresume.hs"; description = "Parser and datatypes for the JSON Resume format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jsonrpc-conduit" = callPackage @@ -122718,6 +125751,7 @@ self: { ]; description = "Extract substructures from JSON by following a path"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "judy" = callPackage @@ -122734,6 +125768,7 @@ self: { homepage = "http://github.com/mwotton/judy"; description = "Fast, scalable, mutable dynamic arrays, maps and hashes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {Judy = null;}; "jukebox" = callPackage @@ -122755,6 +125790,20 @@ self: { executableHaskellDepends = [ base ]; description = "A first-order reasoning toolbox"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + }) {}; + + "jump" = callPackage + ({ mkDerivation, base, criterion, hspec }: + mkDerivation { + pname = "jump"; + version = "0.0.0.0"; + sha256 = "3144c838fb44e18619f9dfb0e28284264e9c0a26b33e91fbad98921e66f07ea4"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base criterion hspec ]; + homepage = "http://github.com/commercialhaskell/jump#readme"; + description = "Nothing to see here, move along"; + license = stdenv.lib.licenses.mit; }) {}; "jumpthefive" = callPackage @@ -122856,6 +125905,7 @@ self: { homepage = "https://github.com/abhinav/kafka-client"; description = "Low-level Haskell client library for Apache Kafka 0.7."; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "kan-extensions_4_1_1" = callPackage @@ -122991,6 +126041,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Binary parsing with random access"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kanji" = callPackage @@ -123069,6 +126120,7 @@ self: { homepage = "http://ittc.ku.edu/csdl/fpg/Tools/KansasLava"; description = "Kansas Lava is a hardware simulator and VHDL generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kansas-lava-cores" = callPackage @@ -123089,6 +126141,7 @@ self: { homepage = "http://ittc.ku.edu/csdl/fpg/Tools/KansasLava"; description = "FPGA Cores Written in Kansas Lava"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kansas-lava-papilio" = callPackage @@ -123106,6 +126159,7 @@ self: { ]; description = "Kansas Lava support files for the Papilio FPGA board"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kansas-lava-shake" = callPackage @@ -123117,6 +126171,7 @@ self: { libraryHaskellDepends = [ base hastache kansas-lava shake text ]; description = "Shake rules for building Kansas Lava projects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "karakuri" = callPackage @@ -123134,6 +126189,7 @@ self: { homepage = "https://github.com/fumieval/karakuri"; description = "Good stateful automata"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "karver" = callPackage @@ -123154,6 +126210,59 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "katip" = callPackage + ({ mkDerivation, aeson, auto-update, base, bytestring, containers + , directory, either, exceptions, hostname, lens, lens-aeson + , monad-control, mtl, old-locale, quickcheck-instances + , regex-tdfa-rc, resourcet, string-conv, tasty, tasty-hunit + , tasty-quickcheck, template-haskell, temporary, text, time + , time-locale-compat, transformers, transformers-base + , transformers-compat, unix, unordered-containers + }: + mkDerivation { + pname = "katip"; + version = "0.1.1.0"; + sha256 = "37b3c7e8975343a0f3e819b402b39b97c838916a42f00a497fcdf4e04512c1e8"; + libraryHaskellDepends = [ + aeson auto-update base bytestring containers either exceptions + hostname lens lens-aeson monad-control mtl old-locale resourcet + string-conv template-haskell text time time-locale-compat + transformers transformers-base transformers-compat unix + unordered-containers + ]; + testHaskellDepends = [ + aeson base directory quickcheck-instances regex-tdfa-rc tasty + tasty-hunit tasty-quickcheck template-haskell temporary text time + ]; + description = "A structured logging framework"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "katip-elasticsearch" = callPackage + ({ mkDerivation, aeson, async, base, bloodhound, containers + , enclosed-exceptions, exceptions, http-client, http-types, katip + , lens, lens-aeson, quickcheck-instances, random, retry, scientific + , stm, stm-chans, tasty, tasty-hunit, tasty-quickcheck, text, time + , transformers, unordered-containers, uuid, vector + }: + mkDerivation { + pname = "katip-elasticsearch"; + version = "0.1.1.0"; + sha256 = "4985289f907ce8b00041bd5dd5126745eff3b7f55a5a5e8aec349869413b990f"; + libraryHaskellDepends = [ + aeson async base bloodhound enclosed-exceptions exceptions + http-client http-types katip random retry scientific stm stm-chans + text time transformers unordered-containers uuid + ]; + testHaskellDepends = [ + aeson base bloodhound containers http-client http-types katip lens + lens-aeson quickcheck-instances scientific stm tasty tasty-hunit + tasty-quickcheck text time transformers unordered-containers vector + ]; + description = "ElasticSearch scribe for the Katip logging framework"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "katt" = callPackage ({ mkDerivation, aeson, base, bytestring, ConfigFile, containers , directory, errors, filepath, lens, mtl, parsec, text, url, wreq @@ -123175,6 +126284,7 @@ self: { homepage = "https://github.com/davnils/katt"; description = "Client for the Kattis judge system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kazura-queue" = callPackage @@ -123196,6 +126306,7 @@ self: { homepage = "http://github.com/asakamirai/kazura-queue"; description = "Fast concurrent queues much inspired by unagi-chan"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-darwin" ]; }) {}; "kbq-gu" = callPackage @@ -123332,6 +126443,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Gtk rails - Gtk-based global environment for MVC applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-mvc-model-lightmodel" = callPackage @@ -123349,6 +126461,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Rapid Gtk Application Development - Reactive Protected Light Models"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-mvc-model-protectedmodel" = callPackage @@ -123366,6 +126479,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Rapid Gtk Application Development - Protected Reactive Models"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-mvc-solutions-config" = callPackage @@ -123400,6 +126514,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Gtk rails - Common solutions to recurrent problems in Gtk applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-mvc-view" = callPackage @@ -123426,6 +126541,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Gtk rails - Gtk-based View for MVC applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "keera-hails-reactive-fs" = callPackage @@ -123442,6 +126558,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Rails - Files as Reactive Values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-reactive-gtk" = callPackage @@ -123459,6 +126576,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Gtk rails - Reactive Fields for Gtk widgets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-reactive-network" = callPackage @@ -123473,6 +126591,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Rails - Sockets as Reactive Values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-reactive-polling" = callPackage @@ -123488,6 +126607,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Rails - Polling based Readable RVs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-reactive-wx" = callPackage @@ -123502,6 +126622,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Rails - Reactive Fields for WX widgets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-reactive-yampa" = callPackage @@ -123518,6 +126639,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Rails - FRP Yampa Signal Functions as RVs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-reactivelenses" = callPackage @@ -123530,6 +126652,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Reactive Haskell on Rails - Lenses applied to Reactive Values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-reactivevalues" = callPackage @@ -123549,6 +126672,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Rails - Reactive Values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-posture" = callPackage @@ -123583,6 +126707,7 @@ self: { homepage = "http://keera.co.uk/projects/keera-posture"; description = "Get notifications when your sitting posture is inappropriate"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) SDL_mixer;}; "keiretsu" = callPackage @@ -123605,6 +126730,7 @@ self: { jailbreak = true; description = "Multi-process orchestration for development and integration testing"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keter_1_3_6" = callPackage @@ -123950,6 +127076,7 @@ self: { ]; description = "a dAmn ↔ IRC proxy"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keycode_0_1" = callPackage @@ -124006,6 +127133,7 @@ self: { homepage = "https://github.com/lunaryorn/haskell-keyring"; description = "Keyring access"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keys_3_10_1" = callPackage @@ -124095,6 +127223,7 @@ self: { homepage = "http://github.com/cdornan/keystore"; description = "Managing stores of secret things"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keyvaluehash" = callPackage @@ -124166,6 +127295,7 @@ self: { homepage = "http://github.com/kasbah/haskell-kicad-data"; description = "Parser and writer for KiCad files"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kickass-torrents-dump-parser" = callPackage @@ -124184,6 +127314,7 @@ self: { jailbreak = true; description = "Parses kat.ph torrent dumps"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kickchan" = callPackage @@ -124220,6 +127351,7 @@ self: { ]; description = "Process KIF iOS test logs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kinds" = callPackage @@ -124253,6 +127385,7 @@ self: { homepage = "http://github.com/nkpart/kit"; description = "A dependency manager for Xcode (Objective-C) projects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kmeans" = callPackage @@ -124281,6 +127414,7 @@ self: { ]; description = "Sequential and parallel implementations of Lloyd's algorithm"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kmeans-vector" = callPackage @@ -124340,6 +127474,7 @@ self: { doHaddock = false; description = "\"map German words to code representing pronunciation\""; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kontrakcja-templates" = callPackage @@ -124398,6 +127533,7 @@ self: { homepage = "http://blog.malde.org/"; description = "The Korfu ORF Utility"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kqueue" = callPackage @@ -124413,6 +127549,7 @@ self: { homepage = "http://github.com/hesselink/kqueue"; description = "A binding to the kqueue event library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kraken" = callPackage @@ -124476,6 +127613,7 @@ self: { homepage = "https://github.com/corngood/ktx"; description = "A binding for libktx from Khronos"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {egl = null; inherit (pkgs) glew;}; "kure_2_4_10" = callPackage @@ -124566,6 +127704,7 @@ self: { homepage = "http://ittc.ku.edu/~andygill/kure.php"; description = "Generator for Boilerplate KURE Combinators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kyotocabinet" = callPackage @@ -124578,6 +127717,7 @@ self: { librarySystemDepends = [ kyotocabinet ]; description = "Mid level bindings to Kyoto Cabinet"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) kyotocabinet;}; "l-bfgs-b" = callPackage @@ -124591,6 +127731,7 @@ self: { homepage = "http://nonempty.org/software/haskell-l-bfgs-b"; description = "Bindings to L-BFGS-B, Fortran code for limited-memory quasi-Newton bound-constrained optimization"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {lbfgsb = null;}; "labeled-graph" = callPackage @@ -124602,6 +127743,7 @@ self: { libraryHaskellDepends = [ base labeled-tree ]; description = "Labeled graph structure"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "labeled-tree" = callPackage @@ -124638,6 +127780,7 @@ self: { homepage = "https://github.com/lucasdicioccio/laborantin-hs"; description = "an experiment management framework"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "labyrinth" = callPackage @@ -124661,6 +127804,7 @@ self: { homepage = "https://github.com/koterpillar/labyrinth"; description = "A complicated turn-based game"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "labyrinth-server" = callPackage @@ -124696,6 +127840,7 @@ self: { homepage = "https://github.com/koterpillar/labyrinth-server"; description = "A complicated turn-based game - Web server"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lackey" = callPackage @@ -124731,6 +127876,7 @@ self: { homepage = "http://github.com/jfischoff/lagrangian"; description = "Solve Lagrange multiplier problems"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "laika" = callPackage @@ -124752,6 +127898,7 @@ self: { homepage = "https://github.com/nikita-volkov/laika"; description = "Minimalistic type-checked compile-time template engine"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambda-ast" = callPackage @@ -124778,6 +127925,7 @@ self: { homepage = "http://www.ittc.ku.edu/csdl/fpg/Tools/LambdaBridge"; description = "A bridge from Haskell (on a CPU) to VHDL on a FPGA"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lambda-canvas" = callPackage @@ -124790,6 +127938,7 @@ self: { jailbreak = true; description = "Educational drawing canvas for FP explorers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "lambda-devs" = callPackage @@ -124817,6 +127966,7 @@ self: { homepage = "http://github.com/alios/lambda-devs"; description = "a Paralell-DEVS implementaion based on distributed-process"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambda-options" = callPackage @@ -124856,6 +128006,7 @@ self: { homepage = "http://scravy.de/blog/2012-02-20/a-lambda-toolbox-in-haskell.htm"; description = "An application to work with the lambda calculus (for learning)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambda2js" = callPackage @@ -124882,6 +128033,7 @@ self: { libraryHaskellDepends = [ base parsec ]; testHaskellDepends = [ base parsec ]; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdaFeed" = callPackage @@ -124896,6 +128048,7 @@ self: { homepage = "http://www.cse.unsw.edu.au/~chak/haskell/lambdaFeed/"; description = "RSS 2.0 feed generator"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdaLit" = callPackage @@ -124913,6 +128066,7 @@ self: { ]; description = "..."; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdabot" = callPackage @@ -124935,6 +128089,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Lambdabot is a development tool and advanced IRC bot"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdabot-core" = callPackage @@ -124961,6 +128116,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Lambdabot core functionality"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdabot-haskell-plugins" = callPackage @@ -124990,6 +128146,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Lambdabot Haskell plugins"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdabot-irc-plugins" = callPackage @@ -125008,6 +128165,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "IRC plugins for lambdabot"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdabot-misc-plugins" = callPackage @@ -125031,6 +128189,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Lambdabot miscellaneous plugins"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdabot-novelty-plugins" = callPackage @@ -125051,6 +128210,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Novelty plugins for Lambdabot"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdabot-reference-plugins" = callPackage @@ -125069,6 +128229,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Lambdabot reference plugins"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdabot-social-plugins" = callPackage @@ -125087,6 +128248,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Social plugins for Lambdabot"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdabot-trusted" = callPackage @@ -125121,6 +128283,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Utility libraries for the advanced IRC bot, Lambdabot"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdacat" = callPackage @@ -125140,6 +128303,7 @@ self: { homepage = "http://github.com/baldo/lambdacat"; description = "Webkit Browser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lambdacms-core" = callPackage @@ -125195,6 +128359,7 @@ self: { executableHaskellDepends = [ base editline mtl pretty ]; description = "A simple lambda cube type checker"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdacube-bullet" = callPackage @@ -125209,6 +128374,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/LambdaCubeEngine"; description = "Example for combining LambdaCube and Bullet"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdacube-compiler" = callPackage @@ -125236,7 +128402,6 @@ self: { QuickCheck tasty tasty-quickcheck text time vect vector websockets wl-pprint ]; - doHaddock = false; homepage = "http://lambdacube3d.com"; description = "LambdaCube 3D is a DSL to program GPUs"; license = stdenv.lib.licenses.bsd3; @@ -125295,6 +128460,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/LambdaCubeEngine"; description = "3D rendering engine written entirely in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdacube-examples" = callPackage @@ -125311,6 +128477,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/LambdaCubeEngine"; description = "Examples for LambdaCube"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdacube-gl" = callPackage @@ -125334,10 +128501,10 @@ self: { GLFW-b JuicyPixels lambdacube-ir network OpenGLRaw text time vector websockets ]; - doHaddock = false; homepage = "http://lambdacube3d.com"; description = "OpenGL 3.3 Core Profile backend for LambdaCube 3D"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "lambdacube-ir" = callPackage @@ -125371,6 +128538,7 @@ self: { homepage = "http://lambdacube3d.wordpress.com/"; description = "Samples for LambdaCube 3D"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdatex" = callPackage @@ -125418,6 +128586,7 @@ self: { homepage = "http://github.com/ashyisme/lambdatwit"; description = "Lambdabot running as a twitter bot. Similar to the @fsibot f# bot."; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdiff" = callPackage @@ -125437,6 +128606,7 @@ self: { homepage = "https://github.com/jamwt/lambdiff.git"; description = "Diff Viewer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lame-tester" = callPackage @@ -125454,6 +128624,7 @@ self: { homepage = "http://github.com/TheBizzle"; description = "A strange and unnecessary selective test-running library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-asn1" = callPackage @@ -125485,6 +128656,7 @@ self: { homepage = "http://github.com/knrafto/language-bash/"; description = "Parsing and pretty-printing Bash shell scripts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "language-boogie" = callPackage @@ -125510,6 +128682,7 @@ self: { homepage = "https://bitbucket.org/nadiapolikarpova/boogaloo"; description = "Interpreter and language infrastructure for Boogie"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-c" = callPackage @@ -125560,6 +128733,7 @@ self: { homepage = "http://github.com/ghulette/language-c-comments"; description = "Extracting comments from C code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-c-inline" = callPackage @@ -125579,6 +128753,7 @@ self: { homepage = "https://github.com/mchakravarty/language-c-inline/"; description = "Inline C & Objective-C code in Haskell for language interoperability"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-c-quote_0_10_2" = callPackage @@ -126042,6 +129217,7 @@ self: { mtl parsec QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 uniplate wl-pprint ]; + doCheck = false; homepage = "http://github.com/jswebtools/language-ecmascript"; description = "JavaScript parser and pretty-printer library"; license = stdenv.lib.licenses.bsd3; @@ -126080,6 +129256,7 @@ self: { homepage = "https://github.com/scottgw/language-eiffel"; description = "Parser and pretty printer for the Eiffel language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-fortran" = callPackage @@ -126087,8 +129264,8 @@ self: { }: mkDerivation { pname = "language-fortran"; - version = "0.4"; - sha256 = "6274cb5cf9ebea85f616bd0276345bda76160766e67ad4d7f6173f5f19b7780e"; + version = "0.5"; + sha256 = "e95bb7a065c4ed8020410d18e633beb5c0e9617ea14176c72d031555432fdf65"; libraryHaskellDepends = [ array base haskell-src parsec syb ]; libraryToolDepends = [ alex happy ]; description = "Fortran lexer and parser, language support, and extensions"; @@ -126156,6 +129333,7 @@ self: { jailbreak = true; description = "A library for analysis and synthesis of Go code"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-guess" = callPackage @@ -126241,6 +129419,7 @@ self: { ]; description = "Parser for Java .class files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-javascript_0_5_13" = callPackage @@ -126445,6 +129624,7 @@ self: { homepage = "http://github.com/jtdaugherty/language-mixal/"; description = "Parser, pretty-printer, and AST types for the MIXAL assembly language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-nix" = callPackage @@ -126484,6 +129664,7 @@ self: { homepage = "http://www.tiresiaspress.us/haskell/language-objc"; description = "Analysis and generation of Objective C code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-openscad" = callPackage @@ -126527,8 +129708,8 @@ self: { ({ mkDerivation, aeson, ansi-wl-pprint, attoparsec, base , base16-bytestring, bytestring, case-insensitive, containers , cryptonite, directory, either, exceptions, filecache, formatting - , Glob, hashable, hruby, hslogger, hslua, hspec, HUnit, lens - , lens-aeson, megaparsec, memory, mtl, operational + , Glob, hashable, hruby, hslogger, hslua, hspec, hspec-megaparsec + , 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 @@ -126536,8 +129717,8 @@ self: { }: mkDerivation { pname = "language-puppet"; - version = "1.1.5"; - sha256 = "1448e6a601ccf3468b856c6c53e0ba1e0b3d7df91da26e727e80ee203189fccc"; + version = "1.1.5.1"; + sha256 = "d4f237f460294564d34de5d9fb781d4d6f9fbd465a9fb5d3396af8270f2e2438"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -126556,14 +129737,15 @@ self: { yaml ]; testHaskellDepends = [ - ansi-wl-pprint base either Glob hspec HUnit lens megaparsec - scientific strict-base-types temporary text unix - unordered-containers vector + ansi-wl-pprint base either Glob hslogger hspec hspec-megaparsec + HUnit lens megaparsec mtl scientific strict-base-types temporary + text 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 @@ -126597,6 +129779,7 @@ self: { homepage = "http://www.cs.mu.oz.au/~bjpop/"; description = "Generate coloured XHTML for Python code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-python-test" = callPackage @@ -126629,6 +129812,7 @@ self: { homepage = "https://github.com/qux-lang/language-qux"; description = "Utilities for working with the Qux language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-sh" = callPackage @@ -126645,6 +129829,7 @@ self: { homepage = "http://code.haskell.org/shsh/"; description = "A package for parsing shell scripts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-slice" = callPackage @@ -126685,6 +129870,7 @@ self: { homepage = "https://github.com/bitonic/language-spelling"; description = "Various tools to detect/correct mistakes in words"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-sqlite" = callPackage @@ -126701,6 +129887,7 @@ self: { homepage = "http://dankna.com/software/"; description = "Full parser and generator for SQL as implemented by SQLite3"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-thrift_0_6_2_0" = callPackage @@ -126870,6 +130057,7 @@ self: { jailbreak = true; description = "Tool to track security alerts on LWN"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "latest-npm-version" = callPackage @@ -126902,6 +130090,7 @@ self: { homepage = "https://github.com/passy/latest-npm-version"; description = "Find the latest version of a package on npm"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "latex" = callPackage @@ -127105,6 +130294,7 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "High and low-level interface to the Novation Launchpad midi controller"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lax" = callPackage @@ -127130,6 +130320,7 @@ self: { homepage = "http://github.com/duairc/layers"; description = "Modular type class machinery for monad transformer stacks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "layers-game" = callPackage @@ -127149,6 +130340,7 @@ self: { jailbreak = true; description = "A prototypical 2d platform game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "layout" = callPackage @@ -127160,6 +130352,7 @@ self: { libraryHaskellDepends = [ base convertible hinduce-missingh ]; description = "Turn values into pretty text or markup"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "layout-bootstrap" = callPackage @@ -127172,6 +130365,7 @@ self: { homepage = "https://bitbucket.org/dpwiz/layout-bootstrap"; description = "Template and widgets for Bootstrap2 to use with Text.Blaze.Html5"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lazy-csv_0_5" = callPackage @@ -127226,6 +130420,7 @@ self: { libraryHaskellDepends = [ array base ]; description = "Efficient implementation of lazy monolithic arrays (lazy in indexes)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lazyio" = callPackage @@ -127263,6 +130458,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Differential solving with lazy splines"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lbfgs" = callPackage @@ -127313,6 +130509,7 @@ self: { homepage = "http://urchin.earth.li/~ian/cabal/lcs/"; description = "Find longest common sublist of two lists"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lda" = callPackage @@ -127372,6 +130569,7 @@ self: { homepage = "http://rampa.sk/static/ldif.html"; description = "The LDAP Data Interchange Format (LDIF) tools"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "leaf" = callPackage @@ -127391,6 +130589,7 @@ self: { homepage = "https://github.com/skypers/leaf"; description = "A simple portfolio generator"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "leaky" = callPackage @@ -127411,6 +130610,7 @@ self: { homepage = "http://fremissant.net/leaky"; description = "Robust space leak, and its strictification"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "leankit-api" = callPackage @@ -127468,6 +130668,7 @@ self: { ]; description = "Haskell code for learning physics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "learn-physics-examples" = callPackage @@ -127486,6 +130687,7 @@ self: { jailbreak = true; description = "examples for learn-physics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "learning-hmm" = callPackage @@ -127560,6 +130762,7 @@ self: { homepage = "http://www.leksah.org"; description = "Haskell IDE written in Haskell"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "leksah-server" = callPackage @@ -127597,6 +130800,7 @@ self: { homepage = "http://leksah.org"; description = "Metadata collection for leksah"; license = "GPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "lendingclub" = callPackage @@ -128293,6 +131497,7 @@ self: { homepage = "http://github.com/kim/leveldb-haskell"; description = "Haskell bindings to LevelDB"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) leveldb;}; "leveldb-haskell-fork" = callPackage @@ -128320,6 +131525,7 @@ self: { homepage = "http://github.com/kim/leveldb-haskell"; description = "Haskell bindings to LevelDB"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) leveldb;}; "levmar" = callPackage @@ -128333,6 +131539,7 @@ self: { homepage = "https://github.com/basvandijk/levmar"; description = "An implementation of the Levenberg-Marquardt algorithm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "levmar-chart" = callPackage @@ -128351,6 +131558,7 @@ self: { jailbreak = true; description = "Plots the results of the Levenberg-Marquardt algorithm in a chart"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lexer-applicative" = callPackage @@ -128370,6 +131578,19 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "lfst" = callPackage + ({ mkDerivation, base, containers, doctest, lattices, QuickCheck }: + mkDerivation { + pname = "lfst"; + version = "1.0.2"; + sha256 = "daf5167b5239834939082783c17b39bebf47400ccf2286077360a40902b1f1f4"; + libraryHaskellDepends = [ base containers doctest lattices ]; + testHaskellDepends = [ base doctest QuickCheck ]; + homepage = "https://github.com/ci-fst/lfst"; + description = "L-Fuzzy Set Theory implementation in Haskell"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "lgtk" = callPackage ({ mkDerivation, array, base, cairo, colour, containers , diagrams-cairo, diagrams-lib, directory, filepath, fsnotify @@ -128397,6 +131618,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/LGtk"; description = "Lens GUI Toolkit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lha" = callPackage @@ -128409,6 +131631,7 @@ self: { homepage = "https://github.com/bytbox/lha.hs"; description = "Data structures for the Les Houches Accord"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lhae" = callPackage @@ -128430,6 +131653,7 @@ self: { homepage = "http://www.imn.htwk-leipzig.de/~abau/lhae"; description = "Simple spreadsheet program"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lhc" = callPackage @@ -128467,6 +131691,7 @@ self: { libraryHaskellDepends = [ bytestring haskell2010 HaXml lha ]; description = "Parser and writer for Les-Houches event files"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lhs2TeX-hl" = callPackage @@ -128569,6 +131794,7 @@ self: { homepage = "http://trac.loria.fr/~geni"; description = "A natural language generator (specifically, an FB-LTAG surface realiser)"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "libarchive-conduit" = callPackage @@ -128606,6 +131832,7 @@ self: { homepage = "https://github.com/peddie/libconfig-haskell"; description = "Haskell bindings to libconfig"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) libconfig;}; "libcspm" = callPackage @@ -128628,6 +131855,7 @@ self: { homepage = "https://github.com/tomgr/libcspm"; description = "A library providing a parser, type checker and evaluator for CSPM"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "libexpect" = callPackage @@ -128640,6 +131868,7 @@ self: { librarySystemDepends = [ expect tcl ]; description = "Library for interacting with console applications via pseudoterminals"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) expect; inherit (pkgs) tcl;}; "libffi" = callPackage @@ -128694,6 +131923,7 @@ self: { homepage = "http://maartenfaddegon.nl"; description = "Store and manipulate data in a graph"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "libhbb" = callPackage @@ -128718,6 +131948,7 @@ self: { homepage = "https://bitbucket.org/bhris/libhbb"; description = "Backend for text editors to provide better Haskell editing support"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "libinfluxdb" = callPackage @@ -128762,6 +131993,7 @@ self: { ]; description = "Jenkins API interface"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "liblastfm" = callPackage @@ -128803,6 +132035,7 @@ self: { homepage = "http://github.com/NathanHowell/liblinear-enumerator"; description = "liblinear iteratee"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "libltdl" = callPackage @@ -128818,6 +132051,7 @@ self: { homepage = "http://www.eecs.harvard.edu/~mainland/projects/libffi"; description = "FFI interface to libltdl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "libmpd" = callPackage @@ -128852,6 +132086,7 @@ self: { librarySystemDepends = [ libnotify ]; description = "Bindings to libnotify library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) libnotify;}; "libnvvm" = callPackage @@ -128888,6 +132123,7 @@ self: { homepage = "http://okmij.org/ftp/"; description = "An evolving collection of Oleg Kiselyov's Haskell modules"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "libpafe" = callPackage @@ -128902,6 +132138,7 @@ self: { jailbreak = true; description = "Wrapper for libpafe"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {pafe = null;}; "libpq" = callPackage @@ -128915,6 +132152,7 @@ self: { homepage = "http://github.com/tnarg/haskell-libpq"; description = "libpq binding for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) postgresql;}; "librandomorg" = callPackage @@ -128999,6 +132237,7 @@ self: { homepage = "http://redmine.iportnov.ru/projects/libssh2-hs"; description = "Conduit wrappers for libssh2 FFI bindings (see libssh2 package)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "libstackexchange" = callPackage @@ -129035,6 +132274,7 @@ self: { ]; description = "Haskell bindings for libsystemd-daemon"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {libsystemd-daemon = null; systemd-daemon = null;}; "libsystemd-journal" = callPackage @@ -129072,18 +132312,19 @@ self: { }) {inherit (pkgs) taglib;}; "libvirt-hs" = callPackage - ({ mkDerivation, base, c2hs, syb, virt }: + ({ mkDerivation, base, c2hs, libvirt, syb }: mkDerivation { pname = "libvirt-hs"; - version = "0.1"; - sha256 = "8cac2bdf11da09cef333fe7f88315cc4d24e4dd680a28134245a14eefedffd39"; + version = "0.1.2"; + sha256 = "5472bb1b8e153afc6352176731140c99eaca03b34da447bd3f55ce2957f9ee62"; libraryHaskellDepends = [ base syb ]; - librarySystemDepends = [ virt ]; + libraryPkgconfigDepends = [ libvirt ]; libraryToolDepends = [ c2hs ]; homepage = "http://redmine.iportnov.ru/projects/libvirt-hs"; description = "FFI bindings to libvirt virtualization API (http://libvirt.org)"; license = stdenv.lib.licenses.bsd3; - }) {virt = null;}; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) libvirt;}; "libvorbis" = callPackage ({ mkDerivation, base, bytestring, cpu }: @@ -129106,6 +132347,7 @@ self: { libraryHaskellDepends = [ base bindings-DSL ]; description = "Bindings to libxls"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "libxml" = callPackage @@ -129118,6 +132360,7 @@ self: { librarySystemDepends = [ libxml2 ]; description = "Binding to libxml2"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libxml2;}; "libxml-enumerator" = callPackage @@ -129162,6 +132405,7 @@ self: { jailbreak = true; description = "Binding to libxslt"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {xslt = null;}; "life" = callPackage @@ -129176,6 +132420,7 @@ self: { homepage = "http://github.com/sproingie/haskell-cells/"; description = "Conway's Life cellular automaton"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "lift-generics" = callPackage @@ -129405,6 +132650,7 @@ self: { homepage = "http://icfpcontest2012.wordpress.com/"; description = "A boulderdash-like game and solution validator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ligature" = callPackage @@ -129445,6 +132691,7 @@ self: { libraryToolDepends = [ alex happy ]; description = "Lighttpd configuration file tools"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lighttpd-conf-qq" = callPackage @@ -129461,6 +132708,7 @@ self: { ]; description = "A QuasiQuoter for lighttpd configuration files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lilypond" = callPackage @@ -129477,6 +132725,7 @@ self: { ]; description = "Bindings to Lilypond"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "limp" = callPackage @@ -129510,6 +132759,7 @@ self: { homepage = "https://github.com/amosr/limp-cbc"; description = "bindings for integer linear programming solver Coin/CBC"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lin-alg" = callPackage @@ -129521,6 +132771,7 @@ self: { libraryHaskellDepends = [ base NumInstances vector ]; description = "Low-dimensional matrices and vectors for graphics and physics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linda" = callPackage @@ -129532,6 +132783,7 @@ self: { libraryHaskellDepends = [ base hmatrix HUnit ]; description = "LINear Discriminant Analysis"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lindenmayer" = callPackage @@ -129852,6 +133104,7 @@ self: { homepage = "http://github.com/cartazio/hs-cblas"; description = "A linear algebra library with bindings to BLAS and LAPACK"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linear-circuit" = callPackage @@ -129873,6 +133126,7 @@ self: { homepage = "http://hub.darcs.net/thielema/linear-circuit"; description = "Compute resistance of linear electrical circuits"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linear-grammar" = callPackage @@ -129899,6 +133153,7 @@ self: { jailbreak = true; description = "Finite maps for linear use"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linear-opengl" = callPackage @@ -129916,6 +133171,7 @@ self: { homepage = "http://www.github.com/bgamari/linear-opengl"; description = "Isomorphisms between linear and OpenGL types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linear-vect" = callPackage @@ -129976,6 +133232,7 @@ self: { homepage = "http://github.com/jwiegley/linearscan-hoopl"; description = "Makes it easy to use the linearscan register allocator with Hoopl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linebreak" = callPackage @@ -130033,6 +133290,7 @@ self: { homepage = "http://www.haskell.org/~petersen/haskell/linkchk/"; description = "linkchk is a network interface link ping monitor"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linkcore" = callPackage @@ -130048,6 +133306,7 @@ self: { ]; description = "Combines multiple GHC Core modules into a single module"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linkedhashmap" = callPackage @@ -130109,6 +133368,7 @@ self: { homepage = "http://github.com/Helkafen/haskell-linode#readme"; description = "Bindings to the Linode API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linux-blkid" = callPackage @@ -130126,6 +133386,7 @@ self: { jailbreak = true; description = "Linux libblkid"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {blkid = null;}; "linux-cgroup" = callPackage @@ -130150,6 +133411,7 @@ self: { homepage = "http://github.com/bgamari/linux-evdev"; description = "Bindings to Linux evdev input device interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "linux-file-extents" = callPackage @@ -130164,6 +133426,7 @@ self: { homepage = "https://github.com/redneb/linux-file-extents"; description = "Retrieve file fragmentation information under Linux"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "linux-inotify" = callPackage @@ -130175,6 +133438,7 @@ self: { libraryHaskellDepends = [ base bytestring hashable unix ]; description = "Thinner binding to the Linux Kernel's inotify interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "linux-kmod" = callPackage @@ -130188,6 +133452,7 @@ self: { homepage = "https://github.com/tensor5/linux-kmod"; description = "Linux kernel modules support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {libkmod = null;}; "linux-mount" = callPackage @@ -130200,6 +133465,7 @@ self: { homepage = "https://github.com/tensor5/linux-mount"; description = "Mount and unmount filesystems"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "linux-namespaces" = callPackage @@ -130212,6 +133478,7 @@ self: { homepage = "https://github.com/redneb/hs-linux-namespaces"; description = "Create new or enter an existing linux namespaces"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "linux-perf" = callPackage @@ -130235,6 +133502,7 @@ self: { homepage = "https://github.com/bjpop/haskell-linux-perf"; description = "Read files generated by perf on Linux"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linux-ptrace" = callPackage @@ -130251,6 +133519,7 @@ self: { jailbreak = true; description = "Wrapping of Linux' ptrace(2)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linux-xattr" = callPackage @@ -130312,6 +133581,7 @@ self: { ]; description = "Labeled IO library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lio-fs" = callPackage @@ -130352,6 +133622,7 @@ self: { homepage = "http://simple.cx"; description = "LIO support for the Simple web framework"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lipsum-gen" = callPackage @@ -130811,6 +134082,7 @@ self: { homepage = "https://github.com/nikita-volkov/list-t-html-parser"; description = "Streaming HTML parser"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "list-t-http-client" = callPackage @@ -130906,6 +134178,7 @@ self: { homepage = "http://jwlato.webfactional.com/haskell/listlike-instances"; description = "Extra instances of the ListLike class"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lists" = callPackage @@ -130961,6 +134234,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Non-overloaded functions for concrete literals"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "live-sequencer" = callPackage @@ -130989,6 +134263,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Live-Sequencer"; description = "Live coding of MIDI music"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ll-picosat" = callPackage @@ -131001,6 +134276,7 @@ self: { librarySystemDepends = [ picosat ]; jailbreak = true; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) picosat;}; "llrbtree" = callPackage @@ -131034,6 +134310,7 @@ self: { homepage = "http://wiki.secondlife.com/wiki/LLSD"; description = "An implementation of the LLSD data system"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm" = callPackage @@ -131051,6 +134328,7 @@ self: { homepage = "https://github.com/bos/llvm"; description = "Bindings to the LLVM compiler toolkit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-analysis" = callPackage @@ -131078,6 +134356,7 @@ self: { ]; description = "A Haskell library for analyzing LLVM bitcode"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-base" = callPackage @@ -131090,6 +134369,7 @@ self: { homepage = "https://github.com/bos/llvm"; description = "FFI bindings to the LLVM compiler toolkit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-base-types" = callPackage @@ -131109,6 +134389,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "The base types for a mostly pure Haskell LLVM analysis library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-base-util" = callPackage @@ -131121,6 +134402,7 @@ self: { homepage = "https://github.com/bos/llvm"; description = "Utilities for bindings to the LLVM compiler toolkit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-data-interop" = callPackage @@ -131141,6 +134423,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "A low-level data interoperability binding for LLVM"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-extra" = callPackage @@ -131160,6 +134443,7 @@ self: { homepage = "http://code.haskell.org/~thielema/llvm-extra/"; description = "Utility functions for the llvm interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-ffi" = callPackage @@ -131175,6 +134459,7 @@ self: { homepage = "http://haskell.org/haskellwiki/LLVM"; description = "FFI bindings to the LLVM compiler toolkit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (self.llvmPackages) llvm;}; "llvm-general" = callPackage @@ -131202,6 +134487,7 @@ self: { homepage = "http://github.com/bscarlet/llvm-general/"; description = "General purpose LLVM bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {llvm-config = null;}; "llvm-general-pure" = callPackage @@ -131248,6 +134534,7 @@ self: { homepage = "https://github.com/tvh/llvm-general-quote"; description = "QuasiQuoting llvm code for llvm-general"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-ht" = callPackage @@ -131264,6 +134551,7 @@ self: { homepage = "http://darcs.serpentine.com/llvm/"; description = "Bindings to the LLVM compiler toolkit with some custom extensions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-pkg-config" = callPackage @@ -131337,6 +134625,7 @@ self: { ]; description = "Bindings to the LLVM compiler toolkit using type families"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-tools" = callPackage @@ -131364,6 +134653,7 @@ self: { jailbreak = true; description = "Useful tools built on llvm-analysis"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lmdb" = callPackage @@ -131377,6 +134667,7 @@ self: { homepage = "http://github.com/dmbarbour/haskell-lmdb"; description = "Lightning MDB bindings"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) lmdb;}; "lmonad" = callPackage @@ -131397,6 +134688,7 @@ self: { ]; description = "LMonad is an Information Flow Control (IFC) framework for Haskell applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lmonad-yesod" = callPackage @@ -131417,6 +134709,7 @@ self: { ]; description = "LMonad for Yesod integrates LMonad's IFC with Yesod web applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "load-env" = callPackage @@ -131468,6 +134761,7 @@ self: { homepage = "http://www.comp.leeds.ac.uk/sc06r2s/Projects/HaskellLocalSearch"; description = "Generalised local search within Haskell, for applications in combinatorial optimisation"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "located-base" = callPackage @@ -131514,6 +134808,7 @@ self: { executableHaskellDepends = [ base ]; description = "Support for precise error locations in source files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "loch-th" = callPackage @@ -131572,6 +134867,7 @@ self: { ]; description = "Very simple poll lock"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lockfree-queue" = callPackage @@ -131614,6 +134910,7 @@ self: { homepage = "https://github.com/scrive/log"; description = "Structured logging solution with multiple backends"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "log-domain_0_9_3" = callPackage @@ -131833,6 +135130,7 @@ self: { homepage = "https://github.com/ibotty/log-effect"; description = "An extensible log effect using extensible-effects"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "log2json" = callPackage @@ -131848,6 +135146,7 @@ self: { homepage = "https://github.com/haroldl/log2json"; description = "Turn log file records into JSON"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "logfloat_0_12_1" = callPackage @@ -132026,6 +135325,7 @@ self: { homepage = "https://github.com/seereason/logic-classes"; description = "Framework for propositional and first order logic, theorem proving"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "logicst" = callPackage @@ -132110,6 +135410,7 @@ self: { jailbreak = true; description = "Useful utilities for the Lojban language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lojbanParser" = callPackage @@ -132124,6 +135425,7 @@ self: { executableHaskellDepends = [ base ]; description = "lojban parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lojbanXiragan" = callPackage @@ -132138,6 +135440,7 @@ self: { executableHaskellDepends = [ base ]; description = "lojban to xiragan"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lojysamban" = callPackage @@ -132152,6 +135455,7 @@ self: { homepage = "http://homepage3.nifty.com/salamander/myblog/lojysamban.html"; description = "Prolog with lojban"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lol" = callPackage @@ -132182,6 +135486,7 @@ self: { homepage = "https://github.com/cpeikert/Lol"; description = "A library for lattice cryptography"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-linux" ]; }) {}; "lol-apps" = callPackage @@ -132205,6 +135510,7 @@ self: { homepage = "https://github.com/cpeikert/Lol"; description = "Lattice-based cryptographic applications using Lol"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "loli" = callPackage @@ -132223,6 +135529,7 @@ self: { homepage = "http://github.com/nfjinjing/loli"; description = "A minimum web dev DSL in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lookup-tables" = callPackage @@ -132278,6 +135585,7 @@ self: { homepage = "https://github.com/konn/loop-effin"; description = "control-monad-loop port for effin"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "loop-while" = callPackage @@ -132325,6 +135633,7 @@ self: { homepage = "http://www.esc.cam.ac.uk/people/research-students/emily-king"; description = "Find all biological feedback loops within an ecosystem graph"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lord" = callPackage @@ -132365,6 +135674,7 @@ self: { homepage = "https://github.com/rnons/lord"; description = "A command line interface to online radios"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lorem" = callPackage @@ -132396,6 +135706,7 @@ self: { homepage = "http://www.tiresiaspress.us/haskell/loris"; description = "interface to Loris API"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {loris = null;}; "loshadka" = callPackage @@ -132435,6 +135746,7 @@ self: { homepage = "http://www.ncc.up.pt/~pbv/stuff/lostcities"; description = "An implementation of an adictive two-player card game"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lowgl" = callPackage @@ -132447,46 +135759,52 @@ self: { jailbreak = true; description = "Basic gl wrapper and reference"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "lp-diagrams" = callPackage - ({ mkDerivation, base, containers, glpk-hs, graphviz, labeled-tree - , lens, mtl, polynomials-bernstein, text, typography-geometry - , vector + ({ mkDerivation, base, containers, gasp, graphviz, labeled-tree + , lens, mtl, parsek, polynomials-bernstein, process, reflection + , text, typography-geometry, vector }: mkDerivation { pname = "lp-diagrams"; - version = "1.0"; - sha256 = "f10a4e0258fed5fde24a787d248a6e115c912374314f4091f11421500159b6a1"; + version = "2.0.0"; + sha256 = "8ff64960d7874d4a34867d8834eac9c535b73175f0abe8743b50dfd886aabf50"; libraryHaskellDepends = [ - base containers glpk-hs graphviz labeled-tree lens mtl - polynomials-bernstein text typography-geometry vector + base containers gasp graphviz labeled-tree lens mtl parsek + polynomials-bernstein process reflection text typography-geometry + vector ]; + jailbreak = true; description = "An EDSL for diagrams based based on linear constraints"; license = stdenv.lib.licenses.agpl3; - }) {}; + broken = true; + }) {gasp = null;}; "lp-diagrams-svg" = callPackage - ({ mkDerivation, base, containers, FontyFruity, JuicyPixels, lens - , linear, lp-diagrams, lucid-svg, mtl, optparse-applicative + ({ mkDerivation, base, containers, FontyFruity, gasp, JuicyPixels + , lens, linear, lp-diagrams, lucid-svg, mtl, optparse-applicative , svg-tree, text, vector }: mkDerivation { pname = "lp-diagrams-svg"; - version = "1.0"; - sha256 = "05b67150d7f4559f9b6aea62ffa9382551b1fb1ad56cfaf204ff2dc3c7db6325"; + version = "1.1"; + sha256 = "6cc63a8bf914fbc67e42c54c0c4327e81b650d56d9aee5b189946473453463b2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base containers FontyFruity JuicyPixels lens linear lp-diagrams - lucid-svg mtl optparse-applicative svg-tree text vector + base containers FontyFruity gasp JuicyPixels lens linear + lp-diagrams lucid-svg mtl optparse-applicative svg-tree text vector ]; executableHaskellDepends = [ - base containers FontyFruity lens lp-diagrams + base containers FontyFruity gasp lens lp-diagrams ]; + jailbreak = true; description = "SVG Backend for lp-diagrams"; - license = stdenv.lib.licenses.agpl3; - }) {}; + license = "GPL"; + broken = true; + }) {gasp = null;}; "lrucache" = callPackage ({ mkDerivation, base, containers, contravariant }: @@ -132518,6 +135836,7 @@ self: { homepage = "https://github.com/roelvandijk/ls-usb"; description = "List USB devices"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lscabal" = callPackage @@ -132536,6 +135855,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/lscabal"; description = "List exported modules from a set of .cabal files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lss" = callPackage @@ -132574,6 +135894,7 @@ self: { ]; description = "Paint an L-System Grammar"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ltext" = callPackage @@ -132616,6 +135937,7 @@ self: { homepage = "http://www.leksah.org"; description = "Leksah tool kit"; license = "GPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "ltl" = callPackage @@ -132661,6 +135983,7 @@ self: { jailbreak = true; description = "Library functions for reading and writing Lua chunks"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "luautils" = callPackage @@ -132766,7 +136089,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "lucid" = callPackage + "lucid_2_9_4" = callPackage ({ mkDerivation, base, bifunctors, blaze-builder, bytestring , containers, hashable, hspec, HUnit, mtl, parsec, text , transformers, unordered-containers @@ -132785,9 +136108,10 @@ self: { homepage = "https://github.com/chrisdone/lucid"; description = "Clear to write, read and edit DSL for HTML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "lucid_2_9_5" = callPackage + "lucid" = callPackage ({ mkDerivation, base, bifunctors, blaze-builder, bytestring , containers, hashable, hspec, HUnit, mmorph, mtl, parsec, text , transformers, unordered-containers @@ -132806,7 +136130,6 @@ self: { homepage = "https://github.com/chrisdone/lucid"; description = "Clear to write, read and edit DSL for HTML"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lucid-foundation" = callPackage @@ -132889,6 +136212,7 @@ self: { homepage = "http://www.imn.htwk-leipzig.de/~abau/lucienne"; description = "Server side feed aggregator/reader"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "luhn" = callPackage @@ -132915,6 +136239,7 @@ self: { ]; description = "Purely FunctionaL User Interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "luka" = callPackage @@ -132928,6 +136253,7 @@ self: { homepage = "https://github.com/nfjinjing/luka"; description = "Simple ObjectiveC runtime binding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {objc = null;}; "luminance_0_9_1" = callPackage @@ -132982,6 +136308,7 @@ self: { homepage = "https://github.com/phaazon/luminance"; description = "Type-safe, type-level and stateless graphics framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "luminance-samples_0_9" = callPackage @@ -133043,6 +136370,7 @@ self: { homepage = "https://github.com/phaazon/luminance-samples"; description = "Luminance samples"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "lushtags" = callPackage @@ -133058,6 +136386,7 @@ self: { homepage = "https://github.com/bitc/lushtags"; description = "Create ctags compatible tags files for Haskell programs"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "luthor" = callPackage @@ -133071,6 +136400,7 @@ self: { homepage = "https://github.com/Zankoku-Okuno/luthor"; description = "Tools for lexing and utilizing lexemes that integrate with Parsec"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lvish" = callPackage @@ -133099,6 +136429,7 @@ self: { jailbreak = true; description = "Parallel scheduler, LVar data structures, and infrastructure to build more"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lvmlib" = callPackage @@ -133120,6 +136451,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/bin/view/Helium/WebHome"; description = "The Lazy Virtual Machine (LVM)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lvmrun" = callPackage @@ -133162,6 +136494,7 @@ self: { ]; description = "A Lilypond-compiling music box"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lz4" = callPackage @@ -133197,6 +136530,7 @@ self: { homepage = "https://github.com/hvr/lzma"; description = "LZMA/XZ compression and decompression"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {inherit (pkgs) lzma;}; "lzma-clib" = callPackage @@ -133349,6 +136683,7 @@ self: { homepage = "https://github.com/hvr/lzma-streams"; description = "IO-Streams interface for lzma/xz compression"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "maam" = callPackage @@ -133745,6 +137080,7 @@ self: { homepage = "http://www.scannedinavian.com/~shae/mage-1.0pre35.tar.gz"; description = "Rogue-like"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ncurses;}; "magic" = callPackage @@ -133774,6 +137110,7 @@ self: { homepage = "http://hub.darcs.net/thielema/magico"; description = "Compute solutions for Magico puzzle"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "magma" = callPackage @@ -133807,6 +137144,7 @@ self: { homepage = "http://kagami.touhou.ru/projects/show/mahoro"; description = "ImageBoards to XMPP gate"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "maid" = callPackage @@ -133956,6 +137294,7 @@ self: { jailbreak = true; description = "Majordomo protocol for ZeroMQ"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "majority" = callPackage @@ -133968,6 +137307,7 @@ self: { homepage = "https://github.com/niswegmann/majority"; description = "Boyer-Moore Majority Vote Algorithm"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "make-hard-links" = callPackage @@ -134005,6 +137345,7 @@ self: { homepage = "https://github.com/Philonous/make-package"; description = "Make a cabalized package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "makedo" = callPackage @@ -134078,6 +137419,7 @@ self: { jailbreak = true; description = "The Haskell/Gtk+ Integrated Live Environment"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-all" = callPackage @@ -134103,6 +137445,7 @@ self: { doHaddock = false; description = "Virtual package to install all Manatee packages"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "manatee-anything" = callPackage @@ -134124,6 +137467,7 @@ self: { jailbreak = true; description = "Multithread interactive input/search framework for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-browser" = callPackage @@ -134143,6 +137487,7 @@ self: { jailbreak = true; description = "Browser extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "manatee-core" = callPackage @@ -134167,6 +137512,7 @@ self: { jailbreak = true; description = "The core of Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-curl" = callPackage @@ -134189,6 +137535,7 @@ self: { jailbreak = true; description = "Download Manager extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-editor" = callPackage @@ -134209,6 +137556,7 @@ self: { jailbreak = true; description = "Editor extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-filemanager" = callPackage @@ -134229,6 +137577,7 @@ self: { jailbreak = true; description = "File manager extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-imageviewer" = callPackage @@ -134249,6 +137598,7 @@ self: { jailbreak = true; description = "Image viewer extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-ircclient" = callPackage @@ -134273,6 +137623,7 @@ self: { jailbreak = true; description = "IRC client extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-mplayer" = callPackage @@ -134294,6 +137645,7 @@ self: { jailbreak = true; description = "Mplayer client extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-pdfviewer" = callPackage @@ -134314,6 +137666,7 @@ self: { jailbreak = true; description = "PDF viewer extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-processmanager" = callPackage @@ -134333,6 +137686,7 @@ self: { jailbreak = true; description = "Process manager extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-reader" = callPackage @@ -134353,6 +137707,7 @@ self: { jailbreak = true; description = "Feed reader extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "manatee-template" = callPackage @@ -134373,6 +137728,7 @@ self: { jailbreak = true; description = "Template code to create Manatee application"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-terminal" = callPackage @@ -134392,6 +137748,7 @@ self: { jailbreak = true; description = "Terminal Emulator extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "manatee-welcome" = callPackage @@ -134412,6 +137769,7 @@ self: { jailbreak = true; description = "Welcome module to help user play Manatee quickly"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mancala" = callPackage @@ -134616,6 +137974,7 @@ self: { homepage = "http://gitorious.org/maximus/mandulia"; description = "A zooming visualisation of the Mandelbrot Set as many Julia Sets"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mangopay_1_11_4" = callPackage @@ -134752,6 +138111,7 @@ self: { homepage = "https://github.com/leftaroundabout/manifolds"; description = "Sampling random points on general manifolds"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "manifolds" = callPackage @@ -134770,6 +138130,7 @@ self: { homepage = "https://github.com/leftaroundabout/manifolds"; description = "Coordinate-free hypersurfaces"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "map-syntax" = callPackage @@ -134810,6 +138171,7 @@ self: { homepage = "https://github.com/PolyglotSymposium/mappy"; description = "A functional programming language focused around maps"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "marionetta" = callPackage @@ -134829,6 +138191,7 @@ self: { homepage = "https://github.com/paolino/marionetta"; description = "A study of marionetta movements"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "markdown_0_1_13" = callPackage @@ -134920,6 +138283,7 @@ self: { homepage = "https://github.com/joelteon/markdown-kate"; description = "Convert Markdown to HTML, with XSS protection"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "markdown-pap" = callPackage @@ -134931,6 +138295,7 @@ self: { libraryHaskellDepends = [ base monads-tf papillon ]; description = "markdown parser with papillon"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "markdown-unlit_0_2_0_1" = callPackage @@ -134990,6 +138355,7 @@ self: { ]; description = "markdown to svg converter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "marked-pretty" = callPackage @@ -135042,6 +138408,7 @@ self: { testHaskellDepends = [ assertions base bifunctors memoize random ]; description = "Hidden Markov processes"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "markup_1_1_0" = callPackage @@ -135100,6 +138467,7 @@ self: { jailbreak = true; description = "A simple markup document preview (markdown, textile, reStructuredText)"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "marmalade-upload" = callPackage @@ -135130,6 +138498,7 @@ self: { homepage = "https://github.com/lunaryorn/marmalade-upload"; description = "Upload packages to Marmalade"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "marquise" = callPackage @@ -135164,6 +138533,7 @@ self: { testHaskellDepends = [ base bytestring hspec ]; description = "Client library for Vaultaire"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "marxup" = callPackage @@ -135189,6 +138559,7 @@ self: { jailbreak = true; description = "Markup language preprocessor for Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "masakazu-bot" = callPackage @@ -135213,6 +138584,7 @@ self: { homepage = "https://github.com/minamiyama1994/chomado-bot-on-haskell/tree/minamiyama1994"; description = "@minamiyama1994_bot on haskell"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mastermind" = callPackage @@ -135241,6 +138613,7 @@ self: { homepage = "http://www.github.com/massysett/matchers"; description = "Text matchers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) pcre;}; "math-functions" = callPackage @@ -135290,6 +138663,7 @@ self: { homepage = "http://jtdaugherty.github.io/mathblog/"; description = "A program for creating and managing a static weblog with LaTeX math and diagrams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mathgenealogy" = callPackage @@ -135351,6 +138725,7 @@ self: { homepage = "http://community.haskell.org/~TracyWadleigh/mathlink"; description = "Write Mathematica packages in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "matlab" = callPackage @@ -135364,6 +138739,7 @@ self: { jailbreak = true; description = "Matlab bindings and interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {eng = null; mat = null; mx = null;}; "matrices_0_4_2" = callPackage @@ -135528,6 +138904,7 @@ self: { homepage = "http://kagami.touhou.ru/projects/show/matsuri"; description = "ncurses XMPP client"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "maude" = callPackage @@ -135544,6 +138921,7 @@ self: { homepage = "https://github.com/davidlazar/maude-hs"; description = "An interface to the Maude rewriting system"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "maxent" = callPackage @@ -135567,6 +138945,7 @@ self: { homepage = "https://github.com/jfischoff/maxent"; description = "Compute Maximum Entropy Distributions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "maximal-cliques" = callPackage @@ -135600,6 +138979,7 @@ self: { homepage = "http://rochel.info/maxsharing/"; description = "Maximal sharing of terms in the lambda calculus with letrec"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "maybe-justify" = callPackage @@ -135632,6 +139012,7 @@ self: { homepage = "http://code.google.com/p/maybench/"; description = "Automated benchmarking tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mbox_0_3" = callPackage @@ -135677,6 +139058,7 @@ self: { homepage = "https://github.com/np/mbox-tools"; description = "A collection of tools to process mbox files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mcmaster-gloss-examples" = callPackage @@ -135691,6 +139073,7 @@ self: { jailbreak = true; homepage = "http://www.cas.mcmaster.ca/~anand/"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "mcmc-samplers" = callPackage @@ -135707,6 +139090,7 @@ self: { jailbreak = true; description = "Combinators for MCMC sampling"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mcmc-synthesis" = callPackage @@ -135789,6 +139173,7 @@ self: { homepage = "https://github.com/dorafmon/mdcat"; description = "Markdown viewer in your terminal"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mdo" = callPackage @@ -135834,6 +139219,7 @@ self: { homepage = "http://github.com/tanakh/hsmecab"; description = "A Haskell binding to MeCab"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {mecab = null;}; "mecha" = callPackage @@ -135866,6 +139252,7 @@ self: { ]; description = "Interfacing with the MediaWiki API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mediawiki2latex" = callPackage @@ -135891,6 +139278,7 @@ self: { homepage = "http://sourceforge.net/projects/wb2pdf/"; description = "Convert MediaWiki text to LaTeX"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "medium-sdk-haskell" = callPackage @@ -135908,6 +139296,7 @@ self: { jailbreak = true; description = "Haskell SDK for communicating with the Medium API"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "meep" = callPackage @@ -135917,8 +139306,8 @@ self: { }: mkDerivation { pname = "meep"; - version = "0.1.2.0"; - sha256 = "b94562ef31dc24f051738e2e4e81f3c769c85dd75886f8bc5480d4a1e4fb23cb"; + version = "0.1.2.1"; + sha256 = "dfe5719de97dfc6682ff3be29ad9a5ce13bdf13d35021a48f332a7e799a1d41c"; libraryHaskellDepends = [ base bifunctors lens semigroupoids semigroups ]; @@ -135928,6 +139317,7 @@ self: { ]; description = "A silly container"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mega-sdist" = callPackage @@ -135949,6 +139339,7 @@ self: { homepage = "https://github.com/snoyberg/mega-sdist"; description = "Handles uploading to Hackage from mega repos (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "megaparsec_4_2_0" = callPackage @@ -135971,7 +139362,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "megaparsec" = callPackage + "megaparsec_4_3_0" = callPackage ({ mkDerivation, base, bytestring, HUnit, mtl, QuickCheck , test-framework, test-framework-hunit, test-framework-quickcheck2 , text, transformers @@ -135990,9 +139381,10 @@ self: { homepage = "https://github.com/mrkkrp/megaparsec"; description = "Monadic parser combinators"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "megaparsec_4_4_0" = callPackage + "megaparsec" = callPackage ({ mkDerivation, base, bytestring, fail, HUnit, mtl, QuickCheck , semigroups, test-framework, test-framework-hunit , test-framework-quickcheck2, text, transformers @@ -136008,11 +139400,9 @@ self: { base HUnit mtl QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 transformers ]; - jailbreak = true; homepage = "https://github.com/mrkkrp/megaparsec"; description = "Monadic parser combinators"; license = stdenv.lib.licenses.bsd2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "meldable-heap" = callPackage @@ -136047,6 +139437,7 @@ self: { jailbreak = true; description = "A functional scripting language"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "memcache" = callPackage @@ -136189,6 +139580,7 @@ self: { homepage = "https://gitorious.org/memo-sqlite"; description = "memoize functions using SQLite3 database"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "memoization-utils" = callPackage @@ -136316,7 +139708,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "mersenne-random-pure64" = callPackage + "mersenne-random-pure64_0_2_0_4" = callPackage ({ mkDerivation, base, old-time, random }: mkDerivation { pname = "mersenne-random-pure64"; @@ -136326,6 +139718,19 @@ self: { homepage = "http://code.haskell.org/~dons/code/mersenne-random-pure64/"; description = "Generate high quality pseudorandom numbers purely using a Mersenne Twister"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "mersenne-random-pure64" = callPackage + ({ mkDerivation, base, old-time, random }: + mkDerivation { + pname = "mersenne-random-pure64"; + version = "0.2.0.5"; + sha256 = "3ca131d6c26fe8a086c40c6e79459149286c31083e0e110f7032aeba8038346e"; + libraryHaskellDepends = [ base old-time random ]; + homepage = "http://code.haskell.org/~dons/code/mersenne-random-pure64/"; + description = "Generate high quality pseudorandom numbers purely using a Mersenne Twister"; + license = stdenv.lib.licenses.bsd3; }) {}; "messagepack_0_3_0" = callPackage @@ -136502,6 +139907,7 @@ self: { homepage = "https://github.com/simonmar/monad-par"; description = "Support for integrated Accelerate computations within Meta-par"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "metadata" = callPackage @@ -136514,6 +139920,7 @@ self: { homepage = "https://github.com/cutsea110/metadata"; description = "metadata library for semantic web"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-darwin" ]; }) {}; "metamorphic" = callPackage @@ -136537,6 +139944,7 @@ self: { libraryHaskellDepends = [ base Cabal filepath ghc haskell98 ]; description = "a tiny ghc api wrapper"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "metric" = callPackage @@ -136555,6 +139963,7 @@ self: { ]; description = "Metric spaces"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "metrics" = callPackage @@ -136602,6 +140011,7 @@ self: { ]; description = "Time Synchronized execution"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mezzolens" = callPackage @@ -136821,6 +140231,7 @@ self: { homepage = "http://github.com/fosskers/microlens-aeson/"; description = "Law-abiding lenses for Aeson, using microlens"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "microlens-contra" = callPackage @@ -137164,6 +140575,17 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; + "midair" = callPackage + ({ mkDerivation, base, containers, safe, stm }: + mkDerivation { + pname = "midair"; + version = "0.2.0.0"; + sha256 = "32262281f8785a3fa4ab6c60302566a8dcf59287f0da95e4d42bb8212f88b1b9"; + libraryHaskellDepends = [ base containers safe stm ]; + description = "Hot-swappable FRP"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "midi" = callPackage ({ mkDerivation, base, binary, bytestring, event-list , explicit-exception, monoid-transformer, non-negative, QuickCheck @@ -137274,6 +140696,7 @@ self: { jailbreak = true; description = "A control midi surface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mighttpd" = callPackage @@ -137294,6 +140717,7 @@ self: { homepage = "http://www.mew.org/~kazu/proj/mighttpd/"; description = "Simple Web Server in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mighttpd2" = callPackage @@ -137354,6 +140778,7 @@ self: { homepage = "https://github.com/evanrinehart/mikmod"; description = "MikMod bindings"; license = "LGPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "miku" = callPackage @@ -137652,6 +141077,7 @@ self: { ]; description = "MIME implementation for String's"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mime-types_0_1_0_4" = callPackage @@ -137723,6 +141149,7 @@ self: { jailbreak = true; description = "Minesweeper game which is always solvable without guessing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "miniball" = callPackage @@ -137735,6 +141162,7 @@ self: { homepage = "http://nonempty.org/software/haskell-miniball"; description = "Bindings to Miniball, a smallest enclosing ball library"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "miniforth" = callPackage @@ -137757,6 +141185,7 @@ self: { jailbreak = true; description = "Miniature FORTH-like interpreter"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "minilens" = callPackage @@ -137817,6 +141246,7 @@ self: { executableHaskellDepends = [ base GLUT haskell98 unix ]; description = "Shows how to run grabber on Mac OS X"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "minions" = callPackage @@ -137851,6 +141281,7 @@ self: { homepage = "https://github.com/fumieval/minioperational"; description = "fast and simple operational monad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "miniplex" = callPackage @@ -137868,6 +141299,7 @@ self: { jailbreak = true; description = "simple 1-to-N interprocess communication"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "minirotate" = callPackage @@ -137889,6 +141321,7 @@ self: { homepage = "http://tener.github.com/haskell-minirotate/"; description = "Minimalistic file rotation utility"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "minisat" = callPackage @@ -137900,6 +141333,7 @@ self: { libraryHaskellDepends = [ async base ]; description = "A Haskell bundle of the Minisat SAT solver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "ministg" = callPackage @@ -137919,6 +141353,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Ministg"; description = "an interpreter for an operational semantics for the STG machine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "miniutter" = callPackage @@ -137973,6 +141408,7 @@ self: { homepage = "https://github.com/minamiyama1994/mirror-tweet"; description = "Tweet mirror"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "misfortune" = callPackage @@ -138020,6 +141456,7 @@ self: { homepage = "https://github.com/domdere/missing-py2"; description = "Haskell interface to Python"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mix-arrows" = callPackage @@ -138031,6 +141468,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Mixing effects of one arrow into another one"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mixed-strategies" = callPackage @@ -138062,6 +141500,7 @@ self: { executableHaskellDepends = [ base directory filepath haskell98 ]; description = "Makes an OS X .app bundle from a binary."; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mkcabal" = callPackage @@ -138095,6 +141534,7 @@ self: { executableHaskellDepends = [ base mtl parsec pretty ]; description = "Minimal ML language to to demonstrate the W type infererence algorithm"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mlist" = callPackage @@ -138107,6 +141547,7 @@ self: { homepage = "http://haskell.org/haskellwiki/mlist"; description = "Monadic List alternative to lazy I/O"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mmap" = callPackage @@ -138168,6 +141609,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Modular Monad transformer library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mmtl-base" = callPackage @@ -138179,6 +141621,7 @@ self: { libraryHaskellDepends = [ base mmtl ]; description = "MonadBase type-class for mmtl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "moan" = callPackage @@ -138197,6 +141640,7 @@ self: { homepage = "https://github.com/vjeranc/moan"; description = "Language-agnostic analyzer for positional morphosyntactic tags"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mockery_0_3_0" = callPackage @@ -138268,6 +141712,7 @@ self: { jailbreak = true; description = "A parser for the modelica language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "modify-fasta_0_8_0_4" = callPackage @@ -138337,6 +141782,7 @@ self: { ]; description = "Haskell source splitter driven by special comments"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "modular-arithmetic" = callPackage @@ -138370,6 +141816,7 @@ self: { homepage = "https://github.com/DanBurton/modular-prelude#readme"; description = "A new Prelude featuring first class modules"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "modular-prelude-classy" = callPackage @@ -138383,6 +141830,7 @@ self: { homepage = "https://github.com/DanBurton/modular-prelude#readme"; description = "Reifying ClassyPrelude a la ModularPrelude"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "module-management" = callPackage @@ -138415,6 +141863,7 @@ self: { homepage = "https://github.com/seereason/module-management"; description = "Clean up module imports, split and merge modules"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "modulespection" = callPackage @@ -138539,6 +141988,7 @@ self: { homepage = "http://code.haskell.org/mohws/"; description = "Modular Haskell Web Server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mole" = callPackage @@ -138584,6 +142034,7 @@ self: { homepage = "https://github.com/mvv/monad-abort-fd"; description = "A better error monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-atom" = callPackage @@ -138596,6 +142047,7 @@ self: { homepage = "https://bitbucket.org/gchrupala/lingo"; description = "Monadically convert object to unique integers and back"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-atom-simple" = callPackage @@ -138607,6 +142059,7 @@ self: { libraryHaskellDepends = [ base containers ghc-prim mtl ]; description = "Monadically map objects to unique ints"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-bool" = callPackage @@ -138802,6 +142255,7 @@ self: { jailbreak = true; description = "Exstensible monadic exceptions"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-extras_0_5_9" = callPackage @@ -138892,6 +142346,7 @@ self: { homepage = "http://github.com/patperry/monad-interleave"; description = "Monads with an unsaveInterleaveIO-like operation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-journal_0_5_0_1" = callPackage @@ -138979,6 +142434,7 @@ self: { homepage = "https://github.com/ivan-m/monad-levels"; description = "Specific levels of monad transformers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-logger_0_3_11" = callPackage @@ -139299,6 +142755,7 @@ self: { homepage = "https://github.com/bjin/monad-lrs"; description = "a monad to calculate linear recursive sequence"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-memo" = callPackage @@ -139320,6 +142777,7 @@ self: { homepage = "https://github.com/EduardSergeev/monad-memo"; description = "Memoization monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-mersenne-random" = callPackage @@ -139332,6 +142790,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/monad-mersenne-random"; description = "An efficient random generator monad, based on the Mersenne Twister"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-open" = callPackage @@ -139556,6 +143015,7 @@ self: { jailbreak = true; description = "Fast monads and monad transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-resumption" = callPackage @@ -139649,6 +143109,7 @@ self: { homepage = "http://github.com/taruti/monad-stlike-io"; description = "ST-like monad capturing variables to regions and supporting IO"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-stlike-stm" = callPackage @@ -139661,6 +143122,7 @@ self: { homepage = "http://github.com/taruti/monad-stlike-stm"; description = "ST-like monad capturing variables to regions and supporting STM"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-stm" = callPackage @@ -139719,6 +143181,7 @@ self: { libraryHaskellDepends = [ base ]; description = "A transactional state monad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-unify" = callPackage @@ -139733,6 +143196,7 @@ self: { jailbreak = true; description = "Generic first-order unification"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-unlift" = callPackage @@ -139809,6 +143273,7 @@ self: { libraryHaskellDepends = [ base ]; description = "The Acme and AcmeT monads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monadbi" = callPackage @@ -139923,6 +143388,7 @@ self: { homepage = "http://users.ugent.be/~tschrijv/MCP/"; description = "Constraint Programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monadiccp-gecode" = callPackage @@ -139940,6 +143406,7 @@ self: { homepage = "http://users.ugent.be/~tschrijv/MCP/"; description = "Constraint Programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {gecodeint = null; gecodekernel = null; gecodesearch = null; gecodeset = null; gecodesupport = null;}; @@ -140062,6 +143529,7 @@ self: { homepage = "https://github.com/notogawa/monarch"; description = "Monadic interface for TokyoTyrant"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mongoDB_2_0_3" = callPackage @@ -140263,6 +143731,7 @@ self: { homepage = "https://github.com/docmunch/haskell-mongodb-queue"; description = "message queue using MongoDB"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mongrel2-handler" = callPackage @@ -140281,6 +143750,7 @@ self: { jailbreak = true; description = "Mongrel2 Handler Library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monitor" = callPackage @@ -140294,6 +143764,7 @@ self: { executableHaskellDepends = [ base filepath hinotify process ]; description = "Do things when files change"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "mono-foldable" = callPackage @@ -140307,6 +143778,7 @@ self: { homepage = "http://github.com/JohnLato/mono-foldable"; description = "Folds for monomorphic containers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mono-traversable_0_6_3" = callPackage @@ -140606,6 +144078,7 @@ self: { homepage = "http://github.com/nfjinjing/monoid-owns"; description = "a practical monoid implementation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monoid-record" = callPackage @@ -140800,6 +144273,7 @@ self: { jailbreak = true; description = "Extra classes/functions about monoids"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monoids" = callPackage @@ -140817,6 +144291,7 @@ self: { homepage = "http://github.com/ekmett/monoids"; description = "Deprecated: Use 'reducers'"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monomorphic" = callPackage @@ -140898,6 +144373,7 @@ self: { homepage = "http://github.com/patperry/hs-monte-carlo"; description = "A monad and transformer for Monte Carlo calculations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "moo" = callPackage @@ -140920,6 +144396,7 @@ self: { homepage = "http://www.github.com/astanin/moo/"; description = "Genetic algorithm library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "moonshine" = callPackage @@ -140958,6 +144435,7 @@ self: { homepage = "http://sites.google.com/site/morfetteweb/"; description = "A tool for supervised learning of morphology"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "morfeusz" = callPackage @@ -140975,6 +144453,7 @@ self: { homepage = "https://github.com/kawu/morfeusz"; description = "Bindings to the morphological analyser Morfeusz"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {morfeusz = null;}; "morte" = callPackage @@ -141018,6 +144497,7 @@ self: { homepage = "http://ldc.usb.ve/~05-38235/cursos/CI3661/2015AJ/"; description = "Generación interactiva de mosaicos"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mount" = callPackage @@ -141029,6 +144509,7 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Mounts and umounts filesystems"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mountpoints" = callPackage @@ -141065,6 +144546,7 @@ self: { homepage = "https://bitbucket.org/borekpiotr/linux-music-player"; description = "Music player for linux"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mp3decoder" = callPackage @@ -141081,6 +144563,7 @@ self: { homepage = "http://www.bjrn.se/mp3dec"; description = "MP3 decoder for teaching"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mpdmate" = callPackage @@ -141097,6 +144580,7 @@ self: { homepage = "http://neugierig.org/software/darcs/powermate/"; description = "MPD/PowerMate executable"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mpppc" = callPackage @@ -141111,6 +144595,7 @@ self: { jailbreak = true; description = "Multi-dimensional parametric pretty-printer with color"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mpretty" = callPackage @@ -141128,6 +144613,7 @@ self: { jailbreak = true; description = "a monadic, extensible pretty printing library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mpris" = callPackage @@ -141158,6 +144644,7 @@ self: { ]; description = "Simple equational reasoning for a Haskell-ish language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mps" = callPackage @@ -141177,6 +144664,7 @@ self: { homepage = "http://github.com/nfjinjing/mps/"; description = "simply oo"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mpvguihs" = callPackage @@ -141196,6 +144684,7 @@ self: { homepage = "https://github.com/sebadoom/mpvguihs"; description = "A minimalist mpv GUI written in I/O heavy Haskell"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mqtt-hs" = callPackage @@ -141217,6 +144706,19 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; + "mrm" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "mrm"; + version = "0.1.0.0"; + sha256 = "3caa1ec68090913057379113836ea5b0458341d060d042d1f7040904509caee2"; + libraryHaskellDepends = [ base ]; + jailbreak = true; + homepage = "https://github.com/scmu/mrm"; + description = "Modular Refiable Matching, first-class matches"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "ms" = callPackage ({ mkDerivation, base, contravariant, doctest, edit-distance, lens , profunctors, semigroupoids, semigroups, tasty, tasty-quickcheck @@ -141301,6 +144803,7 @@ self: { homepage = "http://msgpack.org/"; description = "An IDL Compiler for MessagePack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "msgpack-rpc" = callPackage @@ -141337,6 +144840,7 @@ self: { homepage = "http://www.cl.cam.ac.uk/~mbg28/"; description = "Object-Oriented Programming in Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "msi-kb-backlit" = callPackage @@ -141406,6 +144910,7 @@ self: { jailbreak = true; description = "Library to communicate with Mt.Gox"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mtl_2_1_3_1" = callPackage @@ -141561,6 +145066,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Monad transformer library using type families"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mtl-unleashed" = callPackage @@ -141617,6 +145123,7 @@ self: { libraryHaskellDepends = [ base mtl QuickCheck ]; description = "Monad transformer library with type indexes, providing 'free' copies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mtp" = callPackage @@ -141630,6 +145137,7 @@ self: { jailbreak = true; description = "Bindings to libmtp"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {mtp = null;}; "mtree" = callPackage @@ -141673,6 +145181,7 @@ self: { jailbreak = true; description = "Continuous deployment server for use with GitHub"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "muesli" = callPackage @@ -141726,6 +145235,7 @@ self: { jailbreak = true; description = "The Mu Language, a non-computable extended Lambda Calculus"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multext-east-msd" = callPackage @@ -141761,6 +145271,7 @@ self: { homepage = "https://github.com/aka-bash0r/multi-cabal"; description = "A tool supporting multi cabal project builds"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multiaddr" = callPackage @@ -141847,6 +145358,7 @@ self: { ]; description = "Bidirectional Two-level Transformation of XML Schemas"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multihash" = callPackage @@ -141931,6 +145443,7 @@ self: { homepage = "http://github.com/ekmett/multipass/"; description = "Folding data with multiple named passes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multiplate" = callPackage @@ -141955,6 +145468,7 @@ self: { jailbreak = true; description = "Shorter, more generic functions for Multiplate"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multiplicity" = callPackage @@ -141999,6 +145513,7 @@ self: { jailbreak = true; description = "Alternative multirec instances deriver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multirec-binary" = callPackage @@ -142011,6 +145526,7 @@ self: { jailbreak = true; description = "Generic Data.Binary instances using MultiRec."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multiset_0_3_0" = callPackage @@ -142060,6 +145576,7 @@ self: { homepage = "http://sulzmann.blogspot.com/2008/10/multi-set-rewrite-rules-with-guards-and.html"; description = "Multi-set rewrite rules with guards and a parallel execution scheme"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multistate" = callPackage @@ -142070,8 +145587,8 @@ self: { pname = "multistate"; version = "0.7.0.0"; sha256 = "012cefe6afa33be2285c47538e6d79ba54bcb15328865751209cadbea2a38b75"; - revision = "1"; - editedCabalFile = "c0546d74f2bc0c476714677432693161d63956a2a23fc88a30f7c61239672a9b"; + revision = "2"; + editedCabalFile = "bef1a17a6c406a4468feee7dea8f82e70565a7acb1dae9dd0bf974d7cb3a6018"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -142120,6 +145637,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/Center/CoCoCo"; description = "MUtually Recursive Definitions Explicitly Represented"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "murmur-hash" = callPackage @@ -142164,6 +145682,7 @@ self: { homepage = "https://github.com/niswegmann/murmurhash3"; description = "32-bit non-cryptographic hashing"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-articulation" = callPackage @@ -142228,6 +145747,7 @@ self: { jailbreak = true; description = "Diagrams-based visualization of musical data structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-parts" = callPackage @@ -142247,6 +145767,7 @@ self: { ]; description = "Musical instruments, parts and playing techniques"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-pitch" = callPackage @@ -142302,6 +145823,7 @@ self: { testHaskellDepends = [ base process tasty tasty-golden ]; description = "Some useful preludes for the Music Suite"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-score" = callPackage @@ -142326,6 +145848,7 @@ self: { jailbreak = true; description = "Musical score and part representation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-sibelius" = callPackage @@ -142345,6 +145868,7 @@ self: { ]; description = "Interaction with Sibelius"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-suite" = callPackage @@ -142364,6 +145888,7 @@ self: { doHaddock = false; description = "A set of libraries for composition, analysis and manipulation of music"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-util" = callPackage @@ -142381,6 +145906,7 @@ self: { ]; description = "Utility for developing the Music Suite"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "musicbrainz-email" = callPackage @@ -142415,6 +145941,7 @@ self: { homepage = "http://github.com/metabrainz/mass-mail"; description = "Send an email to all MusicBrainz editors"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "musicxml" = callPackage @@ -142432,6 +145959,7 @@ self: { homepage = "https://troglodita.di.uminho.pt/svn/musica/work/MusicXML"; description = "MusicXML format encoded as Haskell type and functions of reading and writting"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "musicxml2" = callPackage @@ -142525,6 +146053,7 @@ self: { homepage = "http://github.com/singpolyma/mustache2hs"; description = "Utility to generate Haskell code from Mustache templates"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mutable-containers_0_2_1_2" = callPackage @@ -142601,6 +146130,7 @@ self: { homepage = "http://jwlato.webfactional.com/haskell/mutable-iter"; description = "iteratees based upon mutable buffers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mute-unmute" = callPackage @@ -142649,6 +146179,7 @@ self: { jailbreak = true; description = "Concurrent and combinable updates"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mvclient" = callPackage @@ -142668,6 +146199,7 @@ self: { jailbreak = true; description = "Client library for metaverse systems like Second Life"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mwc-probability_1_0_2" = callPackage @@ -142836,6 +146368,7 @@ self: { homepage = "http://haskell.cs.yale.edu/"; description = "None"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mybitcoin-sci" = callPackage @@ -142873,6 +146406,7 @@ self: { homepage = "http://github.com/adinapoli/myo"; description = "Haskell binding to the Myo armband"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mysnapsession" = callPackage @@ -142890,6 +146424,7 @@ self: { jailbreak = true; description = "Sessions and continuations for Snap web apps"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mysnapsession-example" = callPackage @@ -142909,6 +146444,7 @@ self: { jailbreak = true; description = "Example projects using mysnapsession"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mysql_0_1_1_7" = callPackage @@ -143007,6 +146543,7 @@ self: { ]; description = "Quasi-quoter for use with mysql-simple"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mysql-simple-typed" = callPackage @@ -143015,14 +146552,15 @@ self: { }: mkDerivation { pname = "mysql-simple-typed"; - version = "0.1.1.2"; - sha256 = "250199742b36b6157c3867367e91ee406786d9f5335d5668477688b272dd96a7"; + version = "0.1.1.3"; + sha256 = "64afad06c25c253fa1a99be90d94f6f3c43a3e49ce74a4b90316dd9e933ed2bd"; libraryHaskellDepends = [ base mysql mysql-simple template-haskell typedquery utf8-string ]; homepage = "https://github.com/tolysz/mysql-simple-typed"; description = "Typed extension to mysql simple"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mzv" = callPackage @@ -143036,6 +146574,7 @@ self: { homepage = "http://github.com/ifigueroap/mzv"; description = "Implementation of the \"Monads, Zippers and Views\" (Schrijvers and Oliveira, ICFP'11)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "n-m" = callPackage @@ -143108,6 +146647,7 @@ self: { homepage = "https://github.com/fractalcat/nagios-plugin-ekg"; description = "Monitor ekg metrics via Nagios"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "named-formlet" = callPackage @@ -143136,6 +146676,7 @@ self: { homepage = "http://github.com/nominolo/named-lock"; description = "A named lock that is created on demand"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "named-records" = callPackage @@ -143202,6 +146743,7 @@ self: { homepage = "http://github.com/chowells79/nano-cryptr"; description = "A threadsafe binding to glibc's crypt_r function"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nano-erl" = callPackage @@ -143226,6 +146768,7 @@ self: { homepage = "http://www.jasani.org/search/label/nano-hmac"; description = "Bindings to OpenSSL HMAC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openssl;}; "nano-md5" = callPackage @@ -143239,6 +146782,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/nano-md5"; description = "Efficient, ByteString bindings to OpenSSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openssl;}; "nanoAgda" = callPackage @@ -143257,6 +146801,7 @@ self: { jailbreak = true; description = "A toy dependently-typed language"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nanocurses" = callPackage @@ -143270,6 +146815,7 @@ self: { homepage = "http://www.cse.unsw.edu.au/~dons/hmp3.html"; description = "Simple Curses binding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ncurses;}; "nanomsg" = callPackage @@ -143359,6 +146905,7 @@ self: { homepage = "https://github.com/fosskers/nanq"; description = "Performs 漢字検定 (National Kanji Exam) level analysis on given Kanji"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "narc" = callPackage @@ -143371,6 +146918,7 @@ self: { homepage = "http://ezrakilty.net/projects/narc"; description = "Query SQL databases using Nested Relational Calculus embedded in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nat" = callPackage @@ -143518,6 +147066,7 @@ self: { ]; description = "Haskell API for NATS messaging system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "natural-number" = callPackage @@ -143535,6 +147084,7 @@ self: { jailbreak = true; description = "Natural numbers tagged with a type-level representation of the number"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "natural-numbers" = callPackage @@ -143655,6 +147205,7 @@ self: { homepage = "https://github.com/nilcons/nc-indicators"; description = "CPU load and memory usage indicators for i3bar"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "ncurses" = callPackage @@ -143715,6 +147266,7 @@ self: { homepage = "https://github.com/ajg/neat"; description = "A Fast Retargetable Template Engine"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "neat-interpolation_0_2_2" = callPackage @@ -143863,6 +147415,7 @@ self: { homepage = "http://scrambledeggsontoast.github.io/2014/09/28/needle-announce/"; description = "ASCII-fied arrow notation"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "neet" = callPackage @@ -143899,6 +147452,7 @@ self: { ]; description = "Port of the NeHe OpenGL tutorials to Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "neil" = callPackage @@ -143988,6 +147542,7 @@ self: { homepage = "https://github.com/kawu/nerf"; description = "Nerf, the named entity recognition tool based on linear-chain CRFs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nero" = callPackage @@ -144007,6 +147562,7 @@ self: { homepage = "https://github.com/plutonbrb/nero"; description = "Lens-based HTTP toolkit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nero-wai" = callPackage @@ -144023,6 +147579,7 @@ self: { homepage = "https://github.com/plutonbrb/nero-wai"; description = "WAI adapter for Nero server applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nero-warp" = callPackage @@ -144035,6 +147592,7 @@ self: { homepage = "https://github.com/plutonbrb/nero-warp"; description = "Run Nero server applications with Warp"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nested-routes" = callPackage @@ -144160,6 +147718,7 @@ self: { homepage = "http://frenetic-lang.org"; description = "The NetCore compiler and runtime system for OpenFlow networks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "netlines" = callPackage @@ -144178,6 +147737,7 @@ self: { executableHaskellDepends = [ base HTF random ]; description = "Enumerator tools for text-based network protocols"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "netlink" = callPackage @@ -144198,6 +147758,7 @@ self: { homepage = "http://netlink-hs.googlecode.com/"; description = "Netlink communication for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "netlist" = callPackage @@ -144277,6 +147838,7 @@ self: { homepage = "http://github.com/DanBurton/netspec"; description = "Simplify static Networking tasks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "netstring-enumerator" = callPackage @@ -144387,6 +147949,7 @@ self: { jailbreak = true; description = "FRP for controlling networks of OpenFlow switches"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nettle-netkit" = callPackage @@ -144402,6 +147965,7 @@ self: { ]; description = "DSL for describing OpenFlow networks, and a compiler generating NetKit labs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nettle-openflow" = callPackage @@ -144418,6 +147982,7 @@ self: { ]; description = "OpenFlow protocol messages, binary formats, and servers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "netwire" = callPackage @@ -144468,6 +148033,7 @@ self: { homepage = "https://www.github.com/Mokosha/netwire-input-glfw"; description = "GLFW instance of netwire-input"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "network_2_5_0_0" = callPackage @@ -144585,6 +148151,7 @@ self: { homepage = "http://github.com/sebnow/haskell-network-address"; description = "IP data structures and textual representation"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-anonymous-i2p" = callPackage @@ -144608,6 +148175,7 @@ self: { homepage = "http://github.com/solatis/haskell-network-anonymous-i2p"; description = "Haskell API for I2P anonymous networking"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "network-anonymous-tor_0_9_2" = callPackage @@ -144667,6 +148235,7 @@ self: { homepage = "http://www.leonmergen.com/opensource.html"; description = "Haskell API for Tor anonymous networking"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "network-api-support" = callPackage @@ -144708,6 +148277,7 @@ self: { homepage = "http://github.com/solatis/haskell-network-attoparsec"; description = "Utility functions for running a parser against a socket"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "network-bitcoin" = callPackage @@ -144754,6 +148324,7 @@ self: { ]; description = "Linux NetworkNameSpace Builder"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-bytestring" = callPackage @@ -144767,6 +148338,7 @@ self: { homepage = "http://github.com/tibbe/network-bytestring"; description = "Fast, memory-efficient, low-level networking"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-carbon_1_0_5" = callPackage @@ -144955,6 +148527,7 @@ self: { homepage = "http://darcs.imperialviolet.org/network-connection"; description = "A wrapper around a generic stream-like connection"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-data" = callPackage @@ -145104,6 +148677,7 @@ self: { jailbreak = true; description = "Haskell bindings for the ifreq structure"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "network-ip" = callPackage @@ -145162,6 +148736,7 @@ self: { homepage = "http://darcs.imperialviolet.org/network-minihttp"; description = "A ByteString based library for writing HTTP(S) servers and clients"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-msg" = callPackage @@ -145213,6 +148788,7 @@ self: { jailbreak = true; description = "Haskell bindings for low-level packet sockets (AF_PACKET)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "network-pgi" = callPackage @@ -145262,6 +148838,7 @@ self: { ]; description = "A cross-platform RPC library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-server" = callPackage @@ -145276,6 +148853,7 @@ self: { executableHaskellDepends = [ base network unix ]; description = "A light abstraction over sockets & co. for servers"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-service" = callPackage @@ -145384,6 +148962,7 @@ self: { homepage = "https://github.com/k0001/network-simple-tls"; description = "Simple interface to TLS secured network sockets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-socket-options" = callPackage @@ -145436,6 +149015,7 @@ self: { homepage = "https://github.com/bgamari/bayes-stack"; description = "A few network topic model implementations for bayes-stack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-transport_0_4_1_0" = callPackage @@ -145513,6 +149093,7 @@ self: { jailbreak = true; description = "AMQP-based transport layer for distributed-process (aka Cloud Haskell)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-transport-composed" = callPackage @@ -145810,6 +149391,7 @@ self: { homepage = "http://github.com/michaelmelanson/network-websocket"; description = "WebSocket library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "networked-game" = callPackage @@ -145841,6 +149423,7 @@ self: { homepage = "http://www.b7j0c.org/content/haskell-newports.html"; description = "List ports newer than N days on a FreeBSD system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "newsynth" = callPackage @@ -145860,6 +149443,7 @@ self: { homepage = "http://www.mathstat.dal.ca/~selinger/newsynth/"; description = "Exact and approximate synthesis of quantum circuits"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "newt" = callPackage @@ -145886,6 +149470,7 @@ self: { jailbreak = true; description = "A trivially simple app to create things from simple templates"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "newtype" = callPackage @@ -145946,6 +149531,7 @@ self: { homepage = "http://github.com/mgsloan/newtype-th"; description = "A template haskell deriver to create Control.Newtype instances."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "newtyper" = callPackage @@ -146017,6 +149603,7 @@ self: { homepage = "https://github.com/fhsjaagshs/niagra"; description = "CSS EDSL for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nibblestring" = callPackage @@ -146037,6 +149624,7 @@ self: { ]; description = "Packed, strict nibble arrays with a list interface (ByteString for nibbles)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nicify" = callPackage @@ -146106,6 +149694,7 @@ self: { homepage = "http://www.codemanic.com/uwe"; description = "Command line utility publishes Nike+ runs on blogs and Twitter"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nimber" = callPackage @@ -146118,6 +149707,7 @@ self: { homepage = "http://andersk.mit.edu/haskell/nimber/"; description = "Finite nimber arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "nist-beacon" = callPackage @@ -146143,6 +149733,7 @@ self: { homepage = "http://haskell.gonitro.io"; description = "Haskell bindings for Nitro"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nix-eval" = callPackage @@ -146208,6 +149799,7 @@ self: { ]; description = "Generate nix expressions from npm packages"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nixos-types" = callPackage @@ -146240,6 +149832,7 @@ self: { homepage = "https://github.com/kawu/nkjp"; description = "Manipulating the National Corpus of Polish (NKJP)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nlp-scores" = callPackage @@ -146285,6 +149878,7 @@ self: { executableHaskellDepends = [ base ]; description = "Network Manager, binding to libnm-glib"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {g = null; inherit (pkgs) glib; libnm-glib = null; nm-glib = null;}; @@ -146298,6 +149892,7 @@ self: { homepage = "https://github.com/singpolyma/NME-Haskell"; description = "Bindings to the Nyctergatis Markup Engine"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nntp" = callPackage @@ -146313,6 +149908,7 @@ self: { ]; description = "Library to connect to an NNTP Server"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "no-buffering-workaround" = callPackage @@ -146391,6 +149987,7 @@ self: { homepage = "http://github.com/brow/noise"; description = "A friendly language for graphic design"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "non-empty" = callPackage @@ -146447,6 +150044,18 @@ self: { license = "LGPL"; }) {}; + "nonempty-alternative" = callPackage + ({ mkDerivation, base, comonad, semigroups }: + mkDerivation { + pname = "nonempty-alternative"; + version = "0.3.0"; + sha256 = "74944677f44566988e4dc26c9e75f7e4778fcc855fb2a8a88277e582a87ce2a3"; + libraryHaskellDepends = [ base comonad semigroups ]; + homepage = "http://github.com/guaraqe/nonempty-alternative#readme"; + description = "NonEmpty for Alternative types"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "nonfree" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -146502,6 +150111,7 @@ self: { homepage = "https://github.com/jessopher/noodle"; description = "the noodle programming language"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "normaldistribution" = callPackage @@ -146532,6 +150142,7 @@ self: { jailbreak = true; description = "Painless 3D graphics, no affiliation with gloss"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "not-gloss-examples" = callPackage @@ -146549,6 +150160,7 @@ self: { ]; description = "examples for not-gloss"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "not-in-base" = callPackage @@ -146591,6 +150203,7 @@ self: { executableSystemDepends = [ notmuch ]; description = "Binding for notmuch MUA library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) notmuch;}; "notmuch-web" = callPackage @@ -146629,6 +150242,7 @@ self: { homepage = "https://bitbucket.org/wuzzeb/notmuch-web"; description = "A web interface to the notmuch email indexer"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "notzero" = callPackage @@ -146676,6 +150290,7 @@ self: { jailbreak = true; description = "Linear algebra for the numeric-prelude framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nptools" = callPackage @@ -146694,6 +150309,7 @@ self: { ]; description = "A collection of random tools"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nsis_0_2_4" = callPackage @@ -146771,6 +150387,7 @@ self: { sha256 = "9e6a4e4cf0116a8aab09185bcdb62106206c6b41816cc1c6d6e3dac50fe621e2"; libraryHaskellDepends = [ base type-level ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ntp-control" = callPackage @@ -146807,6 +150424,7 @@ self: { homepage = "https://github.com/Tener/null-canvas"; description = "HTML5 Canvas Graphics Library - forked Blank Canvas"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nullary" = callPackage @@ -146901,6 +150519,7 @@ self: { homepage = "https://github.com/roelvandijk/numerals"; description = "Convert numbers to number words"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "numerals-base" = callPackage @@ -146924,6 +150543,7 @@ self: { homepage = "https://github.com/roelvandijk/numerals-base"; description = "Convert numbers to number words"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "numeric-extras_0_0_3" = callPackage @@ -147160,6 +150780,7 @@ self: { homepage = "https://github.com/neovimhaskell/nvim-hs"; description = "Haskell plugin backend for neovim"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nvim-hs-contrib" = callPackage @@ -147186,6 +150807,7 @@ self: { homepage = "https://github.com/neovimhaskell/nvim-hs"; description = "Haskell plugin backend for neovim"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nyan" = callPackage @@ -147235,6 +150857,7 @@ self: { jailbreak = true; description = "An interactive GUI for manipulating L-systems"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "oanda-rest-api" = callPackage @@ -147315,6 +150938,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/Center/CoCoCo"; description = "Oberon0 Compiler"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "obj" = callPackage @@ -147334,6 +150958,7 @@ self: { ]; description = "Reads and writes obj models"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "objectid" = callPackage @@ -147486,6 +151111,7 @@ self: { homepage = "https://github.com/Zankoku-Okuno/octopus/"; description = "Lisp with more dynamism, more power, more simplicity"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "oculus" = callPackage @@ -147504,6 +151130,7 @@ self: { homepage = "http://github.com/cpdurham/oculus"; description = "Oculus Rift ffi providing head tracking data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXinerama; inherit (pkgs) mesa; ovr = null; inherit (pkgs) systemd;}; @@ -147521,6 +151148,7 @@ self: { homepage = "http://oden-lang.org"; description = "Provides Go package metadata"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "oeis" = callPackage @@ -147587,6 +151215,7 @@ self: { homepage = "https://github.com/fthomas/ohloh-hs"; description = "Interface to the Ohloh API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "oi" = callPackage @@ -147626,6 +151255,7 @@ self: { homepage = "https://github.com/krdlab/haskell-oidc-client"; description = "OpenID Connect 1.0 library for RP"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ois-input-manager" = callPackage @@ -147639,6 +151269,7 @@ self: { jailbreak = true; description = "wrapper for OIS input manager for use with hogre"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {OIS = null;}; "old-locale" = callPackage @@ -147722,6 +151353,7 @@ self: { homepage = "https://github.com/pcapriotti/omaketex"; description = "A simple tool to generate OMakefile for latex files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "omega" = callPackage @@ -147740,6 +151372,7 @@ self: { homepage = "http://code.google.com/p/omega/"; description = "A purely functional programming language and a proof system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "omnicodec" = callPackage @@ -147758,6 +151391,7 @@ self: { jailbreak = true; description = "data encoding and decoding command line utilities"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "omnifmt" = callPackage @@ -147803,6 +151437,7 @@ self: { homepage = "http://haskell.on-a-horse.org"; description = "\"Haskell on a Horse\" - A combinatorial web framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "on-demand-ssh-tunnel" = callPackage @@ -147855,6 +151490,7 @@ self: { homepage = "https://github.com/sjoerdvisscher/one-liner"; description = "Constraint-based generics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "one-time-password" = callPackage @@ -147899,6 +151535,7 @@ self: { homepage = "https://github.com/thinkpad20/oneormore"; description = "A never-empty list type"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "only" = callPackage @@ -147923,6 +151560,7 @@ self: { libraryHaskellDepends = [ base smallcheck ]; description = "Code for the Haskell course taught at the Odessa National University in 2012"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "oo-prototypes" = callPackage @@ -148090,8 +151728,8 @@ self: { pname = "opaleye"; version = "0.4.2.0"; sha256 = "b924c4d0fa7151c0dbaee5ddcd89adfa569614204a805392625752ea6dc13c20"; - revision = "3"; - editedCabalFile = "2d6a584a46565934f8408c72aaa3cd469d190799b8d071775b7190326c4c9e5e"; + revision = "5"; + editedCabalFile = "89c88b17345e194a4521ba72ad38d8074bf9620102becd846b0c1c74788595ed"; libraryHaskellDepends = [ aeson attoparsec base base16-bytestring bytestring case-insensitive contravariant postgresql-simple pretty product-profunctors @@ -148225,6 +151863,7 @@ self: { homepage = "http://johnmacfarlane.net/pandoc"; description = "Conversion between markup formats"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "open-symbology" = callPackage @@ -148253,6 +151892,7 @@ self: { homepage = "https://github.com/emilaxelsson/open-typerep"; description = "Open type representations and dynamic types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-linux" ]; }) {}; "open-union" = callPackage @@ -148268,6 +151908,7 @@ self: { homepage = "https://github.com/RobotGymnast/open-union"; description = "Extensible, type-safe unions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" ]; }) {}; "open-witness" = callPackage @@ -148280,6 +151921,7 @@ self: { jailbreak = true; description = "open witnesses"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "opencog-atomspace" = callPackage @@ -148293,6 +151935,7 @@ self: { homepage = "github.com/opencog/atomspace/tree/master/opencog/haskell"; description = "Haskell Bindings for the AtomSpace"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {atomspace-cwrapper = null;}; "opencv-raw" = callPackage @@ -148307,6 +151950,7 @@ self: { homepage = "www.github.com/arjuncomar/opencv-raw.git"; description = "Raw Haskell bindings to OpenCV >= 2.0"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) opencv;}; "opendatatable" = callPackage @@ -148336,6 +151980,7 @@ self: { homepage = "https://github.com/singpolyma/openexchangerates-haskell"; description = "Fetch exchange rates from OpenExchangeRates.org"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "openflow" = callPackage @@ -148354,6 +151999,7 @@ self: { homepage = "https://github.com/AndreasVoellmy/openflow"; description = "OpenFlow"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "opengl-dlp-stereo" = callPackage @@ -148371,6 +152017,7 @@ self: { homepage = "https://bitbucket.org/bwbush/opengl-dlp-stereo"; description = "Library and example for using DLP stereo in OpenGL"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "opengl-spacenavigator" = callPackage @@ -148388,24 +152035,33 @@ self: { homepage = "https://bitbucket.org/bwbush/opengl-spacenavigator"; description = "Library and example for using a SpaceNavigator-compatible 3-D mouse with OpenGL"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "opengles" = callPackage - ({ mkDerivation, base, bytestring, distributive, EGL - , future-resource, ghc-prim, GLESv2, lens, linear, packer, vector + ({ mkDerivation, base, bytestring, distributive, EGL, fixed + , future-resource, ghc-prim, GLESv2, GLFW-b, half, lens, linear + , packer, random, time, transformers, vector }: mkDerivation { pname = "opengles"; - version = "0.7.0"; - sha256 = "b2956a7ebfa7d57d40b9c01a84c398ddb537b576c15b4ee021499cf35c0bed6f"; + version = "0.8.3"; + sha256 = "c5cdffed66b7eb546a2546fc246dafd20fe4a5971f1ef8d1f5545de0d8e6e303"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ - base bytestring distributive future-resource ghc-prim lens linear - packer vector + base bytestring distributive fixed future-resource ghc-prim half + lens linear packer transformers vector ]; librarySystemDepends = [ EGL GLESv2 ]; - jailbreak = true; - description = "OpenGL ES 2.0 and 3.0 with EGL 1.4"; + executableHaskellDepends = [ + base bytestring future-resource GLFW-b random time + ]; + testHaskellDepends = [ base ]; + homepage = "https://github.com/capsjac/opengles#readme"; + description = "Functional interface for OpenGL 4.1+ and OpenGL ES 2.0+"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {EGL = null; GLESv2 = null;}; "openid" = callPackage @@ -148424,6 +152080,7 @@ self: { homepage = "http://github.com/elliottt/hsopenid"; description = "An implementation of the OpenID-2.0 spec."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "openpgp" = callPackage @@ -148469,6 +152126,7 @@ self: { homepage = "http://github.com/singpolyma/OpenPGP-Crypto"; description = "Implementation of cryptography for use with OpenPGP using the Crypto library"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "openpgp-asciiarmor" = callPackage @@ -148516,6 +152174,7 @@ self: { homepage = "http://github.com/singpolyma/OpenPGP-CryptoAPI"; description = "Implement cryptography for OpenPGP using crypto-api compatible libraries"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "opensoundcontrol-ht" = callPackage @@ -148555,6 +152214,7 @@ self: { homepage = "https://github.com/stackbuilders/openssh-github-keys"; description = "Fetch OpenSSH keys from a GitHub team"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "openssl-createkey" = callPackage @@ -148655,6 +152315,7 @@ self: { jailbreak = true; description = "Unicode characters"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "opentheory-divides" = callPackage @@ -148995,6 +152656,7 @@ self: { homepage = "https://github.com/tsuraan/optimal-blocks"; description = "Optimal Block boundary determination for rsync-like behaviours"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "optimization" = callPackage @@ -149032,6 +152694,7 @@ self: { homepage = "http://optimusprime.posterous.com/"; description = "A supercompiler for f-lite"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "option" = callPackage @@ -149229,15 +152892,16 @@ self: { }) {}; "optparse-generic" = callPackage - ({ mkDerivation, base, optparse-applicative, system-filepath, text - , transformers, void + ({ mkDerivation, base, bytestring, optparse-applicative + , system-filepath, text, time, transformers, void }: mkDerivation { pname = "optparse-generic"; - version = "1.0.0"; - sha256 = "6e049b88706c35dca3d4b021fae26c664d46ef888a910647f269b851b3a59053"; + version = "1.1.0"; + sha256 = "f3ceb1ed0505ad12f7b07e05edb318f8a9d2816ea50f19a774b4d4cc0055bb34"; libraryHaskellDepends = [ - base optparse-applicative system-filepath text transformers void + base bytestring optparse-applicative system-filepath text time + transformers void ]; description = "Auto-generate a command-line parser for your datatype"; license = stdenv.lib.licenses.bsd3; @@ -149315,6 +152979,7 @@ self: { jailbreak = true; description = "An API client for http://orchestrate.io/."; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "orchid" = callPackage @@ -149335,6 +153000,7 @@ self: { jailbreak = true; description = "Haskell Wiki Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "orchid-demo" = callPackage @@ -149354,6 +153020,7 @@ self: { jailbreak = true; description = "Haskell Wiki Demo"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ord-adhoc" = callPackage @@ -149383,6 +153050,7 @@ self: { homepage = "http://darcs.wolfgang.jeltsch.info/haskell/order-maintenance"; description = "Algorithms for the order maintenance problem with a safe interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "order-statistic-tree" = callPackage @@ -149503,6 +153171,7 @@ self: { ]; description = "A collection of Attoparsec combinators for parsing org-mode flavored documents"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "origami" = callPackage @@ -149522,6 +153191,7 @@ self: { homepage = "http://github.com/nedervold/origami"; description = "An un-SYB framework for transforming heterogenous data through folds"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "os-release" = callPackage @@ -149576,6 +153246,7 @@ self: { executableHaskellDepends = [ base process ]; description = "Show keys pressed with an on-screen display (Linux only)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "osm-conduit" = callPackage @@ -149596,6 +153267,7 @@ self: { homepage = "http://github.com/przembot/osm-conduit#readme"; description = "Parse and operate on OSM data in efficient way"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "osm-download" = callPackage @@ -149618,6 +153290,7 @@ self: { jailbreak = true; description = "Download Open Street Map tiles"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "oso2pdf" = callPackage @@ -149669,6 +153342,7 @@ self: { homepage = "https://github.com/operational-transformation/ot.hs"; description = "Real-time collaborative editing with Operational Transformation"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ottparse-pretty" = callPackage @@ -149734,6 +153408,7 @@ self: { homepage = "https://github.com/capsjac/pack"; description = "Bidirectional fast ByteString packer/unpacker"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "package-description-remote" = callPackage @@ -149783,6 +153458,7 @@ self: { jailbreak = true; description = "Haskell Package Versioning Tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "packdeps" = callPackage @@ -149839,6 +153515,7 @@ self: { jailbreak = true; description = "(Deprecated) Packed Strings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "packer" = callPackage @@ -149875,6 +153552,7 @@ self: { ]; description = "Serialization library for GHC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "packunused" = callPackage @@ -149929,6 +153607,7 @@ self: { homepage = "https://github.com/fumieval/padKONTROL"; description = "Controlling padKONTROL native mode"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pagarme" = callPackage @@ -150233,6 +153912,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Panda"; description = "A simple static blog engine"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pandoc_1_13_1" = callPackage @@ -150995,6 +154675,7 @@ self: { ]; description = "Japanese-specific markup filters for pandoc"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pandoc-lens" = callPackage @@ -151008,6 +154689,7 @@ self: { homepage = "http://github.com/bgamari/pandoc-lens"; description = "Lenses for Pandoc documents"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pandoc-placetable" = callPackage @@ -151048,6 +154730,7 @@ self: { ]; description = "Render and insert PlantUML diagrams with Pandoc"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pandoc-types_1_12_4_1" = callPackage @@ -151201,6 +154884,7 @@ self: { executableHaskellDepends = [ base pandoc ]; description = "Literate Haskell support for GitHub's Markdown flavor"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pango_0_13_0_4" = callPackage @@ -151280,6 +154964,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Pango text rendering engine"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs.gnome) pango;}; "papillon" = callPackage @@ -151304,6 +154989,7 @@ self: { homepage = "https://skami.iocikun.jp/computer/haskell/packages/papillon"; description = "packrat parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pappy" = callPackage @@ -151318,6 +155004,7 @@ self: { homepage = "http://pdos.csail.mit.edu/~baford/packrat/thesis/"; description = "Packrat parsing; linear-time parsers for grammars in TDPL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "para" = callPackage @@ -151357,6 +155044,7 @@ self: { jailbreak = true; description = "Paragon"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parallel_3_2_0_3" = callPackage @@ -151439,6 +155127,7 @@ self: { ]; jailbreak = true; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parallel-tree-search" = callPackage @@ -151463,6 +155152,7 @@ self: { homepage = "http://code.haskell.org/parameterized-data"; description = "Parameterized data library implementing lightweight dependent types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parco" = callPackage @@ -151474,6 +155164,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Generalised parser combinators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parco-attoparsec" = callPackage @@ -151485,6 +155176,7 @@ self: { libraryHaskellDepends = [ attoparsec base mtl parco ]; description = "Generalised parser combinators - Attoparsec interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parco-parsec" = callPackage @@ -151496,6 +155188,7 @@ self: { libraryHaskellDepends = [ base mtl parco parsec ]; description = "Generalised parser combinators - Parsec interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parcom-lib" = callPackage @@ -151538,6 +155231,7 @@ self: { jailbreak = true; description = "Examples to accompany the book \"Parallel and Concurrent Programming in Haskell\""; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parport" = callPackage @@ -151549,6 +155243,7 @@ self: { libraryHaskellDepends = [ array base ]; description = "Simply interfacing the parallel port on linux"; license = "GPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "parse-dimacs" = callPackage @@ -151579,6 +155274,7 @@ self: { homepage = "http://github.com/gregwebs/cmdargs-help"; description = "generate command line arguments from a --help output"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parseargs_0_1_5_2" = callPackage @@ -151845,6 +155541,7 @@ self: { libraryHaskellDepends = [ base mtl parsec ]; homepage = "http://naesten.dyndns.org:8080/repos/parsely"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parser-helper" = callPackage @@ -151861,6 +155558,7 @@ self: { jailbreak = true; description = "Prints Haskell parse trees in JSON"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parser241" = callPackage @@ -151876,6 +155574,7 @@ self: { homepage = "https://github.com/YLiLarry/parser241"; description = "An interface to create production rules using augmented grammars"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parsergen" = callPackage @@ -151997,6 +155696,7 @@ self: { jailbreak = true; description = "NMR-STAR file format parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parsimony" = callPackage @@ -152099,6 +155799,7 @@ self: { jailbreak = true; description = "Haskell 98 Partial Lenses"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "partial-uri" = callPackage @@ -152134,6 +155835,7 @@ self: { homepage = "https://github.com/startling/partly"; description = "Inspect, create, and alter MBRs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "passage" = callPackage @@ -152151,6 +155853,7 @@ self: { ]; description = "Parallel code generation for hierarchical Bayesian modeling"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "passwords" = callPackage @@ -152173,6 +155876,7 @@ self: { libraryHaskellDepends = [ base HTTP network ]; description = "Interface to the past.is URL shortening service"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pasty" = callPackage @@ -152187,6 +155891,7 @@ self: { homepage = "http://github.com/markusle/pasty/tree/master"; description = "A simple command line pasting utility"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "patch-combinators" = callPackage @@ -152307,7 +156012,6 @@ self: { base deepseq exceptions filepath template-haskell ]; testHaskellDepends = [ base hspec HUnit mtl ]; - doHaddock = false; description = "Support for well-typed paths"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -152341,22 +156045,6 @@ self: { }) {}; "path-io" = callPackage - ({ mkDerivation, base, directory, exceptions, filepath, path - , temporary, time, transformers - }: - mkDerivation { - pname = "path-io"; - version = "0.3.1"; - sha256 = "b96763bd3a123a50341e003b2176a2fc72e93f8c9e717279cffe56fd824f693f"; - libraryHaskellDepends = [ - base directory exceptions filepath path temporary time transformers - ]; - homepage = "https://github.com/mrkkrp/path-io"; - description = "Interface to ‘directory’ package for users of ‘path’"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "path-io_1_1_0" = callPackage ({ mkDerivation, base, directory, exceptions, filepath, hspec, path , temporary, time, transformers }: @@ -152368,11 +156056,9 @@ self: { base directory exceptions filepath path temporary time transformers ]; testHaskellDepends = [ base exceptions hspec path ]; - jailbreak = true; homepage = "https://github.com/mrkkrp/path-io"; description = "Interface to ‘directory’ package for users of ‘path’"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "path-pieces_0_1_4" = callPackage @@ -152455,6 +156141,7 @@ self: { homepage = "http://github.com/TheBizzle"; description = "A toy pathfinding library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pathtype" = callPackage @@ -152542,6 +156229,7 @@ self: { homepage = "http://github.com/toschoo/mom"; description = "Common patterns in message-oriented applications"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "paymill" = callPackage @@ -152580,6 +156268,7 @@ self: { homepage = "https://github.com/fanjam/paypal-adaptive-hoops"; description = "Client for a limited part of PayPal's Adaptive Payments API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "paypal-api" = callPackage @@ -152598,6 +156287,7 @@ self: { homepage = "http://projects.haskell.org/paypal-api/"; description = "PayPal API, currently supporting \"ButtonManager\""; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pb" = callPackage @@ -152613,6 +156303,7 @@ self: { ]; description = "pastebin command line application"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pbc4hs" = callPackage @@ -153013,6 +156704,7 @@ self: { homepage = "https://github.com/Yuras/pdf-toolbox"; description = "Simple pdf viewer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "pdf2line" = callPackage @@ -153112,6 +156804,7 @@ self: { ]; description = "pdynload is polymorphic dynamic linking library"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "peakachu" = callPackage @@ -153127,6 +156820,7 @@ self: { ]; description = "Experiemental library for composable interactive programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "peano" = callPackage @@ -153172,6 +156866,7 @@ self: { ]; description = "pec embedded compiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pecoff" = callPackage @@ -153201,6 +156896,7 @@ self: { homepage = "http://github.com/HackerFoo/peg"; description = "a lazy non-deterministic concatenative programming language"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "peggy" = callPackage @@ -153241,6 +156937,7 @@ self: { homepage = "https://github.com/brunjlar/pell"; description = "Package to solve the Generalized Pell Equation"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pem" = callPackage @@ -153301,6 +156998,7 @@ self: { homepage = "http://www.github.com/massysett/penny"; description = "Extensible double-entry accounting system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "penny-bin" = callPackage @@ -153321,6 +157019,7 @@ self: { homepage = "http://www.github.com/massysett/penny"; description = "Deprecated - use penny package instead"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "penny-lib" = callPackage @@ -153344,6 +157043,7 @@ self: { homepage = "http://www.github.com/massysett/penny"; description = "Deprecated - use penny package instead"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "peparser" = callPackage @@ -153356,6 +157056,7 @@ self: { homepage = "https://github.com/igraves/peparser-haskell"; description = "A parser for PE object files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "perceptron" = callPackage @@ -153398,6 +157099,7 @@ self: { homepage = "https://github.com/Cognimeta/perdure"; description = "Robust persistence for acyclic immutable data"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "period" = callPackage @@ -153436,6 +157138,7 @@ self: { homepage = "https://github.com/sonyandy/perm"; description = "permutation Applicative and Monad with many mtl instances"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "permutation" = callPackage @@ -153459,6 +157162,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Generalised permutation parser combinator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "persist2er" = callPackage @@ -153988,7 +157692,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent" = callPackage + "persistent_2_2_4" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring , blaze-html, blaze-markup, bytestring, conduit, containers , exceptions, fast-logger, hspec, http-api-data, lifted-base @@ -154019,6 +157723,41 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Type-safe, multi-backend data serialization"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ psibi ]; + }) {}; + + "persistent" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base64-bytestring + , blaze-html, blaze-markup, bytestring, conduit, containers + , exceptions, fast-logger, hspec, http-api-data, lifted-base + , monad-control, monad-logger, mtl, old-locale, path-pieces + , resource-pool, resourcet, scientific, silently, tagged + , template-haskell, text, time, transformers, transformers-base + , unordered-containers, vector + }: + mkDerivation { + pname = "persistent"; + version = "2.2.4.1"; + sha256 = "1473bdd952854d7f5fdb5896d2df07ef1ecf301c7fdb136054f49625329d50db"; + libraryHaskellDepends = [ + aeson attoparsec base base64-bytestring blaze-html blaze-markup + bytestring conduit containers exceptions fast-logger http-api-data + lifted-base monad-control monad-logger mtl old-locale path-pieces + resource-pool resourcet scientific silently tagged template-haskell + text time transformers transformers-base unordered-containers + vector + ]; + testHaskellDepends = [ + aeson attoparsec base base64-bytestring blaze-html bytestring + conduit containers fast-logger hspec http-api-data lifted-base + monad-control monad-logger mtl old-locale path-pieces resource-pool + resourcet scientific tagged template-haskell text time transformers + unordered-containers vector + ]; + homepage = "http://www.yesodweb.com/book/persistent"; + description = "Type-safe, multi-backend data serialization"; + license = stdenv.lib.licenses.mit; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; @@ -154061,6 +157800,7 @@ self: { ]; description = "Declare Persistent entities using SQL SELECT query syntax"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "persistent-instances-iproute" = callPackage @@ -154107,6 +157847,7 @@ self: { homepage = "http://darcs.monoid.at/persistent-map"; description = "A thread-safe (STM) persistency interface for finite map types"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "persistent-mongoDB_2_1_2" = callPackage @@ -154675,6 +158416,7 @@ self: { homepage = "https://github.com/mstone/persistent-protobuf"; description = "Template-Haskell helpers for integrating protobufs with persistent"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "persistent-ratelimit" = callPackage @@ -154908,7 +158650,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent-sqlite" = callPackage + "persistent-sqlite_2_2" = callPackage ({ mkDerivation, aeson, base, bytestring, conduit, containers , hspec, monad-control, monad-logger, old-locale, persistent , persistent-template, resourcet, text, time, transformers @@ -154930,6 +158672,32 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Backend for the persistent library using sqlite3"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ psibi ]; + }) {}; + + "persistent-sqlite" = callPackage + ({ mkDerivation, aeson, base, bytestring, conduit, containers + , hspec, monad-control, monad-logger, old-locale, persistent + , persistent-template, resourcet, text, time, transformers + }: + mkDerivation { + pname = "persistent-sqlite"; + version = "2.2.1"; + sha256 = "bac71080bb25ad20b9116e42df463bbe230bacb2d963a5b101a501cff7fffc5e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring conduit containers monad-control monad-logger + old-locale persistent resourcet text time transformers + ]; + executableHaskellDepends = [ base monad-logger ]; + testHaskellDepends = [ + base hspec persistent persistent-template time transformers + ]; + homepage = "http://www.yesodweb.com/book/persistent"; + description = "Backend for the persistent library using sqlite3"; + license = stdenv.lib.licenses.mit; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; @@ -155195,7 +158963,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent-template" = callPackage + "persistent-template_2_1_5" = callPackage ({ mkDerivation, aeson, aeson-compat, base, bytestring, containers , ghc-prim, hspec, http-api-data, monad-control, monad-logger , path-pieces, persistent, QuickCheck, tagged, template-haskell @@ -155216,6 +158984,31 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Type-safe, non-relational, multi-backend persistence"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ psibi ]; + }) {}; + + "persistent-template" = callPackage + ({ mkDerivation, aeson, aeson-compat, base, bytestring, containers + , ghc-prim, hspec, http-api-data, monad-control, monad-logger + , path-pieces, persistent, QuickCheck, tagged, template-haskell + , text, transformers, unordered-containers + }: + mkDerivation { + pname = "persistent-template"; + version = "2.1.6"; + sha256 = "818a89a082bec8e812c69d2e5069468f61c23d769456736318836cbffac56653"; + libraryHaskellDepends = [ + aeson aeson-compat base bytestring containers ghc-prim + http-api-data monad-control monad-logger path-pieces persistent + tagged template-haskell text transformers unordered-containers + ]; + testHaskellDepends = [ + aeson base bytestring hspec persistent QuickCheck text transformers + ]; + homepage = "http://www.yesodweb.com/book/persistent"; + description = "Type-safe, non-relational, multi-backend persistence"; + license = stdenv.lib.licenses.mit; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; @@ -155318,6 +159111,7 @@ self: { homepage = "http://www.cs.chalmers.se/~aarne/pesca/"; description = "Proof Editor for Sequent Calculus"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "peyotls" = callPackage @@ -155345,6 +159139,7 @@ self: { homepage = "https://github.com/YoshikuniJujo/peyotls/wiki"; description = "Pretty Easy YOshikuni-made TLS library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "peyotls-codec" = callPackage @@ -155364,6 +159159,7 @@ self: { homepage = "https://github.com/YoshikuniJujo/peyotls/wiki"; description = "Codec parts of Pretty Easy YOshikuni-made TLS library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pez" = callPackage @@ -155382,6 +159178,7 @@ self: { homepage = "http://brandon.si/code/pez-zipper-library-released/"; description = "A Pretty Extraordinary Zipper library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pg-harness" = callPackage @@ -155402,6 +159199,7 @@ self: { homepage = "https://github.com/BardurArantsson/pg-harness"; description = "REST service and library for creating/consuming temporary PostgreSQL databases"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pg-harness-client" = callPackage @@ -155433,6 +159231,7 @@ self: { homepage = "https://github.com/BardurArantsson/pg-harness"; description = "REST service for creating temporary PostgreSQL databases"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pgdl" = callPackage @@ -155502,6 +159301,7 @@ self: { homepage = "https://github.com/chrisdone/pgsql-simple"; description = "A mid-level PostgreSQL client library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pgstream" = callPackage @@ -155527,6 +159327,7 @@ self: { jailbreak = true; description = "Streaming Postgres bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "phantom-state" = callPackage @@ -155554,6 +159355,7 @@ self: { homepage = "http://github.com/glehel/phasechange"; description = "Freezing, thawing, and copy elision"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "phash" = callPackage @@ -155612,19 +159414,21 @@ self: { testHaskellDepends = [ base hspec ]; description = "ghci debug viewer with simple editor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "phone-numbers" = callPackage ({ mkDerivation, base, bytestring, phonenumber }: mkDerivation { pname = "phone-numbers"; - version = "0.0.3"; - sha256 = "ccd7b831b990d6d2d5377d7102cd7ad470fc375fe60d3b6861f62beefadbac81"; + version = "0.0.5"; + sha256 = "54cb314927e399b6a92e1ffbbbd34d52b8fb904f06b1a936b4f708081262f410"; libraryHaskellDepends = [ base bytestring ]; librarySystemDepends = [ phonenumber ]; homepage = "https://github.com/christian-marie/phone-numbers"; description = "Haskell bindings to the libphonenumber library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {phonenumber = null;}; "phone-push" = callPackage @@ -155643,6 +159447,7 @@ self: { homepage = "https://github.com/gurgeh/haskell-phone-push"; description = "Push notifications for Android and iOS"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "phonetic-code" = callPackage @@ -155672,6 +159477,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Phooey"; description = "Functional user interfaces"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "photoname" = callPackage @@ -155694,6 +159500,7 @@ self: { homepage = "http://hub.darcs.net/dino/photoname"; description = "Rename photo image files based on EXIF shoot date"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "phraskell" = callPackage @@ -155709,6 +159516,7 @@ self: { homepage = "https://github.com/skypers/phraskell"; description = "A fractal viewer"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "phybin" = callPackage @@ -155743,6 +159551,7 @@ self: { homepage = "http://www.cs.indiana.edu/~rrnewton/projects/phybin/"; description = "Utility for clustering phylogenetic trees in Newick format based on Robinson-Foulds distance"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pi-calculus" = callPackage @@ -155764,6 +159573,7 @@ self: { homepage = "https://github.com/renzyq19/pi-calculus"; description = "Applied pi-calculus interpreter"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pia-forward" = callPackage @@ -155810,6 +159620,7 @@ self: { ]; description = "Remotely controlling Java Swing applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "picologic" = callPackage @@ -155930,6 +159741,7 @@ self: { libraryHaskellDepends = [ array base containers Imlib mtl ]; description = "A Piet interpreter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "piki" = callPackage @@ -155944,6 +159756,7 @@ self: { homepage = "http://www.mew.org/~kazu/proj/piki/"; description = "Yet another text-to-html converter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pinboard" = callPackage @@ -155986,6 +159799,7 @@ self: { homepage = "https://github.com/abhinav/pinch"; description = "An alternative implementation of Thrift for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "pinchot_0_6_0_0" = callPackage @@ -156537,6 +160351,7 @@ self: { homepage = "https://github.com/nikita-volkov/pipes-cereal-plus"; description = "A streaming serialization library on top of \"pipes\" and \"cereal-plus\""; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipes-cliff" = callPackage @@ -156622,6 +160437,7 @@ self: { homepage = "https://github.com/pcapriotti/pipes-extra"; description = "Conduit adapters"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipes-core" = callPackage @@ -156652,6 +160468,7 @@ self: { homepage = "http://github.com/kvanberendonck/pipes-courier"; description = "Pipes utilities for interfacing with the courier message-passing framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipes-csv" = callPackage @@ -156769,6 +160586,7 @@ self: { homepage = "https://github.com/jwiegley/pipes-files"; description = "Fast traversal of directory trees using pipes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "pipes-group_1_0_2" = callPackage @@ -156867,6 +160685,7 @@ self: { homepage = "https://github.com/marcinmrotek/key-value-csv"; description = "Streaming processing of CSV files preceded by key-value pairs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipes-mongodb" = callPackage @@ -156918,6 +160737,7 @@ self: { homepage = "https://github.com/k0001/pipes-network-tls"; description = "TLS-secured network connections support for pipes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipes-p2p" = callPackage @@ -156956,6 +160776,7 @@ self: { homepage = "https://github.com/jdnavarro/pipes-p2p-examples"; description = "Examples using pipes-p2p"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipes-parse_3_0_2" = callPackage @@ -157291,6 +161112,7 @@ self: { jailbreak = true; description = "A dependently typed core language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pit" = callPackage @@ -157315,6 +161137,7 @@ self: { homepage = "https://github.com/chiro/haskell-pit"; description = "Account management tool"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pitchtrack" = callPackage @@ -157416,6 +161239,7 @@ self: { executableHaskellDepends = [ base Cabal split ]; description = "Package dependency graph for installed packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pktree" = callPackage @@ -157456,23 +161280,6 @@ self: { }) {}; "plan-b" = callPackage - ({ mkDerivation, base, exceptions, hspec, path, path-io - , transformers - }: - mkDerivation { - pname = "plan-b"; - version = "0.1.0"; - sha256 = "46aa687c41c5b61302f5b968b8f3f7e2fd488013d6a2c05daa93f422bd50b107"; - libraryHaskellDepends = [ - base exceptions path path-io transformers - ]; - testHaskellDepends = [ base hspec path path-io ]; - homepage = "https://github.com/mrkkrp/plan-b"; - description = "Failure-tolerant file and directory editing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "plan-b_0_2_0" = callPackage ({ mkDerivation, base, exceptions, hspec, path, path-io , transformers }: @@ -157484,11 +161291,9 @@ self: { base exceptions path path-io transformers ]; testHaskellDepends = [ base hspec path path-io ]; - jailbreak = true; homepage = "https://github.com/mrkkrp/plan-b"; description = "Failure-tolerant file and directory editing"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "planar-graph" = callPackage @@ -157506,6 +161311,7 @@ self: { jailbreak = true; description = "A representation of planar graphs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "plat" = callPackage @@ -157519,6 +161325,7 @@ self: { ]; description = "Simple templating library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "playlists" = callPackage @@ -157574,6 +161381,7 @@ self: { ]; description = "Remote monad for editing plists"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "plivo" = callPackage @@ -157595,6 +161403,7 @@ self: { homepage = "https://github.com/singpolyma/plivo-haskell"; description = "Plivo API wrapper for Haskell"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "plot_0_2_3_4" = callPackage @@ -157628,6 +161437,7 @@ self: { homepage = "http://github.com/amcphail/plot"; description = "A plotting library, exportable as eps/pdf/svg/png or renderable with gtk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "plot-gtk_0_2_0_2" = callPackage @@ -157654,6 +161464,7 @@ self: { homepage = "http://code.haskell.org/plot"; description = "GTK plots and interaction with GHCi"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "plot-gtk-ui" = callPackage @@ -157670,6 +161481,7 @@ self: { homepage = "https://github.com/sumitsahrawat/plot-gtk-ui"; description = "A quick way to use Mathematica like Manipulation abilities"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "plot-gtk3_0_1" = callPackage @@ -157715,6 +161527,7 @@ self: { homepage = "http://code.haskell.org/plot"; description = "GTK3 plots and interaction with GHCi"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "plot-lab" = callPackage @@ -157732,6 +161545,7 @@ self: { homepage = "https://github.com/sumitsahrawat/plot-lab"; description = "A plotting tool with Mathematica like Manipulation abilities"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "plotfont" = callPackage @@ -157790,6 +161604,7 @@ self: { testHaskellDepends = [ base directory process ]; description = "Automatic recompilation and reloading of haskell modules"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "plugins-multistage" = callPackage @@ -157808,6 +161623,7 @@ self: { ]; description = "Dynamic linking for embedded DSLs with staged compilation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "plumbers" = callPackage @@ -157819,6 +161635,7 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Pointless plumbing combinators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ply-loader" = callPackage @@ -157838,6 +161655,7 @@ self: { executableHaskellDepends = [ base bytestring linear vector ]; description = "PLY file loader"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "png-file" = callPackage @@ -157869,6 +161687,7 @@ self: { ]; description = "Pure Haskell loader for PNG images"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pngload-fixed" = callPackage @@ -157880,6 +161699,7 @@ self: { libraryHaskellDepends = [ array base bytestring mtl parsec zlib ]; description = "Pure Haskell loader for PNG images"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pnm" = callPackage @@ -157925,6 +161745,7 @@ self: { ]; description = "Multi-backend (zookeeper and sqlite) DNS Server using persistent-library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pointed_4_1" = callPackage @@ -158141,6 +161962,7 @@ self: { homepage = "http://haskell.di.uminho.pt/wiki/Pointless+Lenses"; description = "Pointless Lenses library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pointless-rewrite" = callPackage @@ -158156,6 +161978,7 @@ self: { ]; description = "Pointless Rewrite library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "poker-eval" = callPackage @@ -158211,6 +162034,7 @@ self: { testHaskellDepends = [ base containers HUnit MissingH mtl parsec ]; description = "Fork of ConfigFile for Polar Game Engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "polar-shader" = callPackage @@ -158243,6 +162067,7 @@ self: { homepage = "https://github.com/kawu/polh/tree/master/lexicon"; description = "A library for manipulating the historical dictionary of Polish (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "polimorf" = callPackage @@ -158388,6 +162213,7 @@ self: { ]; description = "Polynomial types and operations"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "polynomial" = callPackage @@ -158479,6 +162305,7 @@ self: { executableHaskellDepends = [ cgi free-theorems utf8-string xhtml ]; description = "Taming Selective Strictness"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "polysoup" = callPackage @@ -158504,6 +162331,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Typeable for polymorphic types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "polytypeable-utils" = callPackage @@ -158515,6 +162343,7 @@ self: { libraryHaskellDepends = [ base haskell98 polytypeable ]; description = "Utilities for polytypeable"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ponder" = callPackage @@ -158541,6 +162370,7 @@ self: { homepage = "http://github.com/RobertFischer/pong-server#readme"; description = "A simple embedded pingable server that runs in the background"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pontarius-mediaserver" = callPackage @@ -158561,6 +162391,7 @@ self: { homepage = "http://www.pontarius.org/projects/pontarius-mediaserver/"; description = "Extended Personal Media Network (XPMN) media server"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pontarius-xmpp" = callPackage @@ -158600,6 +162431,7 @@ self: { homepage = "https://github.com/pontarius/pontarius-xmpp/"; description = "An XMPP client library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pontarius-xpmn" = callPackage @@ -158617,6 +162449,7 @@ self: { homepage = "http://www.pontarius.org/projects/pontarius-xpmn/"; description = "Extended Personal Media Network (XPMN) library"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pony" = callPackage @@ -158646,6 +162479,7 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Thread-safe resource pools. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pool-conduit" = callPackage @@ -158665,6 +162499,7 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Resource pool allocations via ResourceT. (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pooled-io" = callPackage @@ -158708,6 +162543,7 @@ self: { homepage = "http://www.haskell.org/~petersen/haskell/popenhs/"; description = "popenhs is a popen-like library for Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "poppler" = callPackage @@ -158727,6 +162563,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs"; description = "Binding to the Poppler"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {gdk2 = null; inherit (pkgs) gdk_pixbuf; inherit (pkgs.gnome) pango; inherit (pkgs) poppler;}; @@ -158764,6 +162601,7 @@ self: { homepage = "http://code.haskell.org/portaudio"; description = "Haskell bindings for the PortAudio library"; license = "unknown"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) portaudio;}; "porte" = callPackage @@ -158781,6 +162619,7 @@ self: { ]; description = "FreeBSD ports index search and analysis tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "porter" = callPackage @@ -158792,6 +162631,7 @@ self: { libraryHaskellDepends = [ haskell2010 ]; description = "Implementation of the Porter stemming algorithm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ports" = callPackage @@ -158804,6 +162644,7 @@ self: { homepage = "http://www.cse.unsw.edu.au/~chak/haskell/ports/"; description = "The Haskell Ports Library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ports-tools" = callPackage @@ -158846,6 +162687,7 @@ self: { homepage = "https://github.com/tensor5/posix-acl"; description = "Support for Posix ACL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) acl;}; "posix-escape" = callPackage @@ -158920,6 +162762,7 @@ self: { libraryHaskellDepends = [ base bytestring unix ]; description = "POSIX Realtime functionality"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "posix-timer" = callPackage @@ -158932,6 +162775,7 @@ self: { homepage = "https://github.com/mvv/posix-timer"; description = "Bindings to POSIX clock and timer functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "posix-waitpid" = callPackage @@ -158943,6 +162787,7 @@ self: { libraryHaskellDepends = [ base unix ]; description = "Low-level wrapping of POSIX waitpid(2)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "possible" = callPackage @@ -159614,6 +163459,7 @@ self: { homepage = "https://github.com/tolysz/postgresql-simple-typed"; description = "Typed extension for PostgreSQL simple"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "postgresql-simple-url" = callPackage @@ -159656,6 +163502,7 @@ self: { homepage = "https://github.com/dylex/postgresql-typed"; description = "A PostgreSQL access library with compile-time SQL type inference"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "postgrest" = callPackage @@ -159700,6 +163547,7 @@ self: { homepage = "https://github.com/begriffs/postgrest"; description = "REST API for any Postgres database"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "postie" = callPackage @@ -159722,6 +163570,7 @@ self: { ]; description = "SMTP server library to receive emails from within Haskell programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "postmark" = callPackage @@ -159763,6 +163612,7 @@ self: { homepage = "http://github.com/peti/postmaster"; description = "Postmaster ESMTP Server"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) adns; inherit (pkgs) openssl;}; "potato-tool" = callPackage @@ -159817,6 +163667,7 @@ self: { homepage = "http://neugierig.org/software/darcs/powermate/"; description = "PowerMate bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "powerpc" = callPackage @@ -159829,6 +163680,7 @@ self: { homepage = "http://tomahawkins.org"; description = "Tools for PowerPC programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ppm" = callPackage @@ -159854,6 +163706,7 @@ self: { homepage = "http://hub.darcs.net/shelarcy/pqc"; description = "Parallel batch driver for QuickCheck"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pqueue_1_2_1" = callPackage @@ -159908,6 +163761,7 @@ self: { jailbreak = true; description = "Fully encapsulated monad transformers with queuelike functionality"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "practice-room" = callPackage @@ -159926,6 +163780,7 @@ self: { homepage = "http://github.com/nfjinjing/practice-room"; description = "Practice Room"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "precis" = callPackage @@ -159946,6 +163801,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Diff Cabal packages"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pred-trie_0_2_0" = callPackage @@ -160093,6 +163949,7 @@ self: { homepage = "http://www.github.com/massysett/prednote"; description = "Tests and QuickCheck generators to accompany prednote"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prefix-units_0_1_0_2" = callPackage @@ -160160,6 +164017,7 @@ self: { jailbreak = true; description = "A library for building a prefork-style server quickly"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pregame" = callPackage @@ -160179,6 +164037,7 @@ self: { homepage = "https://github.com/jxv/pregame"; description = "Prelude counterpart"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prelude-edsl" = callPackage @@ -160241,6 +164100,7 @@ self: { jailbreak = true; description = "Another kind of alternate Prelude file"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prelude-plus" = callPackage @@ -160254,6 +164114,7 @@ self: { libraryHaskellDepends = [ base utf8-string ]; description = "Prelude for rest of us"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prelude-prime" = callPackage @@ -160297,6 +164158,7 @@ self: { jailbreak = true; description = "Preprocess Haskell Repositories"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "preprocessor-tools" = callPackage @@ -160326,7 +164188,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "present" = callPackage + "present_2_2" = callPackage ({ mkDerivation, aeson, atto-lisp, base, bytestring, data-default , mtl, semigroups, text }: @@ -160342,6 +164204,19 @@ self: { jailbreak = true; description = "Make presentations for data types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "present" = callPackage + ({ mkDerivation, base, template-haskell }: + mkDerivation { + pname = "present"; + version = "4.0.0"; + sha256 = "358a493eaa38e27a46f9cf51e762225c004dd6069a9c96645524b409104e203f"; + libraryHaskellDepends = [ base template-haskell ]; + homepage = "https://github.com/chrisdone/present"; + description = "Make presentations for data types"; + license = stdenv.lib.licenses.bsd3; }) {}; "press" = callPackage @@ -160354,6 +164229,7 @@ self: { homepage = "http://github.com/bickfordb/text-press"; description = "Text template library targeted at the web / HTML generation"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "presto-hdbc" = callPackage @@ -160414,17 +164290,6 @@ self: { }) {}; "pretty-compact" = callPackage - ({ mkDerivation, base }: - mkDerivation { - pname = "pretty-compact"; - version = "1.0"; - sha256 = "5659d0a11a2a4651b1d2b9dc0c9359c767c7aceba5b0ea56035742c778dbde4c"; - libraryHaskellDepends = [ base ]; - description = "Pretty-printing library"; - license = "GPL"; - }) {}; - - "pretty-compact_2_0" = callPackage ({ mkDerivation, base, containers }: mkDerivation { pname = "pretty-compact"; @@ -160433,7 +164298,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Pretty-printing library"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pretty-error" = callPackage @@ -160678,6 +164542,7 @@ self: { libraryHaskellDepends = [ base ghc-prim primitive vector ]; description = "SIMD data types and functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "primula-board" = callPackage @@ -160700,6 +164565,7 @@ self: { homepage = "http://kagami.touhou.ru/projects/show/primula"; description = "ImageBoard on Happstack and HSP"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "primula-bot" = callPackage @@ -160719,6 +164585,7 @@ self: { homepage = "http://kagami.touhou.ru/projects/show/primula"; description = "Jabber-bot for primula-board ImageBoard"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "print-debugger" = callPackage @@ -160731,6 +164598,7 @@ self: { homepage = "https://github.com/JohnReedLOL/HaskellPrintDebugger"; description = "Debug print formatting library"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "printf-mauke" = callPackage @@ -160747,6 +164615,7 @@ self: { ]; description = "A Perl printf like formatter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "printxosd" = callPackage @@ -160774,6 +164643,7 @@ self: { homepage = "http://code.haskell.org/~mokus/priority-queue"; description = "Simple implementation of a priority queue"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "priority-sync" = callPackage @@ -160867,6 +164737,7 @@ self: { ]; description = "Parse process information for Linux"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "process_1_4_2_0" = callPackage @@ -161021,6 +164892,7 @@ self: { homepage = "https://github.com/garious/process-iterio"; description = "IterIO Process Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "process-leksah" = callPackage @@ -161033,6 +164905,7 @@ self: { jailbreak = true; description = "Process libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "process-listlike" = callPackage @@ -161051,6 +164924,7 @@ self: { homepage = "https://github.com/ddssff/process-listlike"; description = "Process extras"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "process-progress" = callPackage @@ -161068,6 +164942,7 @@ self: { homepage = "https://src.seereason.com/process-progress"; description = "Run a process and do reportsing on its progress"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "process-qq" = callPackage @@ -161086,6 +164961,7 @@ self: { homepage = "http://github.com/tanakh/process-qq"; description = "Quasi-Quoters for exec process"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "process-streaming" = callPackage @@ -161136,6 +165012,7 @@ self: { jailbreak = true; description = "Web graphic applications with processing.js."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "processor-creative-kit" = callPackage @@ -161163,6 +165040,7 @@ self: { libraryHaskellDepends = [ base procrastinating-variable ]; description = "Pure structures that can be incrementally created in impure code"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "procrastinating-variable" = callPackage @@ -161175,6 +165053,7 @@ self: { homepage = "http://github.com/gcross/procrastinating-variable"; description = "Haskell values that cannot be evaluated immediately"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "procstat" = callPackage @@ -161188,6 +165067,7 @@ self: { homepage = "http://closure.ath.cx/procstat"; description = "get information on processes in Linux"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "proctest" = callPackage @@ -161316,6 +165196,7 @@ self: { homepage = "http://antiope.com/downloads.html"; description = "Convert GHC profiles into GraphViz's dot format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prof2pretty" = callPackage @@ -161469,6 +165350,7 @@ self: { libraryHaskellDepends = [ base time ]; description = "Simple progress tracking & projection library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "progressbar" = callPackage @@ -161483,6 +165365,7 @@ self: { executableHaskellDepends = [ base ]; description = "Progressbar API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "progression" = callPackage @@ -161501,6 +165384,7 @@ self: { homepage = "http://chplib.wordpress.com/2010/02/04/progression-supporting-optimisation-in-haskell/"; description = "Automates the recording and graphing of criterion benchmarks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "progressive" = callPackage @@ -161521,6 +165405,7 @@ self: { homepage = "https://bitbucket.org/gchrupala/progression"; description = "Multilabel classification model which learns sequentially (online)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "proj4-hs-bindings" = callPackage @@ -161533,6 +165418,7 @@ self: { librarySystemDepends = [ proj ]; description = "Haskell bindings for the Proj4 C dynamic library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) proj;}; "project-template_0_1_4_2" = callPackage @@ -161622,6 +165508,7 @@ self: { homepage = "https://github.com/Erdwolf/prolog"; description = "A Prolog interpreter written in Haskell"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prolog-graph" = callPackage @@ -161641,6 +165528,7 @@ self: { homepage = "https://github.com/Erdwolf/prolog"; description = "A command line tool to visualize query resolution in Prolog"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prolog-graph-lib" = callPackage @@ -161653,6 +165541,7 @@ self: { homepage = "https://github.com/Erdwolf/prolog"; description = "Generating images of resolution trees for Prolog queries"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prologue" = callPackage @@ -161674,6 +165563,7 @@ self: { homepage = "https://github.com/wdanilo/prologue"; description = "Better, more general Prelude exporting common utilities"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prometheus-client" = callPackage @@ -161763,6 +165653,7 @@ self: { ]; description = "Functional synthesis of images and animations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "propellor" = callPackage @@ -161834,6 +165725,7 @@ self: { homepage = "http://www-users.cs.york.ac.uk/~ndm/proplang/"; description = "A library for functional GUI development"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "props" = callPackage @@ -161871,12 +165763,14 @@ self: { ({ mkDerivation, alsaLib, base, c2hs }: mkDerivation { pname = "proteaaudio"; - version = "0.6.2"; - sha256 = "96d690393cd95ed803b79399996355f54e9480e38f8440d1744eee932f785e81"; + version = "0.6.4"; + sha256 = "a0343bff81c0920c75cd24b8a5ff2d16ad0e3fdd4b285f65e611dcac0ced4f32"; + revision = "1"; + editedCabalFile = "44188158887c112fc181793db917e4ca4ffdb8f6889f25e36cc262aeba7877a3"; libraryHaskellDepends = [ base ]; librarySystemDepends = [ alsaLib ]; libraryToolDepends = [ c2hs ]; - description = "A wrapper for the proteaaudio library"; + description = "Simple audio library for Windows, Linux, OSX"; license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) alsaLib;}; @@ -161925,6 +165819,7 @@ self: { homepage = "https://github.com/nicta/protobuf-native"; description = "Protocol Buffers via C++"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "protocol-buffers_2_1_4" = callPackage @@ -162176,6 +166071,7 @@ self: { homepage = "http://darcs.factisresearch.com/pub/protocol-buffers-fork/"; description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "protocol-buffers-fork" = callPackage @@ -162193,6 +166089,7 @@ self: { homepage = "http://darcs.factisresearch.com/pub/protocol-buffers-fork/"; description = "Parse Google Protocol Buffer specifications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "proton-haskell" = callPackage @@ -162244,6 +166141,7 @@ self: { homepage = "https://github.com/prove-everywhere/server"; description = "The server for ProveEverywhere"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "proxied" = callPackage @@ -162269,6 +166167,7 @@ self: { homepage = "https://github.com/jberryman/proxy-kindness"; description = "A library for kind-polymorphic manipulation and inspection of Proxy values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "psc-ide_0_5_0" = callPackage @@ -162462,6 +166361,7 @@ self: { jailbreak = true; description = "Pipe stdin to a redis pub/sub channel"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "publicsuffix_0_20151212" = callPackage @@ -162528,6 +166428,7 @@ self: { homepage = "https://github.com/litherum/publicsuffixlist"; description = "Create the publicsuffixlist package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pubnub" = callPackage @@ -162562,6 +166463,7 @@ self: { homepage = "http://github.com/pubnub/haskell"; description = "PubNub Haskell SDK"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pubsub" = callPackage @@ -162582,6 +166484,7 @@ self: { homepage = "http://projects.haskell.org/pubsub/"; description = "A library for Google/SixApart pubsub hub interaction"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "puffytools" = callPackage @@ -162612,6 +166515,7 @@ self: { homepage = "https://github.com/pharpend/puffytools"; description = "A CLI assistant"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pugixml" = callPackage @@ -162630,6 +166534,7 @@ self: { homepage = "https://github.com/philopon/pugixml-hs"; description = "pugixml binding"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "pugs-DrIFT" = callPackage @@ -162664,6 +166569,7 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Fast, lightweight YAML loader and dumper"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pugs-compat" = callPackage @@ -162695,6 +166601,7 @@ self: { homepage = "http://repetae.net/john/computer/haskell/hsregex/"; description = "Haskell PCRE binding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pulse-simple" = callPackage @@ -162707,6 +166614,7 @@ self: { librarySystemDepends = [ libpulseaudio ]; description = "binding to Simple API of pulseaudio"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) libpulseaudio;}; "punkt" = callPackage @@ -162726,6 +166634,7 @@ self: { homepage = "https://github.com/bryant/punkt"; description = "Multilingual unsupervised sentence tokenization with Punkt"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "punycode" = callPackage @@ -162764,6 +166673,7 @@ self: { homepage = "http://lpuppet.banquise.net"; description = "A program that displays the puppet resources associated to a node given .pp files."; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pure-cdb" = callPackage @@ -163197,6 +167107,7 @@ self: { homepage = "http://gsoc2013cwithmobiledevices.blogspot.com.ar/"; description = "A server-side library for sending push notifications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "push-notify-ccs" = callPackage @@ -163217,6 +167128,7 @@ self: { homepage = "http://gsoc2013cwithmobiledevices.blogspot.com.ar/"; description = "A server-side library for sending/receiving push notifications through CCS (Google Cloud Messaging)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "push-notify-general" = callPackage @@ -163236,6 +167148,7 @@ self: { homepage = "http://gsoc2013cwithmobiledevices.blogspot.com.ar/"; description = "A general library for sending/receiving push notif. through dif. services."; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pusher-haskell" = callPackage @@ -163339,6 +167252,7 @@ self: { homepage = "https://github.com/jwiegley/pushme"; description = "Tool to synchronize multiple directories with rsync, zfs or git-annex"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "putlenses" = callPackage @@ -163356,6 +167270,7 @@ self: { jailbreak = true; description = "Put-based lens library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "puzzle-draw" = callPackage @@ -163385,6 +167300,7 @@ self: { ]; description = "Creating graphics for pencil puzzles"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "puzzle-draw-cmdline" = callPackage @@ -163404,6 +167320,7 @@ self: { jailbreak = true; description = "Creating graphics for pencil puzzles, command line tools"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pvd" = callPackage @@ -163424,6 +167341,7 @@ self: { homepage = "http://code.haskell.org/pvd"; description = "A photo viewer daemon application with remote controlling abilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libdevil;}; "pwstore-cli" = callPackage @@ -163547,6 +167465,7 @@ self: { jailbreak = true; description = "Serialization/deserialization using Python Pickle format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "qc-oi-testgenerator" = callPackage @@ -163574,6 +167493,7 @@ self: { librarySystemDepends = [ qd ]; description = "double-double and quad-double number type via libqd"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {qd = null;}; "qd-vec" = callPackage @@ -163585,6 +167505,7 @@ self: { libraryHaskellDepends = [ base qd Vec ]; description = "'Vec' instances for 'qd' types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "qed" = callPackage @@ -163603,6 +167524,7 @@ self: { homepage = "https://github.com/ndmitchell/qed#readme"; description = "Simple prover"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "qhull-simple" = callPackage @@ -163616,6 +167538,7 @@ self: { homepage = "http://nonempty.org/software/haskell-qhull-simple"; description = "Simple bindings to Qhull, a library for computing convex hulls"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) qhull;}; "qrcode" = callPackage @@ -163644,6 +167567,7 @@ self: { homepage = "http://github.com/keerastudios/hsQt"; description = "Qt bindings"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {qtc_core = null; qtc_gui = null; qtc_network = null; qtc_opengl = null; qtc_script = null; qtc_tools = null;}; @@ -163667,6 +167591,7 @@ self: { homepage = "https://github.com/ion1/quadratic-irrational"; description = "An implementation of quadratic irrationals"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quandl-api_0_2_0_0" = callPackage @@ -163759,6 +167684,7 @@ self: { homepage = "http://github.com/luqui/quantum-arrow"; description = "An embedding of quantum computation as a Haskell arrow"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "qudb" = callPackage @@ -163778,6 +167704,7 @@ self: { homepage = "https://github.com/jstepien/qudb"; description = "Quite Useless DB"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quenya-verb" = callPackage @@ -163800,6 +167727,7 @@ self: { jailbreak = true; description = "Quenya verb conjugator"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "querystring-pickle" = callPackage @@ -163817,6 +167745,7 @@ self: { ]; description = "Picklers for de/serialising Generic data types to and from query strings"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "questioner" = callPackage @@ -163857,6 +167786,7 @@ self: { libraryHaskellDepends = [ array base containers mtl stateful-mtl ]; description = "A library of queuelike data structures, both functional and stateful"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quick-generator" = callPackage @@ -164035,6 +167965,7 @@ self: { ]; description = "Automating QuickCheck for polymorphic and overlaoded properties"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quickcheck-properties" = callPackage @@ -164122,6 +168053,7 @@ self: { homepage = "http://github.com/tcrayford/rematch"; description = "QuickCheck support for rematch"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quickcheck-script" = callPackage @@ -164256,6 +168188,7 @@ self: { homepage = "http://www.github.com/massysett/quickpull"; description = "Generate Main module with QuickCheck tests"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quickset" = callPackage @@ -164267,6 +168200,7 @@ self: { libraryHaskellDepends = [ base vector vector-algorithms ]; description = "Very fast and memory-compact query-only set and map structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quickspec" = callPackage @@ -164299,6 +168233,7 @@ self: { homepage = "https://github.com/davidsiegel/quicktest"; description = "A reflective batch tester for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quickwebapp" = callPackage @@ -164425,6 +168360,7 @@ self: { homepage = "https://github.com/talw/quoridor-hs"; description = "A Quoridor implementation in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "qux" = callPackage @@ -164445,6 +168381,7 @@ self: { homepage = "https://github.com/qux-lang/qux"; description = "Command line binary for working with the Qux language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rabocsv2qif" = callPackage @@ -164459,6 +168396,7 @@ self: { executableHaskellDepends = [ base ]; description = "A library and program to create QIF files from Rabobank CSV exports"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rad" = callPackage @@ -164472,6 +168410,7 @@ self: { homepage = "http://comonad.com/reader/"; description = "Reverse Automatic Differentiation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "radian" = callPackage @@ -164505,6 +168444,7 @@ self: { homepage = "https://github.com/klangner/radium"; description = "Chemistry"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "radium-formula-parser" = callPackage @@ -164522,6 +168462,7 @@ self: { homepage = "https://github.com/klangner/radium-formula-parser"; description = "Chemistry"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "radix" = callPackage @@ -164558,6 +168499,7 @@ self: { homepage = "github"; description = "librados haskell bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {rados = null;}; "rail-compiler-editor" = callPackage @@ -164581,6 +168523,7 @@ self: { homepage = "https://github.com/SWP-Ubau-SoSe2014-Haskell/SWPSoSe14"; description = "Compiler and editor for the esolang rail"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rainbow_0_20_0_4" = callPackage @@ -164644,6 +168587,7 @@ self: { homepage = "http://www.github.com/massysett/rainbow"; description = "Tests and QuickCheck generators to accompany rainbow"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rainbox_0_18_0_2" = callPackage @@ -164736,6 +168680,7 @@ self: { homepage = "http://github.com/YoEight/rakhana"; description = "Stream based PDF library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ralist" = callPackage @@ -164747,6 +168692,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Random access list with a list compatible interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rallod" = callPackage @@ -164759,6 +168705,7 @@ self: { homepage = "http://github.com/moonmaster9000/rallod"; description = "'$' in reverse"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "raml" = callPackage @@ -164786,6 +168733,7 @@ self: { libraryHaskellDepends = [ array base IntervalMap mtl random ]; description = "Random variable library, with Functor, Applicative and Monad instances"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "randfile" = callPackage @@ -164804,6 +168752,7 @@ self: { ]; description = "Program for picking a random file"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "random_1_0_1_1" = callPackage @@ -164839,6 +168788,7 @@ self: { libraryHaskellDepends = [ array base containers ]; description = "Random-access lists in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "random-derive" = callPackage @@ -164863,6 +168813,7 @@ self: { jailbreak = true; description = "A simple random generator library for extensible-effects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "random-effin" = callPackage @@ -164875,6 +168826,7 @@ self: { jailbreak = true; description = "A simple random generator library for effin"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "random-extras" = callPackage @@ -164947,6 +168899,7 @@ self: { homepage = "https://github.com/srijs/random-hypergeometric"; description = "Random variate generation from hypergeometric distributions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "random-shuffle" = callPackage @@ -164987,6 +168940,7 @@ self: { libraryHaskellDepends = [ base binary bytestring random ]; description = "An infinite stream of random data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "random-tree" = callPackage @@ -165021,6 +168975,7 @@ self: { homepage = "https://bitbucket.org/kpratt/random-variate"; description = "\"Uniform RNG => Non-Uniform RNGs\""; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "randomgen" = callPackage @@ -165135,6 +169090,7 @@ self: { libraryHaskellDepends = [ base containers primitive vector ]; description = "Linear range-min algorithms"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ranges" = callPackage @@ -165379,8 +169335,8 @@ self: { }: mkDerivation { pname = "ratel"; - version = "0.1.0"; - sha256 = "f8e5fb6d8cf3840b67bde9ceda4768405f50dcc3c1f60b003ae42332ffc6f735"; + version = "0.1.1"; + sha256 = "ec6d1f3b5b2bebe85086046026469db7e5433fe5394bb97c4f724030ef8e791a"; libraryHaskellDepends = [ aeson base bytestring case-insensitive containers http-client http-client-tls http-types text uuid @@ -165453,6 +169409,7 @@ self: { homepage = "http://bitbucket.org/dpwiz/raven-haskell"; description = "Sentry http interface for Scotty web server"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "raw-strings-qq_1_0_2" = callPackage @@ -165524,6 +169481,7 @@ self: { homepage = "http://malde.org/~ketil/"; description = "Mask nucleotide (EST) sequences in Fasta format"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rclient" = callPackage @@ -165561,6 +169519,7 @@ self: { homepage = "http://github.com/ekmett/rcu/"; description = "Read-Copy-Update for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rdf4h" = callPackage @@ -165592,6 +169551,7 @@ self: { homepage = "https://github.com/robstewart57/rdf4h"; description = "A library for RDF processing in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rdioh" = callPackage @@ -165614,6 +169574,7 @@ self: { ]; description = "A Haskell wrapper for Rdio's API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rdtsc" = callPackage @@ -165651,6 +169612,7 @@ self: { homepage = "https://john-millikin.com/software/haskell-re2/"; description = "Bindings to the re2 regular expression library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "react-flux" = callPackage @@ -165659,8 +169621,8 @@ self: { }: mkDerivation { pname = "react-flux"; - version = "1.0.3"; - sha256 = "b30f88e08577f8fd9375fe71d0e3a8dcd4452b5c8e0019d93b6a5146715d3710"; + version = "1.0.5"; + sha256 = "8860c51eae2ffa297ac9cd44758d4c99351cc59823945446708c9aa9d86e689e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -165704,6 +169666,7 @@ self: { homepage = "http://wiki.github.com/paolino/realogic"; description = "pluggable pure logic serializable reactor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive" = callPackage @@ -165721,6 +169684,7 @@ self: { homepage = "http://haskell.org/haskellwiki/reactive"; description = "Push-pull functional reactive programming"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-bacon" = callPackage @@ -165734,6 +169698,7 @@ self: { homepage = "http://github.com/raimohanska/reactive-bacon"; description = "FRP (functional reactive programming) framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-balsa" = callPackage @@ -165756,6 +169721,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Reactive-balsa"; description = "Programmatically edit MIDI events via ALSA and reactive-banana"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "reactive-banana" = callPackage @@ -165796,6 +169762,7 @@ self: { homepage = "https://github.com/JPMoresmau/reactive-banana-sdl"; description = "Reactive Banana bindings for SDL"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-banana-sdl2" = callPackage @@ -165809,6 +169776,7 @@ self: { homepage = "http://github.com/cies/reactive-banana-sdl2#readme"; description = "Reactive Banana integration with SDL2"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "reactive-banana-threepenny" = callPackage @@ -165824,6 +169792,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Reactive-banana"; description = "Examples for the reactive-banana library, using threepenny-gui"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-banana-wx" = callPackage @@ -165841,6 +169810,7 @@ self: { homepage = "http://wiki.haskell.org/Reactive-banana"; description = "Examples for the reactive-banana library, using wxHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "reactive-fieldtrip" = callPackage @@ -165858,6 +169828,7 @@ self: { homepage = "http://haskell.org/haskellwiki/reactive-fieldtrip"; description = "Connect Reactive and FieldTrip"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-glut" = callPackage @@ -165874,6 +169845,7 @@ self: { homepage = "http://haskell.org/haskellwiki/reactive-glut"; description = "Connects Reactive and GLUT"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-haskell" = callPackage @@ -165914,8 +169886,31 @@ self: { homepage = "https://github.com/strager/reactive-thread"; description = "Reactive programming via imperative threads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "reactivity" = callPackage + ({ mkDerivation, array, base, bmp, bytestring, comonad + , ConcurrentUtils, containers, Displayable, ghc-prim, list-extras + , monad-loops, monads-tf, parallel, random, time, transformers + , Win32 + }: + mkDerivation { + pname = "reactivity"; + version = "0.2.3.0"; + sha256 = "0ba202222b8c196f14576988abe35644d7895db68f128bc8ad042b6bc314f07d"; + libraryHaskellDepends = [ + array base bmp bytestring comonad ConcurrentUtils containers + Displayable ghc-prim list-extras monad-loops monads-tf parallel + random time transformers Win32 + ]; + jailbreak = true; + homepage = "http://haskell.org/haskellwiki/reactive"; + description = "(Yet another) alternate implementation of push-pull FRP. This is based on the Reactive package (http://haskell.org/haskellwiki/reactive)."; + license = "unknown"; + broken = true; + }) {Displayable = null;}; + "reactor" = callPackage ({ mkDerivation, array, base, bits-atomic, comonad, contravariant , mtl, semigroupoids, transformers @@ -165932,6 +169927,7 @@ self: { homepage = "http://comonad.com/reader/"; description = "Reactor - task parallel reactive programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "read-bounded" = callPackage @@ -166037,6 +170033,7 @@ self: { homepage = "http://website-ckkashyap.rhcloud.com"; description = "A really simple XML parser"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reasonable-lens" = callPackage @@ -166049,6 +170046,7 @@ self: { homepage = "https://github.com/tokiwoousaka/reasonable-lens"; description = "Lens implementation. It is more small but adequately."; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reasonable-operational" = callPackage @@ -166132,6 +170130,7 @@ self: { homepage = "https://github.com/nikita-volkov/record-aeson"; description = "Instances of \"aeson\" classes for the \"record\" types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "record-gl" = callPackage @@ -166155,6 +170154,7 @@ self: { ]; description = "Utilities for working with OpenGL's GLSL shading language and Nikita Volkov's \"Record\"s"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "record-preprocessor" = callPackage @@ -166175,6 +170175,7 @@ self: { homepage = "https://github.com/nikita-volkov/record-preprocessor"; description = "Compiler preprocessor introducing a syntactic extension for anonymous records"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "record-syntax" = callPackage @@ -166197,6 +170198,7 @@ self: { homepage = "https://github.com/nikita-volkov/record-syntax"; description = "A library for parsing and processing the Haskell syntax sprinkled with anonymous records"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "records" = callPackage @@ -166209,6 +170211,7 @@ self: { homepage = "http://darcs.wolfgang.jeltsch.info/haskell/records"; description = "A flexible record system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "records-th" = callPackage @@ -166227,6 +170230,7 @@ self: { homepage = "github.com/lassoinc/records-th"; description = "Template Haskell declarations for the records package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "recursion-schemes" = callPackage @@ -166257,6 +170261,7 @@ self: { homepage = "https://github.com/joeyadams/haskell-recursive-line-count"; description = "Count lines in files and display them hierarchically"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "redHandlers" = callPackage @@ -166275,6 +170280,7 @@ self: { jailbreak = true; description = "Monadic HTTP request handlers combinators to build a standalone web apps"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reddit" = callPackage @@ -166535,35 +170541,29 @@ self: { }) {}; "reedsolomon" = callPackage - ({ mkDerivation, base, bytestring, bytestring-mmap, clock - , criterion, deepseq, exceptions, filepath, gitrev, loop, mtl - , optparse-applicative, primitive, profunctors, QuickCheck, random - , statistics, tasty, tasty-ant-xml, tasty-hunit, tasty-quickcheck - , vector + ({ mkDerivation, base, bytestring, exceptions, gitrev, loop, mtl + , primitive, profunctors, QuickCheck, random, tasty, tasty-ant-xml + , tasty-hunit, tasty-quickcheck, vector }: mkDerivation { pname = "reedsolomon"; - version = "0.0.3.0"; - sha256 = "553b52e35c3d8890673ec7053dde4d2187b121ac6191019a47477a38b72b902e"; + version = "0.0.4.0"; + sha256 = "40498e946a71155b078d307d11803800f1a4df0777dd1ba8c3cf6e6c5689b7e9"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bytestring exceptions gitrev loop mtl primitive profunctors vector ]; - executableHaskellDepends = [ - base bytestring bytestring-mmap clock criterion deepseq filepath - optparse-applicative random statistics vector - ]; testHaskellDepends = [ base bytestring exceptions loop mtl primitive profunctors QuickCheck random tasty tasty-ant-xml tasty-hunit tasty-quickcheck vector ]; - jailbreak = true; homepage = "http://github.com/NicolasT/reedsolomon"; description = "Reed-Solomon Erasure Coding in Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reenact" = callPackage @@ -166577,6 +170577,7 @@ self: { ]; description = "A reimplementation of the Reactive library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "reexport-crypto-random" = callPackage @@ -166600,6 +170601,7 @@ self: { homepage = "https://bitbucket.org/carter/ref"; description = "Generic Mutable Ref Abstraction Layer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ref-fd" = callPackage @@ -166734,6 +170736,7 @@ self: { homepage = "https://github.com/Raynes/refh"; description = "A command-line tool for pasting to https://www.refheap.com"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "refined" = callPackage @@ -166869,6 +170872,7 @@ self: { homepage = "http://github.com/jfischoff/reflection-extras"; description = "Utilities for the reflection package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reflection-without-remorse" = callPackage @@ -166965,6 +170969,7 @@ self: { homepage = "https://github.com/reflex-frp/reflex-dom-contrib"; description = "A playground for experimenting with infrastructure and common code for reflex applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "reflex-gloss" = callPackage @@ -166981,6 +170986,7 @@ self: { homepage = "https://github.com/reflex-frp/reflex-gloss"; description = "An reflex interface for gloss"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "reflex-gloss-scene" = callPackage @@ -167010,6 +171016,7 @@ self: { homepage = "https://github.com/saulzar/reflex-gloss-scene"; description = "A simple scene-graph using reflex and gloss"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "reflex-orphans" = callPackage @@ -167018,14 +171025,15 @@ self: { }: mkDerivation { pname = "reflex-orphans"; - version = "0.1.0.1"; - sha256 = "bcebc4227af7a3a3e5b3293d135c1f7085bee563bbc7542b73ca8f8d88c7fdea"; + version = "0.1.0.2"; + sha256 = "ab8d8fdfb0c97f2622adc1d40af05fd1818220e59b901ec491369d99c8a8a33f"; libraryHaskellDepends = [ base reflex these ]; testHaskellDepends = [ base deepseq dependent-map mtl ref-tf reflex tasty tasty-hunit ]; description = "Useful missing instances for Reflex"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reflex-transformers" = callPackage @@ -167269,6 +171277,7 @@ self: { homepage = "http://code.google.com/p/xhaskell-regex-deriv/"; description = "Replaces/Enhances Text.Regex. Implementing regular expression matching using Brzozowski's Deriviatives"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regex-dfa" = callPackage @@ -167281,6 +171290,7 @@ self: { homepage = "http://sourceforge.net/projects/lazy-regex"; description = "Replaces/Enhances Text.Regex"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regex-easy" = callPackage @@ -167328,6 +171338,7 @@ self: { homepage = "http://sourceforge.net/projects/lazy-regex"; description = "Replaces/Enhances Text.Regex"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regex-pcre" = callPackage @@ -167376,6 +171387,7 @@ self: { homepage = "http://code.google.com/p/xhaskell-library/"; description = "Replaces/Enhances Text.Regex. Implementing regular expression matching using Antimirov's partial derivatives."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regex-posix" = callPackage @@ -167534,6 +171546,7 @@ self: { jailbreak = true; description = "This combines regex-tdfa with utf8-string to allow searching over UTF8 encoded lazy bytestrings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regex-tre" = callPackage @@ -167547,6 +171560,7 @@ self: { homepage = "http://sourceforge.net/projects/lazy-regex"; description = "Replaces/Enhances Text.Regex"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) tre;}; "regex-xmlschema" = callPackage @@ -167560,6 +171574,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Regular_expressions_for_XML_Schema"; description = "A regular expression library for W3C XML Schema regular expressions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regexchar" = callPackage @@ -167582,6 +171597,7 @@ self: { homepage = "http://functionalley.eu/RegExChar/regExChar.html"; description = "A POSIX, extended regex-engine"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regexdot" = callPackage @@ -167594,6 +171610,7 @@ self: { homepage = "http://functionalley.eu/RegExDot/regExDot.html"; description = "A polymorphic, POSIX, extended regex-engine"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regexp-tries" = callPackage @@ -167611,6 +171628,7 @@ self: { homepage = "http://github.com/baldo/regexp-tries"; description = "Regular Expressions on Tries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regexpr" = callPackage @@ -167650,6 +171668,7 @@ self: { homepage = "http://code.haskell.org/~morrow/code/haskell/regexqq"; description = "A quasiquoter for PCRE regexes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regional-pointers" = callPackage @@ -167666,6 +171685,7 @@ self: { homepage = "https://github.com/basvandijk/regional-pointers/"; description = "Regional memory pointers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regions" = callPackage @@ -167683,6 +171703,7 @@ self: { homepage = "https://github.com/basvandijk/regions/"; description = "Provides the region monad for safely opening and working with scarce resources"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regions-monadsfd" = callPackage @@ -167699,6 +171720,7 @@ self: { jailbreak = true; description = "Monads-fd instances for the RegionT monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regions-monadstf" = callPackage @@ -167716,6 +171738,7 @@ self: { homepage = "https://github.com/basvandijk/regions-monadstf/"; description = "Monads-tf instances for the RegionT monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regions-mtl" = callPackage @@ -167729,6 +171752,7 @@ self: { homepage = "https://github.com/basvandijk/regions-mtl/"; description = "mtl instances for the RegionT monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regress" = callPackage @@ -167778,6 +171802,7 @@ self: { jailbreak = true; description = "Additional functions for regular: arbitrary, coarbitrary, and binary get/put"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regular-web" = callPackage @@ -167795,6 +171820,7 @@ self: { homepage = "http://github.com/chriseidhof/regular-web"; description = "Generic programming for the web"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regular-xmlpickler" = callPackage @@ -167822,6 +171848,7 @@ self: { homepage = "https://github.com/mrVanDalo/reheat"; description = "to make notes and reduce impact on idle time on writing other programms"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rehoo" = callPackage @@ -167859,6 +171886,7 @@ self: { homepage = "https://github.com/kerkomen/rei"; description = "Process lists easily"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reified-records" = callPackage @@ -167872,6 +171900,7 @@ self: { homepage = "http://bitbucket.org/jozefg/reified-records"; description = "Reify records to Maps and back again"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reify" = callPackage @@ -167888,6 +171917,7 @@ self: { homepage = "http://www.cs.mu.oz.au/~bjpop/code.html"; description = "Serialize data"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reinterpret-cast" = callPackage @@ -167901,6 +171931,7 @@ self: { homepage = "https://github.com/nh2/reinterpret-cast"; description = "Memory reinterpretation casts for Float/Double and Word32/Word64"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "relacion" = callPackage @@ -168103,6 +172134,7 @@ self: { ]; description = "Cloud Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "remote-debugger" = callPackage @@ -168144,6 +172176,7 @@ self: { jailbreak = true; description = "Remote Monad implementation of the JSON RPC protocol"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "remote-json-client" = callPackage @@ -168161,6 +172194,7 @@ self: { ]; description = "Web client wrapper for remote-json"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "remote-json-server" = callPackage @@ -168178,6 +172212,7 @@ self: { ]; description = "Web server wrapper for remote-json"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "remote-monad" = callPackage @@ -168234,6 +172269,7 @@ self: { homepage = "https://github.com/nikita-volkov/remotion"; description = "A library for client-server applications based on custom protocols"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "renderable" = callPackage @@ -168273,6 +172309,7 @@ self: { jailbreak = true; description = "Define compound types that do not depend on member order"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa_3_3_1_2" = callPackage @@ -168383,6 +172420,7 @@ self: { homepage = "http://repa.ouroborus.net"; description = "Bulk array representations and operators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-bytestring" = callPackage @@ -168401,14 +172439,14 @@ self: { "repa-convert" = callPackage ({ mkDerivation, base, bytestring, double-conversion, primitive - , repa-scalar, vector + , repa-scalar, text, vector }: mkDerivation { pname = "repa-convert"; - version = "4.2.0.1"; - sha256 = "3421d87e0d743a1454084f3e1172dcebd050895c98a675efcbe3899a1793fd78"; + version = "4.2.1.1"; + sha256 = "dd29b6c83fdfa9d4d7ea63c61c8d43fdbaea606700c4b64cf71f62a5b3e72292"; libraryHaskellDepends = [ - base bytestring double-conversion primitive repa-scalar vector + base bytestring double-conversion primitive repa-scalar text vector ]; jailbreak = true; homepage = "http://repa.ouroborus.net"; @@ -168509,6 +172547,7 @@ self: { homepage = "http://repa.ouroborus.net"; description = "Data-parallel data flows"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-io_3_3_1_2" = callPackage @@ -168590,18 +172629,19 @@ self: { jailbreak = true; description = "Data Flow Fusion GHC Plugin"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-scalar" = callPackage ({ mkDerivation, base, bytestring, double-conversion, primitive - , vector + , time, vector }: mkDerivation { pname = "repa-scalar"; - version = "4.2.0.1"; - sha256 = "c6190f1886a5c9ce27e2fdc5bd62f8aeeace9771d1abed23fc598a0854277ed5"; + version = "4.2.0.3"; + sha256 = "1e8eeb7b9785602e6d93ff8a04537e1169454b8612042cd433256855d881777d"; libraryHaskellDepends = [ - base bytestring double-conversion primitive vector + base bytestring double-conversion primitive time vector ]; jailbreak = true; homepage = "http://repa.ouroborus.net"; @@ -168619,6 +172659,7 @@ self: { jailbreak = true; description = "Series Expressionss API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-sndfile" = callPackage @@ -168640,6 +172681,7 @@ self: { ]; description = "Reading and writing sound files with repa arrays"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "repa-stream" = callPackage @@ -168653,6 +172695,7 @@ self: { homepage = "http://repa.ouroborus.net"; description = "Stream functions not present in the vector library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-v4l2" = callPackage @@ -168673,6 +172716,7 @@ self: { homepage = "https://github.com/cgo/hsimage"; description = "Provides high-level access to webcams"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repl" = callPackage @@ -168688,6 +172732,7 @@ self: { homepage = "https://github.com/mikeplus64/repl"; description = "IRC friendly REPL library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repl-toolkit" = callPackage @@ -168749,6 +172794,7 @@ self: { homepage = "https://github.com/saep/repo-based-blog"; description = "Blogging module using blaze html for markup"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repr" = callPackage @@ -168766,6 +172812,7 @@ self: { homepage = "https://github.com/basvandijk/repr"; description = "Render overloaded expressions to their textual representation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repr-tree-syb" = callPackage @@ -168799,6 +172846,7 @@ self: { homepage = "http://github.com/ekmett/representable-functors/"; description = "Representable functors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "representable-profunctors" = callPackage @@ -168832,6 +172880,7 @@ self: { homepage = "http://github.com/ekmett/representable-tries/"; description = "Tries from representations of polynomial functors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "request-monad" = callPackage @@ -168972,6 +173021,7 @@ self: { homepage = "http://hub.darcs.net/thielema/resistor-cube"; description = "Compute total resistance of a cube of resistors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "resolve-trivial-conflicts_0_3_2_1" = callPackage @@ -169046,6 +173096,7 @@ self: { homepage = "https://bitbucket.org/tdammers/resource-embed"; description = "Embed data files via C and FFI"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "resource-pool_0_2_3_1" = callPackage @@ -169134,6 +173185,7 @@ self: { jailbreak = true; description = "Allocate resources which are guaranteed to be released"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "resourcet_1_1_3_1" = callPackage @@ -169348,6 +173400,7 @@ self: { homepage = "https://github.com/raptros/respond"; description = "process and route HTTP requests and generate responses on top of WAI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rest-client_0_4_0_1" = callPackage @@ -170519,6 +174572,7 @@ self: { jailbreak = true; homepage = "https://github.com/ozataman/restful-snap"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "restricted-workers" = callPackage @@ -170539,6 +174593,7 @@ self: { homepage = "https://github.com/co-dan/interactive-diagrams/wiki/Restricted-Workers"; description = "Running worker processes under system resource restrictions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "restyle" = callPackage @@ -170554,6 +174609,7 @@ self: { jailbreak = true; description = "Convert between camel case and separated words style"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "resumable-exceptions" = callPackage @@ -170566,6 +174622,7 @@ self: { jailbreak = true; description = "A monad transformer for resumable exceptions"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rethinkdb_2_2_0_2" = callPackage @@ -170789,6 +174846,7 @@ self: { homepage = "http://github.com/seanhess/rethinkdb-model"; description = "Useful tools for modeling data with rethinkdb"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rethinkdb-wereHamster" = callPackage @@ -171009,6 +175067,7 @@ self: { homepage = "http://www.github.com/massysett/rewrite"; description = "open file and rewrite it with new contents"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rewriting" = callPackage @@ -171020,6 +175079,7 @@ self: { libraryHaskellDepends = [ base containers regular ]; description = "Generic rewriting library for regular datatypes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rex" = callPackage @@ -171055,6 +175115,7 @@ self: { jailbreak = true; description = "Github resume generator"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rfc3339" = callPackage @@ -171099,9 +175160,10 @@ self: { homepage = "https://github.com/fumieval/rhythm-game-tutorial"; description = "Haskell rhythm game tutorial"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "riak" = callPackage + "riak_0_9_1_1" = callPackage ({ mkDerivation, aeson, attoparsec, base, binary, blaze-builder , bytestring, containers, enclosed-exceptions, exceptions, HUnit , mersenne-random-pure64, monad-control, network, protocol-buffers @@ -171123,10 +175185,60 @@ self: { base bytestring containers HUnit QuickCheck tasty tasty-hunit tasty-quickcheck text ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/markhibberd/riak-haskell-client"; description = "A Haskell client for the Riak decentralized data store"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "riak" = callPackage + ({ mkDerivation, aeson, attoparsec, base, binary, blaze-builder + , bytestring, containers, data-default-class, deepseq + , enclosed-exceptions, exceptions, hashable, HUnit + , mersenne-random-pure64, monad-control, mtl, network + , protocol-buffers, pureMD5, QuickCheck, random, random-shuffle + , resource-pool, riak-protobuf, semigroups, tasty, tasty-hunit + , tasty-quickcheck, text, time, transformers, unordered-containers + , vector + }: + mkDerivation { + pname = "riak"; + version = "1.0.0.0"; + sha256 = "efdcaf9812944e46214e50f6f2adc4b12ba23cb60a4a1c5357e971832b357af9"; + libraryHaskellDepends = [ + aeson attoparsec base binary blaze-builder bytestring containers + data-default-class deepseq enclosed-exceptions exceptions hashable + mersenne-random-pure64 monad-control network protocol-buffers + pureMD5 random random-shuffle resource-pool riak-protobuf + semigroups text time transformers unordered-containers vector + ]; + testHaskellDepends = [ + base bytestring containers data-default-class HUnit mtl QuickCheck + semigroups tasty tasty-hunit tasty-quickcheck text + ]; + doCheck = false; + homepage = "http://github.com/markhibberd/riak-haskell-client"; + description = "A Haskell client for the Riak decentralized data store"; + license = "unknown"; + }) {}; + + "riak-protobuf_0_20_0_0" = callPackage + ({ mkDerivation, array, base, parsec, protocol-buffers + , protocol-buffers-descriptor + }: + mkDerivation { + pname = "riak-protobuf"; + version = "0.20.0.0"; + sha256 = "542a99d75a67863d7be5d4c74178945ffbd5e0269ac69d6b81a76dd51b7176ae"; + libraryHaskellDepends = [ + array base parsec protocol-buffers protocol-buffers-descriptor + ]; + homepage = "http://github.com/markhibberd/riak-haskell-client"; + description = "Haskell types for the Riak protocol buffer API"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "riak-protobuf" = callPackage @@ -171135,8 +175247,8 @@ self: { }: mkDerivation { pname = "riak-protobuf"; - version = "0.20.0.0"; - sha256 = "542a99d75a67863d7be5d4c74178945ffbd5e0269ac69d6b81a76dd51b7176ae"; + version = "0.21.0.0"; + sha256 = "cfa49952f54a80ebb4fdc9cc35190b8226b01b0a21b50c9da309548fa367e39a"; libraryHaskellDepends = [ array base parsec protocol-buffers protocol-buffers-descriptor ]; @@ -171236,6 +175348,7 @@ self: { homepage = "http://modeemi.fi/~tuomov/riot/"; description = "Riot is an Information Organisation Tool"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ncurses;}; "ripple" = callPackage @@ -171256,6 +175369,7 @@ self: { homepage = "https://github.com/singpolyma/ripple-haskell"; description = "Ripple payment system library"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ripple-federation" = callPackage @@ -171274,6 +175388,7 @@ self: { homepage = "https://github.com/singpolyma/ripple-federation-haskell"; description = "Utilities and types to work with the Ripple federation protocol"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "risc386" = callPackage @@ -171291,6 +175406,7 @@ self: { homepage = "http://www2.tcs.ifi.lmu.de/~abel/"; description = "Reduced instruction set i386 simulator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rivers" = callPackage @@ -171304,6 +175420,7 @@ self: { homepage = "https://github.com/d-rive/rivers"; description = "Rivers are like Streams, but different"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rivet" = callPackage @@ -171386,6 +175503,18 @@ self: { license = stdenv.lib.licenses.asl20; }) {}; + "rlist" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "rlist"; + version = "0.1.0"; + sha256 = "2a2a083a730cb1b8005c26fbb7e212f1402b2a93d96aecb0a9b686e9ded2689f"; + libraryHaskellDepends = [ base ]; + homepage = "http://github.com/guaraqe/rlist#readme"; + description = "Lists with cheap snocs"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "rmonad" = callPackage ({ mkDerivation, base, containers, HUnit, suitable, test-framework , test-framework-hunit, transformers @@ -171400,6 +175529,7 @@ self: { ]; description = "Restricted monad library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rncryptor" = callPackage @@ -171524,6 +175654,7 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "Sci-fi roguelike game. Client application."; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "roguestar-engine" = callPackage @@ -171546,6 +175677,7 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "Sci-fi roguelike game. Backend."; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "roguestar-gl" = callPackage @@ -171565,6 +175697,7 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "Sci-fi roguelike game. Client library."; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "roguestar-glut" = callPackage @@ -171580,6 +175713,7 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "Sci-fi roguelike game. GLUT front-end."; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rollbar" = callPackage @@ -171689,6 +175823,7 @@ self: { homepage = "http://github.com/ekmett/rope"; description = "Tools for manipulating fingertrees of bytestrings with optional annotations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rosa" = callPackage @@ -171707,6 +175842,7 @@ self: { ]; description = "Query the namecoin blockchain"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rose-trees" = callPackage @@ -171789,6 +175925,7 @@ self: { homepage = "http://github.com/acowley/roshask"; description = "Haskell support for the ROS robotics framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rosso" = callPackage @@ -171800,6 +175937,7 @@ self: { libraryHaskellDepends = [ base containers deepseq ]; description = "General purpose utility library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rot13" = callPackage @@ -171841,6 +175979,7 @@ self: { homepage = "http://patch-tag.com/r/ekmett/rounding"; description = "Explicit floating point rounding mode wrappers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "roundtrip" = callPackage @@ -171856,6 +175995,7 @@ self: { ]; description = "Bidirectional (de-)serialization"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "roundtrip-aeson" = callPackage @@ -171878,6 +176018,7 @@ self: { homepage = "https://github.com/anchor/roundtrip-aeson"; description = "Un-/parse JSON with roundtrip invertible syntax definitions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "roundtrip-string" = callPackage @@ -171889,6 +176030,7 @@ self: { libraryHaskellDepends = [ base mtl parsec roundtrip ]; description = "Bidirectional (de-)serialization"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "roundtrip-xml" = callPackage @@ -171910,6 +176052,7 @@ self: { ]; description = "Bidirectional (de-)serialization for XML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "route-generator" = callPackage @@ -171926,6 +176069,7 @@ self: { homepage = "http://github.com/singpolyma/route-generator"; description = "Utility to generate routes for use with yesod-routes"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "route-planning" = callPackage @@ -171945,6 +176089,7 @@ self: { homepage = "https://github.com/tonymorris/route"; description = "A library and utilities for creating a route"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rowrecord" = callPackage @@ -171956,6 +176101,7 @@ self: { libraryHaskellDepends = [ base containers template-haskell ]; description = "Build records from lists of strings, as from CSV files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rpc" = callPackage @@ -171972,6 +176118,7 @@ self: { ]; description = "type safe rpcs provided as basic IO actions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rpc-framework" = callPackage @@ -171992,6 +176139,7 @@ self: { homepage = "http://github.com/mmirman/rpc-framework"; description = "a remote procedure call framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rpf" = callPackage @@ -172024,6 +176172,7 @@ self: { libraryHaskellDepends = [ base directory filepath HaXml process ]; description = "Cozy little project to question unruly rpm packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rsagl" = callPackage @@ -172045,6 +176194,7 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "The RogueStar Animation and Graphics Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rsagl-frp" = callPackage @@ -172062,6 +176212,7 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "The RogueStar Animation and Graphics Library: Functional Reactive Programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rsagl-math" = callPackage @@ -172080,6 +176231,7 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "The RogueStar Animation and Graphics Library: Mathematics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rspp" = callPackage @@ -172160,6 +176312,7 @@ self: { homepage = "http://hackage.haskell.org/package/rss2irc"; description = "watches an RSS/Atom feed and writes it to an IRC channel"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rtcm" = callPackage @@ -172178,6 +176331,7 @@ self: { homepage = "http://github.com/swift-nav/librtcm"; description = "RTCM Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rtld" = callPackage @@ -172222,6 +176376,7 @@ self: { homepage = "https://github.com/megantti/rtorrent-rpc"; description = "A library for communicating with RTorrent over its XML-RPC interface"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rtorrent-state" = callPackage @@ -172310,6 +176465,7 @@ self: { homepage = "https://gitorious.org/ruff"; description = "relatively useful fractal functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ruler" = callPackage @@ -172346,6 +176502,7 @@ self: { ]; homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rungekutta" = callPackage @@ -172357,6 +176514,7 @@ self: { libraryHaskellDepends = [ base ]; description = "A collection of explicit Runge-Kutta methods of various orders"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "runghc" = callPackage @@ -172540,6 +176698,7 @@ self: { homepage = "https://github.com/reinerp/safe-freeze"; description = "Support for safely freezing multiple arrays in the ST monad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "safe-globals" = callPackage @@ -172551,6 +176710,7 @@ self: { libraryHaskellDepends = [ base stm template-haskell ]; description = "Safe top-level mutable variables which scope like ordinary values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "safe-lazy-io" = callPackage @@ -172565,6 +176725,7 @@ self: { ]; description = "A library providing safe lazy IO features"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "safe-length" = callPackage @@ -172597,6 +176758,7 @@ self: { ]; description = "A small wrapper over hs-plugins to allow loading safe plugins"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "safe-printf" = callPackage @@ -172782,6 +176944,7 @@ self: { homepage = "https://github.com/basvandijk/safer-file-handles/"; description = "Type-safe file handling"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "safer-file-handles-bytestring" = callPackage @@ -172800,6 +176963,7 @@ self: { homepage = "https://github.com/basvandijk/safer-file-handles-bytestring/"; description = "Extends safer-file-handles with ByteString operations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "safer-file-handles-text" = callPackage @@ -172817,6 +176981,7 @@ self: { homepage = "https://github.com/basvandijk/safer-file-handles-text/"; description = "Extends safer-file-handles with Text operations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "saferoute" = callPackage @@ -172846,6 +177011,7 @@ self: { homepage = "http://fremissant.net/shape-syb"; description = "Obtain homogeneous values from arbitrary values, transforming or culling data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "saltine" = callPackage @@ -172906,6 +177072,7 @@ self: { jailbreak = true; description = "Modular web application framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "salvia-demo" = callPackage @@ -172928,6 +177095,7 @@ self: { jailbreak = true; description = "Demo Salvia servers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "salvia-extras" = callPackage @@ -172949,6 +177117,7 @@ self: { jailbreak = true; description = "Collection of non-fundamental handlers for the Salvia web server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "salvia-protocol" = callPackage @@ -172966,6 +177135,7 @@ self: { jailbreak = true; description = "Salvia webserver protocol suite supporting URI, HTTP, Cookie and MIME"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "salvia-sessions" = callPackage @@ -172984,6 +177154,7 @@ self: { jailbreak = true; description = "Session support for the Salvia webserver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "salvia-websocket" = callPackage @@ -173001,6 +177172,7 @@ self: { jailbreak = true; description = "Websocket implementation for the Salvia Webserver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sample-frame" = callPackage @@ -173122,6 +177294,7 @@ self: { ]; description = "Iteratee interface to SamTools library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sandi_0_3_5" = callPackage @@ -173202,6 +177375,7 @@ self: { homepage = "https://github.com/tokiwoousaka/Sarasvati"; description = "audio library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "sasl" = callPackage @@ -173219,6 +177393,7 @@ self: { homepage = "https://github.com/YoshikuniJujo/sasl/wiki"; description = "SASL implementation using simple-pipe"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sat" = callPackage @@ -173233,6 +177408,7 @@ self: { homepage = "http://tcana.info/sat.html"; description = "CNF SATisfier"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sat-micro-hs" = callPackage @@ -173250,6 +177426,7 @@ self: { ]; description = "A minimal SAT solver"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "satchmo" = callPackage @@ -173269,6 +177446,7 @@ self: { homepage = "https://github.com/jwaldmann/satchmo"; description = "SAT encoding monad"; license = "GPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "satchmo-backends" = callPackage @@ -173285,6 +177463,7 @@ self: { homepage = "http://dfa.imn.htwk-leipzig.de/satchmo/"; description = "driver for external satchmo backends"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "satchmo-examples" = callPackage @@ -173303,6 +177482,7 @@ self: { homepage = "http://dfa.imn.htwk-leipzig.de/satchmo/"; description = "examples that show how to use satchmo"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "satchmo-funsat" = callPackage @@ -173319,6 +177499,7 @@ self: { homepage = "http://dfa.imn.htwk-leipzig.de/satchmo/"; description = "funsat driver as backend for satchmo"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "satchmo-minisat" = callPackage @@ -173331,6 +177512,7 @@ self: { homepage = "http://dfa.imn.htwk-leipzig.de/satchmo/"; description = "minisat driver as backend for satchmo"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "satchmo-toysat" = callPackage @@ -173348,6 +177530,7 @@ self: { homepage = "https://github.com/msakai/satchmo-toysat"; description = "toysat driver as backend for satchmo"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sbp" = callPackage @@ -173380,6 +177563,7 @@ self: { homepage = "https://github.com/swift-nav/libsbp"; description = "SwiftNav's SBP Library"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sbv_4_2" = callPackage @@ -173551,6 +177735,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/scaleimage"; description = "Scale an image to a new geometry"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scalp-webhooks" = callPackage @@ -173577,6 +177762,7 @@ self: { ]; description = "Test webhooks locally"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scalpel_0_2_1" = callPackage @@ -173657,6 +177843,7 @@ self: { testHaskellDepends = [ array base HUnit ]; description = "An implementation of the Scan Vector Machine instruction set in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scat" = callPackage @@ -173732,6 +177919,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/SceneGraph"; description = "Scene Graph"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scgi" = callPackage @@ -173765,6 +177953,7 @@ self: { jailbreak = true; description = "Marge schedules and show EVR"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "schedule-planner" = callPackage @@ -173840,6 +178029,7 @@ self: { homepage = "http://scholdoc.scholarlymarkdown.com"; description = "Converts ScholarlyMarkdown documents to HTML5/LaTeX/Docx format"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scholdoc-citeproc" = callPackage @@ -173875,6 +178065,7 @@ self: { homepage = "http://scholdoc.scholarlymarkdown.com"; description = "Scholdoc fork of pandoc-citeproc"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scholdoc-texmath" = callPackage @@ -173966,6 +178157,7 @@ self: { jailbreak = true; description = "Mathematical/physical/chemical constants"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scientific_0_3_3_3" = callPackage @@ -174116,7 +178308,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "scientific" = callPackage + "scientific_0_3_4_4" = callPackage ({ mkDerivation, base, binary, bytestring, containers, deepseq , ghc-prim, hashable, integer-gmp, QuickCheck, smallcheck, tasty , tasty-ant-xml, tasty-hunit, tasty-quickcheck, tasty-smallcheck @@ -174139,6 +178331,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.6"; + sha256 = "bdd15c72b379ceaef5f30d7113e6971a47090a285f46d1d44528e328061df382"; + 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 @@ -174165,6 +178381,7 @@ self: { homepage = "http://github.com/nominolo/scion"; description = "Haskell IDE library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scion-browser" = callPackage @@ -174201,6 +178418,7 @@ self: { homepage = "http://github.com/JPMoresmau/scion-class-browser"; description = "Command-line interface for browsing and searching packages documentation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scons2dot" = callPackage @@ -174232,6 +178450,7 @@ self: { ]; description = "An interactive renderer for plotting time-series data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scope-cairo" = callPackage @@ -174254,6 +178473,7 @@ self: { ]; description = "An interactive renderer for plotting time-series data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scottish" = callPackage @@ -174273,6 +178493,7 @@ self: { homepage = "https://github.com/echaozh/scottish"; description = "scotty with batteries included"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scotty_0_9_0" = callPackage @@ -174417,6 +178638,7 @@ self: { ]; description = "blaze-html integration for Scotty"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scotty-cookie" = callPackage @@ -174459,6 +178681,7 @@ self: { jailbreak = true; description = "Fay integration for Scotty"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scotty-hastache" = callPackage @@ -174476,6 +178699,7 @@ self: { homepage = "https://github.com/scotty-web/scotty-hastache"; description = "Easy Mustache templating support for Scotty"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scotty-params-parser" = callPackage @@ -174537,6 +178761,7 @@ self: { homepage = "https://github.com/agrafix/scotty-session"; description = "Adding session functionality to scotty"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scotty-tls" = callPackage @@ -174593,6 +178818,7 @@ self: { jailbreak = true; description = "Scrabble play generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scrobble" = callPackage @@ -174615,6 +178841,7 @@ self: { ]; description = "Scrobbling server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scroll" = callPackage @@ -174681,6 +178908,7 @@ self: { homepage = "http://github.com/wereHamster/scrz"; description = "Process management and supervision daemon"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scyther-proof" = callPackage @@ -174831,6 +179059,7 @@ self: { ]; description = "image compositing with sdl2 - declarative style"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "sdl2-image" = callPackage @@ -174845,21 +179074,24 @@ self: { jailbreak = true; description = "Haskell binding to sdl2-image"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_image;}; "sdl2-ttf" = callPackage - ({ mkDerivation, base, SDL2, sdl2, SDL2_ttf }: + ({ mkDerivation, base, linear, SDL2, sdl2, SDL2_ttf, transformers + }: mkDerivation { pname = "sdl2-ttf"; - version = "0.2.2"; - sha256 = "cfe52e240f00e86edf723f08a6b6de1dd5e0ab390ed030458111e45ee9db1266"; + version = "1.0.0"; + sha256 = "349b155e0992e2e05695d380145bdb28a9a9bd6089ca03973dca6948883fe51f"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ base sdl2 ]; + libraryHaskellDepends = [ base sdl2 transformers ]; librarySystemDepends = [ SDL2 SDL2_ttf ]; - executableHaskellDepends = [ base sdl2 ]; + executableHaskellDepends = [ base linear sdl2 ]; description = "Binding to libSDL2-ttf"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_ttf;}; "sdnv" = callPackage @@ -174901,6 +179133,7 @@ self: { description = "A software defined radio library"; license = stdenv.lib.licenses.bsd3; platforms = [ "x86_64-darwin" "x86_64-linux" ]; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "seacat" = callPackage @@ -174926,6 +179159,7 @@ self: { homepage = "https://github.com/Barrucadu/lambdadelta"; description = "Small web framework using Warp and WAI"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "seal-module" = callPackage @@ -174955,6 +179189,7 @@ self: { homepage = "http://github.com/ekmett/search/"; description = "Infinite search in finite time with Hilbert's epsilon"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sec" = callPackage @@ -174983,6 +179218,7 @@ self: { homepage = "http://github.com/pgavin/secdh"; description = "SECDH Machine Simulator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "seclib" = callPackage @@ -175123,6 +179359,7 @@ self: { homepage = "https://www.httptwo.com/second-transfer/"; description = "Second Transfer HTTP/2 web server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "secp256k1" = callPackage @@ -175147,6 +179384,7 @@ self: { homepage = "http://github.com/haskoin/secp256k1-haskell#readme"; description = "Bindings for secp256k1 library from Bitcoin Core"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "secret-santa" = callPackage @@ -175166,6 +179404,7 @@ self: { homepage = "https://github.com/rodrigosetti/secret-santa"; description = "Secret Santa game assigner using QR-Codes"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "secret-sharing" = callPackage @@ -175187,6 +179426,7 @@ self: { homepage = "http://monoid.at/code"; description = "Information-theoretic secure secret sharing"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "secrm" = callPackage @@ -175201,6 +179441,7 @@ self: { jailbreak = true; description = "Example of writing \"secure\" file removal in Haskell rather than C"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "secure-sockets" = callPackage @@ -175301,6 +179542,7 @@ self: { librarySystemDepends = [ sedna ]; description = "Sedna C API XML Binding"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {sedna = null;}; "select" = callPackage @@ -175313,6 +179555,7 @@ self: { homepage = "http://nonempty.org/software/haskell-select"; description = "Wrap the select(2) POSIX function"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "selectors" = callPackage @@ -175330,6 +179573,7 @@ self: { homepage = "http://github.com/rcallahan/selectors"; description = "CSS Selectors for DOM traversal"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "selenium" = callPackage @@ -175341,6 +179585,7 @@ self: { libraryHaskellDepends = [ base HTTP HUnit mtl network pretty ]; description = "Test web applications through a browser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "selenium-server" = callPackage @@ -175362,6 +179607,7 @@ self: { homepage = "https://github.com/joelteon/selenium-server.git"; description = "Run the selenium standalone server for usage with webdriver"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "selfrestart" = callPackage @@ -175387,6 +179633,7 @@ self: { homepage = "https://github.com/luite/selinux"; description = "SELinux bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {selinux = null;}; "semaphore-plus" = callPackage @@ -175413,6 +179660,7 @@ self: { ]; description = "Weakened partial isomorphisms, reversible computations"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "semigroupoid-extras_4_0" = callPackage @@ -175700,6 +179948,7 @@ self: { homepage = "http://github.com/ppetr/semigroups-actions/"; description = "Semigroups actions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "semiring" = callPackage @@ -175722,6 +179971,7 @@ self: { homepage = "http://github.com/srush/SemiRings/tree/master"; description = "Semirings, ring-like structures used for dynamic programming applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "semiring-simple" = callPackage @@ -175763,6 +180013,7 @@ self: { ]; description = "An implementation of semver and semantic version ranges"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sendfile" = callPackage @@ -175794,6 +180045,33 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "sensei" = callPackage + ({ mkDerivation, ansi-terminal, base, base-compat, bytestring + , directory, filepath, fsnotify, hspec, hspec-wai, http-client + , http-types, interpolate, mockery, network, process, silently, stm + , text, time, unix, wai, warp + }: + mkDerivation { + pname = "sensei"; + version = "0.1.0"; + sha256 = "fd3c1edc901298173782bf8c65744dd4fb25cdfb9d1012e28a6e5038dc7114ab"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + ansi-terminal base base-compat bytestring directory filepath + fsnotify http-client http-types network process stm text time unix + wai warp + ]; + testHaskellDepends = [ + ansi-terminal base base-compat bytestring directory filepath + fsnotify hspec hspec-wai http-client http-types interpolate mockery + network process silently stm text time unix wai warp + ]; + homepage = "https://github.com/hspec/sensei#readme"; + description = "Automatically run Hspec tests on file modifications"; + license = stdenv.lib.licenses.mit; + }) {}; + "sensenet" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, process, stm , zeromq3-haskell @@ -175811,6 +180089,7 @@ self: { homepage = "https://github.com/rossdylan/sensenet"; description = "Distributed sensor network for the raspberry pi"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sentry" = callPackage @@ -175833,6 +180112,7 @@ self: { homepage = "https://github.com/noteed/sentry"; description = "Process monitoring tool written and configured in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "senza" = callPackage @@ -175889,6 +180169,7 @@ self: { homepage = "http://fremissant.net/seqaid"; description = "Dynamic strictness control, including space leak repair"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "seqalign" = callPackage @@ -175900,6 +180181,7 @@ self: { libraryHaskellDepends = [ base bytestring vector ]; description = "Sequence Alignment"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "seqid_0_1_0" = callPackage @@ -176049,6 +180331,7 @@ self: { homepage = "http://www.ingolia-lab.org/seqloc-datafiles-tutorial.html"; description = "Read and write BED and GTF format genome annotations"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sequence" = callPackage @@ -176078,6 +180361,7 @@ self: { homepage = "https://github.com/lukemaurer/sequent-core"; description = "Alternative Core language for GHC plugins"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sequential-index" = callPackage @@ -176113,6 +180397,7 @@ self: { homepage = "https://bitbucket.org/gchrupala/sequor"; description = "A sequence labeler based on Collins's sequence perceptron"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "serf" = callPackage @@ -176806,8 +181091,8 @@ self: { }: mkDerivation { pname = "servant-elm"; - version = "0.1.0.1"; - sha256 = "8e44d664e4484135c4b19d2477131b1f75863c999ff747a6b69052ac12f6d15d"; + version = "0.1.0.2"; + sha256 = "ee5de357b7c835eb68115de8cfcacb81dd83944916afec87c52ff92606c8dbda"; libraryHaskellDepends = [ base elm-export lens servant servant-foreign text ]; @@ -176843,6 +181128,7 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "Example programs for servant"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-github" = callPackage @@ -176872,10 +181158,10 @@ self: { }: mkDerivation { pname = "servant-haxl-client"; - version = "0.1.0.0"; - sha256 = "c9433881ea1aa4ff0f1eb99356cb223b7d7595859f3a1abac936488f1b18fc59"; - revision = "1"; - editedCabalFile = "9c5cd1e5bd9ba4fdb1b07de37a7aad75bd8f32d64a7f59f5cee3ec86975dbee9"; + version = "0.2.0.0"; + sha256 = "673f535649f796b984d051e4353e11943f2149ddeee6c8187a03a8b8eb10a16c"; + revision = "2"; + editedCabalFile = "adc963ee3fad0dd9992036ca4dc196be410c265a7a3b3d500bdebedd4a6a1002"; libraryHaskellDepends = [ aeson async attoparsec base bytestring either exceptions hashable haxl http-client http-client-tls http-media http-types network-uri @@ -177115,6 +181401,7 @@ self: { homepage = "http://github.com/zalora/servant-pool"; description = "Utility functions for creating servant 'Context's with \"context/connection pooling\" support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-postgresql" = callPackage @@ -177132,6 +181419,7 @@ self: { homepage = "http://github.com/zalora/servant-postgresql"; description = "Useful functions and instances for using servant with a PostgreSQL context"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-response" = callPackage @@ -177166,6 +181454,7 @@ self: { homepage = "http://github.com/zalora/servant"; description = "Generate a web service for servant 'Resource's using scotty and JSON"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-server_0_2_4" = callPackage @@ -177464,6 +181753,7 @@ self: { homepage = "https://github.com/haskell-servant/servant-swagger"; description = "Generate Swagger specification for your servant API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "servant-yaml" = callPackage @@ -177576,6 +181866,7 @@ self: { homepage = "https://github.com/yesodweb/serversession"; description = "Storage backend for serversession using acid-state"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "serversession-backend-persistent_1_0_1" = callPackage @@ -177631,6 +181922,7 @@ self: { homepage = "https://github.com/yesodweb/serversession"; description = "Storage backend for serversession using persistent and an RDBMS"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "serversession-backend-redis_1_0" = callPackage @@ -177787,6 +182079,7 @@ self: { jailbreak = true; description = "Snaplet for the ses-html package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sessions" = callPackage @@ -177802,6 +182095,7 @@ self: { homepage = "http://www.wellquite.org/sessions/"; description = "Session Types for Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "set-cover" = callPackage @@ -177820,6 +182114,7 @@ self: { homepage = "http://hub.darcs.net/thielema/set-cover/"; description = "Solve exact set cover problems like Sudoku, 8 Queens, Soma Cube, Tetris Cube"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "set-extra_1_3_2" = callPackage @@ -177873,6 +182168,7 @@ self: { ]; description = "Set of elements sorted by a different data type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "setdown" = callPackage @@ -178037,6 +182333,7 @@ self: { homepage = "https://github.com/scvalex/sexp"; description = "S-Expression parsing/printing made fun and easy"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sexp-grammar" = callPackage @@ -178059,6 +182356,7 @@ self: { homepage = "https://github.com/esmolanka/sexp-grammar"; description = "Invertible parsers for S-expressions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sexp-show" = callPackage @@ -178092,6 +182390,7 @@ self: { executableHaskellDepends = [ QuickCheck random ]; description = "S-expression printer and parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sext" = callPackage @@ -178117,6 +182416,7 @@ self: { homepage = "http://patch-tag.com/r/shahn/sfml-audio"; description = "minimal bindings to the audio module of sfml"; license = "unknown"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) libsndfile; inherit (pkgs) openal;}; "sfmt" = callPackage @@ -178179,6 +182479,7 @@ self: { homepage = "http://blog.malde.org/"; description = "Sgrep - grep Fasta files for sequences matching a regular expression"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sha-streams" = callPackage @@ -178217,6 +182518,7 @@ self: { homepage = "http://github.com/karun012/shadower"; description = "An automated way to run doctests in files that are changing"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shadowsocks" = callPackage @@ -178260,6 +182562,7 @@ self: { homepage = "http://haskell.org/haskellwiki/shady"; description = "Functional GPU programming - DSEL & compiler"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shady-graphics" = callPackage @@ -178278,6 +182581,7 @@ self: { homepage = "http://haskell.org/haskellwiki/shady"; description = "Functional GPU programming - DSEL & compiler"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shake_0_14_2" = callPackage @@ -178522,6 +182826,7 @@ self: { homepage = "http://thoughtpolice.github.com/shake-extras"; description = "Extra utilities for shake build systems"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shake-language-c_0_6_3" = callPackage @@ -178716,6 +183021,7 @@ self: { homepage = "http://github.com/bonnefoa/Shaker"; description = "simple and interactive command-line build tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shakespeare_2_0_2_1" = callPackage @@ -179062,6 +183368,7 @@ self: { homepage = "http://github.com/jberryman/shapely-data"; description = "Generics using @(,)@ and @Either@, with algebraic operations and typed conversions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sharc-timbre" = callPackage @@ -179093,6 +183400,7 @@ self: { jailbreak = true; description = "A circular buffer built on shared memory"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shared-fields" = callPackage @@ -179120,6 +183428,7 @@ self: { homepage = "https://github.com/nh2/shared-memory"; description = "POSIX shared memory"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "sharedio" = callPackage @@ -179150,6 +183459,7 @@ self: { homepage = "http://personal.cis.strath.ac.uk/~conor/pub/she"; description = "A Haskell preprocessor adding miscellaneous features"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shelduck" = callPackage @@ -179180,6 +183490,7 @@ self: { ]; description = "Test webhooks locally"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "shell-conduit_4_5" = callPackage @@ -179285,6 +183596,7 @@ self: { homepage = "http://gnu.rtin.bz/directory/devel/prog/other/shell-haskell.html"; description = "Pipe streams through external shell commands"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shellish" = callPackage @@ -179302,6 +183614,7 @@ self: { homepage = "http://repos.mornfall.net/shellish"; description = "shell-/perl- like (systems) programming in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shellmate" = callPackage @@ -179717,6 +184030,7 @@ self: { jailbreak = true; description = "A simple gtk based Russian Roulette game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shpider" = callPackage @@ -179734,6 +184048,7 @@ self: { homepage = "http://github.com/ozataman/shpider"; description = "Web automation library in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shplit" = callPackage @@ -179816,6 +184131,7 @@ self: { homepage = "http://mypage.iu.edu/~gdweber/software/sifflet/"; description = "A simple, visual, functional programming language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sifflet-lib" = callPackage @@ -179835,6 +184151,7 @@ self: { homepage = "http://mypage.iu.edu/~gdweber/software/sifflet/"; description = "Library of modules shared by sifflet and its tests and its exporters"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {gdk_x11 = null; gtk_x11 = null;}; "sign" = callPackage @@ -179886,6 +184203,7 @@ self: { ]; description = "Synchronous signal processing for DSLs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "signed-multiset" = callPackage @@ -179938,6 +184256,7 @@ self: { homepage = "http://github.com/mikeizbicki/simd"; description = "simple interface to GHC's SIMD instructions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simgi" = callPackage @@ -179957,6 +184276,7 @@ self: { homepage = "http://simgi.sourceforge.net/"; description = "stochastic simulation engine"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple" = callPackage @@ -180031,6 +184351,7 @@ self: { librarySystemDepends = [ bluetooth ]; description = "Simple Bluetooth API for Windows and Linux (bluez)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {bluetooth = null;}; "simple-c-value" = callPackage @@ -180054,6 +184375,7 @@ self: { homepage = "https://github.com/jfischoff/simple-c-value"; description = "A simple C value type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-conduit" = callPackage @@ -180077,6 +184399,7 @@ self: { homepage = "http://github.com/jwiegley/simple-conduit"; description = "A simple streaming I/O library based on monadic folds"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-config" = callPackage @@ -180110,6 +184433,7 @@ self: { ]; description = "simple binding of css and html"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-eval" = callPackage @@ -180138,6 +184462,7 @@ self: { homepage = "https://github.com/aleator/simple-firewire"; description = "Simplified interface for firewire cameras"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-form" = callPackage @@ -180155,6 +184480,7 @@ self: { homepage = "https://github.com/singpolyma/simple-form-haskell"; description = "Forms that configure themselves based on type"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-genetic-algorithm" = callPackage @@ -180250,6 +184576,7 @@ self: { homepage = "http://github.com/mvoidex/simple-log-syslog"; description = "Syslog backend for simple-log"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-neural-networks" = callPackage @@ -180322,6 +184649,7 @@ self: { ]; description = "Simplified Pascal language to SSVM compiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-pipe" = callPackage @@ -180578,6 +184906,7 @@ self: { homepage = "http://github.com/dzhus/simple-vec3/"; description = "Three-dimensional vectors of doubles with basic operations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simpleargs" = callPackage @@ -180607,6 +184936,7 @@ self: { homepage = "http://github.com/dom96/SimpleIRC"; description = "Simple IRC Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simpleirc-lens" = callPackage @@ -180619,6 +184949,7 @@ self: { homepage = "https://github.com/relrod/simpleirc-lens"; description = "Lenses for simpleirc types"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simplenote" = callPackage @@ -180635,6 +184966,7 @@ self: { ]; description = "Haskell interface for the simplenote API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simpleprelude" = callPackage @@ -180654,6 +184986,7 @@ self: { jailbreak = true; description = "A simplified Haskell prelude for teaching"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simplesmtpclient" = callPackage @@ -180680,6 +185013,7 @@ self: { homepage = "http://hub.darcs.net/thoferon/simplessh"; description = "Simple wrapper around libssh2"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {ssh2 = null;}; "simplest-sqlite" = callPackage @@ -180748,6 +185082,7 @@ self: { homepage = "http://malde.org/~ketil/"; description = "Simulate sequencing with different models for priming and errors"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simtreelo" = callPackage @@ -180788,6 +185123,7 @@ self: { homepage = "http://sigkill.dk/programs/sindre"; description = "A programming language for simple GUIs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.xorg) libXft;}; "singleton-nats" = callPackage @@ -180954,6 +185290,7 @@ self: { ]; description = "Sirkel, a Chord DHT"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sitemap" = callPackage @@ -180983,6 +185320,7 @@ self: { jailbreak = true; description = "Sized sequence data-types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sized-types" = callPackage @@ -181166,6 +185504,7 @@ self: { ]; description = "a tool to access the OSX keychain"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "skeletons" = callPackage @@ -181241,6 +185580,7 @@ self: { homepage = "https://github.com/emonkak/haskell-skype"; description = "Skype Desktop API binding for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "skypelogexport" = callPackage @@ -181280,6 +185620,7 @@ self: { jailbreak = true; description = "Haskell API for interacting with Slack"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "slack-api" = callPackage @@ -181290,8 +185631,8 @@ self: { }: mkDerivation { pname = "slack-api"; - version = "0.6"; - sha256 = "9e4c7ef5387dcf06fd5f56c2076e124af96db8b5e2830b91ee0137c59072204f"; + version = "0.7"; + sha256 = "2352c9ab62358547243620220c56836df20fb40e090e0234f643dda0460c90a2"; libraryHaskellDepends = [ aeson base bytestring containers errors HsOpenSSL io-streams lens lens-aeson monad-loops mtl network network-uri openssl-streams text @@ -181477,6 +185818,7 @@ self: { ]; description = "ws convert markdown to reveal-js"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sloane" = callPackage @@ -181529,6 +185871,7 @@ self: { libraryHaskellDepends = [ base mtl process ]; description = "Testing for minimal strictness"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "slug_0_1_1" = callPackage @@ -181583,6 +185926,7 @@ self: { homepage = "http://community.haskell.org/~aslatter/code/bytearray"; description = "low-level unboxed arrays, with minimal features"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smallcaps" = callPackage @@ -181679,6 +186023,7 @@ self: { homepage = "http://github.com/noteed/smallpt-hs"; description = "A Haskell port of the smallpt path tracer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smallstring" = callPackage @@ -181696,6 +186041,7 @@ self: { homepage = "http://community.haskell.org/~aslatter/code/smallstring/"; description = "A Unicode text type, optimized for low memory overhead"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smaoin" = callPackage @@ -181726,6 +186072,7 @@ self: { homepage = "http://patch-tag.com/r/salazar/smartGroup"; description = "group strings or bytestrings by words in common"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "smartcheck" = callPackage @@ -181775,6 +186122,7 @@ self: { homepage = "http://kyagrd.dyndns.org/~kyagrd/project/smartword/"; description = "Web based flash card for Word Smart I and II vocabularies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sme" = callPackage @@ -181786,6 +186134,7 @@ self: { libraryHaskellDepends = [ base ]; description = "A library for Secure Multi-Execution in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smoothie_0_1_3" = callPackage @@ -181882,6 +186231,7 @@ self: { homepage = "http://tomahawkins.org"; description = "Parsing and printing SMT-LIB"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smtLib" = callPackage @@ -181951,6 +186301,7 @@ self: { homepage = "https://github.com/avieth/smtp-mail-ng"; description = "An SMTP client EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smtp2mta" = callPackage @@ -181965,6 +186316,7 @@ self: { homepage = "https://github.com/singpolyma/sock2stream"; description = "Listen for SMTP traffic and send it to an MTA script"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smtps-gmail" = callPackage @@ -181995,6 +186347,7 @@ self: { libraryHaskellDepends = [ base GLUT OpenGL random ]; description = "Snake Game Using OpenGL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap_0_13_3_2" = callPackage @@ -182250,6 +186603,7 @@ self: { homepage = "http://github.com/zimothy/snap-accept"; description = "Accept header branching for the Snap web framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-app" = callPackage @@ -182538,6 +186892,7 @@ self: { ]; description = "A collection of useful helpers and utilities for Snap web applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-language" = callPackage @@ -182610,6 +186965,7 @@ self: { ]; description = "Declarative routing for Snap"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-server_0_9_4_5" = callPackage @@ -182739,6 +187095,7 @@ self: { homepage = "https://github.com/dbp/snap-testing"; description = "A library for BDD-style testing with the Snap Web Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-utils" = callPackage @@ -182757,6 +187114,7 @@ self: { homepage = "https://github.com/LukeHoersten/snap-utils"; description = "Snap Framework utilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-web-routes" = callPackage @@ -182813,6 +187171,7 @@ self: { homepage = "https://github.com/soostone/snaplet-actionlog"; description = "Generic action log snaplet for the Snap Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-amqp" = callPackage @@ -182887,6 +187246,7 @@ self: { homepage = "https://github.com/zmthy/snaplet-css-min"; description = "A Snaplet for CSS minification"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-environments" = callPackage @@ -182904,6 +187264,7 @@ self: { jailbreak = true; description = "DEPRECATED! You should use standard Snap >= 0.9 \"environments\" functionality. It provided ability to easly read configuration based on given app environment given at command line, envs are defined in app configuration file"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-fay_0_3_3_8" = callPackage @@ -183060,6 +187421,7 @@ self: { homepage = "https://github.com/mikeplus64/snaplet-hasql"; description = "A Hasql snaplet"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-haxl" = callPackage @@ -183077,6 +187439,7 @@ self: { homepage = "https://github.com/ChristopherBiscardi/snaplet-haxl"; description = "Snaplet for Facebook's Haxl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-hdbc" = callPackage @@ -183099,6 +187462,7 @@ self: { homepage = "http://norm2782.com/"; description = "HDBC snaplet for Snap Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-hslogger" = callPackage @@ -183140,6 +187504,7 @@ self: { homepage = "https://github.com/HaskellCNOrg/snaplet-i18n"; description = "snaplet-i18n"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-influxdb" = callPackage @@ -183159,6 +187524,7 @@ self: { homepage = "https://github.com/ixmatus/snaplet-influxdb"; description = "Snap framework snaplet for the InfluxDB library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-lss" = callPackage @@ -183214,6 +187580,7 @@ self: { jailbreak = true; description = "Snap Framework MongoDB support as Snaplet"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-mongodb-minimalistic" = callPackage @@ -183230,6 +187597,7 @@ self: { homepage = "https://github.com/Palmik/snaplet-mongodb-minimalistic"; description = "Minimalistic MongoDB Snaplet"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-mysql-simple" = callPackage @@ -183251,6 +187619,7 @@ self: { homepage = "https://github.com/ibotty/snaplet-mysql-simple"; description = "mysql-simple snaplet for the Snap Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-oauth" = callPackage @@ -183278,6 +187647,7 @@ self: { homepage = "https://github.com/HaskellCNOrg/snaplet-oauth"; description = "snaplet-oauth"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-persistent" = callPackage @@ -183412,6 +187782,7 @@ self: { homepage = "https://github.com/dzhus/snaplet-redson/"; description = "CRUD for JSON data with Redis storage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-rest" = callPackage @@ -183431,6 +187802,7 @@ self: { homepage = "http://github.com/zimothy/snaplet-rest"; description = "REST resources for the Snap web framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-riak" = callPackage @@ -183484,6 +187856,7 @@ self: { jailbreak = true; description = "Snaplet for Sedna Bindings. Essentailly a rip of snaplet-hdbc."; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-ses-html" = callPackage @@ -183565,6 +187938,7 @@ self: { jailbreak = true; description = "Snaplet for Snap Framework enabling developers to administrative tasks akin to Rake tasks from Ruby On Rails framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-typed-sessions" = callPackage @@ -183583,6 +187957,7 @@ self: { jailbreak = true; description = "Typed session snaplets and continuation-based programming for the Snap web framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-wordpress" = callPackage @@ -183610,6 +187985,7 @@ self: { homepage = "https://github.com/dbp/snaplet-wordpress"; description = "A snaplet that communicates with wordpress over its api"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snappy" = callPackage @@ -183629,6 +188005,7 @@ self: { homepage = "http://github.com/bos/snappy"; description = "Bindings to the Google Snappy library for fast compression/decompression"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) snappy;}; "snappy-conduit" = callPackage @@ -183642,6 +188019,7 @@ self: { homepage = "http://github.com/tatac1/snappy-conduit/"; description = "Conduit bindings for Snappy (see snappy package)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "snappy-framing" = callPackage @@ -183654,6 +188032,7 @@ self: { homepage = "https://github.com/kim/snappy-framing"; description = "Snappy Framing Format in Haskell"; license = "unknown"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "snappy-iteratee" = callPackage @@ -183667,6 +188046,7 @@ self: { homepage = "http://github.com/iand675/snappy-iteratee"; description = "An enumeratee that uses Google's snappy compression library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sndfile-enumerators" = callPackage @@ -183687,6 +188067,7 @@ self: { homepage = "http://www.tiresiaspress.us/haskell/sndfile-enumerators"; description = "Audio file reading/writing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sneakyterm" = callPackage @@ -183751,6 +188132,7 @@ self: { homepage = "http://github.com/elginer/snm"; description = "The Simple Nice-Looking Manual Generator"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snmp_0_2_0_0" = callPackage @@ -183802,6 +188184,7 @@ self: { homepage = "http://github.com/nfjinjing/snow-white"; description = "encode any binary instance to white space"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snowball" = callPackage @@ -183851,6 +188234,7 @@ self: { homepage = "http://code.mathr.co.uk/snowglobe"; description = "randomized fractal snowflakes demo"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "soap_0_2_2_5" = callPackage @@ -183953,6 +188337,7 @@ self: { homepage = "https://github.com/singpolyma/sock2stream"; description = "Tunnel a socket over a single datastream (stdin/stdout)"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sockaddr" = callPackage @@ -184053,6 +188438,7 @@ self: { homepage = "https://github.com/lpeterse/haskell-socket-sctp"; description = "STCP socket extensions library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {sctp = null;}; "socketio" = callPackage @@ -184082,6 +188468,7 @@ self: { jailbreak = true; description = "Socket.IO server"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "socketson" = callPackage @@ -184108,6 +188495,7 @@ self: { homepage = "https://github.com/aphorisme/socketson"; description = "A small websocket backend provider"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "socks" = callPackage @@ -184157,6 +188545,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "GUI functions as used in the book \"The Haskell School of Expression\""; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "sonic-visualiser" = callPackage @@ -184178,6 +188567,7 @@ self: { homepage = "http://darcs.k-hornz.de/cgi-bin/darcsweb.cgi?r=sonic-visualiser;a=summary"; description = "Sonic Visualiser"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sophia" = callPackage @@ -184223,6 +188613,7 @@ self: { jailbreak = true; description = "Efficient, type-safe sorted sequences"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sorted-list" = callPackage @@ -184284,6 +188675,7 @@ self: { jailbreak = true; description = "Approximate a song from other pieces of sound"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sounddelay" = callPackage @@ -184321,6 +188713,7 @@ self: { homepage = "http://github.com/nfjinjing/source-code-server"; description = "The server backend for the source code iPhone app"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sourcemap_0_1_3_0" = callPackage @@ -184382,6 +188775,7 @@ self: { homepage = "https://github.com/msiegenthaler/SouSiT"; description = "Source/Sink/Transform: An alternative to lazy IO and iteratees"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sox" = callPackage @@ -184421,6 +188815,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Sox"; description = "Write, read, convert audio signals using libsox"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) sox;}; "soyuz" = callPackage @@ -184440,6 +188835,7 @@ self: { homepage = "https://github.com/amtal/0x10c"; description = "DCPU-16 architecture utilities for Notch's 0x10c game"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "spacefill" = callPackage @@ -184503,6 +188899,7 @@ self: { homepage = "https://github.com/vtan/spanout"; description = "A breakout clone written in netwire and gloss"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sparse" = callPackage @@ -184530,6 +188927,7 @@ self: { homepage = "http://github.com/ekmett/sparse"; description = "A playground of sparse linear algebra primitives using Morton ordering"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sparse-lin-alg" = callPackage @@ -184560,6 +188958,7 @@ self: { homepage = "http://kyagrd.dyndns.org/wiki/SparseBitmapsForPatternMatchCoverage"; description = "Sparse bitmaps for pattern match coverage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sparsecheck" = callPackage @@ -184572,6 +188971,7 @@ self: { homepage = "http://www.cs.york.ac.uk/~mfn/sparsecheck/"; description = "A Logic Programming Library for Test-Data Generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sparser" = callPackage @@ -184599,6 +188999,7 @@ self: { homepage = "http://github.com/nfjinjing/spata"; description = "brainless form validation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "spatial-math" = callPackage @@ -184684,6 +189085,7 @@ self: { jailbreak = true; description = "Control.Applicative, Data.Foldable, Data.Traversable (compatibility package)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "special-keys" = callPackage @@ -184728,6 +189130,7 @@ self: { homepage = "https://github.com/jfischoff/specialize-th"; description = "Create specialized types from polymorphic ones using TH"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "species" = callPackage @@ -184853,6 +189256,7 @@ self: { jailbreak = true; description = "Orbotix Sphero client library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sphinx" = callPackage @@ -184883,6 +189287,7 @@ self: { executableHaskellDepends = [ base sphinx ]; description = "Sphinx CLI and demo of Haskell Sphinx library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "spice" = callPackage @@ -184901,6 +189306,7 @@ self: { homepage = "http://github.com/crockeo/spice"; description = "An FRP-based game engine written in Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "spike" = callPackage @@ -184923,6 +189329,7 @@ self: { homepage = "http://github.com/Tener/spike"; description = "Experimental web browser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs.gnome) libsoup;}; "spine" = callPackage @@ -184976,6 +189383,7 @@ self: { homepage = "http://github.com/JohnLato/splaytree"; description = "Provides an annotated splay tree"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "splice" = callPackage @@ -185013,6 +189421,7 @@ self: { homepage = "http://michael.orlitzky.com/code/spline3.php"; description = "A parallel implementation of the Sorokina/Zeilfelder spline scheme"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "splines" = callPackage @@ -185032,6 +189441,7 @@ self: { ]; description = "B-Splines, other splines, and NURBS"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "split_0_1_4_3" = callPackage @@ -185103,6 +189513,7 @@ self: { homepage = "http://code.haskell.org/~thielema/split-record/"; description = "Split a big audio file into pieces at positions of silence"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "split-tchan" = callPackage @@ -185193,6 +189604,7 @@ self: { homepage = "http://github.com/elginer/SpoonUtilities"; description = "Spoon's utilities. Simple testing and nice looking error reporting."; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "spoty" = callPackage @@ -185211,6 +189623,7 @@ self: { homepage = "https://github.com/davnils/spoty"; description = "Spotify web API wrapper"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "spreadsheet" = callPackage @@ -185259,6 +189672,7 @@ self: { homepage = "https://github.com/yanatan16/haskell-spsa"; description = "Simultaneous Perturbation Stochastic Approximation Optimization Algorithm"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "spy" = callPackage @@ -185285,6 +189699,7 @@ self: { homepage = "https://bitbucket.org/ssaasen/spy"; description = "A compact file system watcher for Mac OS X, Linux and Windows"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sql-simple" = callPackage @@ -185303,6 +189718,7 @@ self: { homepage = "https://github.com/philopon/sql-simple"; description = "common middle-level sql client"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sql-simple-mysql" = callPackage @@ -185320,6 +189736,7 @@ self: { homepage = "https://github.com/philopon/sql-simple"; description = "mysql backend for sql-simple"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sql-simple-pool" = callPackage @@ -185338,6 +189755,7 @@ self: { homepage = "https://github.com/philopon/sql-simple"; description = "conection pool for sql-simple"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sql-simple-postgresql" = callPackage @@ -185355,6 +189773,7 @@ self: { homepage = "https://github.com/philopon/sql-simple"; description = "postgresql backend for sql-simple"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sql-simple-sqlite" = callPackage @@ -185368,6 +189787,7 @@ self: { homepage = "https://github.com/philopon/sql-simple"; description = "sqlite backend for sql-simple"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sql-words" = callPackage @@ -185460,6 +189880,7 @@ self: { homepage = "https://github.com/tolysz/sqlite-simple-typed"; description = "Typed extension to sqlite simple"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sqlvalue-list" = callPackage @@ -185493,6 +189914,7 @@ self: { homepage = "http://functionalley.eu/Squeeze/squeeze.html"; description = "A file-packing application"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sr-extra" = callPackage @@ -185531,6 +189953,7 @@ self: { ]; description = "Build and install Debian packages completely from source"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "srcloc_0_4_1" = callPackage @@ -185616,6 +190039,7 @@ self: { homepage = "http://hub.darcs.net/ganesh/ssh"; description = "A pure-Haskell SSH server library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sshd-lint" = callPackage @@ -185686,6 +190110,7 @@ self: { homepage = "http://github.com/erudify/sssp/"; description = "HTTP proxy for S3"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sstable" = callPackage @@ -185704,6 +190129,7 @@ self: { executableHaskellDepends = [ cmdargs ]; description = "SSTables in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ssv" = callPackage @@ -185793,6 +190219,7 @@ self: { homepage = "https://github.com/tsuraan/stable-tree"; description = "Trees whose branches are resistant to change"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stack_0_1_3_0" = callPackage @@ -186496,7 +190923,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ simons ]; }) {}; - "stack_1_0_4_1" = callPackage + "stack_1_0_4_2" = callPackage ({ mkDerivation, aeson, ansi-terminal, async, attoparsec, base , base16-bytestring, base64-bytestring, binary, binary-tagged , blaze-builder, byteable, bytestring, Cabal, conduit @@ -186516,8 +190943,10 @@ self: { }: mkDerivation { pname = "stack"; - version = "1.0.4.1"; - sha256 = "660ce0c2126ddf2bb8c88a7b857571781dd09ac1953a3437522e123830dc537a"; + version = "1.0.4.2"; + sha256 = "3becd40f8886477a943e2feaed6b34d0ea283e770dc35379944e41cb770838d2"; + revision = "1"; + editedCabalFile = "e208e42baa3fc4146f82ba334f0c65858032239177e19c0b8d374bec9d76d061"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -186585,6 +191014,7 @@ self: { homepage = "http://github.com/rubik/stack-hpc-coveralls"; description = "Initial project template from stack"; license = stdenv.lib.licenses.isc; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stack-prism" = callPackage @@ -186603,6 +191033,7 @@ self: { homepage = "https://github.com/MedeaMelana/stack-prism"; description = "Stack prisms"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stack-run" = callPackage @@ -187464,6 +191895,7 @@ self: { homepage = "http://github.com/anttisalonen/starrover2"; description = "Space simulation game"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "stash" = callPackage @@ -187553,6 +191985,7 @@ self: { libraryHaskellDepends = [ base MaybeT mtl ]; description = "Typeclass instances for monad transformer stacks with an ST thread at the bottom"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stateref" = callPackage @@ -187635,6 +192068,7 @@ self: { homepage = "http://github.com/brendanhay/statgrab"; description = "Collect system level metrics and statistics"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {statgrab = null;}; "static-canvas" = callPackage @@ -187757,6 +192191,7 @@ self: { ]; description = "Functions for working with Dirichlet densities and mixtures on vectors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "statistics-fusion" = callPackage @@ -187769,6 +192204,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/statistics-fusion"; description = "An implementation of high performance, minimal statistics functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "statistics-hypergeometric-genvar" = callPackage @@ -187903,6 +192339,7 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "A wrapper around Sean Barrett's TrueType rasterizer library"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stdata" = callPackage @@ -187998,6 +192435,7 @@ self: { homepage = "https://github.com/jonpetterbergman/step-function"; description = "Step functions, staircase functions or piecewise constant functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stepwise" = callPackage @@ -188009,6 +192447,7 @@ self: { libraryHaskellDepends = [ base containers mtl ]; homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stickyKeysHotKey" = callPackage @@ -188131,6 +192570,7 @@ self: { homepage = "http://github.com/kholdstare/stm-chunked-queues/"; description = "Chunked Communication Queues"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stm-conduit_2_5_2" = callPackage @@ -188587,6 +193027,7 @@ self: { homepage = "http://sulzmann.blogspot.com/2008/12/stm-with-control-communication-for.html"; description = "Control communication among retrying transactions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stomp-conduit" = callPackage @@ -188667,6 +193108,7 @@ self: { homepage = "https://github.com/debug-ito/stopwatch"; description = "A simple stopwatch utility"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "storable" = callPackage @@ -188743,6 +193185,7 @@ self: { jailbreak = true; description = "Statically-sized array wrappers with Storable instances for FFI marshaling"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "storable-tuple" = callPackage @@ -188777,6 +193220,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Storable_Vector"; description = "Fast, packed, strict storable arrays with a list interface like ByteString"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "storablevector-carray" = callPackage @@ -188789,6 +193233,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Storable_Vector"; description = "Conversion between storablevector and carray"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "storablevector-streamfusion" = callPackage @@ -188811,6 +193256,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Storable_Vector"; description = "Conversion between storablevector and stream-fusion lists with fusion"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "str" = callPackage @@ -188849,6 +193295,7 @@ self: { ]; description = "Client for Stratum protocol"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stream-fusion" = callPackage @@ -188861,6 +193308,7 @@ self: { homepage = "http://hackage.haskell.org/trac/ghc/ticket/915"; description = "Faster Haskell lists using stream fusion"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stream-monad" = callPackage @@ -188896,6 +193344,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/MIDI"; description = "Programmatically edit MIDI event streams via ALSA"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "streaming" = callPackage @@ -189315,6 +193764,7 @@ self: { homepage = "https://github.com/michaelt/streaming-utils"; description = "http, attoparsec, pipes and conduit utilities for the streaming libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "streaming-wai" = callPackage @@ -189442,6 +193892,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/strict-concurrency"; description = "Strict concurrency abstractions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "strict-ghc-plugin" = callPackage @@ -189683,6 +194134,7 @@ self: { homepage = "https://github.com/selectel/stringlike"; description = "Transformations to several string-like types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stringprep" = callPackage @@ -189788,7 +194240,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "stripe-core" = callPackage + "stripe-core_2_0_2" = callPackage ({ mkDerivation, aeson, base, bytestring, mtl, text, time , transformers, unordered-containers }: @@ -189803,9 +194255,27 @@ self: { homepage = "https://github.com/dmjio/stripe-haskell"; description = "Stripe API for Haskell - Pure Core"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "stripe-haskell" = callPackage + "stripe-core" = callPackage + ({ mkDerivation, aeson, base, bytestring, mtl, text, time + , transformers, unordered-containers + }: + mkDerivation { + pname = "stripe-core"; + version = "2.0.3"; + sha256 = "1c3d319ef29bb3e2863838e553a44a23449dafc8f244c62a7f3ffc7b8305e3a8"; + libraryHaskellDepends = [ + aeson base bytestring mtl text time transformers + unordered-containers + ]; + homepage = "https://github.com/dmjio/stripe-haskell"; + description = "Stripe API for Haskell - Pure Core"; + license = stdenv.lib.licenses.mit; + }) {}; + + "stripe-haskell_2_0_2" = callPackage ({ mkDerivation, base, stripe-core, stripe-http-streams }: mkDerivation { pname = "stripe-haskell"; @@ -189815,9 +194285,22 @@ self: { homepage = "https://github.com/dmjio/stripe"; description = "Stripe API for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "stripe-http-streams" = callPackage + "stripe-haskell" = callPackage + ({ mkDerivation, base, stripe-core, stripe-http-streams }: + mkDerivation { + pname = "stripe-haskell"; + version = "2.0.3"; + sha256 = "225b6b5671181a8349b952bf98a30c40bf0ee24ab53cc720f02d7979ad7cd5bb"; + libraryHaskellDepends = [ base stripe-core stripe-http-streams ]; + homepage = "https://github.com/dmjio/stripe"; + description = "Stripe API for Haskell"; + license = stdenv.lib.licenses.mit; + }) {}; + + "stripe-http-streams_2_0_2" = callPackage ({ mkDerivation, aeson, base, bytestring, HsOpenSSL, http-streams , io-streams, stripe-core, text }: @@ -189832,8 +194315,30 @@ self: { doCheck = false; description = "Stripe API for Haskell - http-streams backend"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "stripe-http-streams" = callPackage + ({ mkDerivation, aeson, base, bytestring, free, HsOpenSSL, hspec + , http-streams, io-streams, stripe-core, stripe-tests, text + }: + mkDerivation { + pname = "stripe-http-streams"; + version = "2.0.3"; + sha256 = "c6423451c388e3006012b01932b3fdd23d344a5d8dd73755ef00cb74b7c736f6"; + libraryHaskellDepends = [ + aeson base bytestring HsOpenSSL http-streams io-streams stripe-core + text + ]; + testHaskellDepends = [ + base free HsOpenSSL hspec http-streams stripe-core stripe-tests + ]; + jailbreak = true; + doCheck = false; + description = "Stripe API for Haskell - http-streams backend"; + license = stdenv.lib.licenses.mit; + }) {stripe-tests = null;}; + "strive" = callPackage ({ mkDerivation, aeson, base, bytestring, data-default, gpolyline , hlint, http-conduit, http-types, markdown-unlit, template-haskell @@ -189938,6 +194443,7 @@ self: { jailbreak = true; description = "Structured MongoDB interface"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "structures" = callPackage @@ -189966,6 +194472,7 @@ self: { homepage = "http://github.com/ekmett/structures"; description = "\"Advanced\" Data Structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stunclient" = callPackage @@ -190009,6 +194516,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/LambdaCubeEngine"; description = "A revival of the classic game Stunts (LambdaCube tech demo)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stylish-haskell_0_5_11_0" = callPackage @@ -190376,6 +194884,7 @@ self: { ]; description = "Get the total, put a single element"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "subhask" = callPackage @@ -190402,6 +194911,7 @@ self: { homepage = "http://github.com/mikeizbicki/subhask"; description = "Type safe interface for programming in subcategories of Hask"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "subleq-toolchain" = callPackage @@ -190424,6 +194934,7 @@ self: { jailbreak = true; description = "Toolchain of subleq computer"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "subnet" = callPackage @@ -190566,6 +195077,7 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Abstract over the constraints on the parameters to type constructors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sump" = callPackage @@ -190613,6 +195125,7 @@ self: { homepage = "http://www.github.com/massysett/sunlight"; description = "Test Cabalized package against multiple dependency versions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sunroof-compiler" = callPackage @@ -190632,6 +195145,7 @@ self: { homepage = "https://github.com/ku-fpg/sunroof-compiler"; description = "Monadic Javascript Compiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sunroof-examples" = callPackage @@ -190654,6 +195168,7 @@ self: { homepage = "https://github.com/ku-fpg/sunroof-examples"; description = "Tests for Sunroof"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sunroof-server" = callPackage @@ -190677,6 +195192,7 @@ self: { homepage = "https://github.com/ku-fpg/sunroof-server"; description = "Monadic Javascript Compiler - Server Utilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "super-user-spark" = callPackage @@ -190705,6 +195221,7 @@ self: { jailbreak = true; description = "Configure your dotfile deployment with a DSL"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "supercollider-ht" = callPackage @@ -190747,6 +195264,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/SuperCollider"; description = "Demonstrate how to control SuperCollider via ALSA-MIDI"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "superdoc" = callPackage @@ -190766,6 +195284,7 @@ self: { homepage = "http://www.mathstat.dal.ca/~selinger/superdoc/"; description = "Additional documentation markup and Unicode support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "supero" = callPackage @@ -190786,6 +195305,7 @@ self: { homepage = "http://community.haskell.org/~ndm/supero/"; description = "A Supercompiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "supervisor" = callPackage @@ -190800,6 +195320,7 @@ self: { homepage = "http://github.com/agocorona/supervisor"; description = "Control an internal monad execution for trace generation, backtrakcking, testing and other purposes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "suspend" = callPackage @@ -190937,6 +195458,7 @@ self: { homepage = "http://www.informatik.uni-kiel.de/~jgr/svg2q"; description = "Code generation tool for Quartz code from a SVG"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "svgcairo" = callPackage @@ -190953,6 +195475,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the libsvg-cairo library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) librsvg;}; "svgutils" = callPackage @@ -191011,6 +195534,7 @@ self: { homepage = "http://github.com/aleator/Simple-SVM"; description = "Medium level, simplified, bindings to libsvm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "svndump" = callPackage @@ -191030,6 +195554,7 @@ self: { homepage = "http://github.com/jwiegley/svndump/"; description = "Library for reading Subversion dump files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "swagger" = callPackage @@ -191106,8 +195631,8 @@ self: { }: mkDerivation { pname = "swagger2"; - version = "2.0.1"; - sha256 = "ff8c3a195ff7689ba027d7caecd9b20505529ecc4962ddb7503b5130aa815898"; + version = "2.0.2"; + sha256 = "a9d2d65793e2c6767e06effd8e947f0072b2d6dd414e85012b73a2574167649b"; libraryHaskellDepends = [ aeson base base-compat containers hashable http-media lens mtl network scientific template-haskell text time transformers @@ -191121,6 +195646,7 @@ self: { homepage = "https://github.com/GetShopTV/swagger2"; description = "Swagger 2.0 data model"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "swapper" = callPackage @@ -191139,6 +195665,7 @@ self: { homepage = "http://github.com/roman-smrz/swapper/"; description = "Transparently swapping data from in-memory structures to disk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) tokyocabinet;}; "swearjure" = callPackage @@ -191160,6 +195687,7 @@ self: { homepage = "http://www.swearjure.com"; description = "Clojure without alphanumerics"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "swf" = callPackage @@ -191172,6 +195700,7 @@ self: { homepage = "http://www.n-heptane.com/nhlab"; description = "A library for creating Shockwave Flash (SWF) files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "swift-lda" = callPackage @@ -191188,6 +195717,7 @@ self: { homepage = "https://bitbucket.org/gchrupala/colada"; description = "Online sampler for Latent Dirichlet Allocation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "swish" = callPackage @@ -191236,6 +195766,7 @@ self: { jailbreak = true; description = "A simple web server for serving directories, similar to weborf"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syb_0_4_2" = callPackage @@ -191319,6 +195850,7 @@ self: { homepage = "http://github.com/ekmett/syb-extras/"; description = "Higher order versions of the Scrap Your Boilerplate classes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syb-with-class_0_6_1_5" = callPackage @@ -191391,6 +195923,7 @@ self: { homepage = "https://github.com/lfairy/sylvia"; description = "Lambda calculus visualization"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sym" = callPackage @@ -191418,6 +195951,7 @@ self: { homepage = "http://github.com/akc/sym-plot"; description = "Plot permutations; an addition to the sym package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "symbol" = callPackage @@ -191450,6 +195984,7 @@ self: { homepage = "http://github.com/bollu/symengine.hs#readme"; description = "SymEngine symbolic mathematics engine for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gmp; inherit (pkgs) gmpxx; symengine = null;}; "sync" = callPackage @@ -191461,6 +195996,7 @@ self: { libraryHaskellDepends = [ base stm ]; description = "A fast implementation of synchronous channels with a CML-like API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sync-mht" = callPackage @@ -191496,6 +196032,7 @@ self: { homepage = "https://github.com/ekarayel/sync-mht"; description = "Fast incremental file transfer using Merkle-Hash-Trees"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "synchronous-channels" = callPackage @@ -191535,6 +196072,7 @@ self: { homepage = "https://github.com/jetho/syncthing-hs"; description = "Haskell bindings for the Syncthing REST API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "synt" = callPackage @@ -191584,6 +196122,7 @@ self: { homepage = "https://github.com/emilaxelsson/syntactic"; description = "Generic representation and manipulation of abstract syntax"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-linux" ]; }) {}; "syntactical" = callPackage @@ -191612,6 +196151,7 @@ self: { ]; description = "Reversible parsing and pretty-printing"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syntax-attoparsec" = callPackage @@ -191627,6 +196167,7 @@ self: { ]; description = "Syntax instances for Attoparsec"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syntax-example" = callPackage @@ -191645,6 +196186,7 @@ self: { ]; description = "Example application using syntax, a library for abstract syntax descriptions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syntax-example-json" = callPackage @@ -191663,6 +196205,7 @@ self: { ]; description = "Example JSON parser/pretty-printer"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syntax-pretty" = callPackage @@ -191677,6 +196220,7 @@ self: { ]; description = "Syntax instance for pretty, the pretty printing library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syntax-printer" = callPackage @@ -191694,6 +196238,7 @@ self: { jailbreak = true; description = "Text and ByteString printers for 'syntax'"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syntax-trees" = callPackage @@ -191709,6 +196254,7 @@ self: { ]; description = "Convert between different Haskell syntax trees"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syntax-trees-fork-bairyn" = callPackage @@ -191724,6 +196270,7 @@ self: { ]; description = "Convert between different Haskell syntax trees. Bairyn's fork."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "synthesizer" = callPackage @@ -191749,6 +196296,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Audio signal processing coded in Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "synthesizer-alsa" = callPackage @@ -191773,6 +196321,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Control synthesizer effects via ALSA/MIDI"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "synthesizer-core" = callPackage @@ -191800,6 +196349,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Audio signal processing coded in Haskell: Low level part"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "synthesizer-dimensional" = callPackage @@ -191821,6 +196371,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Audio signal processing with static physical dimensions"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "synthesizer-filter" = callPackage @@ -191838,6 +196389,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Audio signal processing coded in Haskell: Filter networks"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "synthesizer-inference" = callPackage @@ -191888,6 +196440,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Efficient signal processing using runtime compilation"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "synthesizer-midi" = callPackage @@ -191913,6 +196466,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Render audio signals from MIDI files or realtime messages"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sys-auth-smbclient" = callPackage @@ -192011,6 +196565,7 @@ self: { homepage = "https://github.com/d12frosted/CanonicalPath"; description = "Abstract data type for canonical paths with some utilities"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "system-command" = callPackage @@ -192281,6 +196836,7 @@ self: { homepage = "http://darcs.imperialviolet.org/system-inotify"; description = "Binding to Linux's inotify interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "system-lifted" = callPackage @@ -192305,6 +196861,7 @@ self: { homepage = "https://github.com/jcristovao/system-lifted"; description = "Lifted versions of System functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "system-posix-redirect" = callPackage @@ -192341,6 +196898,7 @@ self: { homepage = "https://github.com/wowus/system-random-effect"; description = "Random number generation for extensible effects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "system-time-monotonic" = callPackage @@ -192353,6 +196911,7 @@ self: { homepage = "https://github.com/joeyadams/haskell-system-time-monotonic"; description = "Simple library for using the system's monotonic clock"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "system-util" = callPackage @@ -192464,6 +197023,7 @@ self: { homepage = "not available"; description = "Transito Abierto: convenience library when using Takusen and Oracle"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "table" = callPackage @@ -192535,6 +197095,7 @@ self: { homepage = "http://github.com/ekmett/tables/"; description = "In-memory storage with multiple keys using lenses and traversals"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tablestorage" = callPackage @@ -192555,6 +197116,7 @@ self: { homepage = "http://github.com/paf31/tablestorage"; description = "Azure Table Storage REST API Wrapper"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tabloid" = callPackage @@ -192573,6 +197135,7 @@ self: { ]; description = "View the output of shell commands in a table"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tabular_0_2_2_5" = callPackage @@ -192631,6 +197194,7 @@ self: { homepage = "http://github.com/travitch/taffybar"; description = "A desktop bar similar to xmobar, but with more GUI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {gtk2 = pkgs.gnome2.gtk;}; "tag-bits" = callPackage @@ -192777,6 +197341,7 @@ self: { jailbreak = true; description = "Lists tagged with a type-level natural number representing their length"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tagged-th" = callPackage @@ -192791,6 +197356,7 @@ self: { jailbreak = true; description = "QuasiQuoter and Template Haskell splices for creating proxies at higher-kinds"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tagged-transformer" = callPackage @@ -193024,6 +197590,7 @@ self: { homepage = "http://code.haskell.org/~thielema/tagsoup-ht/"; description = "alternative parser for the tagsoup package"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tagsoup-parsec" = callPackage @@ -193036,6 +197603,7 @@ self: { homepage = "http://www.killersmurf.com"; description = "Tokenizes Tag, so [ Tag ] can be used as parser input"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tagstream-conduit" = callPackage @@ -193089,6 +197657,7 @@ self: { homepage = "https://github.com/paulrzcz/takusen-oracle.git"; description = "Database library with left-fold interface for Oracle"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {clntsh = null; sqlplus = null;}; "tamarin-prover" = callPackage @@ -193119,6 +197688,7 @@ self: { homepage = "http://www.infsec.ethz.ch/research/software/tamarin"; description = "The Tamarin prover for security protocol analysis"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tamarin-prover-term" = callPackage @@ -193139,6 +197709,7 @@ self: { homepage = "http://www.infsec.ethz.ch/research/software/tamarin"; description = "Term manipulation library for the tamarin prover"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tamarin-prover-theory" = callPackage @@ -193162,6 +197733,7 @@ self: { homepage = "http://www.infsec.ethz.ch/research/software/tamarin"; description = "Term manipulation library for the tamarin prover"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tamarin-prover-utils" = callPackage @@ -193181,6 +197753,7 @@ self: { homepage = "http://www.infsec.ethz.ch/research/software/tamarin"; description = "Utility library for the tamarin prover"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tamper" = callPackage @@ -193357,10 +197930,11 @@ self: { jailbreak = true; description = "A command line tool for keeping track of tasks you worked on"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "task-distribution" = callPackage - ({ mkDerivation, async, base, binary, bytestring, containers + ({ mkDerivation, async, base, binary, bytestring, bzlib, containers , directory, distributed-process , distributed-process-simplelocalnet, distributed-static, filepath , hadoop-rpc, hashable, hint, hslogger, hspec, json, packman @@ -193369,19 +197943,19 @@ self: { }: mkDerivation { pname = "task-distribution"; - version = "0.1.0.0"; - sha256 = "70c40ecf27e8a170029b0fedf8ca0b2ffde6c6bd96d79a2310e3a1678a4e4fa4"; + version = "0.1.0.1"; + sha256 = "17cb058b1212c884b7a96036ca05f0c3fc68fada7ef734e38d9fd9621755af2d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - async base binary bytestring containers directory + async base binary bytestring bzlib containers directory distributed-process distributed-process-simplelocalnet distributed-static filepath hadoop-rpc hashable hint hslogger packman process rank1dynamic split temporary text time transformers vector zlib ]; executableHaskellDepends = [ - async base binary bytestring containers directory + async base binary bytestring bzlib containers directory distributed-process filepath hadoop-rpc hslogger json process split strings temporary text time vector zlib ]; @@ -193391,9 +197965,11 @@ self: { hadoop-rpc hint hslogger hspec packman process rank1dynamic split temporary text transformers vector ]; + jailbreak = true; homepage = "http://github.com/michaxm/task-distribution#readme"; description = "Initial project template from stack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "taskpool" = callPackage @@ -193412,6 +197988,7 @@ self: { ]; description = "Manage pools of possibly interdependent tasks using STM and async"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "tasty_0_10_1" = callPackage @@ -193788,6 +198365,7 @@ self: { jailbreak = true; description = "automated integration of QuickCheck properties into tasty suites"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tasty-kat_0_0_1" = callPackage @@ -194134,6 +198712,7 @@ self: { homepage = "http://darcs.monoid.at/tbox"; description = "Transactional variables and data structures with IO hooks"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tcache-AWS" = callPackage @@ -194167,6 +198746,7 @@ self: { homepage = "http://bitcheese.net/wiki/code/tccli"; description = "TokyoCabinet CLI interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tce-conf" = callPackage @@ -194203,6 +198783,7 @@ self: { homepage = "http://www.cl.cam.ac.uk/~pes20/Netsem/"; description = "A purely functional TCP implementation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tdd-util" = callPackage @@ -194230,6 +198811,7 @@ self: { ]; description = "Test framework wrapper"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tdoc" = callPackage @@ -194257,6 +198839,7 @@ self: { libraryHaskellDepends = [ base containers fgl graphviz ]; description = "Graphical modeling tools for sequential teams"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "teeth" = callPackage @@ -194287,6 +198870,7 @@ self: { ]; description = "Telegram API client"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "telegram-api" = callPackage @@ -194393,6 +198977,7 @@ self: { homepage = "https://github.com/haskell-pkg-janitors/template-default"; description = "declaring Default instances just got even easier"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "template-haskell_2_10_0_0" = callPackage @@ -194419,6 +199004,7 @@ self: { homepage = "https://github.com/HaskellZhangSong/TemplateHaskellUtils"; description = "Some utilities for template Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "template-hsml" = callPackage @@ -194440,6 +199026,7 @@ self: { jailbreak = true; description = "Haskell's Simple Markup Language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "template-yj" = callPackage @@ -194453,6 +199040,7 @@ self: { homepage = "https://github.com/YoshikuniJujo/template/wiki"; description = "Process template file"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "templatepg" = callPackage @@ -194507,6 +199095,7 @@ self: { homepage = "https://github.com/ixmatus/hs-tempodb"; description = "A small Haskell wrapper around the TempoDB api"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "temporal-csound" = callPackage @@ -194525,6 +199114,7 @@ self: { homepage = "https://github.com/anton-k/temporal-csound"; description = "library to make electronic music, brings together temporal-music-notation and csound-expression packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "temporal-media" = callPackage @@ -194668,6 +199258,7 @@ self: { jailbreak = true; description = "Interpreter for the FRP language Tempus"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tempus-fugit" = callPackage @@ -194697,6 +199288,7 @@ self: { homepage = "http://noaxiom.org/tensor"; description = "A completely type-safe library for linear algebra"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "term-rewriting" = callPackage @@ -194716,6 +199308,7 @@ self: { homepage = "http://cl-informatik.uibk.ac.at/software/haskell-rewriting/"; description = "Term Rewriting Library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "termbox-bindings" = callPackage @@ -194732,6 +199325,7 @@ self: { homepage = "https://github.com/luciferous/termbox-bindings"; description = "Bindings to the Termbox library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "terminal-progress-bar" = callPackage @@ -194884,6 +199478,7 @@ self: { ]; description = "a ternary library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "terrahs" = callPackage @@ -194898,6 +199493,7 @@ self: { homepage = "http://lucc.ess.inpe.br/doku.php?id=terrahs"; description = "A Haskell GIS Programming Environment"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {terralib4c = null; translib = null;}; "tersmu" = callPackage @@ -194996,6 +199592,7 @@ self: { jailbreak = true; description = "Test.Framework wrapper for DocTest"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "test-framework-golden" = callPackage @@ -195074,6 +199671,7 @@ self: { homepage = "http://batterseapower.github.com/test-framework/"; description = "QuickCheck support for the test-framework package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "test-framework-quickcheck2" = callPackage @@ -195349,6 +199947,7 @@ self: { jailbreak = true; description = "Small test package"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "testing-feat" = callPackage @@ -195394,6 +199993,7 @@ self: { homepage = "http://github.com/roman/testloop"; description = "Quick feedback loop for test suites"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "testpack" = callPackage @@ -195412,6 +200012,7 @@ self: { homepage = "https://github.com/jgoerzen/testpack"; description = "Test Utililty Pack for HUnit and QuickCheck (unmaintained)"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "testpattern" = callPackage @@ -195426,6 +200027,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/testpattern"; description = "Display a monitor test pattern"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "testrunner" = callPackage @@ -195440,6 +200042,7 @@ self: { ]; description = "Easy unit test driver framework"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tetris" = callPackage @@ -195454,6 +200057,7 @@ self: { homepage = "http://d.hatena.ne.jp/mokehehe/20080921/tetris"; description = "A 2-D clone of Tetris"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "tex2txt" = callPackage @@ -195470,6 +200074,7 @@ self: { homepage = "http://textmining.lt/tex2txt/"; description = "LaTeX to plain-text conversion"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "texmath_0_8" = callPackage @@ -195743,6 +200348,7 @@ self: { ]; description = "Functions for running Tex from Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text_1_1_1_3" = callPackage @@ -196056,6 +200662,7 @@ self: { homepage = "http://github.com/finnsson/text-json-qq"; description = "Json Quasiquatation for Haskell"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text-latin1" = callPackage @@ -196151,6 +200758,7 @@ self: { homepage = "https://github.com/joelteon/text-normal.git"; description = "Unicode-normalized text"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text-position" = callPackage @@ -196250,6 +200858,7 @@ self: { homepage = "https://github.com/acfoltzer/text-register-machine"; description = "A Haskell implementation of the 1# Text Register Machine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text-render" = callPackage @@ -196385,6 +200994,7 @@ self: { homepage = "https://github.com/RyanGlScott/text-show-instances"; description = "Additional instances for text-show"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text-stream-decode" = callPackage @@ -196435,6 +201045,7 @@ self: { homepage = "http://github.com/finnsson/Text.XML.Generic"; description = "Serialize Data to XML (strings)"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text-xml-qq" = callPackage @@ -196447,6 +201058,7 @@ self: { homepage = "http://www.github.com/finnsson/text-xml-qq"; description = "Quasiquoter for xml. XML DSL in Haskell."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text-zipper" = callPackage @@ -196500,6 +201112,7 @@ self: { homepage = "https://github.com/spockz/Haskell-Code-Completion-for-TextMate"; description = "A simple Haskell program to provide tags for Haskell code completion in TextMate"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "textocat-api" = callPackage @@ -196583,6 +201196,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Type_arithmetic"; description = "Template-Haskell code for tfp"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tftp" = callPackage @@ -196609,6 +201223,7 @@ self: { homepage = "http://github.com/sheyll/tftp"; description = "A library for building tftp servers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "tga" = callPackage @@ -196692,6 +201307,7 @@ self: { homepage = "https://github.com/seereason/th-context"; description = "Test instance context"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "th-desugar_1_4_2" = callPackage @@ -196950,6 +201566,7 @@ self: { ]; description = "A place to collect orphan instances for Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "th-kinds" = callPackage @@ -196962,6 +201579,7 @@ self: { jailbreak = true; description = "Automated kind inference in Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "th-kinds-fork" = callPackage @@ -197340,6 +201958,7 @@ self: { jailbreak = true; description = "A simple client for the TheoremQuest theorem proving game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "these_0_6_2_0" = callPackage @@ -197429,6 +202048,7 @@ self: { homepage = "http://web.cecs.pdx.edu/~mpj/thih/"; description = "Typing Haskell In Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "thimk" = callPackage @@ -197447,6 +202067,7 @@ self: { homepage = "http://wiki.cs.pdx.edu/bartforge/thimk"; description = "Command-line spelling word suggestion tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "thorn" = callPackage @@ -197598,6 +202219,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/ThreadScope"; description = "A graphical tool for profiling parallel Haskell programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "threefish" = callPackage @@ -197657,6 +202279,7 @@ self: { homepage = "http://thrift.apache.org"; description = "Haskell bindings for the Apache Thrift RPC system"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "thrist" = callPackage @@ -197794,6 +202417,7 @@ self: { homepage = "http://ecks.homeunix.net"; description = "Useful if reading \"Why FP matters\" by John Hughes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tickle" = callPackage @@ -197815,6 +202439,7 @@ self: { homepage = "https://github.com/NICTA/tickle"; description = "A port of @Data.Binary@"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "tictactoe3d" = callPackage @@ -197865,6 +202490,7 @@ self: { homepage = "http://tidal.lurk.org/"; description = "MIDI support for tidal"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tidal-vis" = callPackage @@ -197919,6 +202545,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome"; description = "Tiger Compiler of Universiteit Utrecht"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tight-apply" = callPackage @@ -197965,6 +202592,7 @@ self: { homepage = "https://github.com/YoshikuniJujo/tighttp/wiki"; description = "Tiny and Incrementally-Growing HTTP library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tilings" = callPackage @@ -197996,6 +202624,7 @@ self: { homepage = "http://www.timber-lang.org"; description = "The Timber Compiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "time_1_6" = callPackage @@ -198043,6 +202672,7 @@ self: { homepage = "http://semantic.org/TimeLib/"; description = "Data instances for the time package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "time-exts" = callPackage @@ -198069,6 +202699,7 @@ self: { homepage = "https://github.com/enzoh/time-exts"; description = "Efficient Timestamps"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "time-http" = callPackage @@ -198094,6 +202725,7 @@ self: { homepage = "http://cielonegro.org/HTTPDateTime.html"; description = "Parse and format HTTP/1.1 Date and Time strings"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "time-interval" = callPackage @@ -198219,6 +202851,7 @@ self: { homepage = "https://github.com/christian-marie/time-qq"; description = "Quasi-quoter for UTCTime times"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "time-recurrence" = callPackage @@ -198240,6 +202873,7 @@ self: { homepage = "http://github.com/hellertime/time-recurrence"; description = "Generate recurring dates"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "time-series" = callPackage @@ -198254,6 +202888,7 @@ self: { executableHaskellDepends = [ base ]; description = "Time series analysis"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "time-units" = callPackage @@ -198281,6 +202916,7 @@ self: { homepage = "http://cielonegro.org/W3CDateTime.html"; description = "Parse, format and convert W3C Date and Time"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "timecalc" = callPackage @@ -198294,6 +202930,7 @@ self: { executableHaskellDepends = [ base haskeline uu-parsinglib ]; homepage = "https://github.com/chriseidhof/TimeCalc"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "timeconsole" = callPackage @@ -198339,8 +202976,8 @@ self: { ({ mkDerivation, base, transformers }: mkDerivation { pname = "timelike"; - version = "0.1.0"; - sha256 = "6588260531b2821ab33fb92b6587d971c68334f1b07daba56ebf7418641d6036"; + version = "0.2.0"; + sha256 = "fd78d2242d1d515556f4dc4e2dccc995e2e05a10d543f04975b886d43bcd2b8c"; libraryHaskellDepends = [ base transformers ]; homepage = "http://hub.darcs.net/esz/timelike"; description = "Type classes for types representing time"; @@ -198351,8 +202988,8 @@ self: { ({ mkDerivation, base, time, timelike, transformers }: mkDerivation { pname = "timelike-time"; - version = "0.1.0"; - sha256 = "25c4b9ed4eb5ab0121973a2b54c19ec451c1ac9e0e54ce62f211814732ccca16"; + version = "0.1.1"; + sha256 = "be4b536f613ec6d463854fc0fa5bf058acb35e1d243d5d2a7bef2ff6de28481d"; libraryHaskellDepends = [ base time timelike transformers ]; homepage = "http://hub.darcs.net/esz/timelike-time"; description = "Timelike interface for the time library"; @@ -198402,6 +203039,7 @@ self: { homepage = "https://github.com/lambda-llama/timeout"; description = "Generalized sleep and timeout functions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "timeout-control" = callPackage @@ -198446,6 +203084,7 @@ self: { jailbreak = true; description = "Attoparsec parsers for various Date/Time formats"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "timeplot" = callPackage @@ -198531,6 +203170,7 @@ self: { homepage = "https://github.com/Peaker/timestamp-subprocess-lines"; description = "Run a command and timestamp its stdout/stderr lines"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "timestamper" = callPackage @@ -198709,6 +203349,7 @@ self: { homepage = "http://tip-org.github.io"; description = "Convert from Haskell to Tip"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tip-lib" = callPackage @@ -198790,6 +203431,7 @@ self: { homepage = "http://patch-tag.com/r/nonowarn/tkhs/snapshot/current/content/pretty/README"; description = "Simple Presentation Utility"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tkyprof" = callPackage @@ -198818,6 +203460,7 @@ self: { homepage = "https://github.com/maoe/tkyprof"; description = "A web-based visualizer for GHC Profiling Reports"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tld" = callPackage @@ -199148,6 +203791,7 @@ self: { homepage = "http://github.com/vincenthz/hs-tls"; description = "TLS extra default values and helpers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tmpl" = callPackage @@ -199208,6 +203852,7 @@ self: { homepage = "https://github.com/conal/to-haskell"; description = "A type class and some utilities for generating Haskell code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "to-string-class" = callPackage @@ -199219,6 +203864,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Converting string-like types to Strings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "to-string-instances" = callPackage @@ -199230,6 +203876,7 @@ self: { libraryHaskellDepends = [ to-string-class ]; description = "Instances for the ToString class"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "todos" = callPackage @@ -199256,6 +203903,7 @@ self: { homepage = "http://gitorious.org/todos"; description = "Easy-to-use TODOs manager"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tofromxml" = callPackage @@ -199293,6 +203941,7 @@ self: { homepage = "http://code.haskell.org/~thielema/toilet/"; description = "Manage the toilet queue at the IMO"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "token-bucket" = callPackage @@ -199350,6 +203999,7 @@ self: { QuickCheck ]; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tokyocabinet-haskell" = callPackage @@ -199363,6 +204013,7 @@ self: { homepage = "http://tom-lpsd.github.com/tokyocabinet-haskell/"; description = "Haskell binding of Tokyo Cabinet"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) tokyocabinet;}; "tokyotyrant-haskell" = callPackage @@ -199389,6 +204040,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/tomato-rubato"; description = "Easy to use library for audio programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "toml" = callPackage @@ -199404,6 +204056,7 @@ self: { ]; jailbreak = true; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "toolshed" = callPackage @@ -199421,6 +204074,7 @@ self: { homepage = "http://functionalley.eu"; description = "Ill-defined library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "topkata" = callPackage @@ -199439,6 +204093,7 @@ self: { homepage = "http://home.arcor.de/chr_bauer/topkata.html"; description = "OpenGL Arcade Game"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "torch" = callPackage @@ -199451,6 +204106,7 @@ self: { homepage = "http://patch-tag.com/repo/torch/home"; description = "Simple unit test library (or framework)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "torrent" = callPackage @@ -199503,6 +204159,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "total-alternative" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "total-alternative"; + version = "0.1.0.1"; + sha256 = "9895072694989266b3fa7aa062d7edca6e054c563c9ba07d8c26675bbd3435cf"; + libraryHaskellDepends = [ base ]; + homepage = "http://github.com/guaraqe/total-alternative#readme"; + description = "Alternative interface for total versions of partial function on the Prelude"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "total-map" = callPackage ({ mkDerivation, base, containers }: mkDerivation { @@ -199586,6 +204254,7 @@ self: { ]; description = "Assorted decision procedures for SAT, Max-SAT, PB, MIP, etc"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tpdb" = callPackage @@ -199679,6 +204348,7 @@ self: { libraryHaskellDepends = [ base containers glib ]; description = "Client library for Tracker metadata database, indexer and search tool"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tracy_0_1_2_0" = callPackage @@ -199726,6 +204396,7 @@ self: { homepage = "https://github.com/mike-burns/trajectory"; description = "Tools and a library for working with Trajectory"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "transactional-events" = callPackage @@ -199737,6 +204408,7 @@ self: { libraryHaskellDepends = [ base ListZipper MonadPrompt stm ]; description = "Transactional events, based on Concurrent ML semantics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "transf" = callPackage @@ -199938,6 +204610,7 @@ self: { homepage = "https://github.com/jcristovao/transformers-convert"; description = "Sensible conversions between some of the monad transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "transformers-free" = callPackage @@ -199973,6 +204646,7 @@ self: { homepage = "https://github.com/JanBessai/transformers-runnable"; description = "A unified interface for the run operation of monad transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "transformers-supply" = callPackage @@ -200004,6 +204678,7 @@ self: { homepage = "http://www.fpcomplete.com/user/agocorona"; description = "Making composable programs with multithreading, events and distributed computing"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "translatable-intset" = callPackage @@ -200030,6 +204705,7 @@ self: { homepage = "http://github.com/nfjinjing/translate"; description = "Haskell binding to Google's AJAX Language API for Translation and Detection"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "traverse-with-class" = callPackage @@ -200122,6 +204798,7 @@ self: { homepage = "http://projects.haskell.org/traypoweroff"; description = "Tray Icon application to PowerOff / Reboot computer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tree-fun" = callPackage @@ -200239,6 +204916,7 @@ self: { ]; description = "Library for polling Tremulous servers"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "trhsx" = callPackage @@ -200249,6 +204927,7 @@ self: { sha256 = "631601c5345599e08535221df4415c7676e3e307bfa6a13d32e3c46d9c145d86"; description = "Deprecated"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "triangulation" = callPackage @@ -200265,6 +204944,7 @@ self: { homepage = "http://www.dinkla.net/"; description = "triangulation of polygons"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tries" = callPackage @@ -200359,6 +205039,7 @@ self: { jailbreak = true; description = "Search for, annotate and trim poly-A tail"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tripLL" = callPackage @@ -200375,6 +205056,7 @@ self: { homepage = "https://github.com/aphorisme/tripLL"; description = "A very simple triple store"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "trivia" = callPackage @@ -200499,6 +205181,7 @@ self: { libraryHaskellDepends = [ base containers mtl time transformers ]; description = "A Transaction Framework for Web Applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tsession-happstack" = callPackage @@ -200512,6 +205195,7 @@ self: { ]; description = "A Transaction Framework for Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tskiplist" = callPackage @@ -200524,6 +205208,7 @@ self: { homepage = "https://github.com/thaldyron/tskiplist"; description = "A Skip List Implementation in Software Transactional Memory (STM)"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tslib" = callPackage @@ -200572,6 +205257,7 @@ self: { homepage = "https://github.com/davnils/tsp-viz"; description = "Real time TSP tour visualization"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tsparse" = callPackage @@ -200810,6 +205496,7 @@ self: { jailbreak = true; description = "Interface to TUN/TAP drivers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tup-functor" = callPackage @@ -200848,6 +205535,7 @@ self: { jailbreak = true; description = "Enum instances for tuples where the digits increase with the same speed"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tuple-generic" = callPackage @@ -200898,6 +205586,7 @@ self: { libraryHaskellDepends = [ base HList template-haskell ]; description = "Morph between tuples, or convert them from and to HLists"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tuple-th" = callPackage @@ -200922,6 +205611,7 @@ self: { homepage = "http://github.com/diegoeche/tupleinstances"; description = "Functor, Applicative and Monad for n-ary tuples"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tuples-homogenous-h98" = callPackage @@ -200960,6 +205650,7 @@ self: { executableHaskellDepends = [ ALUT base ]; description = "Plays music generated by Turing machines with 5 states and 2 symbols"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "turkish-deasciifier" = callPackage @@ -201171,6 +205862,7 @@ self: { homepage = "http://github.com/nick8325/twee"; description = "An equational theorem prover"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "twentefp" = callPackage @@ -201182,6 +205874,7 @@ self: { libraryHaskellDepends = [ base gloss parsec time ]; description = "Lab Assignments Environment at Univeriteit Twente"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "twentefp-eventloop-graphics" = callPackage @@ -201211,6 +205904,7 @@ self: { libraryHaskellDepends = [ base eventloop ]; description = "Tree type and show functions for lab assignment of University of Twente. Contains RoseTree and RedBlackTree"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twentefp-graphs" = callPackage @@ -201248,6 +205942,7 @@ self: { jailbreak = true; description = "RoseTree type and show functions for lab assignment of University of Twente"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twentefp-trees" = callPackage @@ -201310,6 +206005,7 @@ self: { homepage = "https://github.com/suzuki-shin/twhs"; description = "CLI twitter client"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twidge" = callPackage @@ -201332,6 +206028,7 @@ self: { homepage = "http://software.complete.org/twidge"; description = "Unix Command-Line Twitter and Identica Client"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twilight-stm" = callPackage @@ -201344,6 +206041,7 @@ self: { homepage = "http://proglang.informatik.uni-freiburg.de/projects/twilight/"; description = "STM library with safe irrevocable I/O and inconsistency repair"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twilio" = callPackage @@ -201369,6 +206067,7 @@ self: { homepage = "https://github.com/markandrus/twilio-haskell"; description = "Twilio REST API library for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twill" = callPackage @@ -201388,6 +206087,7 @@ self: { jailbreak = true; description = "Twilio API interaction"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twiml" = callPackage @@ -201411,6 +206111,7 @@ self: { homepage = "https://github.com/markandrus/twiml-haskell"; description = "TwiML library for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twine" = callPackage @@ -201427,6 +206128,7 @@ self: { homepage = "http://twine.james-sanders.com"; description = "very simple template language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twisty" = callPackage @@ -201443,6 +206145,7 @@ self: { jailbreak = true; description = "Simulator of twisty puzzles à la Rubik's Cube"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twitch" = callPackage @@ -201481,6 +206184,42 @@ self: { ]; description = "A Haskell-based CLI Twitter client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "twitter-conduit_0_1_1_1" = callPackage + ({ mkDerivation, aeson, attoparsec, authenticate-oauth, base + , bytestring, case-insensitive, conduit, conduit-extra, containers + , data-default, doctest, hlint, hspec, http-client, http-conduit + , http-types, lens, lens-aeson, monad-control, network-uri + , resourcet, template-haskell, text, time, transformers + , transformers-base, twitter-types, twitter-types-lens + }: + mkDerivation { + pname = "twitter-conduit"; + version = "0.1.1.1"; + sha256 = "904b9413e8f729c52f16f6251c5edd641a938f5740392cc0e7a53ab24ce0e593"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson attoparsec authenticate-oauth base bytestring conduit + conduit-extra containers data-default http-client http-conduit + http-types lens lens-aeson resourcet template-haskell text time + transformers twitter-types twitter-types-lens + ]; + executableHaskellDepends = [ network-uri ]; + testHaskellDepends = [ + aeson attoparsec authenticate-oauth base bytestring + case-insensitive conduit conduit-extra containers data-default + doctest hlint hspec http-client http-conduit http-types lens + lens-aeson monad-control network-uri resourcet template-haskell + text time transformers transformers-base twitter-types + twitter-types-lens + ]; + homepage = "https://github.com/himura/twitter-conduit"; + description = "Twitter API package with conduit interface and Streaming API support"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twitter-conduit" = callPackage @@ -201493,8 +206232,8 @@ self: { }: mkDerivation { pname = "twitter-conduit"; - version = "0.1.1.1"; - sha256 = "904b9413e8f729c52f16f6251c5edd641a938f5740392cc0e7a53ab24ce0e593"; + version = "0.1.2"; + sha256 = "e8c3c2f2ae2042d5fd88f39ff643b8693bb52b008a3c49dbc7673a604e0e95e8"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -201535,6 +206274,7 @@ self: { homepage = "https://github.com/himura/twitter-enumerator"; description = "Twitter API package with enumerator interface and Streaming API support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twitter-feed_0_2_0_2" = callPackage @@ -201621,7 +206361,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "twitter-types" = callPackage + "twitter-types_0_7_1_1" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, derive , directory, filepath, HUnit, old-locale, QuickCheck , template-haskell, test-framework, test-framework-hunit @@ -201644,6 +206384,49 @@ self: { homepage = "https://github.com/himura/twitter-types"; description = "Twitter JSON parser and types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "twitter-types" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, derive + , directory, filepath, HUnit, old-locale, QuickCheck + , template-haskell, test-framework, test-framework-hunit + , test-framework-quickcheck2, test-framework-th-prime, text, time + , unordered-containers + }: + mkDerivation { + pname = "twitter-types"; + version = "0.7.2"; + sha256 = "75416feef53d5a41dc246f7e134cae49f198605be9de7698796070256cd0d222"; + libraryHaskellDepends = [ + aeson base text time unordered-containers + ]; + testHaskellDepends = [ + aeson attoparsec base bytestring derive directory filepath HUnit + old-locale QuickCheck template-haskell test-framework + test-framework-hunit test-framework-quickcheck2 + test-framework-th-prime text time unordered-containers + ]; + homepage = "https://github.com/himura/twitter-types"; + description = "Twitter JSON parser and types"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "twitter-types-lens_0_7_1" = callPackage + ({ mkDerivation, base, lens, template-haskell, text, time + , twitter-types + }: + mkDerivation { + pname = "twitter-types-lens"; + version = "0.7.1"; + sha256 = "d162b38100cfbcff1128d45dbe9c455816990f26a0711c06517fd0c274d1d286"; + libraryHaskellDepends = [ + base lens template-haskell text time twitter-types + ]; + homepage = "https://github.com/himura/twitter-types-lens"; + description = "Twitter JSON types (lens powered)"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twitter-types-lens" = callPackage @@ -201652,8 +206435,8 @@ self: { }: mkDerivation { pname = "twitter-types-lens"; - version = "0.7.1"; - sha256 = "d162b38100cfbcff1128d45dbe9c455816990f26a0711c06517fd0c274d1d286"; + version = "0.7.2"; + sha256 = "4ffeabee70234e0969a0581489473380ebf93de504f7b24f9bc024571acfb212"; libraryHaskellDepends = [ base lens template-haskell text time twitter-types ]; @@ -201677,6 +206460,7 @@ self: { homepage = "https://github.com/mcschroeder/tx"; description = "Persistent transactions on top of STM"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "txt-sushi" = callPackage @@ -201751,6 +206535,7 @@ self: { homepage = "http://www.decidable.org/haskell/typalyze"; description = "Analyzes Haskell source files for easy reference"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-aligned" = callPackage @@ -201806,6 +206591,7 @@ self: { ]; description = "Type-level serialization of type constructors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-combinators" = callPackage @@ -201845,6 +206631,7 @@ self: { libraryHaskellDepends = [ base template-haskell type-spine ]; description = "Arbitrary-base type-level digits"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-eq_0_4_2" = callPackage @@ -201897,6 +206684,7 @@ self: { homepage = "http://darcs.wolfgang.jeltsch.info/haskell/type-equality-check"; description = "Type equality check"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-fun" = callPackage @@ -201946,6 +206734,7 @@ self: { homepage = "http://github.com/ekmett/type-int"; description = "Type Level 2s- and 16s- Complement Integers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-iso" = callPackage @@ -201972,6 +206761,7 @@ self: { homepage = "http://code.haskell.org/type-level"; description = "Type-level programming library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-level-bst" = callPackage @@ -201984,6 +206774,7 @@ self: { homepage = "https://github.com/Kinokkory/type-level-bst"; description = "type-level binary search trees in haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-level-natural-number" = callPackage @@ -202136,6 +206927,7 @@ self: { ]; description = "Type-level comparison operator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-ord-spine-cereal" = callPackage @@ -202151,6 +206943,7 @@ self: { ]; description = "Generic type-level comparison of types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-prelude" = callPackage @@ -202163,6 +206956,7 @@ self: { homepage = "http://code.atnnn.com/projects/type-prelude"; description = "Partial port of prelude to the type level. Requires GHC 7.6.1."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-settheory" = callPackage @@ -202178,6 +206972,7 @@ self: { ]; description = "Sets and functions-as-relations in the type system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-spine" = callPackage @@ -202189,6 +206984,7 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "A spine-view on types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-structure" = callPackage @@ -202217,6 +207013,7 @@ self: { homepage = "https://github.com/nikita-volkov/type-structure"; description = "Type structure analysis"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-sub-th" = callPackage @@ -202242,6 +207039,7 @@ self: { homepage = "http://github.com/jfischoff/type-sub-th"; description = "Substitute types for other types with Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-unary" = callPackage @@ -202272,6 +207070,7 @@ self: { homepage = "http://github.com/bennofs/typeable-th"; description = "Automatic deriving of TypeableN instances with Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "typed-spreadsheet" = callPackage @@ -202294,6 +207093,7 @@ self: { jailbreak = true; description = "Typed and composable spreadsheets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "typed-wire" = callPackage @@ -202319,6 +207119,7 @@ self: { homepage = "http://github.com/typed-wire/typed-wire#readme"; description = "Language idependent type-safe communication"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "typed-wire-utils" = callPackage @@ -202352,6 +207153,7 @@ self: { homepage = "https://github.com/tolysz/typedquery"; description = "Parser for SQL augmented with types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "typehash" = callPackage @@ -202364,6 +207166,7 @@ self: { jailbreak = true; description = "Create a unique hash value for a type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "typelevel" = callPackage @@ -202394,6 +207197,7 @@ self: { homepage = "https://github.com/nushio3/typelevel-tensor"; description = "Tensors whose ranks and dimensions type-inferred and type-checked"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "typelits-witnesses_0_1_1_0" = callPackage @@ -202449,6 +207253,7 @@ self: { homepage = "http://github.com/mikeizbicki/typeparams/"; description = "Lens-like interface for type level parameters; allows unboxed unboxed vectors and supercompilation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "types-compat" = callPackage @@ -202495,6 +207300,7 @@ self: { homepage = "http://github.com/paf31/typescript-docs"; description = "A documentation generator for TypeScript Definition files"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "typical" = callPackage @@ -202547,6 +207353,7 @@ self: { homepage = "https://github.com/nilcons/haskell-tz"; description = "Efficient time zone handling"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "tzdata" = callPackage @@ -202587,6 +207394,7 @@ self: { jailbreak = true; description = "A simplistic dependently-typed language with parametricity"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ua-parser" = callPackage @@ -202639,6 +207447,7 @@ self: { homepage = "https:/github.com/fumieval/uberlast"; description = "Generate overloaded lenses from plain data declaration"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uconv" = callPackage @@ -202651,6 +207460,7 @@ self: { librarySystemDepends = [ icu ]; description = "String encoding conversion with ICU"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) icu;}; "udbus" = callPackage @@ -202670,6 +207480,7 @@ self: { homepage = "http://github.com/vincenthz/hs-udbus"; description = "Small DBus implementation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "udbus-model" = callPackage @@ -202684,6 +207495,7 @@ self: { homepage = "http://github.com/vincenthz/hs-udbus"; description = "Model API for udbus introspection and definitions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "udcode" = callPackage @@ -202713,6 +207525,7 @@ self: { homepage = "https://github.com/pxqr/udev"; description = "libudev bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {libudev = null;}; "uglymemo" = callPackage @@ -202819,6 +207632,7 @@ self: { libraryHaskellDepends = [ base data-default mtl old-locale time ]; description = "A framework for friendly commandline programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uid" = callPackage @@ -202906,6 +207720,7 @@ self: { homepage = "http://github.com/luqui/unamb-custom"; description = "Functional concurrency with unamb using a custom scheduler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unbound" = callPackage @@ -203047,6 +207862,7 @@ self: { homepage = "https://github.com/jcristovao/unbouded-delays-units"; description = "Thread delays and timeouts using proper time units"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unboxed-containers" = callPackage @@ -203059,6 +207875,7 @@ self: { homepage = "http://github.com/ekmett/unboxed-containers"; description = "Self-optimizing unboxed sets using view patterns and data families"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unbreak" = callPackage @@ -203080,6 +207897,7 @@ self: { homepage = "https://e.xtendo.org/scs/unbreak"; description = "Secure and resilient remote file storage utility"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "unexceptionalio" = callPackage @@ -203270,6 +208088,7 @@ self: { homepage = "http://sloompie.reinier.de/unicode-normalization/"; description = "Unicode normalization using the ICU library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) icu;}; "unicode-prelude" = callPackage @@ -203339,6 +208158,7 @@ self: { homepage = "https://github.com/Zankoku-Okuno/unicoder"; description = "Make writing in unicode easy"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unification-fd" = callPackage @@ -203372,14 +208192,15 @@ self: { homepage = "https://sealgram.com/git/haskell/uniform-io"; description = "Uniform IO over files, network, anything"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openssl;}; "uniform-pair" = callPackage ({ mkDerivation, base, deepseq, ShowF }: mkDerivation { pname = "uniform-pair"; - version = "0.1.10"; - sha256 = "f27805fca8cd9574d0b7c535693c9dda9c9d945af1a50fc36abeb80fb332a2ff"; + version = "0.1.11"; + sha256 = "bb5281123c7e491c1940a26e1a76a5be341e162ba4a2dede5a951ac7a2050bc9"; libraryHaskellDepends = [ base deepseq ShowF ]; homepage = "https://github.com/conal/uniform-pair/"; description = "Uniform pairs with class instances"; @@ -203420,6 +208241,7 @@ self: { homepage = "http://github.com/minpou/union-map"; description = "Heterogeneous map by open unions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uniplate" = callPackage @@ -203499,6 +208321,7 @@ self: { homepage = "http://github.com/sebfisch/uniqueid/wikis"; description = "Splittable Unique Identifier Supply"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unit" = callPackage @@ -203594,6 +208417,7 @@ self: { homepage = "https://bitbucket.org/xnyhps/haskell-unittyped/"; description = "An extendable library for type-safe computations including units"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "universal-binary" = callPackage @@ -203720,6 +208544,7 @@ self: { homepage = "http://github.com/jfishcoff/universe-th"; description = "Construct a Dec's ancestor list"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unix_2_7_1_0" = callPackage @@ -203851,6 +208676,7 @@ self: { homepage = "https://github.com/snoyberg/conduit"; description = "Run processes on Unix systems, with a conduit interface (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unix-pty-light" = callPackage @@ -203945,6 +208771,7 @@ self: { executableHaskellDepends = [ base directory text ]; description = "Tool to convert literate code between styles or to code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unm-hip" = callPackage @@ -204021,6 +208848,7 @@ self: { homepage = "http://github.com/tcrayford/rematch"; description = "Rematch support for unordered containers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unordered-graphs" = callPackage @@ -204051,6 +208879,7 @@ self: { ]; description = "Monad transformers that mirror worker-wrapper transformations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unroll-ghc-plugin" = callPackage @@ -204132,6 +208961,7 @@ self: { ]; description = "Solve Boggle-like word games"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unusable-pkg" = callPackage @@ -204184,6 +209014,7 @@ self: { homepage = "https://github.com/thomaseding/up"; description = "Command line tool to generate pathnames to facilitate moving upward in a file system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "up-grade" = callPackage @@ -204215,6 +209046,7 @@ self: { jailbreak = true; description = "Haskell client for Uploadcare"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "upskirt" = callPackage @@ -204226,6 +209058,7 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Binding to upskirt"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ureader" = callPackage @@ -204251,6 +209084,7 @@ self: { homepage = "https://github.com/pxqr/ureader"; description = "Minimalistic CLI RSS reader"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "urembed" = callPackage @@ -204272,6 +209106,7 @@ self: { homepage = "http://github.com/grwlf/urembed"; description = "Ur/Web static content generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uri" = callPackage @@ -204461,6 +209296,7 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Read and write URIs (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uri-encode_1_5_0_3" = callPackage @@ -204515,6 +209351,7 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Read and write URIs (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uri-enumerator-file" = callPackage @@ -204535,6 +209372,7 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "uri-enumerator backend for the file scheme (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uri-template" = callPackage @@ -204595,6 +209433,7 @@ self: { libraryHaskellDepends = [ base mtl syb ]; description = "Parse/format generic key/value URLs from record data types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "urlcheck" = callPackage @@ -204613,6 +209452,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/urlcheck"; description = "Parallel link checker"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "urldecode" = callPackage @@ -204627,6 +209467,7 @@ self: { homepage = "https://github.com/beastaugh/urldecode"; description = "Decode percent-encoded strings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "urldisp-happstack" = callPackage @@ -204638,6 +209479,7 @@ self: { libraryHaskellDepends = [ base bytestring happstack-server mtl ]; description = "Simple, declarative, expressive URL routing -- on happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "urlencoded" = callPackage @@ -204724,6 +209566,7 @@ self: { homepage = "http://github.com/grwlf/urxml"; description = "XML parser-printer supporting Ur/Web syntax extensions"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "usb" = callPackage @@ -204758,6 +209601,7 @@ self: { jailbreak = true; description = "Iteratee enumerators for the usb package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "usb-hid" = callPackage @@ -204810,6 +209654,7 @@ self: { homepage = "https://github.com/basvandijk/usb-iteratee"; description = "Iteratee enumerators for the usb package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "usb-safe" = callPackage @@ -204828,6 +209673,7 @@ self: { homepage = "https://github.com/basvandijk/usb-safe/"; description = "Type-safe communication with USB devices"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "userid_0_1_2_3" = callPackage @@ -205186,6 +210032,7 @@ self: { jailbreak = true; description = "Variants of Prelude and System.IO with UTF8 text I/O operations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "utf8-string_0_3_8" = callPackage @@ -205428,6 +210275,7 @@ self: { jailbreak = true; description = "Utility for drawing attribute grammar pictures with the diagrams package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uuagd" = callPackage @@ -205751,6 +210599,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/uvector"; description = "Fast unboxed arrays with a flexible interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uvector-algorithms" = callPackage @@ -205763,6 +210612,7 @@ self: { homepage = "http://code.haskell.org/~dolio/"; description = "Efficient algorithms for uvector unboxed arrays"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uxadt" = callPackage @@ -205803,6 +210653,7 @@ self: { homepage = "https://gitorious.org/hsv4l2"; description = "interface to Video For Linux Two (V4L2)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "v4l2-examples" = callPackage @@ -205818,6 +210669,7 @@ self: { homepage = "https://gitorious.org/hsv4l2"; description = "video for linux two examples"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vacuum" = callPackage @@ -205830,6 +210682,7 @@ self: { homepage = "http://thoughtpolice.github.com/vacuum"; description = "Graph representation of the GHC heap"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vacuum-cairo" = callPackage @@ -205847,6 +210700,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/vacuum-cairo"; description = "Visualize live Haskell data structures using vacuum, graphviz and cairo"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vacuum-graphviz" = callPackage @@ -205859,6 +210713,7 @@ self: { jailbreak = true; description = "A library for transforming vacuum graphs into GraphViz output"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vacuum-opengl" = callPackage @@ -205879,6 +210734,7 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "Visualize live Haskell data structures using vacuum, graphviz and OpenGL"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vacuum-ubigraph" = callPackage @@ -205891,6 +210747,7 @@ self: { jailbreak = true; description = "Visualize Haskell data structures using vacuum and Ubigraph"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vado" = callPackage @@ -206064,6 +210921,7 @@ self: { homepage = "https://github.com/benzrf/vampire"; description = "Analyze and visualize expression trees"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "var" = callPackage @@ -206081,6 +210939,7 @@ self: { homepage = "http://github.com/sonyandy/var"; description = "Mutable variables and tuples"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "varan" = callPackage @@ -206234,6 +211093,7 @@ self: { ]; description = "Common types and instances for Vaultaire"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vcache" = callPackage @@ -206251,6 +211111,7 @@ self: { homepage = "http://github.com/dmbarbour/haskell-vcache"; description = "semi-transparent persistence for Haskell using LMDB, STM"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "vcache-trie" = callPackage @@ -206267,6 +211128,7 @@ self: { homepage = "http://github.com/dmbarbour/haskell-vcache-trie"; description = "patricia tries modeled above VCache"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "vcard" = callPackage @@ -206337,6 +211199,7 @@ self: { homepage = "https://github.com/forste/haskellVCSGUI"; description = "GUI library for source code management systems"; license = "GPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "vcswrapper" = callPackage @@ -206412,6 +211275,7 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "OpenGL support for the `vect' low-dimensional linear algebra library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector_0_10_9_3" = callPackage @@ -206607,7 +211471,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "vector-binary-instances" = callPackage + "vector-binary-instances_0_2_1_1" = callPackage ({ mkDerivation, base, binary, vector }: mkDerivation { pname = "vector-binary-instances"; @@ -206617,6 +211481,33 @@ self: { homepage = "https://github.com/bos/vector-binary-instances"; description = "Instances of Data.Binary and Data.Serialize for vector"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "vector-binary-instances_0_2_3_0" = callPackage + ({ mkDerivation, base, binary, vector }: + mkDerivation { + pname = "vector-binary-instances"; + version = "0.2.3.0"; + sha256 = "1f9c6821dbc1add7320eef7712d5a1c4e2b41ff5e6b369864f6b3aad9a3974b7"; + libraryHaskellDepends = [ base binary vector ]; + homepage = "https://github.com/bos/vector-binary-instances"; + description = "Instances of Data.Binary and Data.Serialize for vector"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "vector-binary-instances" = callPackage + ({ mkDerivation, base, binary, tasty, tasty-quickcheck, vector }: + mkDerivation { + pname = "vector-binary-instances"; + version = "0.2.3.1"; + sha256 = "49cde38d27cbc84a057b77b624336b8785f68c2f771dfec1c414f18162d6ba66"; + libraryHaskellDepends = [ base binary vector ]; + testHaskellDepends = [ base binary tasty tasty-quickcheck vector ]; + homepage = "https://github.com/bos/vector-binary-instances"; + description = "Instances of Data.Binary and Data.Serialize for vector"; + license = stdenv.lib.licenses.bsd3; }) {}; "vector-buffer" = callPackage @@ -206649,6 +211540,7 @@ self: { homepage = "https://github.com/basvandijk/vector-bytestring"; description = "ByteStrings as type synonyms of Storable Vectors of Word8s"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-clock" = callPackage @@ -206668,6 +211560,7 @@ self: { homepage = "https://github.com/scvalex/vector-clock"; description = "Vector clocks for versioning message flows"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-conduit" = callPackage @@ -206687,6 +211580,7 @@ self: { jailbreak = true; description = "Conduit utilities for vectors"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-fftw" = callPackage @@ -206715,6 +211609,7 @@ self: { homepage = "http://github.com/mikeizbicki/vector-functorlazy/"; description = "vectors that perform the fmap operation in constant time"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-heterogenous" = callPackage @@ -206796,6 +211691,7 @@ self: { homepage = "http://github.com/kreuzschlitzschraubenzieher/vector-instances-collections"; description = "Instances of the Data.Collections classes for Data.Vector.*"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-mmap" = callPackage @@ -206820,6 +211716,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/vector-random"; description = "Generate vectors filled with high quality pseudorandom numbers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-read-instances" = callPackage @@ -206832,6 +211729,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "(deprecated) Read instances for 'Data.Vector'"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-sized" = callPackage @@ -206921,6 +211819,7 @@ self: { ]; description = "Instances of vector-space classes for OpenGL types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-space-points_0_2" = callPackage @@ -206971,6 +211870,7 @@ self: { homepage = "http://github.com/geezusfreeek/vector-static"; description = "Statically checked sizes on Data.Vector"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-strategies" = callPackage @@ -207117,6 +212017,7 @@ self: { homepage = "http://github.com/tomahawkins/verilog"; description = "Verilog preprocessor, parser, and AST"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "versions" = callPackage @@ -207133,6 +212034,7 @@ self: { ]; description = "Types and parsers for software version numbers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vhd" = callPackage @@ -207223,6 +212125,7 @@ self: { homepage = "http://github.com/michaelxavier/vigilance"; description = "An extensible dead-man's switch system"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vimeta" = callPackage @@ -207296,6 +212199,7 @@ self: { homepage = "http://www.vintage-basic.net"; description = "Interpreter for microcomputer-era BASIC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vinyl_0_5_1" = callPackage @@ -207344,6 +212248,7 @@ self: { ]; description = "Utilities for working with OpenGL's GLSL shading language and vinyl records"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vinyl-json" = callPackage @@ -207361,6 +212266,7 @@ self: { jailbreak = true; description = "Provide json instances automagically to vinyl types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vinyl-utils" = callPackage @@ -207393,6 +212299,7 @@ self: { homepage = "http://github.com/andrewthad/vinyl-vectors"; description = "Vectors for vinyl vectors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "virthualenv" = callPackage @@ -207413,6 +212320,7 @@ self: { homepage = "https://github.com/Paczesiowa/virthualenv"; description = "Virtual Haskell Environment builder"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "visibility" = callPackage @@ -207445,6 +212353,7 @@ self: { ]; description = "An XMMS2 client"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "visual-graphrewrite" = callPackage @@ -207473,6 +212382,7 @@ self: { homepage = "http://github.com/zsol/visual-graphrewrite/"; description = "Visualize the graph-rewrite steps of a Haskell program"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "visual-prof" = callPackage @@ -207493,6 +212403,7 @@ self: { homepage = "http://github.com/djv/VisualProf"; description = "Create a visual profile of a program's source code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vivid" = callPackage @@ -207511,6 +212422,7 @@ self: { ]; description = "Sound synthesis with SuperCollider"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vk-aws-route53" = callPackage @@ -207528,6 +212440,7 @@ self: { ]; description = "Amazon Route53 DNS service plugin for the aws package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vk-posix-pty" = callPackage @@ -207614,6 +212527,7 @@ self: { homepage = "https://github.com/cartazio/Vowpal-Utils"; description = "Vowpal Wabbit utilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "voyeur" = callPackage @@ -207627,6 +212541,7 @@ self: { homepage = "https://github.com/sethfowler/hslibvoyeur"; description = "Haskell bindings for libvoyeur"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vrpn" = callPackage @@ -207644,6 +212559,7 @@ self: { homepage = "https://bitbucket.org/bwbush/vrpn"; description = "Bindings to VRPN"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) vrpn;}; "vte" = callPackage @@ -207659,6 +212575,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the VTE library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs.gnome) vte;}; "vtegtk3" = callPackage @@ -207674,6 +212591,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the VTE library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs.gnome) vte;}; "vty" = callPackage @@ -207728,6 +212646,7 @@ self: { homepage = "https://github.com/coreyoconnor/vty"; description = "Examples programs using the vty library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vty-menu" = callPackage @@ -207742,6 +212661,7 @@ self: { jailbreak = true; description = "A lib for displaying a menu and getting a selection using VTY"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vty-ui" = callPackage @@ -207778,19 +212698,21 @@ self: { jailbreak = true; description = "Extra vty-ui functionality not included in the core library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vulkan" = callPackage ({ mkDerivation, base, vector-sized }: mkDerivation { pname = "vulkan"; - version = "1.5.0.0"; - sha256 = "8df7d3f179cef9f47a6866abd14a5ae4f4a961a63d9e91d3b0898c55b47bcc13"; + version = "1.5.1.0"; + sha256 = "64d795374e75e0db2d42ef58059869dcc33414fdcf9c0436d1f2a7c8b392edb1"; libraryHaskellDepends = [ base vector-sized ]; jailbreak = true; homepage = "http://github.com/expipiplus1/vulkan#readme"; description = "Bindings to the Vulkan graphics API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wacom-daemon" = callPackage @@ -207816,6 +212738,7 @@ self: { homepage = "https://github.com/portnov/wacom-intuos-pro-scripts"; description = "Manage Wacom tablet settings profiles, including Intuos Pro ring modes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "waddle" = callPackage @@ -209233,6 +214156,7 @@ self: { homepage = "https://bitbucket.org/dpwiz/wai-graceful"; description = "Graceful shutdown for WAI applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-handler-devel" = callPackage @@ -209255,6 +214179,7 @@ self: { homepage = "http://github.com/yesodweb/wai"; description = "WAI server that automatically reloads code after modification. (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-handler-fastcgi" = callPackage @@ -209351,6 +214276,7 @@ self: { homepage = "http://github.com/snoyberg/wai-handler-snap"; description = "Web Application Interface handler using snap-server. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-handler-webkit" = callPackage @@ -209364,6 +214290,7 @@ self: { homepage = "https://github.com/yesodweb/wai/tree/master/wai-handler-webkit"; description = "Turn WAI applications into standalone GUIs using QtWebkit"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {QtWebKit = null;}; "wai-hastache" = callPackage @@ -209380,6 +214307,7 @@ self: { homepage = "https://github.com/singpolyma/wai-hastache"; description = "Nice wrapper around hastache for use with WAI"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-hmac-auth" = callPackage @@ -209437,6 +214365,7 @@ self: { jailbreak = true; description = "DEPCRECATED (use package \"simple\" instead) A minimalist web framework for WAI web applications"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-logger_2_2_3" = callPackage @@ -209537,6 +214466,7 @@ self: { ]; description = "A logging system for preforked WAI apps"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-cache" = callPackage @@ -209560,6 +214490,7 @@ self: { homepage = "https://github.com/akaspin/wai-middleware-cache"; description = "Caching middleware for WAI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-cache-redis" = callPackage @@ -209580,6 +214511,7 @@ self: { homepage = "https://github.com/akaspin/wai-middleware-cache-redis"; description = "Redis backend for wai-middleware-cache"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-caching" = callPackage @@ -209647,6 +214579,7 @@ self: { homepage = "https://github.com/akaspin/wai-middleware-catch"; description = "Wai error catching middleware"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-consul" = callPackage @@ -209857,6 +214790,7 @@ self: { ]; description = "Middleware and utilities for using Atlassian Crowd authentication"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "wai-middleware-etag" = callPackage @@ -209904,6 +214838,7 @@ self: { homepage = "http://github.com/seanhess/wai-middleware-headers"; description = "cors and addHeaders for WAI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-hmac" = callPackage @@ -209951,9 +214886,10 @@ self: { ]; description = "WAI HMAC Authentication Middleware Client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-middleware-metrics" = callPackage + "wai-middleware-metrics_0_2_2" = callPackage ({ mkDerivation, base, bytestring, ekg-core, http-types, QuickCheck , scotty, tasty, tasty-hunit, tasty-quickcheck, time, transformers , wai, wai-extra @@ -209970,6 +214906,26 @@ self: { homepage = "https://github.com/Helkafen/wai-middleware-metrics"; description = "A WAI middleware to collect EKG request metrics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wai-middleware-metrics" = callPackage + ({ mkDerivation, base, bytestring, ekg-core, http-types, QuickCheck + , scotty, tasty, tasty-hunit, tasty-quickcheck, text, time + , transformers, wai, wai-extra + }: + mkDerivation { + pname = "wai-middleware-metrics"; + version = "0.2.3"; + sha256 = "c9123ca10c2d0d223ce0c39faa7097de2e61ec2b9a24cff042d7248850ea2e2a"; + libraryHaskellDepends = [ base ekg-core http-types text time wai ]; + testHaskellDepends = [ + base bytestring ekg-core http-types QuickCheck scotty tasty + tasty-hunit tasty-quickcheck text time transformers wai wai-extra + ]; + homepage = "https://github.com/Helkafen/wai-middleware-metrics"; + description = "A WAI middleware to collect EKG request metrics"; + license = stdenv.lib.licenses.bsd3; }) {}; "wai-middleware-preprocessor" = callPackage @@ -209990,6 +214946,7 @@ self: { homepage = "https://github.com/taktoa/wai-middleware-preprocessor"; description = "WAI middleware for preprocessing static files"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-prometheus" = callPackage @@ -210030,6 +214987,7 @@ self: { homepage = "https://github.com/akaspin/wai-middleware-route"; description = "Wai dispatch middleware"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-static_0_6_0_1" = callPackage @@ -210110,6 +215068,7 @@ self: { homepage = "https://github.com/agrafix/wai-middleware-static"; description = "WAI middleware that serves requests to static files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-throttle_0_2_0_1" = callPackage @@ -210174,6 +215133,7 @@ self: { base bytestring hspec http-types HUnit stm transformers wai wai-extra ]; + doCheck = false; description = "WAI Middleware for Request Throttling"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -210667,6 +215627,7 @@ self: { homepage = "https://github.com/singpolyma/wai-session-tokyocabinet"; description = "Session store based on Tokyo Cabinet"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-static-cache" = callPackage @@ -210686,6 +215647,7 @@ self: { ]; description = "A simple cache for serving static files in a WAI middleware"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-static-pages" = callPackage @@ -210732,6 +215694,7 @@ self: { homepage = "https://github.com/yogeshsajanikar/wai-thrift"; description = "Thrift transport layer for Wai"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-throttler" = callPackage @@ -210748,6 +215711,7 @@ self: { jailbreak = true; description = "Wai middleware for request throttling"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-transformers" = callPackage @@ -211837,6 +216801,7 @@ self: { homepage = "http://tanakh.jp"; description = "Dynamic configurable warp HTTP server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "warp-static" = callPackage @@ -211859,6 +216824,7 @@ self: { homepage = "http://github.com/yesodweb/wai"; description = "Static file server based on Warp and wai-app-static (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "warp-tls_3_0_1" = callPackage @@ -212221,6 +217187,7 @@ self: { jailbreak = true; description = "set group and user id before running server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "watchdog" = callPackage @@ -212233,6 +217200,7 @@ self: { jailbreak = true; description = "Simple control structure to re-try an action with exponential backoff"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "watcher" = callPackage @@ -212250,6 +217218,7 @@ self: { jailbreak = true; description = "Opinionated filesystem watcher"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "watchit" = callPackage @@ -212278,6 +217247,7 @@ self: { ]; description = "File change watching utility"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wavconvert" = callPackage @@ -212325,6 +217295,7 @@ self: { homepage = "http://code.haskell.org/~StefanKersten/code/wavesurfer"; description = "Parse WaveSurfer files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wavy" = callPackage @@ -212383,6 +217354,7 @@ self: { homepage = "https://github.com/cvb/hs-weather-api.git"; description = "Weather api implemented in haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "web-browser-in-haskell" = callPackage @@ -212394,6 +217366,7 @@ self: { libraryHaskellDepends = [ base gtk webkit ]; description = "Web Browser In Haskell"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "web-css" = callPackage @@ -212425,6 +217398,7 @@ self: { homepage = "http://github.com/snoyberg/web-encodings/tree/master"; description = "Encapsulate multiple web encoding in a single package. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "web-fpco" = callPackage @@ -212460,6 +217434,7 @@ self: { homepage = "http://github.com/cmoore/web-mongrel2"; description = "Bindings for the Mongrel2 web server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "web-page" = callPackage @@ -212576,6 +217551,7 @@ self: { homepage = "http://docs.yesodweb.com/web-routes-quasi/"; description = "Define data types and parse/build functions for web-routes via a quasi-quoted DSL (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "web-routes-regular" = callPackage @@ -212615,6 +217591,7 @@ self: { jailbreak = true; description = "Extends web-routes with some transformers instances for RouteT"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "web-routes-wai" = callPackage @@ -212678,6 +217655,7 @@ self: { homepage = "http://byteally.github.io/webapi/"; description = "WAI based library for web api"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "webapp" = callPackage @@ -212700,6 +217678,7 @@ self: { homepage = "https://github.com/fhsjaagshs/webapp"; description = "Haskell web app framework based on WAI & Warp"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "webcrank" = callPackage @@ -213059,6 +218038,7 @@ self: { homepage = "https://github.com/kallisti-dev/hs-webdriver"; description = "a Haskell client for the Selenium WebDriver protocol (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "webfinger-client" = callPackage @@ -213121,6 +218101,7 @@ self: { homepage = "http://github.com/ananthakumaran/webify"; description = "webfont generator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "webkit" = callPackage @@ -213151,6 +218132,7 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "JavaScriptCore FFI from webkitgtk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "webkitgtk3" = callPackage @@ -213243,6 +218225,7 @@ self: { ]; description = "HTTP server library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "websnap" = callPackage @@ -213257,6 +218240,7 @@ self: { homepage = "https://github.com/jrb/websnap"; description = "Transforms URLs to PNGs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "websockets_0_9_2_1" = callPackage @@ -213526,6 +218510,7 @@ self: { ]; description = "Functional reactive web framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wedding-announcement" = callPackage @@ -213561,6 +218546,7 @@ self: { jailbreak = true; description = "Wedged postcard generator"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "weighted-regexp" = callPackage @@ -213577,6 +218563,7 @@ self: { homepage = "http://sebfisch.github.com/haskell-regexp"; description = "Weighted Regular Expression Matcher"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "weighted-search" = callPackage @@ -213610,6 +218597,7 @@ self: { homepage = "https://github.com/mcschroeder/welshy"; description = "Haskell web framework (because Scotty had trouble yodeling)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "werewolf" = callPackage @@ -213620,8 +218608,8 @@ self: { }: mkDerivation { pname = "werewolf"; - version = "0.4.7.0"; - sha256 = "83a134b6aa52b80b9b32d5c0c98cd1db4b37f9427926dd29b1555b92853f7994"; + version = "0.4.8.0"; + sha256 = "3885f02b70adbbf064894daf258ec2fd175535a1b16386d54a8139246b34cbe6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -213652,6 +218640,7 @@ self: { homepage = "https://github.com/hansonkd/Wheb-Framework"; description = "MongoDB plugin for Wheb"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wheb-redis" = callPackage @@ -213665,6 +218654,7 @@ self: { homepage = "https://github.com/hansonkd/Wheb-Framework"; description = "Redis connection for Wheb"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wheb-strapped" = callPackage @@ -213678,6 +218668,7 @@ self: { homepage = "https://github.com/hansonkd/Wheb-Framework"; description = "Strapped templates for Wheb"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "while-lang-parser" = callPackage @@ -213709,6 +218700,7 @@ self: { homepage = "http://neugierig.org/software/darcs/whim/"; description = "A Haskell window manager"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "whiskers" = callPackage @@ -213735,6 +218727,7 @@ self: { homepage = "https://github.com/haroldl/whitespace-nd"; description = "Whitespace, an esoteric programming language"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "whois" = callPackage @@ -213801,6 +218794,7 @@ self: { homepage = "http://rampa.sk/static/wikipedia4epub.html"; description = "Wikipedia EPUB E-Book construction from Firefox history"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "win-hp-path" = callPackage @@ -213835,6 +218829,7 @@ self: { homepage = "http://patch-tag.com/repo/windowslive"; description = "Implements Windows Live Web Authentication and Delegated Authentication"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "winerror" = callPackage @@ -213846,6 +218841,7 @@ self: { doHaddock = false; description = "Error handling for foreign calls to the Windows API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "winio" = callPackage @@ -213863,6 +218859,7 @@ self: { homepage = "http://github.com/felixmar/winio"; description = "I/O library for Windows"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {kernel32 = null; ws2_32 = null;}; "wiring" = callPackage @@ -213882,6 +218879,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "with-location" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "with-location"; + version = "0.0.0"; + sha256 = "65919edc3d0aaa403c54d0e8a9023568642daa635c057120090d17c61960bac5"; + libraryHaskellDepends = [ base ]; + homepage = "https://github.com/sol/with-location#readme"; + description = "Use ImplicitParams-based source locations in a backward compatible way"; + license = stdenv.lib.licenses.mit; + }) {}; + "withdependencies" = callPackage ({ mkDerivation, base, conduit, containers, hspec, HUnit, mtl }: mkDerivation { @@ -214198,6 +219207,7 @@ self: { jailbreak = true; description = "Haskell bindings for the wlc library"; license = stdenv.lib.licenses.isc; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) wlc;}; "wobsurv" = callPackage @@ -214235,6 +219245,7 @@ self: { homepage = "https://github.com/nikita-volkov/wobsurv"; description = "A simple and highly performant HTTP file server"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "woffex" = callPackage @@ -214251,6 +219262,7 @@ self: { jailbreak = true; description = "Web Open Font Format (WOFF) unpacker"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wol" = callPackage @@ -214301,6 +219313,7 @@ self: { homepage = "https://github.com/swift-nav/wolf"; description = "Amazon Simple Workflow Service Wrapper"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "woot" = callPackage @@ -214347,6 +219360,7 @@ self: { homepage = "http://www.tiresiaspress.us/haskell/word24"; description = "24-bit word and int types for GHC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "word8_0_1_1" = callPackage @@ -214493,6 +219507,7 @@ self: { executableHaskellDepends = [ base containers fclabels ]; description = "A word search solver library and executable"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wordsetdiff" = callPackage @@ -214533,6 +219548,7 @@ self: { homepage = "https://github.com/sboosali/workflow-osx#readme"; description = "a \"Desktop Workflow\" monad with Objective-C bindings"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wp-archivebot" = callPackage @@ -214549,6 +219565,7 @@ self: { jailbreak = true; description = "Subscribe to a wiki's RSS feed and archive external links"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wrap" = callPackage @@ -214594,6 +219611,7 @@ self: { homepage = "http://code.haskell.org/~thielema/wraxml/"; description = "Lazy wrapper to HaXML, HXT, TagSoup via custom XML tree structure"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wreq_0_3_0_1" = callPackage @@ -214767,6 +219785,7 @@ self: { jailbreak = true; description = "Colour space transformations and metrics"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wsdl" = callPackage @@ -214815,6 +219834,7 @@ self: { libraryHaskellDepends = [ base old-locale time transformers ]; description = "Wojcik Tool Kit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wtk-gtk" = callPackage @@ -214830,6 +219850,7 @@ self: { ]; description = "GTK tools within Wojcik Tool Kit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wumpus-basic" = callPackage @@ -214846,6 +219867,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Basic objects and system code built on Wumpus-Core"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wumpus-core" = callPackage @@ -214861,6 +219883,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Pure Haskell PostScript and SVG generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wumpus-drawing" = callPackage @@ -214877,6 +219900,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "High-level drawing objects built on Wumpus-Basic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wumpus-microprint" = callPackage @@ -214894,6 +219918,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Microprints - \"greek-text\" pictures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wumpus-tree" = callPackage @@ -214911,6 +219936,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Drawing trees"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wuss" = callPackage @@ -214940,6 +219966,7 @@ self: { homepage = "https://wiki.haskell.org/WxHaskell"; description = "wxHaskell"; license = "unknown"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "wxAsteroids" = callPackage @@ -214954,6 +219981,7 @@ self: { homepage = "https://wiki.haskell.org/WxAsteroids"; description = "Try to avoid the asteroids with your space ship"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "wxFruit" = callPackage @@ -214970,6 +219998,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/WxFruit"; description = "An implementation of Fruit using wxHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wxc" = callPackage @@ -214987,6 +220016,7 @@ self: { homepage = "https://wiki.haskell.org/WxHaskell"; description = "wxHaskell C++ wrapper"; license = "unknown"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs.xorg) libX11; inherit (pkgs) mesa; inherit (pkgs) wxGTK;}; @@ -215006,6 +220036,7 @@ self: { homepage = "https://wiki.haskell.org/WxHaskell"; description = "wxHaskell core"; license = "unknown"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) wxGTK;}; "wxdirect" = callPackage @@ -215039,6 +220070,7 @@ self: { homepage = "http://github.com/elbrujohalcon/wxhnotepad"; description = "An example of how to implement a basic notepad with wxHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wxturtle" = callPackage @@ -215054,6 +220086,7 @@ self: { ]; description = "turtle like LOGO with wxHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wybor" = callPackage @@ -215096,6 +220129,7 @@ self: { homepage = "http://dmwit.com/wyvern"; description = "An autoresponder for Dragon Go Server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "x-dsp" = callPackage @@ -215114,6 +220148,7 @@ self: { homepage = "http://jwlato.webfactional.com/haskell/x-dsp"; description = "A embedded DSL for manipulating DSP languages in Haskell"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "x11-xim" = callPackage @@ -215142,6 +220177,7 @@ self: { homepage = "http://redmine.iportnov.ru/projects/x11-xinput"; description = "Haskell FFI bindings for X11 XInput library (-lXi)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.xorg) libXi;}; "x509_1_5_0_1" = callPackage @@ -215558,6 +220594,7 @@ self: { homepage = "https://github.com/polachok/xbattbar"; description = "Simple battery indicator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "xcb-types" = callPackage @@ -215615,6 +220652,7 @@ self: { ]; description = "XChat"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "i686-linux" ]; }) {}; "xcp" = callPackage @@ -215677,6 +220715,7 @@ self: { ]; description = "Parse Graphviz xdot files and interactively view them using GTK and Cairo"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "xenstore" = callPackage @@ -215708,6 +220747,7 @@ self: { homepage = "http://patch-tag.com/r/obbele/xfconf/home"; description = "FFI bindings to xfconf"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {libxfconf-0 = null;}; "xformat" = callPackage @@ -215738,6 +220778,7 @@ self: { homepage = "http://code.google.com/p/xhaskell-library/"; description = "Replaces/Enhances Text.Regex"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xhb" = callPackage @@ -215790,6 +220831,7 @@ self: { homepage = "http://github.com/jotrk/xhb-ewmh/"; description = "EWMH utilities for XHB"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xhtml_3000_2_1" = callPackage @@ -215849,6 +220891,7 @@ self: { homepage = "http://github.com/joachifm/hxine"; description = "Bindings to xine-lib"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {libxine = null; xine = null;}; "xing-api" = callPackage @@ -215874,6 +220917,7 @@ self: { homepage = "http://github.com/JanAhrens/xing-api-haskell"; description = "Wrapper for the XING API, v1"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xinput-conduit" = callPackage @@ -215908,6 +220952,7 @@ self: { testHaskellDepends = [ base unix ]; description = "Haskell bindings for libxkbcommon"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libxkbcommon;}; "xkcd" = callPackage @@ -215926,6 +220971,7 @@ self: { homepage = "http://github.com/sellweek/xkcd"; description = "Downloads the most recent xkcd comic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xlsior" = callPackage @@ -216149,6 +221195,23 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "xlsx-tabular" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers, data-default + , lens, text, xlsx + }: + mkDerivation { + pname = "xlsx-tabular"; + version = "0.1.0.0"; + sha256 = "fe472e9fcac1d47f8d325a24a219ac54ff2471cbaeb071aef81b14300ecf9276"; + libraryHaskellDepends = [ + aeson base bytestring containers data-default lens text xlsx + ]; + testHaskellDepends = [ base ]; + homepage = "http://github.com/kkazuo/xlsx-tabular#readme"; + description = "Xlsx table decode utility"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "xlsx-templater" = callPackage ({ mkDerivation, base, bytestring, conduit, containers , data-default, parsec, text, time, transformers, xlsx @@ -216167,6 +221230,7 @@ self: { homepage = "https://github.com/qrilka/xlsx-templater"; description = "Simple and incomplete Excel file templater"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml_1_3_13" = callPackage @@ -216226,6 +221290,7 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Parse XML catalog files (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-conduit_1_2_3" = callPackage @@ -216567,6 +221632,7 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Pure-Haskell utilities for dealing with XML with the enumerator package. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-enumerator-combinators" = callPackage @@ -216585,6 +221651,7 @@ self: { jailbreak = true; description = "Parser combinators for xml-enumerator and compatible XML parsers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-extractors" = callPackage @@ -216744,6 +221811,7 @@ self: { homepage = "http://sep07.mroot.net/"; description = "Parsing XML with Parsec"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-picklers" = callPackage @@ -216773,6 +221841,7 @@ self: { homepage = "https://github.com/YoshikuniJujo/xml-pipe/wiki"; description = "XML parser which uses simple-pipe"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-prettify" = callPackage @@ -216788,6 +221857,7 @@ self: { homepage = "http://github.com/rosenbergdm/xml-prettify"; description = "Pretty print XML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-push" = callPackage @@ -216809,6 +221879,7 @@ self: { homepage = "https://github.com/YoshikuniJujo/xml-push/wiki"; description = "Push XML from/to client to/from server over XMPP or HTTP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-query" = callPackage @@ -216840,6 +221911,7 @@ self: { homepage = "https://github.com/sannsyn/xml-query-xml-conduit"; description = "A binding for the \"xml-query\" and \"xml-conduit\" libraries"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-query-xml-types" = callPackage @@ -216865,6 +221937,7 @@ self: { homepage = "https://github.com/sannsyn/xml-query-xml-types"; description = "An interpreter of \"xml-query\" queries for the \"xml-types\" documents"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-to-json" = callPackage @@ -216985,6 +222058,7 @@ self: { homepage = "http://github.com/yihuang/xml2json"; description = "translate xml to json"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml2x" = callPackage @@ -217003,6 +222077,7 @@ self: { jailbreak = true; description = "Convert BLAST output in XML format to CSV or HTML"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xmlgen" = callPackage @@ -217084,6 +222159,7 @@ self: { homepage = "http://github.com/dagle/hs-xmltv"; description = "Show tv channels in the terminal"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xmms2-client" = callPackage @@ -217100,6 +222176,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "An XMMS2 client library"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xmms2-client-glib" = callPackage @@ -217112,6 +222189,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "An XMMS2 client library — GLib integration"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xmobar" = callPackage @@ -217190,6 +222268,7 @@ self: { homepage = "http://xmonad.org"; description = "A tiling window manager"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xmonad-contrib" = callPackage @@ -217231,6 +222310,7 @@ self: { homepage = "http://xmonad.org/"; description = "Third party extensions for xmonad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xmonad-contrib-gpl" = callPackage @@ -217278,6 +222358,7 @@ self: { homepage = "http://xmonad.org/"; description = "Module for evaluation Haskell expressions in the running xmonad instance"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xmonad-extras" = callPackage @@ -217312,6 +222393,7 @@ self: { homepage = "https://github.com/supki/xmonad-screenshot"; description = "Workspaces screenshooting utility for XMonad"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "xmonad-utils" = callPackage @@ -217326,6 +222408,7 @@ self: { homepage = "https://github.com/LeifW/xmonad-utils"; description = "A small collection of X utilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "xmonad-wallpaper" = callPackage @@ -217372,6 +222455,7 @@ self: { homepage = "https://github.com/YoshikuniJujo/xmpipe/wiki"; description = "XMPP implementation using simple-PIPE"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xorshift" = callPackage @@ -217435,6 +222519,7 @@ self: { homepage = "http://ianwookim.org/hxournal"; description = "convert utility for xoj files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xournal-parser" = callPackage @@ -217472,6 +222557,7 @@ self: { jailbreak = true; description = "Xournal file renderer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xournal-types" = callPackage @@ -217508,6 +222594,7 @@ self: { homepage = "http://malde.org/~ketil/"; description = "Cluster EST sequences"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xsd" = callPackage @@ -217548,6 +222635,7 @@ self: { librarySystemDepends = [ xslt ]; description = "Binding to libxslt"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {xslt = null;}; "xss-sanitize_0_3_5_4" = callPackage @@ -217626,6 +222714,7 @@ self: { homepage = "http://github.com/alanz/xtc"; description = "eXtended & Typed Controls for wxHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "xtest" = callPackage @@ -217692,6 +222781,7 @@ self: { jailbreak = true; description = "#plaimi's all-encompassing bot"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yabi" = callPackage @@ -217873,6 +222963,7 @@ self: { homepage = "http://www.people.fas.harvard.edu/~stewart5/code/yahoo-web-search"; description = "Yahoo Web Search Services"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yajl" = callPackage @@ -217887,6 +222978,7 @@ self: { homepage = "https://john-millikin.com/software/haskell-yajl/"; description = "Bindings for YAJL, an event-based JSON implementation"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) yajl;}; "yajl-enumerator" = callPackage @@ -217904,6 +222996,7 @@ self: { homepage = "https://john-millikin.com/software/haskell-yajl/"; description = "Enumerator-based interface to YAJL, an event-based JSON implementation"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yall" = callPackage @@ -218263,6 +223356,7 @@ self: { homepage = "http://redmine.iportnov.ru/projects/yaml-rpc"; description = "Simple library for network (HTTP REST-like) YAML RPC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yaml-rpc-scotty" = callPackage @@ -218280,6 +223374,7 @@ self: { homepage = "http://redmine.iportnov.ru/projects/yaml-rpc"; description = "Scotty server backend for yaml-rpc"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yaml-rpc-snap" = callPackage @@ -218297,6 +223392,7 @@ self: { homepage = "http://redmine.iportnov.ru/projects/yaml-rpc"; description = "Snap server backend for yaml-rpc"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yaml-union" = callPackage @@ -218317,6 +223413,7 @@ self: { homepage = "https://github.com/michelk/yaml-overrides.hs"; description = "Read multiple yaml-files and override fields recursively"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yaml2owl" = callPackage @@ -218335,6 +223432,7 @@ self: { homepage = "http://github.com/leifw/yaml2owl"; description = "Generate OWL schema from YAML syntax, and an RDFa template"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yamlkeysdiff" = callPackage @@ -218368,6 +223466,7 @@ self: { executableHaskellDepends = [ base blank-canvas text Yampa ]; description = "blank-canvas frontend for Yampa"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "yampa-glfw" = callPackage @@ -218387,6 +223486,7 @@ self: { homepage = "https://github.com/deepfire/yampa-glfw"; description = "Connects GLFW-b (GLFW 3+) with the Yampa FRP library"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yampa-glut" = callPackage @@ -218409,6 +223509,7 @@ self: { homepage = "https://github.com/ony/yampa-glut"; description = "Connects Yampa and GLUT"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yampa2048" = callPackage @@ -218424,6 +223525,7 @@ self: { homepage = "https://github.com/ksaveljev/yampa-2048"; description = "2048 game clone using Yampa/Gloss"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-linux" ]; }) {}; "yaop" = callPackage @@ -218438,6 +223540,7 @@ self: { homepage = "https://github.com/esmolanka/yaop"; description = "Yet another option parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yap" = callPackage @@ -218488,6 +223591,7 @@ self: { jailbreak = true; description = "Yet another array library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yarr-image-io" = callPackage @@ -218501,6 +223605,7 @@ self: { jailbreak = true; description = "Image IO for Yarr library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libdevil;}; "yate" = callPackage @@ -218521,6 +223626,7 @@ self: { jailbreak = true; description = "Yet Another Template Engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yavie" = callPackage @@ -218539,6 +223645,7 @@ self: { executableHaskellDepends = [ base Cabal directory process ]; description = "yet another visual editor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ycextra" = callPackage @@ -218553,6 +223660,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Yhc"; description = "Additional utilities to work with Yhc Core"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yeganesh" = callPackage @@ -218801,6 +223909,7 @@ self: { homepage = "https://github.com/tolysz/yesod-angular-ui"; description = "Angular Helpers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-auth_1_4_1" = callPackage @@ -219570,6 +224679,7 @@ self: { homepage = "http://www.yesodweb.com/"; description = "LDAP Authentication for Yesod"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-auth-ldap-mediocre" = callPackage @@ -219848,6 +224958,7 @@ self: { ]; description = "Provides PAM authentication module"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yesod-auth-smbclient" = callPackage @@ -219865,6 +224976,7 @@ self: { homepage = "https://github.com/kkazuo/yesod-auth-smbclient.git"; description = "Authentication plugin for Yesod using smbclient"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-auth-zendesk" = callPackage @@ -220982,6 +226094,7 @@ self: { homepage = "http://github.com/pbrisbin/yesod-comments"; description = "A generic comments interface for a Yesod application"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-content-pdf" = callPackage @@ -221004,6 +226117,7 @@ self: { homepage = "https://github.com/alexkyllo/yesod-content-pdf#readme"; description = "PDF Content Type for Yesod"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-continuations" = callPackage @@ -221023,6 +226137,7 @@ self: { homepage = "https://github.com/softmechanics/yesod-continuations/"; description = "Continuations for Yesod"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-core_1_4_6" = callPackage @@ -221959,6 +227074,7 @@ self: { homepage = "http://github.com/tlaitinen/yesod-datatables"; description = "Yesod plugin for DataTables (jQuery grid plugin)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-default" = callPackage @@ -222055,6 +227171,7 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Example programs using the Yesod Web Framework. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) sqlite;}; "yesod-fay_0_7_0" = callPackage @@ -222384,6 +227501,7 @@ self: { homepage = "http://github.com/pbrisbin/yesod-goodies"; description = "A collection of various small helpers useful in any yesod application"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-json" = callPackage @@ -222409,6 +227527,7 @@ self: { homepage = "http://github.com/pbrisbin/yesod-goodies/yesod-links"; description = "A typeclass which simplifies creating link widgets throughout your site"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-lucid" = callPackage @@ -222562,6 +227681,7 @@ self: { homepage = "https://github.com/mgsloan/yesod-media-simple"; description = "Simple display of media types, served by yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "yesod-newsfeed_1_4_0" = callPackage @@ -222644,6 +227764,7 @@ self: { libraryHaskellDepends = [ base template-haskell yesod ]; description = "Pagination for Yesod sites"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-pagination" = callPackage @@ -222663,6 +227784,7 @@ self: { homepage = "https://github.com/joelteon/yesod-pagination"; description = "Pagination in Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-paginator" = callPackage @@ -222828,8 +227950,8 @@ self: { }: mkDerivation { pname = "yesod-pnotify"; - version = "1.1.3.1"; - sha256 = "67c2c9e808a963213f7a9b48472758b26a64c058ff2dfd8edd8f0c8ad053d407"; + version = "1.1.3.2"; + sha256 = "9e18578306181a9731810b956b0d2ab51d56773cfd47228d5ad71bacecf85419"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -222838,7 +227960,6 @@ self: { executableHaskellDepends = [ aeson base shakespeare text transformers yesod yesod-form ]; - jailbreak = true; homepage = "https://github.com/cutsea110/yesod-pnotify"; description = "Yet another getMessage/setMessage using pnotify jquery plugins"; license = stdenv.lib.licenses.bsd3; @@ -222855,6 +227976,7 @@ self: { homepage = "https://github.com/snoyberg/yesod-pure"; description = "Yesod in pure Haskell: no Template Haskell or QuasiQuotes (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-purescript" = callPackage @@ -222876,6 +227998,7 @@ self: { homepage = "https://github.com/mpietrzak/yesod-purescript"; description = "PureScript integration for Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-raml" = callPackage @@ -222921,6 +228044,7 @@ self: { ]; description = "The raml helper executable"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-raml-docs" = callPackage @@ -222960,6 +228084,7 @@ self: { ]; description = "A mock-handler generator library from RAML"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-recaptcha" = callPackage @@ -223036,6 +228161,7 @@ self: { homepage = "https://github.com/docmunch/yesod-routes-typescript"; description = "generate TypeScript routes for Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-rst" = callPackage @@ -223054,6 +228180,7 @@ self: { homepage = "http://github.com/pSub/yesod-rst"; description = "Tools for using reStructuredText (RST) in a yesod application"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-s3" = callPackage @@ -223071,6 +228198,7 @@ self: { homepage = "https://github.com/tvh/yesod-s3"; description = "Simple Helper Library for using Amazon's Simple Storage Service (S3) with Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-sass" = callPackage @@ -223106,6 +228234,7 @@ self: { homepage = "https://github.com/ollieh/yesod-session-redis"; description = "Redis-Powered Sessions for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-sitemap_1_4_0" = callPackage @@ -223449,6 +228578,7 @@ self: { libraryHaskellDepends = [ base hamlet persistent yesod ]; description = "Table view for Yesod applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-test_1_4_2" = callPackage @@ -223656,6 +228786,7 @@ self: { homepage = "https://github.com/bogiebro/yesod-test-json"; description = "Utility functions for testing JSON web services written in Yesod"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-text-markdown_0_1_7" = callPackage @@ -223707,6 +228838,7 @@ self: { homepage = "http://github.com/netom/yesod-tls"; description = "Provides main functions using warp-tls for yesod projects"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-transloadit" = callPackage @@ -223753,6 +228885,7 @@ self: { homepage = "https://github.com/Tener/yesod-vend"; description = "Simple CRUD classes for easy view creation for Yesod"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-websockets_0_2_0" = callPackage @@ -223879,6 +229012,7 @@ self: { homepage = "https://github.com/jamesdabbs/yesod-worker"; description = "Drop-in(ish) background worker system for Yesod apps"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yet-another-logger" = callPackage @@ -223913,6 +229047,7 @@ self: { homepage = "https://github.com/alephcloud/hs-yet-another-logger"; description = "Yet Another Logger"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "yhccore" = callPackage @@ -223925,6 +229060,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Yhc"; description = "Yhc's Internal Core language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yi" = callPackage @@ -223961,6 +229097,7 @@ self: { homepage = "https://yi-editor.github.io"; description = "The Haskell-Scriptable Editor"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "yi-contrib" = callPackage @@ -223981,6 +229118,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Yi"; description = "Add-ons to Yi, the Haskell-Scriptable Editor"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yi-emacs-colours" = callPackage @@ -224011,6 +229149,7 @@ self: { homepage = "https://github.com/yi-editor/yi-fuzzy-open"; description = "Fuzzy open plugin for Yi"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "yi-gtk" = callPackage @@ -224061,6 +229200,7 @@ self: { homepage = "https://github.com/Fuuzetsu/yi-monokai"; description = "Monokai colour theme for the Yi text editor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "yi-rope" = callPackage @@ -224081,6 +229221,7 @@ self: { ]; description = "A rope data structure used by Yi"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "yi-snippet" = callPackage @@ -224093,6 +229234,7 @@ self: { homepage = "https://github.com/yi-editor/yi-snippet"; description = "Snippet support for Yi"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "yi-solarized" = callPackage @@ -224105,6 +229247,7 @@ self: { homepage = "https://github.com/NorfairKing/yi-solarized"; description = "Solarized colour theme for the Yi text editor"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "yi-spolsky" = callPackage @@ -224118,6 +229261,7 @@ self: { homepage = "https://github.com/melrief/yi-spolsky"; description = "Spolsky colour theme for the Yi text editor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "yi-vty" = callPackage @@ -224141,6 +229285,7 @@ self: { libraryHaskellDepends = [ base parsec process ]; description = "Haskell programming interface to Yices SMT solver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yices-easy" = callPackage @@ -224194,6 +229339,7 @@ self: { homepage = "http://homepage3.nifty.com/salamander/second/projects/yjftp/index.xhtml"; description = "CUI FTP client like 'ftp', 'ncftp'"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yjftp-libs" = callPackage @@ -224281,6 +229427,7 @@ self: { ]; description = "Generic Programming with Disbanded Data Types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "york-lava" = callPackage @@ -224293,6 +229440,7 @@ self: { homepage = "http://www.cs.york.ac.uk/fp/reduceron/"; description = "A library for digital circuit description"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "youtube" = callPackage @@ -224334,6 +229482,7 @@ self: { homepage = "https://github.com/fabianbergmark/YQL"; description = "A YQL engine to execute Open Data Tables"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yst" = callPackage @@ -224367,6 +229516,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Grids defined by layout hints and implemented on top of Yahoo grids"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yuuko" = callPackage @@ -224390,6 +229540,7 @@ self: { homepage = "http://github.com/nfjinjing/yuuko"; description = "A transcendental HTML parser gently wrapping the HXT library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yxdb-utils" = callPackage @@ -224428,6 +229579,7 @@ self: { ]; description = "Utilities for reading and writing Alteryx .yxdb files"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "z3" = callPackage @@ -224445,6 +229597,7 @@ self: { homepage = "http://bitbucket.org/iago/z3-haskell"; description = "Bindings for the Z3 Theorem Prover"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {gomp = null; inherit (pkgs) z3;}; "zalgo" = callPackage @@ -224476,6 +229629,7 @@ self: { homepage = "https://github.com/briansniffen/zampolit"; description = "A tool for checking how much work is done on group projects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zasni-gerna" = callPackage @@ -224488,6 +229642,7 @@ self: { homepage = "https://skami.iocikun.jp/haskell/packages/zasni-gerna"; description = "lojban parser (zasni gerna)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zcache" = callPackage @@ -224536,6 +229691,7 @@ self: { homepage = "https://github.com/VictorDenisov/zendesk-api"; description = "Zendesk API for Haskell programming language"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zeno" = callPackage @@ -224554,6 +229710,7 @@ self: { ]; description = "An automated proof system for Haskell programs"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zero_0_1_2" = callPackage @@ -224616,6 +229773,7 @@ self: { jailbreak = true; description = "Post to 0bin services"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zeromq-haskell" = callPackage @@ -224635,6 +229793,7 @@ self: { homepage = "http://github.com/twittner/zeromq-haskell/"; description = "Bindings to ZeroMQ 2.1.x"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) zeromq;}; "zeromq3-conduit" = callPackage @@ -224652,6 +229811,7 @@ self: { homepage = "https://github.com/NicolasT/zeromq3-conduit"; description = "Conduit bindings for zeromq3-haskell"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zeromq3-haskell" = callPackage @@ -224675,6 +229835,7 @@ self: { homepage = "http://github.com/twittner/zeromq-haskell/"; description = "Bindings to ZeroMQ 3.x"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) zeromq;}; "zeromq4-haskell_0_6_2" = callPackage @@ -224766,6 +229927,7 @@ self: { jailbreak = true; description = "ZeroTH - remove unnecessary TH dependencies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zigbee-znet25" = callPackage @@ -224827,10 +229989,11 @@ self: { base bytestring conduit containers exceptions filepath hspec path path-io QuickCheck text time transformers ]; - jailbreak = true; + doCheck = false; homepage = "https://github.com/mrkkrp/zip"; description = "Operations on zip archives"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zip-archive_0_2_3_5" = callPackage @@ -224944,6 +230107,7 @@ self: { homepage = "http://code.haskell.org/~byorgey/code/zipedit"; description = "Create simple list editor interfaces"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zipkin" = callPackage @@ -225169,6 +230333,7 @@ self: { homepage = "https://github.com/lucasdicioccio/zmcat"; description = "Command-line tool for ZeroMQ"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zmidi-core" = callPackage @@ -225217,6 +230382,7 @@ self: { ]; description = "A socat-like tool for zeromq library"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zoneinfo" = callPackage @@ -225229,6 +230395,7 @@ self: { jailbreak = true; description = "ZoneInfo library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zoom" = callPackage @@ -225249,6 +230416,7 @@ self: { homepage = "http://github.com/iand675/Zoom"; description = "A rake/thor-like task runner written in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zoom-cache" = callPackage @@ -225281,6 +230449,7 @@ self: { jailbreak = true; description = "A streamable, seekable, zoomable cache file format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zoom-cache-pcm" = callPackage @@ -225298,6 +230467,7 @@ self: { jailbreak = true; description = "Library for zoom-cache PCM audio codecs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zoom-cache-sndfile" = callPackage @@ -225318,6 +230488,7 @@ self: { jailbreak = true; description = "Tools for generating zoom-cache-pcm files"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zoom-refs" = callPackage @@ -225344,6 +230515,7 @@ self: { executableHaskellDepends = [ base monads-tf ]; description = "Zot language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zsh-battery" = callPackage @@ -225358,6 +230530,7 @@ self: { homepage = "https://github.com/MasseR/zsh-battery"; description = "Ascii bars representing battery status"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ztail" = callPackage @@ -225376,6 +230549,7 @@ self: { ]; description = "Multi-file, colored, filtered log tailer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; } From f519187063894cc99b0e064e3c8ff8a6de98026b Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 14 Mar 2016 20:32:36 +0100 Subject: [PATCH 062/678] Add LTS Haskell version 5.6, 5.7, and 5.8. --- pkgs/top-level/haskell-packages.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 1bf97876d88..852c75f7ee4 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -362,7 +362,16 @@ rec { lts-5_5 = packages.ghc7103.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.5.nix { }; }; - lts-5 = packages.lts-5_5; + lts-5_6 = packages.ghc7103.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.6.nix { }; + }; + lts-5_7 = packages.ghc7103.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.7.nix { }; + }; + lts-5_8 = packages.ghc7103.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.8.nix { }; + }; + lts-5 = packages.lts-5_8; lts = packages.lts-5; }; From 918ed0b8345cad114d0f9b4fb44cd1fb99084639 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Mon, 14 Mar 2016 11:48:08 +0100 Subject: [PATCH 063/678] heroku: FIX for node not found https://github.com/NixOS/nixpkgs/issues/10298 --- pkgs/development/tools/heroku/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/heroku/default.nix b/pkgs/development/tools/heroku/default.nix index f41ad639e45..d3e115708cc 100644 --- a/pkgs/development/tools/heroku/default.nix +++ b/pkgs/development/tools/heroku/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, postgresql, ruby }: +{ stdenv, fetchurl, postgresql, ruby, makeWrapper, nodejs-5_x }: with stdenv.lib; stdenv.mkDerivation rec { @@ -20,7 +20,8 @@ stdenv.mkDerivation rec { installPhase = '' mkdir -p $out cp -R * $out/ + wrapProgram $out/bin/heroku --set HEROKU_NODE_PATH ${nodejs-5_x}/bin/node ''; - buildInputs = [ ruby postgresql ]; + buildInputs = [ ruby postgresql makeWrapper ]; } From 5e9a344e62d4da2a62e3a7c0606d8704931b0159 Mon Sep 17 00:00:00 2001 From: Raymond Gauthier Date: Tue, 15 Mar 2016 09:10:20 -0400 Subject: [PATCH 064/678] plantuml: 8012 -> 8037 Updated to latest stable version. --- pkgs/tools/misc/plantuml/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/plantuml/default.nix b/pkgs/tools/misc/plantuml/default.nix index 6de3474d2d7..c71f2e86e11 100644 --- a/pkgs/tools/misc/plantuml/default.nix +++ b/pkgs/tools/misc/plantuml/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, jre, graphviz }: stdenv.mkDerivation rec { - version = "8012"; + version = "8037"; name = "plantuml-${version}"; src = fetchurl { url = "mirror://sourceforge/project/plantuml/plantuml.${version}.jar"; - sha256 = "12l2kmp6jaz6lmcj16ljhrpb1bm7zzz5qgvihhymvk66rfjd3ybz"; + sha256 = "1mlwcaph6n2akl639x64vpyjjipv6x0mwqxv6lvy3ml58pbgl58y"; }; # It's only a .jar file and a shell wrapper From 5cc7bcda3023b01bd926eccd0c5f095a050c5ab0 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 15 Mar 2016 13:34:41 +0100 Subject: [PATCH 065/678] Combine OVA generation steps Previously this was done in three derivations (one to build the raw disk image, one to convert to OVA, one to add a hydra-build-products file). Now it's done in one step to reduce the amount of copying to/from S3. In particular, not uploading the raw disk image prevents us from hitting hydra-queue-runner's size limit of 2 GiB. --- nixos/lib/make-disk-image.nix | 3 +- .../virtualisation/virtualbox-image.nix | 57 ++++++++++--------- nixos/release.nix | 32 +++-------- 3 files changed, 38 insertions(+), 54 deletions(-) diff --git a/nixos/lib/make-disk-image.nix b/nixos/lib/make-disk-image.nix index 62728c8ac76..7387bf14738 100644 --- a/nixos/lib/make-disk-image.nix +++ b/nixos/lib/make-disk-image.nix @@ -22,12 +22,13 @@ , # Shell code executed after the VM has finished. postVM ? "" +, name ? "nixos-disk-image" }: with lib; pkgs.vmTools.runInLinuxVM ( - pkgs.runCommand "nixos-disk-image" + pkgs.runCommand name { preVM = '' mkdir $out diff --git a/nixos/modules/virtualisation/virtualbox-image.nix b/nixos/modules/virtualisation/virtualbox-image.nix index da9e75a003a..fab59b2525a 100644 --- a/nixos/modules/virtualisation/virtualbox-image.nix +++ b/nixos/modules/virtualisation/virtualbox-image.nix @@ -22,7 +22,9 @@ in { config = { - system.build.virtualBoxImage = import ../../lib/make-disk-image.nix { + system.build.virtualBoxOVA = import ../../lib/make-disk-image.nix { + name = "nixos-ova-${config.system.nixosLabel}-${pkgs.stdenv.system}"; + inherit pkgs lib config; partitioned = true; diskSize = cfg.baseImageSize; @@ -37,37 +39,36 @@ in { postVM = '' echo "creating VirtualBox disk image..." - ${pkgs.vmTools.qemu}/bin/qemu-img convert -f raw -O vdi $diskImage $out/disk.vdi + ${pkgs.vmTools.qemu}/bin/qemu-img convert -f raw -O vdi $diskImage disk.vdi rm $diskImage + + echo "creating VirtualBox VM..." + export HOME=$PWD + export PATH=${pkgs.linuxPackages.virtualbox}/bin:$PATH + vmName="NixOS ${config.system.nixosLabel} (${pkgs.stdenv.system})" + VBoxManage createvm --name "$vmName" --register \ + --ostype ${if pkgs.stdenv.system == "x86_64-linux" then "Linux26_64" else "Linux26"} + VBoxManage modifyvm "$vmName" \ + --memory 1536 --acpi on --vram 32 \ + ${optionalString (pkgs.stdenv.system == "i686-linux") "--pae on"} \ + --nictype1 virtio --nic1 nat \ + --audiocontroller ac97 --audio alsa \ + --rtcuseutc on \ + --usb on --mouse usbtablet + VBoxManage storagectl "$vmName" --name SATA --add sata --portcount 4 --bootable on --hostiocache on + VBoxManage storageattach "$vmName" --storagectl SATA --port 0 --device 0 --type hdd \ + --medium disk.vdi + + echo "exporting VirtualBox VM..." + mkdir -p $out + fn="$out/nixos-${config.system.nixosLabel}-${pkgs.stdenv.system}.ova" + VBoxManage export "$vmName" --output "$fn" + + mkdir -p $out/nix-support + echo "file ova $fn" >> $out/nix-support/hydra-build-products ''; }; - system.build.virtualBoxOVA = pkgs.runCommand "virtualbox-ova" - { buildInputs = [ pkgs.linuxPackages.virtualbox ]; - vmName = "NixOS ${config.system.nixosLabel} (${pkgs.stdenv.system})"; - fileName = "nixos-image-${config.system.nixosLabel}-${pkgs.stdenv.system}.ova"; - } - '' - echo "creating VirtualBox VM..." - export HOME=$PWD - VBoxManage createvm --name "$vmName" --register \ - --ostype ${if pkgs.stdenv.system == "x86_64-linux" then "Linux26_64" else "Linux26"} - VBoxManage modifyvm "$vmName" \ - --memory 1536 --acpi on --vram 32 \ - ${optionalString (pkgs.stdenv.system == "i686-linux") "--pae on"} \ - --nictype1 virtio --nic1 nat \ - --audiocontroller ac97 --audio alsa \ - --rtcuseutc on \ - --usb on --mouse usbtablet - VBoxManage storagectl "$vmName" --name SATA --add sata --portcount 4 --bootable on --hostiocache on - VBoxManage storageattach "$vmName" --storagectl SATA --port 0 --device 0 --type hdd \ - --medium ${config.system.build.virtualBoxImage}/disk.vdi - - echo "exporting VirtualBox VM..." - mkdir -p $out - VBoxManage export "$vmName" --output "$out/$fileName" - ''; - fileSystems."/".device = "/dev/disk/by-label/nixos"; boot.loader.grub.device = "/dev/sda"; diff --git a/nixos/release.nix b/nixos/release.nix index 101f68a43f7..b697ba4c503 100644 --- a/nixos/release.nix +++ b/nixos/release.nix @@ -150,31 +150,13 @@ in rec { with import nixpkgs { inherit system; }; - let - - config = (import lib/eval-config.nix { - inherit system; - modules = - [ versionModule - ./modules/installer/virtualbox-demo.nix - ]; - }).config; - - in - # Declare the OVA as a build product so that it shows up in Hydra. - hydraJob (runCommand "nixos-ova-${config.system.nixosVersion}-${system}" - { meta = { - description = "NixOS VirtualBox appliance (${system})"; - maintainers = maintainers.eelco; - }; - ova = config.system.build.virtualBoxOVA; - preferLocalBuild = true; - } - '' - mkdir -p $out/nix-support - fn=$(echo $ova/*.ova) - echo "file ova $fn" >> $out/nix-support/hydra-build-products - '') # */ + hydraJob ((import lib/eval-config.nix { + inherit system; + modules = + [ versionModule + ./modules/installer/virtualbox-demo.nix + ]; + }).config.system.build.virtualBoxOVA) ); From 10293b87a9da30631b49b11b56cd8a55dd3c7896 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 15 Mar 2016 13:48:45 +0100 Subject: [PATCH 066/678] Combine ISO generation steps This folds adding hydra-build-products into the actual ISO generation, preventing an unnecessary download of the ISO. --- nixos/lib/make-iso9660-image.nix | 3 +-- nixos/lib/make-iso9660-image.sh | 1 + nixos/release.nix | 30 +++++------------------------- 3 files changed, 7 insertions(+), 27 deletions(-) diff --git a/nixos/lib/make-iso9660-image.nix b/nixos/lib/make-iso9660-image.nix index 21c9cca316d..75be70dbcb2 100644 --- a/nixos/lib/make-iso9660-image.nix +++ b/nixos/lib/make-iso9660-image.nix @@ -39,7 +39,6 @@ , # The volume ID. volumeID ? "" - }: assert bootable -> bootImage != ""; @@ -47,7 +46,7 @@ assert efiBootable -> efiBootImage != ""; assert usbBootable -> isohybridMbrImage != ""; stdenv.mkDerivation { - name = "iso9660-image"; + name = isoName; builder = ./make-iso9660-image.sh; buildInputs = [perl xorriso syslinux]; diff --git a/nixos/lib/make-iso9660-image.sh b/nixos/lib/make-iso9660-image.sh index 31bfe23d3d4..c623436f6c5 100644 --- a/nixos/lib/make-iso9660-image.sh +++ b/nixos/lib/make-iso9660-image.sh @@ -133,3 +133,4 @@ fi mkdir -p $out/nix-support echo $system > $out/nix-support/system +echo "file iso $out/iso/$isoName" >> $out/nix-support/hydra-build-products diff --git a/nixos/release.nix b/nixos/release.nix index b697ba4c503..9d577a24b9e 100644 --- a/nixos/release.nix +++ b/nixos/release.nix @@ -43,34 +43,14 @@ let makeIso = - { module, type, description ? type, maintainers ? ["eelco"], system }: + { module, type, maintainers ? ["eelco"], system }: with import nixpkgs { inherit system; }; - let - - config = (import lib/eval-config.nix { - inherit system; - modules = [ module versionModule { isoImage.isoBaseName = "nixos-${type}"; } ]; - }).config; - - iso = config.system.build.isoImage; - - in - # Declare the ISO as a build product so that it shows up in Hydra. - hydraJob (runCommand "nixos-iso-${config.system.nixosVersion}" - { meta = { - description = "NixOS installation CD (${description}) - ISO image for ${system}"; - maintainers = map (x: lib.maintainers.${x}) maintainers; - }; - inherit iso; - passthru = { inherit config; }; - preferLocalBuild = true; - } - '' - mkdir -p $out/nix-support - echo "file iso" $iso/iso/*.iso* >> $out/nix-support/hydra-build-products - ''); # */ + hydraJob ((import lib/eval-config.nix { + inherit system; + modules = [ module versionModule { isoImage.isoBaseName = "nixos-${type}"; } ]; + }).config.system.build.isoImage); makeSystemTarball = From daa093bf3c790fe89623f33f7d67ce66a102d50c Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 15 Mar 2016 13:57:01 +0100 Subject: [PATCH 067/678] Build most ISOs/OVAs for x86_64-linux only Probably not many people care about i686-linux any more, but building all these images is fairly expensive (e.g. in the worst case, every Nixpkgs commit would trigger a few gigabytes of uploads to S3). --- nixos/release.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/release.nix b/nixos/release.nix index 9d577a24b9e..d190733d5c1 100644 --- a/nixos/release.nix +++ b/nixos/release.nix @@ -110,7 +110,7 @@ in rec { inherit system; }); - iso_graphical = forAllSystems (system: makeIso { + iso_graphical = genAttrs [ "x86_64-linux" ] (system: makeIso { module = ./modules/installer/cd-dvd/installation-cd-graphical-kde.nix; type = "graphical"; inherit system; @@ -118,7 +118,7 @@ in rec { # A variant with a more recent (but possibly less stable) kernel # that might support more hardware. - iso_minimal_new_kernel = forAllSystems (system: makeIso { + iso_minimal_new_kernel = genAttrs [ "x86_64-linux" ] (system: makeIso { module = ./modules/installer/cd-dvd/installation-cd-minimal-new-kernel.nix; type = "minimal-new-kernel"; inherit system; @@ -126,7 +126,7 @@ in rec { # A bootable VirtualBox virtual appliance as an OVA file (i.e. packaged OVF). - ova = forAllSystems (system: + ova = genAttrs [ "x86_64-linux" ] (system: with import nixpkgs { inherit system; }; From 344f9672d0b1e5c4d2eb834ac98e3d6f13592e19 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Tue, 15 Mar 2016 10:34:10 -0400 Subject: [PATCH 068/678] oh-my-zsh: 2016-02-27 -> 2016-03-11 --- pkgs/shells/oh-my-zsh/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/shells/oh-my-zsh/default.nix b/pkgs/shells/oh-my-zsh/default.nix index 297489fd7fc..715c5ab767b 100644 --- a/pkgs/shells/oh-my-zsh/default.nix +++ b/pkgs/shells/oh-my-zsh/default.nix @@ -7,12 +7,12 @@ stdenv.mkDerivation rec { name = "oh-my-zsh-git-${version}"; - version = "2016-02-27"; + version = "2016-03-11"; src = fetchgit { url = "https://github.com/robbyrussell/oh-my-zsh"; - rev = "bd6dbd1d9b1fc8a523aaf588492eb3ed4113b49d"; - sha256 = "0bn3jijxjhrd00mc3biqs7jj6in3ivhr6d02mp4566i2rdp9x2d5"; + rev = "83cf8dc16f51babbb0193c5b97e568739c1f40de"; + sha256 = "0lxs7c89c7ib7a1rfsdpc30gxi2q35mapcv2q44rlclv26nikkjv"; }; phases = "installPhase"; From 55e71f45cc10094edac3f66fb11682d2c8b0fd39 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 15 Mar 2016 15:43:57 +0100 Subject: [PATCH 069/678] Fix NixOS tested job --- nixos/release-combined.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/release-combined.nix b/nixos/release-combined.nix index 958e587444d..53ef4564b5c 100644 --- a/nixos/release-combined.nix +++ b/nixos/release-combined.nix @@ -44,8 +44,8 @@ in rec { (all nixos.manual) (all nixos.iso_minimal) - (all nixos.iso_graphical) - (all nixos.ova) + nixos.iso_graphical.x86_64-linux + nixos.ova.x86_64-linux #(all nixos.tests.containers) (all nixos.tests.chromium.stable) From 3135af2511cd3dfa8e3874244c46054550c563e2 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 15 Mar 2016 16:06:09 +0100 Subject: [PATCH 070/678] NixOS release: Don't depend on chromium This is failing because it exceeds the hydra-queue-runner size limit. http://hydra.nixos.org/build/33303819 --- nixos/release-combined.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/release-combined.nix b/nixos/release-combined.nix index 53ef4564b5c..731dd36cdfd 100644 --- a/nixos/release-combined.nix +++ b/nixos/release-combined.nix @@ -48,7 +48,7 @@ in rec { nixos.ova.x86_64-linux #(all nixos.tests.containers) - (all nixos.tests.chromium.stable) + #(all nixos.tests.chromium.stable) (all nixos.tests.firefox) (all nixos.tests.firewall) nixos.tests.gnome3.x86_64-linux # FIXME: i686-linux From e99eeb4c3f9f2a9aecb06675353def10c4e77b3a Mon Sep 17 00:00:00 2001 From: Louis Taylor Date: Tue, 15 Mar 2016 15:41:00 +0000 Subject: [PATCH 071/678] zfs: 0.6.5.4 -> 0.6.5.5 --- pkgs/os-specific/linux/zfs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/zfs/default.nix b/pkgs/os-specific/linux/zfs/default.nix index 42da97a7a7b..d29a7560771 100644 --- a/pkgs/os-specific/linux/zfs/default.nix +++ b/pkgs/os-specific/linux/zfs/default.nix @@ -20,13 +20,13 @@ assert buildKernel -> kernel != null && spl != null; stdenv.mkDerivation rec { name = "zfs-${configFile}-${version}${optionalString buildKernel "-${kernel.version}"}"; - version = "0.6.5.4"; + version = "0.6.5.5"; src = fetchFromGitHub { owner = "zfsonlinux"; repo = "zfs"; rev = "zfs-${version}"; - sha256 = "10zf1kdgmdiaaa3zmz4sz5aj5ql6v24wcwixlxbwhwc51mr46k50"; + sha256 = "0np03p5zkx87a0a5rw629f9m4wp5gd01c1jkh5p7h63mmvaxfdda"; }; patches = [ ./nix-build.patch ]; From b250ac929075d4ea2b186046bf28e5519ca9faae Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 15 Mar 2016 17:40:22 +0100 Subject: [PATCH 072/678] Remove setting non-existent sysctl options (cherry picked from commit 1010ced00c9b65eb7099d10f2ad8502c093655e4) --- nixos/modules/tasks/network-interfaces.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/nixos/modules/tasks/network-interfaces.nix b/nixos/modules/tasks/network-interfaces.nix index 503d3813611..0528012adfd 100644 --- a/nixos/modules/tasks/network-interfaces.nix +++ b/nixos/modules/tasks/network-interfaces.nix @@ -882,10 +882,8 @@ in optionalString hasBonds "options bonding max_bonds=0"; boot.kernel.sysctl = { - "net.net.ipv4.conf.all.promote_secondaries" = true; "net.ipv6.conf.all.disable_ipv6" = mkDefault (!cfg.enableIPv6); "net.ipv6.conf.default.disable_ipv6" = mkDefault (!cfg.enableIPv6); - "net.ipv4.conf.all_forwarding" = mkDefault (any (i: i.proxyARP) interfaces); "net.ipv6.conf.all.forwarding" = mkDefault (any (i: i.proxyARP) interfaces); } // listToAttrs (concatLists (flip map (filter (i: i.proxyARP) interfaces) (i: flip map [ "4" "6" ] (v: nameValuePair "net.ipv${v}.conf.${i.name}.proxy_arp" true)) From 9488fee8697bf1faf00bd275e68593b15489b8ca Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 15 Mar 2016 02:35:00 +0300 Subject: [PATCH 073/678] buildFHSEnv: add standard paths for compilers --- pkgs/build-support/build-fhs-chrootenv/env.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/build-support/build-fhs-chrootenv/env.nix b/pkgs/build-support/build-fhs-chrootenv/env.nix index d28773f00ac..8c45c9c9036 100644 --- a/pkgs/build-support/build-fhs-chrootenv/env.nix +++ b/pkgs/build-support/build-fhs-chrootenv/env.nix @@ -57,6 +57,11 @@ let export LOCALE_ARCHIVE='/usr/lib/locale/locale-archive' export LD_LIBRARY_PATH='/run/opengl-driver/lib:/run/opengl-driver-32/lib:/usr/lib:/usr/lib32' export PATH='/var/setuid-wrappers:/usr/bin:/usr/sbin' + + # Force compilers to look in default search paths + export NIX_CFLAGS_COMPILE='-idirafter /usr/include' + export NIX_LDFLAGS_BEFORE='-L/usr/lib -L/usr/lib32' + ${profile} ''; From 33825a29f4ed7b332fae30b887abae97bd864224 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Tue, 15 Mar 2016 18:16:19 +0100 Subject: [PATCH 074/678] farbfeld: 1 -> 2 --- pkgs/development/libraries/farbfeld/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/farbfeld/default.nix b/pkgs/development/libraries/farbfeld/default.nix index 2301dbac368..d14de1938b9 100644 --- a/pkgs/development/libraries/farbfeld/default.nix +++ b/pkgs/development/libraries/farbfeld/default.nix @@ -2,12 +2,12 @@ stdenv.mkDerivation rec { name = "farbfeld-${version}"; - version = "1"; + version = "2"; src = fetchgit { url = "http://git.suckless.org/farbfeld"; rev = "refs/tags/${version}"; - sha256 = "1mgk46lpqqvn4qx37r0jxz2jjsd4nvl6zjl04y4bfyzf4wkkmmln"; + sha256 = "1rj6pqn50v6r7l3j7m872fgynxsh22zx863jg0jzmb4x6wx2m2qv"; }; buildInputs = [ libpng libjpeg ]; From 0146e01e5867ef9346f820ea46e76a1aec2647c9 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Tue, 15 Mar 2016 18:16:35 +0100 Subject: [PATCH 075/678] tmsu: 0.6.0 -> 0.6.1 --- pkgs/tools/filesystems/tmsu/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/filesystems/tmsu/default.nix b/pkgs/tools/filesystems/tmsu/default.nix index 218a2fe0e05..5ebd567b8ba 100644 --- a/pkgs/tools/filesystems/tmsu/default.nix +++ b/pkgs/tools/filesystems/tmsu/default.nix @@ -2,7 +2,7 @@ stdenv.mkDerivation rec { name = "tmsu-${version}"; - version = "0.6.0"; + version = "0.6.1"; go-sqlite3 = fetchgit { url = "git://github.com/mattn/go-sqlite3"; @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { owner = "oniony"; repo = "tmsu"; rev = "v${version}"; - sha256 = "1fqq8cj1awwhb076s88l489kj664ndc343gqi8c21yp9wj6fzpnq"; + sha256 = "08mz08pw59zaljp7dcndklnfdbn36ld27capivq3ifbq96nnqdf3"; }; buildInputs = [ go fuse ]; From 56f7fb9a04b03a1591cc2706d701863a80f9c4d7 Mon Sep 17 00:00:00 2001 From: "Ricardo M. Correia" Date: Mon, 14 Mar 2016 17:47:43 +0100 Subject: [PATCH 076/678] spl: 0.6.5.4 -> 0.6.5.5 --- pkgs/os-specific/linux/spl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/spl/default.nix b/pkgs/os-specific/linux/spl/default.nix index 959523ec597..772ff0b6009 100644 --- a/pkgs/os-specific/linux/spl/default.nix +++ b/pkgs/os-specific/linux/spl/default.nix @@ -17,13 +17,13 @@ assert buildKernel -> kernel != null; stdenv.mkDerivation rec { name = "spl-${configFile}-${version}${optionalString buildKernel "-${kernel.version}"}"; - version = "0.6.5.4"; + version = "0.6.5.5"; src = fetchFromGitHub { owner = "zfsonlinux"; repo = "spl"; rev = "spl-${version}"; - sha256 = "0k80xvl15ahbs0mylfl2bd5widxhngpf7dl6zq46s21wk0795jl4"; + sha256 = "1f49qv648klg2sn1v1wzwd6ls1njjj0hrazz7msd74ayhwm0zcw7"; }; patches = [ ./const.patch ./install_prefix.patch ]; From ba3153ee086ccc3a372b18bdea9b0cb1738a11a4 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Tue, 15 Mar 2016 18:56:20 +0100 Subject: [PATCH 077/678] calibre: 2.52.0 -> 2.53.0 --- pkgs/applications/misc/calibre/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/calibre/default.nix b/pkgs/applications/misc/calibre/default.nix index 5d936421d9e..e66f260af96 100644 --- a/pkgs/applications/misc/calibre/default.nix +++ b/pkgs/applications/misc/calibre/default.nix @@ -5,12 +5,12 @@ }: stdenv.mkDerivation rec { - version = "2.52.0"; + version = "2.53.0"; name = "calibre-${version}"; src = fetchurl { url = "http://download.calibre-ebook.com/${version}/${name}.tar.xz"; - sha256 = "1la114vhkm73iv0rrzwws28ydiszl58q5y9d6aafn5sh16ph2aws"; + sha256 = "0rvfh39a6j5r398p6xzrbzvhxapm1iyhc0d46xk5fwa52kscadhz"; }; inherit python; From 851af5e8886dbedf3095006f9bfa5764db53b189 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 15 Mar 2016 21:43:39 +0300 Subject: [PATCH 078/678] cups service: fix gutenprint update when there's no printers --- nixos/modules/services/printing/cupsd.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nixos/modules/services/printing/cupsd.nix b/nixos/modules/services/printing/cupsd.nix index 9fb854e50cf..9e122dc7bea 100644 --- a/nixos/modules/services/printing/cupsd.nix +++ b/nixos/modules/services/printing/cupsd.nix @@ -311,7 +311,9 @@ in [ ! -e "/var/lib/cups/$i" ] && ln -s "${rootdir}/etc/cups/$i" "/var/lib/cups/$i" done ${optionalString cfg.gutenprint '' - ${gutenprint}/bin/cups-genppdupdate -p /etc/cups/ppd + if [ -d /var/lib/cups/ppd ]; then + ${gutenprint}/bin/cups-genppdupdate -p /var/lib/cups/ppd + fi ''} ''; }; From e2c426f719d2279eb21352bda0f61871a2184a74 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 15 Mar 2016 21:18:35 +0100 Subject: [PATCH 079/678] b2: git-26.01.2016 -> 0.4.4 Also fix the dependency on Python. --- pkgs/tools/backup/b2/default.nix | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/pkgs/tools/backup/b2/default.nix b/pkgs/tools/backup/b2/default.nix index 15a48b76579..5bdeea95321 100644 --- a/pkgs/tools/backup/b2/default.nix +++ b/pkgs/tools/backup/b2/default.nix @@ -1,24 +1,17 @@ { fetchFromGitHub, pythonPackages, stdenv }: -stdenv.mkDerivation rec { +pythonPackages.buildPythonPackage rec { name = "b2-${version}"; - version = "git-26.01.2016"; + version = "0.4.4"; src = fetchFromGitHub { owner = "Backblaze"; repo = "B2_Command_Line_Tool"; - rev = "b3f06fd53eb1c9a07740b962284753cba413a7b8"; - sha256 = "0kn2lkh8hp6g8q88glyz03z1r8a47pqm91dc5w083i334swqkjp2"; + rev = "v${version}"; + sha256 = "1g9j5s69w6n70nb18rvx3gm9f4gi1vis23ib8rn2v1khv6z2acqp"; }; - buildInputs = [ pythonPackages.wrapPython ]; - - installPhase = '' - mkdir -p $out/bin - cp b2 $out/bin - ''; - - postInstall = "wrapPythonPrograms"; + pythonPath = [ pythonPackages.six ]; meta = with stdenv.lib; { homepage = https://github.com/Backblaze/B2_Command_Line_Tool; From d53c4be32e778cfe6cbd4304f5e10dd619747294 Mon Sep 17 00:00:00 2001 From: Allan Espinosa Date: Tue, 15 Mar 2016 15:19:48 -0500 Subject: [PATCH 080/678] jenkins: 1.652 -> 1.653 --- .../tools/continuous-integration/jenkins/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/continuous-integration/jenkins/default.nix b/pkgs/development/tools/continuous-integration/jenkins/default.nix index dc885f09b5b..8cde6e1e365 100644 --- a/pkgs/development/tools/continuous-integration/jenkins/default.nix +++ b/pkgs/development/tools/continuous-integration/jenkins/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "jenkins-${version}"; - version = "1.652"; + version = "1.653"; src = fetchurl { url = "http://mirrors.jenkins-ci.org/war/${version}/jenkins.war"; - sha256 = "09xcsgfhxshfqgg0aighby8dx1qgzh7fkfkynyv5xg1m216z21jx"; + sha256 = "1z24vddr8v64g4x3s7qx5n30sjcm2xpz7mn23zlc0n8lhnmkzqs8"; }; meta = with stdenv.lib; { description = "An extendable open source continuous integration server"; From c7e448818f01f733ac8cd6c49532002035c0c93c Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 15 Mar 2016 18:57:16 -0400 Subject: [PATCH 081/678] pythonPackages.sphinxcontrib_plantuml: 0.5 -> 0.7, fix build --- pkgs/top-level/python-packages.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4ef8ba4409d..9b510c886b6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -20362,21 +20362,22 @@ in modules // { sphinxcontrib_plantuml = buildPythonPackage (rec { - name = "sphinxcontrib-plantuml-0.5"; + name = "sphinxcontrib-plantuml-0.7"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/s/sphinxcontrib-plantuml/${name}.tar.gz"; - sha256 = "654a1c206156634398ffdc87c481c67777610a9311c6677d280963cf28813400"; + sha256 = "011yprqf41dcm1824zgk2w8vi9115286pmli6apwhlrsxc6b6cwv"; }; + # No tests included. + doCheck = false; + propagatedBuildInputs = with self; [sphinx plantuml]; meta = { description = "Provides a Sphinx domain for embedding UML diagram with PlantUML"; - homepage = http://bitbucket.org/birkenfeld/sphinx-contrib; - - license = "BSD"; + license = with licenses; [ bsd2 ]; }; }); From 59e03ae85e17df5c9946083f8fbe06387306fad9 Mon Sep 17 00:00:00 2001 From: "Rommel M. Martinez" Date: Wed, 16 Mar 2016 08:14:28 +0800 Subject: [PATCH 082/678] emem: 0.2.12 -> 0.2.13 --- pkgs/applications/misc/emem/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/misc/emem/default.nix b/pkgs/applications/misc/emem/default.nix index 3d8e4742fa6..5e40a329122 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.12"; + version = "0.2.13"; name = "${pname}-${version}"; inherit jdk; src = fetchurl { url = "https://github.com/ebzzry/${pname}/releases/download/v${version}/${pname}.jar"; - sha256 = "1ynn72n9pw9zk29c9q2zybxjg8dniilp05vghrc9vnslyi8ml90d"; + sha256 = "0c5c488jsh15ysdmqkq0qmdvz41y12phlgjpj8jf0dzh8jc35p80"; }; buildInputs = [ ]; @@ -22,14 +22,14 @@ stdenv.mkDerivation rec { ''; installPhase = '' - cp $src $out/share/java + cp $src $out/share/java/${pname}.jar - cat > $out/bin/emem < $out/bin/${pname} < Date: Tue, 15 Mar 2016 21:44:44 -0400 Subject: [PATCH 083/678] meta: Add sheenobu as maintainer for relevant packages. freeradius: add sheenobu as maintainer sipsak: add sheenobu as maintainer --- pkgs/servers/freeradius/default.nix | 1 + pkgs/tools/networking/sipsak/default.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/pkgs/servers/freeradius/default.nix b/pkgs/servers/freeradius/default.nix index 818cc30b054..a959555684e 100644 --- a/pkgs/servers/freeradius/default.nix +++ b/pkgs/servers/freeradius/default.nix @@ -33,6 +33,7 @@ stdenv.mkDerivation rec { homepage = http://freeradius.org/; description = "A modular, high performance free RADIUS suite"; license = stdenv.lib.licenses.gpl2; + maintainers = with maintainers; [ sheenobu ]; }; } diff --git a/pkgs/tools/networking/sipsak/default.nix b/pkgs/tools/networking/sipsak/default.nix index 941e1d809ba..7242417bf2b 100644 --- a/pkgs/tools/networking/sipsak/default.nix +++ b/pkgs/tools/networking/sipsak/default.nix @@ -19,6 +19,7 @@ stdenv.mkDerivation rec { homepage = https://github.com/sipwise/sipsak; description = "SIP Swiss army knife"; license = stdenv.lib.licenses.gpl2; + maintainers = with maintainers; [ sheenobu ]; }; } From 6e6f2b5e41d18cb6df8e7928eeba6cb48331c480 Mon Sep 17 00:00:00 2001 From: Sheena Artrip Date: Wed, 16 Mar 2016 03:15:55 -0400 Subject: [PATCH 084/678] freeradius: optional dependency support, pcap and cap enabled --- pkgs/servers/freeradius/default.nix | 63 ++++++++++++++++++++++++----- 1 file changed, 52 insertions(+), 11 deletions(-) diff --git a/pkgs/servers/freeradius/default.nix b/pkgs/servers/freeradius/default.nix index a959555684e..15bda5d3090 100644 --- a/pkgs/servers/freeradius/default.nix +++ b/pkgs/servers/freeradius/default.nix @@ -1,28 +1,69 @@ -{ stdenv, fetchurl, autoreconfHook, talloc, openssl ? null }: +{ stdenv, fetchurl, autoreconfHook, talloc +, openssl +, linkOpenssl? true +, openldap +, withLdap ? false +, sqlite +, withSqlite ? false +, libpcap +, withPcap ? true +, libcap +, withCap ? true +, libmemcached +, withMemcached ? false +, hiredis +, withRedis ? false +, libmysql +, withMysql ? false +, withJson ? false +, libyubikey +, withYubikey ? false +, collectd +, withCollectd ? false +}: -## TODO: include ldap optionally -## TODO: include sqlite optionally -## TODO: include mysql optionally +assert withSqlite -> sqlite != null; +assert withLdap -> openldap != null; +assert withPcap -> libpcap != null; +assert withCap -> libcap != null; +assert withMemcached -> libmemcached != null; +assert withRedis -> hiredis != null; +assert withMysql -> libmysql != null; +assert withYubikey -> libyubikey != null; +assert withCollectd -> collectd != null; +## TODO: include windbind optionally (via samba?) +## TODO: include oracle optionally +## TODO: include ykclient optionally + +with stdenv.lib; stdenv.mkDerivation rec { name = "freeradius-${version}"; version = "3.0.11"; - buildInputs = [ - autoreconfHook - talloc - openssl - ]; + buildInputs = [ autoreconfHook openssl talloc ] + ++ optional withLdap [ openldap ] + ++ optional withSqlite [ sqlite ] + ++ optional withPcap [ libpcap ] + ++ optional withCap [ libcap ] + ++ optional withMemcached [ libmemcached ] + ++ optional withRedis [ hiredis ] + ++ optional withMysql [ libmysql ] + ++ optional withJson [ pkgs."json-c" ] + ++ optional withYubikey [ libyubikey ] + ++ optional withCollectd [ collectd ]; + + # NOTE: are the --with-{lib}-lib-dir and --with-{lib}-include-dir necessary with buildInputs ? configureFlags = [ "--sysconfdir=/etc" "--localstatedir=/var" - ]; + ] ++ optional (!linkOpenssl) "--with-openssl=no"; installFlags = [ "sysconfdir=\${out}/etc" "localstatedir=\${TMPDIR}" - ]; + ]; src = fetchurl { url = "ftp://ftp.freeradius.org/pub/freeradius/freeradius-server-${version}.tar.gz"; From b14a6f1f982265aa5a4ea0748c0cb9d8ba04a6cf Mon Sep 17 00:00:00 2001 From: Sergey Mironov Date: Wed, 16 Mar 2016 10:37:25 +0300 Subject: [PATCH 085/678] haskell-modules: fix conduit runtime dependency --- pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix index 81c060a4c3e..f2254cdd14a 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix @@ -136,6 +136,7 @@ self: super: { # Needs void on pre 7.10.x compilers. conduit = addBuildDepend super.conduit self.void; + conduit_1_2_5 = addBuildDepend super.conduit_1_2_5 self.void; # Needs nats on pre 7.10.x compilers. semigroups = addBuildDepend super.semigroups self.nats; From f7446f69af341083db8db1bd5d1fca19465eeb76 Mon Sep 17 00:00:00 2001 From: Joachim Schiele Date: Wed, 16 Mar 2016 09:16:31 +0100 Subject: [PATCH 086/678] stardict-3.0.3: removed abandoned codebase; use goldendict instead --- .../stardict-3.0.3-compositelookup_cpp.patch | 19 -------- .../stardict-3.0.3-correct-glib-include.patch | 13 ------ .../misc/stardict/stardict-3.0.3-entry.patch | 20 --------- .../misc/stardict/stardict-3.0.3-gcc46.patch | 13 ------ .../stardict/stardict-3.0.3-overflow.patch | 26 ----------- .../stardict-3.0.3-zlib-1.2.5.2.patch | 39 ---------------- pkgs/applications/misc/stardict/stardict.nix | 45 ------------------- 7 files changed, 175 deletions(-) delete mode 100644 pkgs/applications/misc/stardict/stardict-3.0.3-compositelookup_cpp.patch delete mode 100644 pkgs/applications/misc/stardict/stardict-3.0.3-correct-glib-include.patch delete mode 100644 pkgs/applications/misc/stardict/stardict-3.0.3-entry.patch delete mode 100644 pkgs/applications/misc/stardict/stardict-3.0.3-gcc46.patch delete mode 100644 pkgs/applications/misc/stardict/stardict-3.0.3-overflow.patch delete mode 100644 pkgs/applications/misc/stardict/stardict-3.0.3-zlib-1.2.5.2.patch delete mode 100644 pkgs/applications/misc/stardict/stardict.nix diff --git a/pkgs/applications/misc/stardict/stardict-3.0.3-compositelookup_cpp.patch b/pkgs/applications/misc/stardict/stardict-3.0.3-compositelookup_cpp.patch deleted file mode 100644 index 86825555d9c..00000000000 --- a/pkgs/applications/misc/stardict/stardict-3.0.3-compositelookup_cpp.patch +++ /dev/null @@ -1,19 +0,0 @@ -This patch is from OpenSUSE .src.rpm for the following crash on startup: - -ERROR:compositelookup.cpp:53:void CompositeLookup::send_net_dict_request(const string&, const string&): assertion failed: (NetDictRequests.end() == std::find(NetDictRequests.begin(), NetDictRequests.end(), request)) - ---- dict/src/lib/compositelookup.cpp -+++ dict/src/lib/compositelookup.cpp -@@ -50,8 +50,10 @@ - void CompositeLookup::send_net_dict_request(const std::string& dict_id, const std::string& key) - { - NetDictRequest request(dict_id, key); -- g_assert(NetDictRequests.end() == std::find(NetDictRequests.begin(), NetDictRequests.end(), request)); -- NetDictRequests.push_back(request); -+ if(NetDictRequests.end() == std::find(NetDictRequests.begin(), NetDictRequests.end(), request)) -+ { -+ NetDictRequests.push_back(request); -+ } - } - - /* returns true if got expected response */ diff --git a/pkgs/applications/misc/stardict/stardict-3.0.3-correct-glib-include.patch b/pkgs/applications/misc/stardict/stardict-3.0.3-correct-glib-include.patch deleted file mode 100644 index fd89243938e..00000000000 --- a/pkgs/applications/misc/stardict/stardict-3.0.3-correct-glib-include.patch +++ /dev/null @@ -1,13 +0,0 @@ -http://bugs.gentoo.org/396219 - ---- dict/src/tomboykeybinder.h -+++ dict/src/tomboykeybinder.h -@@ -21,7 +21,7 @@ - #ifndef __TOMBOY_KEY_BINDER_H__ - #define __TOMBOY_KEY_BINDER_H__ - --#include -+#include - - G_BEGIN_DECLS - diff --git a/pkgs/applications/misc/stardict/stardict-3.0.3-entry.patch b/pkgs/applications/misc/stardict/stardict-3.0.3-entry.patch deleted file mode 100644 index 38182b0c8e0..00000000000 --- a/pkgs/applications/misc/stardict/stardict-3.0.3-entry.patch +++ /dev/null @@ -1,20 +0,0 @@ -warning: key "Encoding" in group "Desktop Entry" is deprecated -error: value "stardict.png" for key "Icon" in group "Desktop Entry" is an icon name with an extension, but there should be no extension -error: value "Dictionary" in key "Categories" in group "Desktop Entry" requires another category to be present among the following categories: Office;TextTools - ---- dict/data/stardict.desktop.in -+++ dict/data/stardict.desktop.in -@@ -1,11 +1,10 @@ - [Desktop Entry] --Encoding=UTF-8 - _Name=StarDict - _Comment=Lookup words - Exec=stardict - Terminal=false - Type=Application --Icon=stardict.png -+Icon=stardict - StartupNotify=true --Categories=Utility;Dictionary; -+Categories=Utility;Office;TextTools;Dictionary; - X-GNOME-DocPath=stardict/stardict.xml diff --git a/pkgs/applications/misc/stardict/stardict-3.0.3-gcc46.patch b/pkgs/applications/misc/stardict/stardict-3.0.3-gcc46.patch deleted file mode 100644 index d85bc0de5ce..00000000000 --- a/pkgs/applications/misc/stardict/stardict-3.0.3-gcc46.patch +++ /dev/null @@ -1,13 +0,0 @@ -http://bugs.gentoo.org/362299 - ---- dict/stardict-plugins/stardict-wordnet-plugin/scene.h -+++ dict/stardict-plugins/stardict-wordnet-plugin/scene.h -@@ -25,6 +25,8 @@ - #ifndef __PHYSICS_H__ - #define __PHYSICS_H__ - -+#include -+ - #include "partic.h" - #include "spring.h" - diff --git a/pkgs/applications/misc/stardict/stardict-3.0.3-overflow.patch b/pkgs/applications/misc/stardict/stardict-3.0.3-overflow.patch deleted file mode 100644 index 48249010570..00000000000 --- a/pkgs/applications/misc/stardict/stardict-3.0.3-overflow.patch +++ /dev/null @@ -1,26 +0,0 @@ -This patch is stardict-tools-3.0.3-destbufferoverflow.patch from OpenSUSE .src.rpm for: - -warning: call to ‘__fgets_chk_warn’ declared with attribute warning: fgets called with bigger size than length of destination buffer [enabled by default] - ---- tools/src/myspell2dic.c -+++ tools/src/myspell2dic.c -@@ -132,7 +132,7 @@ if (argc<3) - - fprintf(stderr, "Enter grammar language [Spanish]: "); - fflush(stderr); --fgets(lang, 100, stdin); -+fgets(lang, 50, stdin); - if ((p=strchr(lang, '\n'))!=NULL) *p=0; - if (*lang==0) strcpy(lang, "Spanish"); - ---- tools/src/ooo2dict.c -+++ tools/src/ooo2dict.c -@@ -71,7 +71,7 @@ current2=malloc(10000); - - fprintf(stderr, "Enter thesaurus language [WordNet_English]: "); - fflush(stderr); --fgets(lang, 100, stdin); -+fgets(lang, 50, stdin); - if ((p=strchr(lang, '\n'))!=NULL) *p=0; - if (*lang==0) strcpy(lang, "WordNet_English"); - F=fopen((argc>1)? argv[1]: "/usr/share/myspell/dicts/th_en_US_v2.dat", "rt"); diff --git a/pkgs/applications/misc/stardict/stardict-3.0.3-zlib-1.2.5.2.patch b/pkgs/applications/misc/stardict/stardict-3.0.3-zlib-1.2.5.2.patch deleted file mode 100644 index 6a320bd4a9f..00000000000 --- a/pkgs/applications/misc/stardict/stardict-3.0.3-zlib-1.2.5.2.patch +++ /dev/null @@ -1,39 +0,0 @@ -http://bugs.gentoo.org/401887 - -diff --git a/lib/src/libcommon.cpp b/lib/src/libcommon.cpp -index 16770a3..a4299e7 100644 ---- a/lib/src/libcommon.cpp -+++ b/lib/src/libcommon.cpp -@@ -614,7 +614,7 @@ int unpack_zlib(const char* arch_file_name, const char* out_file_name) - return EXIT_FAILURE; - } - while(true) { -- len = gzread(get_impl(in), buf, buffer_size); -+ len = gzread((gzFile)get_impl(in), buf, buffer_size); - if(len < 0) { - g_critical(read_file_err, arch_file_name, ""); - return EXIT_FAILURE; -@@ -871,3 +871,8 @@ int remove_recursive(const std::string& path) - return res; - } - } -+ -+int gzclose_compat(void * file) -+{ -+ return gzclose ((gzFile)file); -+} -diff --git a/lib/src/libcommon.h b/lib/src/libcommon.h -index 10f13b4..bdcbf2f 100644 ---- a/lib/src/libcommon.h -+++ b/lib/src/libcommon.h -@@ -187,8 +187,9 @@ namespace clib { - typedef ResourceWrapper File; - } - -+extern int gzclose_compat(void * file); - namespace zip { --typedef ResourceWrapper gzFile; -+typedef ResourceWrapper gzFile; - } - - /* Create a new temporary file. Return file name in file name encoding. diff --git a/pkgs/applications/misc/stardict/stardict.nix b/pkgs/applications/misc/stardict/stardict.nix deleted file mode 100644 index 16ca7957c12..00000000000 --- a/pkgs/applications/misc/stardict/stardict.nix +++ /dev/null @@ -1,45 +0,0 @@ -{stdenv, fetchurl, pkgconfig, gtk, glib, zlib, libxml2, intltool, gnome_doc_utils, libgnomeui, scrollkeeper, mysql, pcre, which, libxslt}: -stdenv.mkDerivation rec { - name= "stardict-3.0.3"; - - src = fetchurl { - url = "http://stardict-3.googlecode.com/files/${name}.tar.bz2"; - sha256 = "0wrb8xqy6x9piwrn0vw5alivr9h3b70xlf51qy0jpl6d7mdhm8cv"; - }; - - buildInputs = [ pkgconfig gtk glib zlib libxml2 intltool gnome_doc_utils libgnomeui scrollkeeper mysql.lib pcre which libxslt]; - - postPatch = '' - # mysql hacks: we need dynamic linking as there is no libmysqlclient.a - substituteInPlace tools/configure --replace '/usr/local/include/mysql' '${mysql.lib}/include/mysql/' - substituteInPlace tools/configure --replace 'AC_FIND_FILE([libmysqlclient.a]' 'AC_FIND_FILE([libmysqlclient.so]' - substituteInPlace tools/configure --replace '/usr/local/lib/mysql' '${mysql.lib}/lib/mysql/' - substituteInPlace tools/configure --replace 'for y in libmysqlclient.a' 'for y in libmysqlclient.so' - substituteInPlace tools/configure --replace 'libmysqlclient.a' 'libmysqlclient.so' - - # a list of p0 patches from gentoo devs - patch -p0 < ${./stardict-3.0.3-overflow.patch} - patch -p0 < ${./stardict-3.0.3-gcc46.patch} - patch -p0 < ${./stardict-3.0.3-compositelookup_cpp.patch} - patch -p0 < ${./stardict-3.0.3-correct-glib-include.patch} - patch -p0 < ${./stardict-3.0.3-entry.patch} - - # disable the xsltproc internet query - substituteInPlace dict/help/Makefile.am --replace 'xsltproc -o' 'xsltproc --nonet -o' - substituteInPlace dict/help/Makefile.in --replace 'xsltproc -o' 'xsltproc --nonet -o' - ''; - - # another gentoo patch: a p1 patch - patches = [ ./stardict-3.0.3-zlib-1.2.5.2.patch ]; - - configurePhase = '' - ./configure --disable-spell --disable-gucharmap --disable-festival --disable-espeak --disable-scrollkeeper --prefix=$out - ''; - - meta = { - description = "An international dictionary supporting fuzzy and glob style matching"; - license = stdenv.lib.licenses.lgpl3; - maintainers = with stdenv.lib.maintainers; [qknight]; - broken = true; - }; -} From d0b8080062405665157865c0213572a85411082b Mon Sep 17 00:00:00 2001 From: Nathan Zadoks Date: Wed, 16 Mar 2016 09:46:05 +0100 Subject: [PATCH 087/678] .github/PULL_REQUEST_TEMPLATE.md: use individual checkboxes for tested OSes --- .github/PULL_REQUEST_TEMPLATE.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 6ef9a4d21e8..aac1650ae7a 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,7 +1,10 @@ ###### Things done: - [ ] Tested using sandboxing (`nix-build --option build-use-chroot true` or [nix.useChroot](http://nixos.org/nixos/manual/options.html#opt-nix.useChroot) on NixOS) -- [ ] Built on platform(s): NixOS / OSX / Linux +- Built on platform(s) + - [ ] NixOS + - [ ] OS X + - [ ] Linux - [ ] Tested compilation of all pkgs that depend on this change using `nix-shell -p nox --run "nox-review wip"` - [ ] Tested execution of all binary files (usually in `./result/bin/`) - [ ] Fits [CONTRIBUTING.md](https://github.com/NixOS/nixpkgs/blob/master/.github/CONTRIBUTING.md). From 9be0c7d46347f387b4f6f929aea1c4254f88e9f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Wed, 16 Mar 2016 10:00:52 +0100 Subject: [PATCH 088/678] firefox: disable optimization hack (i686-linux) It seems to build fine even without it, so the original reason doesn't hold anymore: https://github.com/NixOS/nixpkgs/commit/f4b5671b0d9e8904a4ad6b3fd85268 --- pkgs/applications/networking/browsers/firefox/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/browsers/firefox/default.nix b/pkgs/applications/networking/browsers/firefox/default.nix index 0ef3bc7f5da..e384196be46 100644 --- a/pkgs/applications/networking/browsers/firefox/default.nix +++ b/pkgs/applications/networking/browsers/firefox/default.nix @@ -73,7 +73,7 @@ common = { pname, version, sha256 }: stdenv.mkDerivation rec { ++ lib.optional enableGTK3 "--enable-default-toolkit=cairo-gtk3" ++ (if debugBuild then [ "--enable-debug" "--enable-profiling" ] else [ "--disable-debug" "--enable-release" - "--enable-optimize${lib.optionalString (stdenv.system == "i686-linux") "=-O1"}" + "--enable-optimize" "--enable-strip" ]) ++ lib.optional enableOfficialBranding "--enable-official-branding"; From dca9630faeff72334c91abd9e213707990ab997a Mon Sep 17 00:00:00 2001 From: Joachim Schiele Date: Wed, 16 Mar 2016 11:49:25 +0100 Subject: [PATCH 089/678] stardict-3.0.3: now also removed forgotten all-packages.nix reference --- pkgs/top-level/all-packages.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2dda3229158..0d862c22e39 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3307,10 +3307,6 @@ let sqliteman = callPackage ../applications/misc/sqliteman { }; - stardict = callPackage ../applications/misc/stardict/stardict.nix { - inherit (gnome) libgnomeui scrollkeeper; - }; - stdman = callPackage ../data/documentation/stdman { }; storebrowse = callPackage ../tools/system/storebrowse { }; From a5247ee70597d6ae3bb1f9a403787f8285482dbb Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 16 Mar 2016 12:56:52 +0100 Subject: [PATCH 090/678] b2: Fix name attribute --- pkgs/tools/backup/b2/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/backup/b2/default.nix b/pkgs/tools/backup/b2/default.nix index 5bdeea95321..023b4af8398 100644 --- a/pkgs/tools/backup/b2/default.nix +++ b/pkgs/tools/backup/b2/default.nix @@ -2,6 +2,7 @@ pythonPackages.buildPythonPackage rec { name = "b2-${version}"; + namePrefix = ""; version = "0.4.4"; src = fetchFromGitHub { From 853d612c3f392c0e58b31a6a4ff855369abe305e Mon Sep 17 00:00:00 2001 From: Ambroz Bizjak Date: Wed, 16 Mar 2016 12:37:35 +0100 Subject: [PATCH 091/678] opencsg: Fix build related to missing libX11 linking the example. --- pkgs/development/libraries/opencsg/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/libraries/opencsg/default.nix b/pkgs/development/libraries/opencsg/default.nix index 89176c10843..7f9c3803896 100644 --- a/pkgs/development/libraries/opencsg/default.nix +++ b/pkgs/development/libraries/opencsg/default.nix @@ -13,6 +13,10 @@ stdenv.mkDerivation rec { doCheck = false; + preConfigure = '' + sed -i 's/^\(LIBS *=.*\)$/\1 -lX11/' example/Makefile + ''; + installPhase = '' mkdir -pv "$out/"{bin,share/doc/opencsg} From e938fbbd1072f8249d9c05a35b014174a4984f94 Mon Sep 17 00:00:00 2001 From: Ambroz Bizjak Date: Wed, 16 Mar 2016 12:58:57 +0100 Subject: [PATCH 092/678] wxPython: Fix runtime error due to library dependencies not in RUNPATH. I think what's happening is that the linker automatically adds DT_NEEDED dependencies to some libraries because it finds these libraries are being used directly, but because they're not linked explicitly with -lflags, the gcc wrapper does not add them to RUNPATH. --- pkgs/development/python-modules/wxPython/generic.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/wxPython/generic.nix b/pkgs/development/python-modules/wxPython/generic.nix index 3151dbcfac3..16c7c126318 100644 --- a/pkgs/development/python-modules/wxPython/generic.nix +++ b/pkgs/development/python-modules/wxPython/generic.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, pkgconfig, python, isPy3k, isPyPy, wxGTK, openglSupport ? true, pyopengl -, version, sha256, wrapPython, setuptools, ... +, version, sha256, wrapPython, setuptools, libX11, ... }: assert wxGTK.unicode; @@ -17,9 +17,11 @@ stdenv.mkDerivation rec { }; pythonPath = [ python setuptools ]; - buildInputs = [ python setuptools pkgconfig wxGTK (wxGTK.gtk) wrapPython ] ++ stdenv.lib.optional openglSupport pyopengl; + buildInputs = [ python setuptools pkgconfig wxGTK (wxGTK.gtk) wrapPython libX11 ] ++ stdenv.lib.optional openglSupport pyopengl; preConfigure = "cd wxPython"; + NIX_LDFLAGS = "-lX11 -lgdk-x11-2.0"; + installPhase = '' ${python.interpreter} setup.py install WXPORT=gtk2 NO_HEADERS=1 BUILD_GLCANVAS=${if openglSupport then "1" else "0"} UNICODE=1 --prefix=$out wrapPythonPrograms From 929cc074b03cabf81de9a4429408232ef56103e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edward=20Tj=C3=B6rnhammar?= Date: Wed, 16 Mar 2016 13:37:01 +0100 Subject: [PATCH 093/678] Revert "zotero: patch firefox xpi loading" Since firefox{,-bin} 45 this patch isn't needed. This reverts commit a6d3b3f97ffe72f84be336aaee02b1be0a04c9dc. --- pkgs/applications/office/zotero/default.nix | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/pkgs/applications/office/zotero/default.nix b/pkgs/applications/office/zotero/default.nix index 5939478d695..d74e1ac4b7c 100644 --- a/pkgs/applications/office/zotero/default.nix +++ b/pkgs/applications/office/zotero/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, fetchpatch, bash, firefox, perl, unzipNLS, xorg }: +{ stdenv, fetchurl, bash, firefox, perl, unzipNLS, xorg }: let @@ -7,14 +7,6 @@ let sha256 = "02h2ja08v8as4fawj683rh5rmxsjf5d0qmvqa77i176nm20y5s7s"; }; - firefox' = stdenv.lib.overrideDerivation (firefox) (attrs: { - patches = [ (fetchpatch { - url = "https://hg.mozilla.org/releases/mozilla-beta/raw-rev/0558da46f20c"; - sha256 = "08ibp7hny78x8ywfvrh56z90kf8fjpf04mibdlrwkw4f1vgm3fc3"; - name = "fix-external-xpi-loader"; - }) ]; - }); - version = "4.0.28"; in @@ -29,9 +21,7 @@ stdenv.mkDerivation { nativeBuildInputs = [ perl unzipNLS ]; - inherit bash; - - firefox = firefox'; + inherit bash firefox; phases = "unpackPhase installPhase fixupPhase"; From 0f46200f268227e1388e5df7bd8bc9b908ac6fc5 Mon Sep 17 00:00:00 2001 From: Sander van der Burg Date: Wed, 16 Mar 2016 13:27:54 +0000 Subject: [PATCH 094/678] disnixos: bump to version 0.4.1 --- pkgs/tools/package-management/disnix/disnixos/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/package-management/disnix/disnixos/default.nix b/pkgs/tools/package-management/disnix/disnixos/default.nix index 0dd6d5e09b6..bc147257675 100644 --- a/pkgs/tools/package-management/disnix/disnixos/default.nix +++ b/pkgs/tools/package-management/disnix/disnixos/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, disnix, socat, pkgconfig, getopt }: stdenv.mkDerivation { - name = "disnixos-0.4"; + name = "disnixos-0.4.1"; src = fetchurl { - url = http://hydra.nixos.org/build/31143419/download/3/disnixos-0.4.tar.gz; - sha256 = "0ff2k15j34b947b8pnw5xhsv9blk9kq350pcp3p3p2qclgf9ahfh"; + url = http://hydra.nixos.org/build/33130082/download/3/disnixos-0.4.1.tar.gz; + sha256 = "1r6b73qhz64z7xms6hkmm495yz0114pqa61b2qzlmzmlywhhy15b"; }; buildInputs = [ socat pkgconfig disnix getopt ]; From 1f51e3b8afe4f6cf2100ab6c4ff8165644a59332 Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Wed, 16 Mar 2016 15:23:10 +0100 Subject: [PATCH 095/678] communi: fix .desktop file's `Exec` path Changes `Exec` in `communi.desktop` from `/usr/bin/communi` to `$out/bin/communi`. --- pkgs/applications/networking/irc/communi/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/networking/irc/communi/default.nix b/pkgs/applications/networking/irc/communi/default.nix index 65a526b88af..312fd8df908 100644 --- a/pkgs/applications/networking/irc/communi/default.nix +++ b/pkgs/applications/networking/irc/communi/default.nix @@ -29,6 +29,8 @@ stdenv.mkDerivation rec { postInstall = '' wrapQtProgram "$out/bin/communi" + substituteInPlace "$out/share/applications/communi.desktop" \ + --replace "/usr/bin" "$out/bin" ''; meta = with stdenv.lib; { From 2f36475cff358af54709b6fcbd96744568b43712 Mon Sep 17 00:00:00 2001 From: "Bruno Bzeznik Bruno.Bzeznik@imag.fr" Date: Wed, 16 Mar 2016 15:42:30 +0100 Subject: [PATCH 096/678] openmpi: added infiniband support (ibverbs) --- pkgs/development/libraries/openmpi/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/openmpi/default.nix b/pkgs/development/libraries/openmpi/default.nix index 1862e633ad5..18dc2251013 100644 --- a/pkgs/development/libraries/openmpi/default.nix +++ b/pkgs/development/libraries/openmpi/default.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, gfortran, perl +{stdenv, fetchurl, gfortran, perl, libibverbs # Enable the Sun Grid Engine bindings , enableSGE ? false @@ -20,7 +20,7 @@ in stdenv.mkDerivation rec { sha256 = "14p4px9a3qzjc22lnl6braxrcrmd9rgmy7fh4qpanawn2pgfq6br"; }; - buildInputs = [ gfortran ]; + buildInputs = [ gfortran libibverbs ]; nativeBuildInputs = [ perl ]; From e3054a2bde99889c700fbcc145facff0492f6460 Mon Sep 17 00:00:00 2001 From: devhell <^@regexmail.net> Date: Wed, 16 Mar 2016 14:48:19 +0000 Subject: [PATCH 097/678] zotero: 4.0.28 -> 4.0.29 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Built and tested locally. From the changelog: ``` Firefox 45/46 compatibility * [Zotero Standalone] Save PDFs directly from browsers via the Save to Zotero button * Requires Chrome connector version 4.0.29; updated Safari connector coming soon * To convert a standalone PDF attachment to a full item, right-click the item and choose “Retrieve Metadata for PDF” or “Create Parent Item”. * [Zotero for Firefox] Don't show Firefox open/save dialog when showing style installation prompt * Retry additional file sync failures automatically * Fixed potential crash when dragging in files on some systems * Fixed potential crash when dragging collections to another library * Miscellaneous bibliographic output and word processor integration fixes * Updated citeproc-js to version 1.1.71 * Fixed spacing of toolbar icons on Windows/Linux in Firefox 43+ * Use larger text field for Book Title * Make highlight color of selected items list rows on Linux more distinct when items pane doesn't have focus * [Zotero for Firefox] Improved error message on Firefox login manager failure * Improved error message when trying to use a later database version ``` --- pkgs/applications/office/zotero/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/office/zotero/default.nix b/pkgs/applications/office/zotero/default.nix index d74e1ac4b7c..5a21754b44e 100644 --- a/pkgs/applications/office/zotero/default.nix +++ b/pkgs/applications/office/zotero/default.nix @@ -4,10 +4,10 @@ let xpi = fetchurl { url = "https://download.zotero.org/extension/zotero-${version}.xpi"; - sha256 = "02h2ja08v8as4fawj683rh5rmxsjf5d0qmvqa77i176nm20y5s7s"; + sha256 = "1dyf578yfj3xr9kkhmsvbkvraw2arghmh67ksi5c8qlxczx5i1xy"; }; - version = "4.0.28"; + version = "4.0.29"; in stdenv.mkDerivation { @@ -15,8 +15,8 @@ stdenv.mkDerivation { inherit version; src = fetchurl { - url = "https://github.com/zotero/zotero-standalone-build/archive/4.0.28.8.tar.gz"; - sha256 = "ab1fd5dde9bd2a6b6d31cc9a53183a04de3698f1273a943ef31ecc4c42808a68"; + url = "https://github.com/zotero/zotero-standalone-build/archive/4.0.29.2.tar.gz"; + sha256 = "0pfip6s5dawp7wp8r5czvzlnxvvdwjja64g71h9dxyxrh49v2mxa"; }; nativeBuildInputs = [ perl unzipNLS ]; From 601af249b18eb782dd86ac257815e67b1b9b5191 Mon Sep 17 00:00:00 2001 From: Nathaniel Baxter Date: Thu, 17 Mar 2016 02:22:00 +1100 Subject: [PATCH 098/678] keepass: 2.31 -> 2.32 --- pkgs/applications/misc/keepass/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/keepass/default.nix b/pkgs/applications/misc/keepass/default.nix index 948d03262b6..d6835388d89 100644 --- a/pkgs/applications/misc/keepass/default.nix +++ b/pkgs/applications/misc/keepass/default.nix @@ -8,11 +8,11 @@ # plugin derivations in the Nix store and nowhere else. with builtins; buildDotnetPackage rec { baseName = "keepass"; - version = "2.31"; + version = "2.32"; src = fetchurl { url = "mirror://sourceforge/keepass/KeePass-${version}-Source.zip"; - sha256 = "10bqxpq30gzfq2ip6dkmqlzzsh3bnfdb01jry5xhgxvlycq1lnsm"; + sha256 = "11bkflmqrpfk95v2j7pjcm78nilx2s611mn2x7kxwn77ilnbcjbw"; }; sourceRoot = "."; From 9da04035271f559ac4d643fe97b0a88b6bd024da Mon Sep 17 00:00:00 2001 From: Ryan Artecona Date: Wed, 16 Mar 2016 10:29:12 -0400 Subject: [PATCH 099/678] yamdi: init at 1.9 --- lib/maintainers.nix | 1 + pkgs/tools/video/yamdi/default.nix | 31 ++++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 3 files changed, 34 insertions(+) create mode 100644 pkgs/tools/video/yamdi/default.nix diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 09f928be20a..df6a3b36a7d 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -295,6 +295,7 @@ rushmorem = "Rushmore Mushambi "; rvl = "Rodney Lorrimar "; rvlander = "Gaëtan André "; + ryanartecona = "Ryan Artecona "; ryantm = "Ryan Mulligan "; rycee = "Robert Helgesson "; samuelrivas = "Samuel Rivas "; diff --git a/pkgs/tools/video/yamdi/default.nix b/pkgs/tools/video/yamdi/default.nix new file mode 100644 index 00000000000..a0594141adf --- /dev/null +++ b/pkgs/tools/video/yamdi/default.nix @@ -0,0 +1,31 @@ +{ + stdenv, + fetchurl, +}: + +stdenv.mkDerivation rec { + name = "yamdi-${version}"; + version = "1.9"; + + # Source repo is also available here: + # https://github.com/ioppermann/yamdi + src = fetchurl { + url = "https://downloads.sourceforge.net/project/yamdi/yamdi/${version}/yamdi-${version}.tar.gz"; + sha256 = "4a6630f27f6c22bcd95982bf3357747d19f40bd98297a569e9c77468b756f715"; + }; + + buildFlags = "CC=cc"; + + installPhase = '' + install -D {,$out/bin/}yamdi + install -D {,$out/share/man/}man1/yamdi.1 + ''; + + meta = with stdenv.lib; { + description = "Yet Another MetaData Injector for FLV"; + homepage = http://yamdi.sourceforge.net/; + license = licenses.bsd3; + platforms = platforms.all; + maintainers = [ maintainers.ryanartecona ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cbc2bfd8d30..ef2bb17b046 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16388,6 +16388,8 @@ let yafc = callPackage ../applications/networking/yafc { }; + yamdi = callPackage ../tools/video/yamdi { }; + yandex-disk = callPackage ../tools/filesystems/yandex-disk { }; yara = callPackage ../tools/security/yara { }; From 5afb014ffb1ea742f592d6f647e8682adbde56bc Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Wed, 16 Mar 2016 17:01:19 +0100 Subject: [PATCH 100/678] josm: 9900 -> 9979 --- pkgs/applications/misc/josm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/josm/default.nix b/pkgs/applications/misc/josm/default.nix index 99e337baa1a..410f56c2299 100644 --- a/pkgs/applications/misc/josm/default.nix +++ b/pkgs/applications/misc/josm/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "josm-${version}"; - version = "9900"; + version = "9979"; src = fetchurl { url = "https://josm.openstreetmap.de/download/josm-snapshot-${version}.jar"; - sha256 = "1dsfamh2bsiz3xkhmh7g4jz6bbh25x22k3zgj1k0v0gj8k6yl7dy"; + sha256 = "0zy88f4h71qyj7vlhiwnayaaz50gg6bj5pfypy43ghmjrh01d9vh"; }; phases = [ "installPhase" ]; From 5569b982f51c045386ae23a1aceaec444706245d Mon Sep 17 00:00:00 2001 From: Ryan Artecona Date: Wed, 16 Mar 2016 12:39:47 -0400 Subject: [PATCH 101/678] yamdi: change src url to sourceforge mirror --- pkgs/tools/video/yamdi/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/video/yamdi/default.nix b/pkgs/tools/video/yamdi/default.nix index a0594141adf..e995f9e3a4f 100644 --- a/pkgs/tools/video/yamdi/default.nix +++ b/pkgs/tools/video/yamdi/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { # Source repo is also available here: # https://github.com/ioppermann/yamdi src = fetchurl { - url = "https://downloads.sourceforge.net/project/yamdi/yamdi/${version}/yamdi-${version}.tar.gz"; + url = "mirror://sourceforge/yamdi/yamdi-${version}.tar.gz"; sha256 = "4a6630f27f6c22bcd95982bf3357747d19f40bd98297a569e9c77468b756f715"; }; From d0a1a8bf478201a5de9eb1a15ba9b9b507a6500e Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Wed, 16 Mar 2016 17:53:07 +0100 Subject: [PATCH 102/678] checkstyle: 6.16 -> 6.16.1 --- pkgs/development/tools/analysis/checkstyle/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/analysis/checkstyle/default.nix b/pkgs/development/tools/analysis/checkstyle/default.nix index 168e9ce95be..8fbc720a272 100644 --- a/pkgs/development/tools/analysis/checkstyle/default.nix +++ b/pkgs/development/tools/analysis/checkstyle/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - version = "6.16"; + version = "6.16.1"; name = "checkstyle-${version}"; src = fetchurl { url = "mirror://sourceforge/checkstyle/${name}-bin.tar.gz"; - sha256 = "0kmddfzn7p6fads6crw4gnahvi36xwqyw35i7a2lplrdp8dn9xdd"; + sha256 = "169pwpxpzvi18hiji2w77s97lf8956wknch06bjbzvad7q9qfxid"; }; installPhase = '' From b198028215328a2833a163cd22a9efd99ef5bf71 Mon Sep 17 00:00:00 2001 From: Mathieu Boespflug Date: Wed, 16 Mar 2016 19:27:23 +0100 Subject: [PATCH 103/678] go: Add isGo15 and isGo16 tests. --- pkgs/top-level/go-packages.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index e49fe451681..6845f1dfeb0 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -5,6 +5,8 @@ let isGo14 = go.meta.branch == "1.4"; + isGo15 = go.meta.branch == "1.5"; + isGo16 = go.meta.branch == "1.6"; self = _self // overrides; _self = with self; { From 8b105a325ad4a5a49ebea700bb0b0e52d0807858 Mon Sep 17 00:00:00 2001 From: Mathieu Boespflug Date: Wed, 16 Mar 2016 19:28:02 +0100 Subject: [PATCH 104/678] terraform: init at 0.6.13. --- pkgs/top-level/all-packages.nix | 2 ++ pkgs/top-level/go-packages.nix | 10 ++++++++++ 2 files changed, 12 insertions(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ef2bb17b046..7d60eee9f61 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16231,6 +16231,8 @@ let sqsh = callPackage ../development/tools/sqsh { }; + terraform = go16Packages.terraform.bin // { outputs = [ "bin" ]; }; + tetex = callPackage ../tools/typesetting/tex/tetex { libpng = libpng12; }; tewi-font = callPackage ../data/fonts/tewi {}; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 6845f1dfeb0..03c54d2ccc6 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -3461,6 +3461,16 @@ let subPackages = [ "./" ]; # prevent building _demos }; + terraform = buildFromGitHub { + rev = "v0.6.13"; + owner = "hashicorp"; + repo = "terraform"; + disabled = !isGo16; + sha256 = "1f1xm5pyz1hxqm2k74psanirpydf71pmxixplyc2x2w68hgjzi2l"; + + buildInputs = [ ]; + }; + testify = buildGoPackage rec { rev = "089c7181b8c728499929ff09b62d3fdd8df8adff"; name = "testify-${stdenv.lib.strings.substring 0 7 rev}"; From aa4af875016e59cddfbb65060647501419016968 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Wed, 16 Mar 2016 18:55:11 +0000 Subject: [PATCH 105/678] gradle: 2.11 -> 2.12 --- pkgs/development/tools/build-managers/gradle/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/build-managers/gradle/default.nix b/pkgs/development/tools/build-managers/gradle/default.nix index 82d0d402698..c2b24c69904 100644 --- a/pkgs/development/tools/build-managers/gradle/default.nix +++ b/pkgs/development/tools/build-managers/gradle/default.nix @@ -35,11 +35,11 @@ rec { }; gradleLatest = gradleGen rec { - name = "gradle-2.11"; + name = "gradle-2.12"; src = fetchurl { url = "http://services.gradle.org/distributions/${name}-bin.zip"; - sha256 = "1mhydg6mj9y7qr2s9bkdaijkjrq7nf6rqix415izvjan4c43fx4d"; + sha256 = "0p5b6dngza6c2lchz5j0w4cbsizpzvkf638yzxv09k8636c68w77"; }; }; From a1de2259131a144e93426ec6dae21a305e733ee4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Wed, 16 Mar 2016 20:05:22 +0100 Subject: [PATCH 106/678] Revert "nvidia: 358.16 -> 361.28" to fix #13942 This reverts commit e0fe8cf204216beb2485d6f56cde9aa25d56a977. Befor updating we need to fixup problems related to GLVND transition. --- pkgs/os-specific/linux/nvidia-x11/beta.nix | 10 +++++----- pkgs/os-specific/linux/nvidia-x11/builder.sh | 15 +++++---------- pkgs/os-specific/linux/nvidia-x11/default.nix | 6 +++--- 3 files changed, 13 insertions(+), 18 deletions(-) diff --git a/pkgs/os-specific/linux/nvidia-x11/beta.nix b/pkgs/os-specific/linux/nvidia-x11/beta.nix index d53d5e19d40..d3111a4f75a 100644 --- a/pkgs/os-specific/linux/nvidia-x11/beta.nix +++ b/pkgs/os-specific/linux/nvidia-x11/beta.nix @@ -12,7 +12,7 @@ assert (!libsOnly) -> kernel != null; let - versionNumber = "361.18"; + versionNumber = "349.12"; # Policy: use the highest stable version as the default (on our master). inherit (stdenv.lib) makeLibraryPath; @@ -27,13 +27,13 @@ stdenv.mkDerivation { src = if stdenv.system == "i686-linux" then fetchurl { - url = "http://download.nvidia.com/XFree86/Linux-x86/${versionNumber}/NVIDIA-Linux-x86-${versionNumber}.run"; - sha256 = "1n6nrz59r3dgcpkcpr4yw997fygkpsdbv1x45c30w781w0j1q5s5"; + url = "http://us.download.nvidia.com/XFree86/Linux-x86/${versionNumber}/NVIDIA-Linux-x86-${versionNumber}.run"; + sha256 = "0x9zfw66nxv98zpkdkymlyqzspksk850bhfmza7g7pba4yba085h"; } else if stdenv.system == "x86_64-linux" then fetchurl { - url = "http://download.nvidia.com/XFree86/Linux-x86_64/${versionNumber}/NVIDIA-Linux-x86_64-${versionNumber}-no-compat32.run"; - sha256 = "12fi7vb697h38qh0f2j40q76yx9fqk6vwx20zfxhac3fvdhw2sj0"; + url = "http://us.download.nvidia.com/XFree86/Linux-x86_64/${versionNumber}/NVIDIA-Linux-x86_64-${versionNumber}-no-compat32.run"; + sha256 = "19mfkigzffxsik3h4bsjsl481q410h804fz3rdc7chs86q4bg9h3"; } else throw "nvidia-x11 does not support platform ${stdenv.system}"; diff --git a/pkgs/os-specific/linux/nvidia-x11/builder.sh b/pkgs/os-specific/linux/nvidia-x11/builder.sh index 09c104f09e7..c1f165c45dd 100755 --- a/pkgs/os-specific/linux/nvidia-x11/builder.sh +++ b/pkgs/os-specific/linux/nvidia-x11/builder.sh @@ -19,7 +19,7 @@ buildPhase() { sysSrc=$(echo $kernel/lib/modules/$kernelVersion/source) sysOut=$(echo $kernel/lib/modules/$kernelVersion/build) unset src # used by the nv makefile - make SYSSRC=$sysSrc SYSOUT=$sysOut module "-j${NIX_BUILD_CORES}" "-l${NIX_BUILD_CORES}" + make SYSSRC=$sysSrc SYSOUT=$sysOut module cd .. fi @@ -34,14 +34,6 @@ installPhase() { cp -prd *.so.* tls "$out/lib/" rm "$out"/lib/lib{glx,nvidia-wfb}.so.* # handled separately - # According to nvidia, we're supposed to use GLVND. - # But so far I've failed to make any applications run using that stack. - # - # If you want to try it, swap the two lines below. - - #rm "$out"/lib/libGL.so.${versionNumber} # Non-GLVND - rm $out/lib/libGL.so.1.* # GLVND - if test -z "$libsOnly"; then # Install the X drivers. mkdir -p $out/lib/xorg/modules @@ -69,7 +61,7 @@ installPhase() { libname_short=`echo -n "$libname" | sed 's/so\..*/so/'` # nvidia's EGL stack seems to expect libGLESv2.so.2 to be available - if [ $(basename "$libname_short") == "libGLESv2.so" -a "$libname" != "$libname_short.2" ]; then + if [ $(basename "$libname_short") == "libGLESv2.so" ]; then ln -srnf "$libname" "$libname_short.2" fi @@ -127,6 +119,9 @@ installPhase() { # For simplicity and dependency reduction, don't support the gtk3 interface. rm $out/lib/libnvidia-gtk3.* + # We distribute these separately in `libvdpau` + rm "$out"/lib/libvdpau{.*,_trace.*} + # Move VDPAU libraries to their place mkdir "$out"/lib/vdpau mv "$out"/lib/libvdpau* "$out"/lib/vdpau diff --git a/pkgs/os-specific/linux/nvidia-x11/default.nix b/pkgs/os-specific/linux/nvidia-x11/default.nix index 86abeeaa824..fff1135d311 100644 --- a/pkgs/os-specific/linux/nvidia-x11/default.nix +++ b/pkgs/os-specific/linux/nvidia-x11/default.nix @@ -12,7 +12,7 @@ assert (!libsOnly) -> kernel != null; let - versionNumber = "361.28"; + versionNumber = "358.16"; # Policy: use the highest stable version as the default (on our master). inherit (stdenv.lib) makeLibraryPath; @@ -28,12 +28,12 @@ stdenv.mkDerivation { if stdenv.system == "i686-linux" then fetchurl { url = "http://download.nvidia.com/XFree86/Linux-x86/${versionNumber}/NVIDIA-Linux-x86-${versionNumber}.run"; - sha256 = "013l9hfjc7gyk5g2v2h71lwjmx4dqlkczsb17cz833fnadcrn4hs"; + sha256 = "1cc0zsri92nz2mznabfd6pqckm9mlbszmysqqqh3w5mipwn898nk"; } else if stdenv.system == "x86_64-linux" then fetchurl { url = "http://download.nvidia.com/XFree86/Linux-x86_64/${versionNumber}/NVIDIA-Linux-x86_64-${versionNumber}-no-compat32.run"; - sha256 = "1kq335mdmwlgp0lp9z8wrwyh48p2xv2nwdlgfj7b83vsh6ib17a4"; + sha256 = "1xr16faam2zsx8ajwm9g9302m6qjzyjh1zd56g8jhc8jxg8h43sg"; } else throw "nvidia-x11 does not support platform ${stdenv.system}"; From d920f67b64130ec8706df4e6970f2a685add11ae Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 15 Mar 2016 23:50:11 +0100 Subject: [PATCH 107/678] seq24: 0.9.2 -> 0.9.3 Five years in the making. Fixed bugs: * Fix LASH support (crash on 64 Bit systems) * Fix broken JACK transport with newer jackd version * Fix clock tick drift * Fix jack session commandline (obsolete --file option removed) General Changes: * C++11 compatible compiler required --- pkgs/applications/audio/seq24/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/audio/seq24/default.nix b/pkgs/applications/audio/seq24/default.nix index 63db865eba5..7976a7bf678 100644 --- a/pkgs/applications/audio/seq24/default.nix +++ b/pkgs/applications/audio/seq24/default.nix @@ -2,20 +2,21 @@ stdenv.mkDerivation rec { name = "seq24-${version}"; - version = "0.9.2"; + version = "0.9.3"; src = fetchurl { url = "http://launchpad.net/seq24/trunk/${version}/+download/${name}.tar.gz"; - sha256 = "07n80zj95i80vjmsflnlbqx5vv90qmp5f6a0zap8d30849l4y258"; + sha256 = "1qpyb7355s21sgy6gibkybxpzx4ikha57a8w644lca6qy9mhcwi3"; }; - buildInputs = [ alsaLib gtkmm libjack2 pkgconfig ]; + buildInputs = [ alsaLib gtkmm libjack2 ]; + nativeBuildInputs = [ pkgconfig ]; meta = with stdenv.lib; { description = "minimal loop based midi sequencer"; homepage = "http://www.filter24.org/seq24"; license = licenses.gpl2; platforms = platforms.linux; - maintainers = [ maintainers.goibhniu ]; + maintainers = with maintainers; [ goibhniu nckx ]; }; } From df0f4baec4cd7811c6ae052fec648c7055903df1 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 16 Mar 2016 01:13:00 +0100 Subject: [PATCH 108/678] hddtemp: correct licence: gpl2 -> gpl2Plus --- pkgs/tools/misc/hddtemp/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/hddtemp/default.nix b/pkgs/tools/misc/hddtemp/default.nix index 925ea13780a..13b69dad971 100644 --- a/pkgs/tools/misc/hddtemp/default.nix +++ b/pkgs/tools/misc/hddtemp/default.nix @@ -23,10 +23,10 @@ stdenv.mkDerivation { ./configure --prefix=$out --with-db-path=$out/nix-support/hddtemp.db ''; - meta = { + meta = with stdenv.lib; { description = "Tool for displaying hard disk temperature"; homepage = https://savannah.nongnu.org/projects/hddtemp/; - license = stdenv.lib.licenses.gpl2; - platforms = stdenv.lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; }; } From 7a1f76bc5f99a27c2f11a743ba0c4bfe7e52edce Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 16 Mar 2016 05:31:45 +0100 Subject: [PATCH 109/678] man-pages: 4.04 -> 4.05 --- pkgs/data/documentation/man-pages/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/data/documentation/man-pages/default.nix b/pkgs/data/documentation/man-pages/default.nix index 02b4518b63d..56956280fea 100644 --- a/pkgs/data/documentation/man-pages/default.nix +++ b/pkgs/data/documentation/man-pages/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "man-pages-${version}"; - version = "4.04"; + version = "4.05"; src = fetchurl { url = "mirror://kernel/linux/docs/man-pages/${name}.tar.xz"; - sha256 = "0v8zxq4scfixy3pjpw9ankvv5v8frv62khv4xm1jpkswyq6rbqcg"; + sha256 = "03d6aqgvhcsyciwdhl50h9bwn53iivvd7rbnh8als2ia9jwm2026"; }; makeFlags = [ "MANDIR=$(out)/share/man" ]; From 1c9d5306fb4686ccaf8db36d18a39641e29071cf Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 16 Mar 2016 05:41:47 +0100 Subject: [PATCH 110/678] tzdata: 2015g -> 2016a --- pkgs/data/misc/tzdata/default.nix | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/pkgs/data/misc/tzdata/default.nix b/pkgs/data/misc/tzdata/default.nix index 045a9eef00a..7e53b67e332 100644 --- a/pkgs/data/misc/tzdata/default.nix +++ b/pkgs/data/misc/tzdata/default.nix @@ -1,25 +1,32 @@ { stdenv, fetchurl }: -let version = "2015g"; in - stdenv.mkDerivation rec { name = "tzdata-${version}"; + version = "2016a"; srcs = [ (fetchurl { url = "http://www.iana.org/time-zones/repository/releases/tzdata${version}.tar.gz"; - sha256 = "0qb1awqrn3215zd2jikpqnmkzrxwfjf0d3dw2xmnk4c40yzws8xr"; + sha256 = "1lccd8f8fiwfyr1f6c2ad1rgd58qlmrk5b00ywg95vv49qr6pyjy"; }) (fetchurl { url = "http://www.iana.org/time-zones/repository/releases/tzcode${version}.tar.gz"; - sha256 = "1i3y1kzjiz2j62c7vd4wf85983sqk9x9lg3473njvbdz4kph5r0q"; + sha256 = "13f2412ywphrvslmp1cjfyyjfrk67gbrsk4ih5n8qkl4kgandbhi"; }) ]; sourceRoot = "."; outputs = [ "out" "lib" ]; - makeFlags = "TOPDIR=$(out) TZDIR=$(out)/share/zoneinfo ETCDIR=$(TMPDIR)/etc LIBDIR=$(lib)/lib MANDIR=$(TMPDIR)/man AWK=awk CFLAGS=-DHAVE_LINK=0"; + makeFlags = [ + "TOPDIR=$(out)" + "TZDIR=$(out)/share/zoneinfo" + "ETCDIR=$(TMPDIR)/etc" + "LIBDIR=$(lib)/lib" + "MANDIR=$(TMPDIR)/man" + "AWK=awk" + "CFLAGS=-DHAVE_LINK=0" + ]; postInstall = '' From be7253d8465bb4dcefe648a93f09c8ff1f3450a7 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 16 Mar 2016 06:59:05 +0100 Subject: [PATCH 111/678] cdrtools: stop installing useless man pages The installed man{3,4} pages are for silly NIH build tools (!), and conflict with useful packages like `man-pages`. Drop 'em. --- pkgs/applications/misc/cdrtools/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/applications/misc/cdrtools/default.nix b/pkgs/applications/misc/cdrtools/default.nix index b83857b6045..2168a21f7da 100644 --- a/pkgs/applications/misc/cdrtools/default.nix +++ b/pkgs/applications/misc/cdrtools/default.nix @@ -12,6 +12,11 @@ stdenv.mkDerivation rec { buildInputs = [ acl libcap ]; + postPatch = '' + sed "/\.mk3/d" -i libschily/Targets.man + substituteInPlace man/Makefile --replace "man4" "" + ''; + configurePhase = "true"; GMAKE_NOWARN = true; From 0dea3803e7c02c43d90aa45a2943d9df75349b38 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 16 Mar 2016 20:47:54 +0100 Subject: [PATCH 112/678] freefall: inherit kernel package from linuxPackages Let's never bump again. --- pkgs/os-specific/linux/freefall/default.nix | 14 ++++++-------- pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/pkgs/os-specific/linux/freefall/default.nix b/pkgs/os-specific/linux/freefall/default.nix index 590b6b61dd3..54be786d10d 100644 --- a/pkgs/os-specific/linux/freefall/default.nix +++ b/pkgs/os-specific/linux/freefall/default.nix @@ -1,13 +1,9 @@ -{ stdenv, fetchurl }: +{ stdenv, kernel }: stdenv.mkDerivation rec { - name = "freefall-${version}"; - version = "4.3"; + inherit (kernel) version src; - src = fetchurl { - sha256 = "1bpkr45i4yzp32p0vpnz8mlv9lk4q2q9awf1kg9khg4a9g42qqja"; - url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - }; + name = "freefall-${version}"; postPatch = '' cd tools/laptop/freefall @@ -20,6 +16,8 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" ]; meta = with stdenv.lib; { + inherit (kernel.meta) homepage license; + description = "Free-fall protection for spinning HP/Dell laptop hard drives"; longDescription = '' Provides a shock protection facility in modern laptops with spinning hard @@ -29,7 +27,7 @@ stdenv.mkDerivation rec { feature, which should cause the drive to switch to idle mode and unload the disk heads, and an accelerometer device. It has no effect on SSD devices! ''; - license = licenses.gpl2; + platforms = platforms.linux; maintainers = with maintainers; [ nckx ]; }; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ef2bb17b046..9eaaab0b0e8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10274,7 +10274,9 @@ let firejail = callPackage ../os-specific/linux/firejail {}; - freefall = callPackage ../os-specific/linux/freefall { }; + freefall = callPackage ../os-specific/linux/freefall { + inherit (linuxPackages) kernel; + }; fuse = callPackage ../os-specific/linux/fuse { }; From abcf57a8db2d052abc2d715bc53b88ea4f703076 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 16 Mar 2016 21:35:55 +0100 Subject: [PATCH 113/678] git: update from version 2.7.1 to 2.7.3 --- .../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 2878fec3c09..d60b4065e47 100644 --- a/pkgs/applications/version-management/git-and-tools/git/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git/default.nix @@ -9,7 +9,7 @@ }: let - version = "2.7.1"; + version = "2.7.3"; svn = subversionClient.override { perlBindings = true; }; in @@ -18,7 +18,7 @@ stdenv.mkDerivation { src = fetchurl { url = "https://www.kernel.org/pub/software/scm/git/git-${version}.tar.xz"; - sha256 = "1zkbdmh5gvxalr8l1cwnirqq5raijmp2d0s36s6qabrlvqvq2yj7"; + sha256 = "1di96q86fq3pdn5d5v4fw9vf58gha5i9b3r880mxlh275n8ngi49"; }; patches = [ From fa683ab455bd83ea1c4fde5c436e871eb8a01df1 Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Wed, 16 Mar 2016 21:54:00 +0100 Subject: [PATCH 114/678] popcorntime: 0.3.8-3 -> 0.3.9 --- .../video/popcorntime/default.nix | 84 ++++++++----------- 1 file changed, 37 insertions(+), 47 deletions(-) diff --git a/pkgs/applications/video/popcorntime/default.nix b/pkgs/applications/video/popcorntime/default.nix index e74c8e9a5a8..f2bc3e70161 100644 --- a/pkgs/applications/video/popcorntime/default.nix +++ b/pkgs/applications/video/popcorntime/default.nix @@ -1,53 +1,43 @@ -{ lib, stdenv, fetchurl, runCommand, makeWrapper, nwjs, zip }: +{ lib, stdenv, fetchurl, makeWrapper, nwjs, zip }: let - version = "0.3.8-3"; + arch = if stdenv.system == "x86_64-linux" then "64" + else if stdenv.system == "i686-linux" then "32" + else throw "Unsupported system ${stdenv.system}"; - popcorntimePackage = stdenv.mkDerivation rec { - name = "popcorntime-${version}"; - src = if stdenv.system == "x86_64-linux" then - fetchurl { - url = "http://get.popcorntime.io/build/Popcorn-Time-${version}-Linux-64.tar.xz"; - sha256 = "0q8c6m9majgv5a6hjl1b2ndmq4xx05zbarsydhqkivhh9aymvxgm"; - } - else if stdenv.system == "i686-linux" then - fetchurl { - url = "https://get.popcorntime.io/build/Popcorn-Time-${version}-Linux-32.tar.xz"; - sha256 = "1dz1cp31qbwamm9pf8ydmzzhnb6d9z73bigdv3y74dgicz3dpr92"; - } - else throw "Unsupported system ${stdenv.system}"; +in stdenv.mkDerivation rec { + name = "popcorntime-${version}"; + version = "0.3.9"; - sourceRoot = "."; - - buildInputs = [ zip ]; - - buildPhase = '' - rm Popcorn-Time install - zip -r package.nw package.json src node_modules - cat ${nwjs}/bin/nw package.nw > Popcorn-Time - chmod 555 Popcorn-Time - ''; - - installPhase = '' - mkdir -p $out - cp -r * $out/ - ''; - - dontPatchELF = true; + src = fetchurl { + url = "http://get.popcorntime.sh/build/Popcorn-Time-${version}-Linux-${arch}.tar.xz"; + sha256 = + if arch == "64" + then "0qaqdz45frgiy440jyz6hikhklx2yp08qp94z82r03dkbf4a2hvx" + else "0y08a42pm681s97lkczdq5dblxl2jbr850hnl85hknl3ynag9kq4"; }; -in - runCommand "popcorntime-${version}" { - buildInputs = [ makeWrapper ]; - meta = with stdenv.lib; { - homepage = http://popcorntime.io/; - description = "An application that streams movies and TV shows from torrents"; - license = stdenv.lib.licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ bobvanderlinden ]; - broken = true; # popcorntime.io is dead - }; - } - '' + + dontPatchELF = true; + sourceRoot = "linux${arch}"; + buildInputs = [ zip makeWrapper ]; + + buildPhase = '' + rm Popcorn-Time + cat ${nwjs}/bin/nw nw.pak > Popcorn-Time + chmod 555 Popcorn-Time + ''; + + installPhase = '' mkdir -p $out/bin - makeWrapper ${popcorntimePackage}/Popcorn-Time $out/bin/popcorntime - '' + cp -r * $out/ + makeWrapper $out/Popcorn-Time $out/bin/popcorntime + ''; + + meta = with stdenv.lib; { + homepage = https://popcorntime.sh/; + description = "An application that streams movies and TV shows from torrents"; + license = stdenv.lib.licenses.gpl3; + platforms = platforms.linux; + maintainers = with maintainers; [ bobvanderlinden rnhmjoj ]; + }; +} From 1c49f8fe33b5079bdc1371ba5d2c8dc206a8ad2a Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 16 Mar 2016 22:27:03 +0100 Subject: [PATCH 115/678] gobject-introspection: mark broken on Darwin http://hydra.nixos.org/build/33311502 --- pkgs/development/libraries/gobject-introspection/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/libraries/gobject-introspection/default.nix b/pkgs/development/libraries/gobject-introspection/default.nix index 2567975aa66..0f828653858 100644 --- a/pkgs/development/libraries/gobject-introspection/default.nix +++ b/pkgs/development/libraries/gobject-introspection/default.nix @@ -45,6 +45,7 @@ stdenv.mkDerivation rec { homepage = http://live.gnome.org/GObjectIntrospection; maintainers = with maintainers; [ lovek323 urkud lethalman ]; platforms = platforms.unix; + broken = stdenv.isDarwin; longDescription = '' GObject introspection is a middleware layer between C libraries (using From f7f149035e347f275888a7c726ef9ccb993e905d Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 12 Mar 2016 19:01:09 -0500 Subject: [PATCH 116/678] pythonPackages.jupyter_console: 4.1.0 -> 4.1.1 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ade98083aa3..57e9436263d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6250,12 +6250,12 @@ in modules // { }; jupyter_console = buildPythonPackage rec { - version = "4.1.0"; + version = "4.1.1"; name = "jupyter_console-${version}"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/j/jupyter_console/${name}.tar.gz"; - sha256 = "3f9703b632e38d68713fc2ea1f546edc4db2a8f925c94b6dd91a8d0c13816ce9"; + sha256 = "1qsa9h7db8qzd4hg9l5mfl8299y4i7jkd6p3vpksk3r5ip8wym6p"; }; buildInputs = with self; [ nose ]; From 2de0f6e9659f91d78e23d3fdcc4e4129869da6a5 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 12 Mar 2016 19:01:22 -0500 Subject: [PATCH 117/678] pythonPackages.ipython: 4.0.3 -> 4.1.2 --- 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 57e9436263d..662291542ae 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -10327,12 +10327,12 @@ in modules // { }; ipython = buildPythonPackage rec { - version = "4.0.3"; + version = "4.1.2"; name = "ipython-${version}"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/i/ipython/${name}.tar.gz"; - sha256 = "3a928f59e8ac8dd97858c28390867c87c09510f1f8bbe97e4e9c6b036eb84fc0"; + sha256 = "14hnf3m087z39ndn5irj1ficc6l197bmdj6fpvz8bwi7la99cbq5"; }; prePatch = stdenv.lib.optionalString stdenv.isDarwin '' From c0114b3f63373315eddf6e1b252d4676bcacb840 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 12 Mar 2016 19:01:35 -0500 Subject: [PATCH 118/678] pythonPackages.openpyxl: 2.3.0 -> 2.3.3 --- pkgs/top-level/python-packages.nix | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 662291542ae..7d964845d86 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -13177,17 +13177,20 @@ in modules // { }; openpyxl = buildPythonPackage rec { - version = "2.3.0"; + version = "2.3.3"; name = "openpyxl-${version}"; - src = pkgs.fetchhg { - url = "https://bitbucket.org/openpyxl/openpyxl"; - rev = "${version}"; - sha256 = "1iisk6rfh9h5xb411kfyzkcab6fdnsx573i0d83wfn4csk4p3p4d"; + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/o/openpyxl/${name}.tar.gz"; + sha256 = "1zigyvsq45izkhr1h5gisgi0ag5dm6kz09f01c2cgdfav1bl3mlk"; }; buildInputs = with self; [ pytest ]; - propagatedBuildInputs = with self; [ jdcal et_xmlfile ]; + propagatedBuildInputs = with self; [ jdcal et_xmlfile lxml ]; + + # Tests are not included in archive. + # https://bitbucket.org/openpyxl/openpyxl/issues/610 + doCheck = false; meta = { description = "A Python library to read/write Excel 2007 xlsx/xlsm files"; From 896f5372be18a91b5a68020218c66702ddc6c7b1 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 12 Mar 2016 19:01:51 -0500 Subject: [PATCH 119/678] pythonPackages.xlwt: init at 1.0.0 --- pkgs/top-level/python-packages.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7d964845d86..363e98e42ce 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -22247,6 +22247,27 @@ in modules // { }; }; + xlwt = buildPythonPackage rec { + name = "xlwt-${version}"; + version = "1.0.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/x/xlwt/${name}.tar.gz"; + sha256 = "1y8w5imsicp01gn749qhw6j0grh9y19zz57ribwaknn8xqwjjhxc"; + }; + + buildInputs = with self; [ nose ]; + checkPhase = '' + nosetests -v + ''; + + meta = { + description = "Library to create spreadsheet files compatible with MS"; + homepage = https://github.com/python-excel/xlwt; + license = with licenses; [ bsdOriginal bsd3 lgpl21 ]; + }; + }; + youtube-dl = callPackage ../tools/misc/youtube-dl { # Release versions don't need pandoc because the formatted man page # is included in the tarball. From f2d2d515ee1b929b85a6f8ea2cf0daf6bd7c1097 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 12 Mar 2016 19:02:08 -0500 Subject: [PATCH 120/678] pythonPackages.xlrd: fix test runner --- pkgs/top-level/python-packages.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 363e98e42ce..ec6458ab59f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14647,11 +14647,18 @@ in modules // { xlrd = buildPythonPackage rec { name = "xlrd-${version}"; + version = "0.9.4"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/x/xlrd/xlrd-${version}.tar.gz"; sha256 = "8e8d3359f39541a6ff937f4030db54864836a06e42988c452db5b6b86d29ea72"; }; + + buildInputs = with self; [ nose ]; + checkPhase = '' + nosetests -v + ''; + }; bottleneck = buildPythonPackage rec { From 8585441ae5266c7b428d68e301cf677545da4eb9 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 12 Mar 2016 19:02:58 -0500 Subject: [PATCH 121/678] pythonPackages.pandas_18: init at 0.18.0 --- pkgs/top-level/python-packages.nix | 73 ++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ec6458ab59f..9b330d8c820 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14645,6 +14645,79 @@ in modules // { }; }; + pandas_18 = let + inherit (pkgs.stdenv.lib) optional optionalString; + inherit (pkgs.stdenv) isDarwin; + in buildPythonPackage rec { + name = "pandas-${version}"; + version = "0.18.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/pandas/${name}.tar.gz"; + sha256 = "050qw0ap5bhyv5flp78x3lcq1dlminl3xaj6kbrm0jqmx0672xf9"; + }; + + + LC_ALL = "en_US.UTF-8"; + buildInputs = with self; [ nose pkgs.glibcLocales ] ++ optional isDarwin pkgs.libcxx; + propagatedBuildInputs = with self; [ + dateutil + scipy + numexpr + pytz + xlrd + bottleneck + sqlalchemy + lxml + html5lib + modules.sqlite3 + beautifulsoup4 + openpyxl + xlwt + ] ++ optional isDarwin pkgs.darwin.locale; # provides the locale command + + # For OSX, we need to add a dependency on libcxx, which provides + # `complex.h` and other libraries that pandas depends on to build. + patchPhase = optionalString isDarwin '' + cpp_sdk="${pkgs.libcxx}/include/c++/v1"; + echo "Adding $cpp_sdk to the setup.py common_include variable" + substituteInPlace setup.py \ + --replace "['pandas/src/klib', 'pandas/src']" \ + "['pandas/src/klib', 'pandas/src', '$cpp_sdk']" + + # disable clipboard tests since pbcopy/pbpaste are not open source + substituteInPlace pandas/io/tests/test_clipboard.py \ + --replace pandas.util.clipboard no_such_module \ + --replace OSError ImportError + ''; + + # The flag `-A 'not network'` will disable tests that use internet. + # The `-e` flag disables a few problematic tests. + # https://github.com/pydata/pandas/issues/11169 + # https://github.com/pydata/pandas/issues/11287 + # The test_sql checks fail specifically on python 3.5; see here: + # https://github.com/pydata/pandas/issues/11112 + checkPhase = let + testsToSkip = []; + in '' + runHook preCheck + # The flag `-A 'not network'` will disable tests that use internet. + # The `-e` flag disables a few problematic tests. + ${python.executable} setup.py nosetests -A 'not slow and not network' \ + --verbosity=3 + + runHook postCheck + ''; + + meta = { + homepage = "http://pandas.pydata.org/"; + description = "Python Data Analysis Library"; + license = licenses.bsd3; + maintainers = with maintainers; [ raskin fridh ]; + platforms = platforms.unix; + }; + }; + xlrd = buildPythonPackage rec { name = "xlrd-${version}"; From efd6e1884cc49d2a91d6e52880bdf651cfc431a0 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 12 Mar 2016 19:04:40 -0500 Subject: [PATCH 122/678] pythonPackages.pandas_17: init at 0.17.1 --- pkgs/top-level/python-packages.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9b330d8c820..bdb170b7116 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14570,7 +14570,7 @@ in modules // { }; }; - pandas = let + pandas_17 = let inherit (pkgs.stdenv.lib) optional optionalString; inherit (pkgs.stdenv) isDarwin; in buildPythonPackage rec { @@ -14585,16 +14585,14 @@ in modules // { buildInputs = with self; [ nose ] ++ optional isDarwin pkgs.libcxx; propagatedBuildInputs = with self; [ dateutil - numpy - scipy + scipy_0_17 numexpr pytz xlrd bottleneck sqlalchemy lxml - # Disabling this because an upstream dependency, pep8, is broken on v3.5. - (if isPy35 then null else html5lib) + html5lib modules.sqlite3 beautifulsoup4 ] ++ optional isDarwin pkgs.darwin.locale; # provides the locale command @@ -14630,7 +14628,7 @@ in modules // { runHook preCheck # The flag `-A 'not network'` will disable tests that use internet. # The `-e` flag disables a few problematic tests. - ${python.executable} setup.py nosetests -A 'not network' --stop \ + ${python.executable} setup.py nosetests -A 'not slow and not network' --stop \ -e '${concatStringsSep "|" testsToSkip}' --verbosity=3 runHook postCheck From 700c8dc6d04e84a159c70d5a4535befb2ce46fd9 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 12 Mar 2016 19:05:00 -0500 Subject: [PATCH 123/678] pythonPackages.pandas: 0.17.1 -> 0.18.0 --- pkgs/top-level/python-packages.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index bdb170b7116..fd582bae347 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14570,6 +14570,8 @@ in modules // { }; }; + pandas = self.pandas_18; + pandas_17 = let inherit (pkgs.stdenv.lib) optional optionalString; inherit (pkgs.stdenv) isDarwin; From cc111028585d049a7d264c2068fe33190e897360 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 13 Mar 2016 09:53:03 -0400 Subject: [PATCH 124/678] pythonPackages.xarray: 0.7.0 -> 0.7.1 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index fd582bae347..17f0cbf0a2a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -22305,11 +22305,11 @@ in modules // { xarray = buildPythonPackage rec { name = "xarray-${version}"; - version = "0.7.0"; + version = "0.7.1"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/x/xarray/${name}.tar.gz"; - sha256 = "b1562e8e2c61f1c3587d557ff48d2bc7be36574d6a8e86f11186c356bdd794cf"; + sha256 = "1swcpq8x0p5pp94r9j4hr2anz1rqh7fnqax16xn9xsgrikdjipj5"; }; buildInputs = with self; [ pytest ]; From cd38a38316b120a6932d2f061c565196e68ba4bc Mon Sep 17 00:00:00 2001 From: Mathias Schreck Date: Wed, 16 Mar 2016 23:22:22 +0100 Subject: [PATCH 125/678] nodejs: 5.8.0 -> 5.9.0 --- pkgs/development/web/nodejs/v5.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/web/nodejs/v5.nix b/pkgs/development/web/nodejs/v5.nix index 6e9b0bbf49e..0c48ed86e79 100644 --- a/pkgs/development/web/nodejs/v5.nix +++ b/pkgs/development/web/nodejs/v5.nix @@ -7,7 +7,7 @@ assert stdenv.system != "armv5tel-linux"; let - version = "5.8.0"; + version = "5.9.0"; deps = { inherit openssl zlib libuv; @@ -31,7 +31,7 @@ in stdenv.mkDerivation { src = fetchurl { url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.gz"; - sha256 = "165q4bbq1fjrr82ciiczbgyz37fl8sg3nqspccz0aqhwxh65ikg8"; + sha256 = "0ghgfqs64794g6ggrvsdcqwz2lnhck0yiy2fyyg3in8z91k5l5z5"; }; configureFlags = concatMap sharedConfigureFlags (builtins.attrNames deps) ++ [ "--without-dtrace" ]; From 52b61dce4784b561792b180b593eab4ae602e14d Mon Sep 17 00:00:00 2001 From: Allan Espinosa Date: Wed, 16 Mar 2016 17:28:02 -0500 Subject: [PATCH 126/678] buildRubyGem: use Gem.use_paths to load gems After ruby initializes, rubygems no longer reads the GEM_PATH. Before, we have the following scenario: Gem.path # => ["a"] ENV['GEM_PATH'] = ["b"] Gem.path # => ["a"] # Still returns the same Gem.use_paths is the documented way to create isolated environments as documented in [1]. [1] http://www.rubydoc.info/github/rubygems/rubygems/Gem.use_paths --- .../interpreters/ruby/build-ruby-gem/gem-post-build.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/ruby/build-ruby-gem/gem-post-build.rb b/pkgs/development/interpreters/ruby/build-ruby-gem/gem-post-build.rb index 112a9accc33..4480c525bf1 100644 --- a/pkgs/development/interpreters/ruby/build-ruby-gem/gem-post-build.rb +++ b/pkgs/development/interpreters/ruby/build-ruby-gem/gem-post-build.rb @@ -64,8 +64,7 @@ spec.executables.each do |exe| # this file is here to facilitate running it. # -gem_path = ENV["GEM_PATH"] -ENV["GEM_PATH"] = "\#{gem_path}\#{":" unless gem_path.nil? || gem_path.empty?}#{(gem_path+[gem_home]).join(":")}" +Gem.use_paths "#{gem_home}", #{gem_path.to_s} require 'rubygems' From 492c826a5d5a310dba3aef053f6f6e091ce706a6 Mon Sep 17 00:00:00 2001 From: Ambroz Bizjak Date: Wed, 16 Mar 2016 13:04:21 +0100 Subject: [PATCH 127/678] pythonPackages/power: 1.2 -> 1.4 This fixes the build both for Python 2.7 and 3. --- 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 9b510c886b6..59a21bedc42 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -24212,13 +24212,16 @@ in modules // { }; power = buildPythonPackage rec { - name = "power-1.2"; + name = "power-1.4"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/power/${name}.tar.gz"; - sha256 = "09a00af8357f63dbb1a1eb13b82e39ccc0a14d6d2e44e5b235afe60ce8ee8195"; + url = "https://pypi.python.org/packages/source/p/power/${name}.tar.gz"; + sha256 = "7d7d60ec332acbe3a7d00379b45e39abf650bf7ee311d61da5ab921f52f060f0"; }; + # Tests can't work because there is no power information available. + doCheck = false; + meta = { description = "Cross-platform system power status information"; homepage = https://github.com/Kentzo/Power; From 9a9659e9084387d1c69e564fde5e220919e2ece8 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Wed, 16 Mar 2016 23:20:10 +0000 Subject: [PATCH 128/678] kotlin: 1.0.0 -> 1.0.1 --- pkgs/development/compilers/kotlin/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/compilers/kotlin/default.nix b/pkgs/development/compilers/kotlin/default.nix index 2433f5ab579..5b9d57cfcac 100644 --- a/pkgs/development/compilers/kotlin/default.nix +++ b/pkgs/development/compilers/kotlin/default.nix @@ -1,16 +1,16 @@ -{ stdenv, fetchurl, makeWrapper, jre, unzip, which }: +{ stdenv, fetchurl, makeWrapper, jre, unzip }: stdenv.mkDerivation rec { - version = "1.0.0"; + version = "1.0.1"; name = "kotlin-${version}"; src = fetchurl { - url = "https://github.com/JetBrains/kotlin/releases/download/build-${version}/kotlin-compiler-${version}.zip"; - sha256 = "0dp5mab35sv3nsgj488ibyn6x6xw2rka76s7kygbhqhjc429kpgy"; + url = "https://github.com/JetBrains/kotlin/releases/download/${version}/kotlin-compiler-${version}.zip"; + sha256 = "1hwdisjgy4q5y25gqnxk8ycd04j7hxb7xd0y6ixi12qfj7259a41"; }; propagatedBuildInputs = [ jre ] ; - buildInputs = [ makeWrapper unzip which ] ; + buildInputs = [ makeWrapper unzip ] ; installPhase = '' mkdir -p $out From 1cd99b1a48a8a67a89dd36870e6fc4868dbd3da9 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Thu, 17 Mar 2016 02:43:52 +0100 Subject: [PATCH 129/678] gitlab: 8.5.5 -> 8.5.7 --- pkgs/applications/version-management/gitlab/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/gitlab/default.nix b/pkgs/applications/version-management/gitlab/default.nix index 76ebfc93a53..87d20b7c9d3 100644 --- a/pkgs/applications/version-management/gitlab/default.nix +++ b/pkgs/applications/version-management/gitlab/default.nix @@ -24,7 +24,7 @@ in stdenv.mkDerivation rec { name = "gitlab-${version}"; - version = "8.5.5"; + version = "8.5.7"; buildInputs = [ ruby bundler tzdata git nodejs procps ]; @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { owner = "gitlabhq"; repo = "gitlabhq"; rev = "v${version}"; - sha256 = "05cjqjcmwxlc67xr34ki83q8pn6bsvxvywmiys20bksq3maxdyih"; + sha256 = "0n76dafndhp0rwnnvf12zby9xap5fhcplld86pq2wyvqabg4s9yj"; }; patches = [ From 38579a1cc967340dd0b52f7bc315a9b1cb771183 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Thu, 17 Mar 2016 03:58:50 +0100 Subject: [PATCH 130/678] gitlab service: Remove emailFrom option Not being used anymore. Use `services.gitlab.extraConfig.gitlab.email_from` instead. --- nixos/modules/services/misc/gitlab.nix | 6 ------ 1 file changed, 6 deletions(-) diff --git a/nixos/modules/services/misc/gitlab.nix b/nixos/modules/services/misc/gitlab.nix index 85b3ab6f924..267442bd1f8 100644 --- a/nixos/modules/services/misc/gitlab.nix +++ b/nixos/modules/services/misc/gitlab.nix @@ -206,12 +206,6 @@ in { description = "Gitlab database user."; }; - emailFrom = mkOption { - type = types.str; - default = "example@example.org"; - description = "The source address for emails sent by gitlab."; - }; - host = mkOption { type = types.str; default = config.networking.hostName; From 6f4458d16f5ae7d89d163f37bf4f32e64bca0b36 Mon Sep 17 00:00:00 2001 From: Sheena Artrip Date: Wed, 16 Mar 2016 23:57:32 -0400 Subject: [PATCH 131/678] libcollectdclient: init at 5.5.0 --- .../libraries/libcollectdclient/default.nix | 30 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 32 insertions(+) create mode 100644 pkgs/development/libraries/libcollectdclient/default.nix diff --git a/pkgs/development/libraries/libcollectdclient/default.nix b/pkgs/development/libraries/libcollectdclient/default.nix new file mode 100644 index 00000000000..f06fcec8412 --- /dev/null +++ b/pkgs/development/libraries/libcollectdclient/default.nix @@ -0,0 +1,30 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + version = "5.5.0"; + name = "libcollectdclient-${version}"; + tarname = "collectd-${version}"; + + src = fetchurl { + url = "http://collectd.org/files/${tarname}.tar.bz2"; + sha256 = "847684cf5c10de1dc34145078af3fcf6e0d168ba98c14f1343b1062a4b569e88"; + }; + + configureFlags = [ + "--without-daemon" + ]; + + makeFlags = [ + "-C src/libcollectdclient/" + ]; + + NIX_CFLAGS_COMPILE = "-Wno-error=cpp"; + + meta = with stdenv.lib; { + description = "C Library for collectd, a daemon which collects system performance statistics periodically"; + homepage = http://collectd.org; + license = licenses.gpl2; + platforms = platforms.linux; # TODO: collectd may be linux but the C client may be more portable? + maintainers = [ maintainers.sheenobu maintainers.bjornfor ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c6195748ef3..4ee54fadd07 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7407,6 +7407,8 @@ let libcangjie = callPackage ../development/libraries/libcangjie { }; + libcollectdclient = callPackage ../development/libraries/libcollectdclient { }; + libcredis = callPackage ../development/libraries/libcredis { }; libctemplate = callPackage ../development/libraries/libctemplate { }; From e8fb05f818ca21f10d2ffd528dd38dbfc8e48d70 Mon Sep 17 00:00:00 2001 From: Svintsov Dmitry Date: Wed, 16 Mar 2016 09:33:40 +0500 Subject: [PATCH 132/678] pencil: 2.0.15 -> 2.0.18 --- pkgs/applications/graphics/pencil/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/pencil/default.nix b/pkgs/applications/graphics/pencil/default.nix index 8ee39c135ef..80774fba5ff 100644 --- a/pkgs/applications/graphics/pencil/default.nix +++ b/pkgs/applications/graphics/pencil/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, makeWrapper, xulrunner }: stdenv.mkDerivation rec { - version = "2.0.15"; + version = "2.0.18"; name = "pencil-${version}"; src = fetchurl { url = "https://github.com/prikhi/pencil/releases/download/v${version}/Pencil-${version}-linux-pkg.tar.gz"; - sha256 = "be338558b613f51506337a2c7c80f209e8644656c2925f41c294e2872feabc3b"; + sha256 = "0x0kibb2na12fwl0x68xhkjpbm5h2widm346cx2r29gp1kq9kklc"; }; buildPhase = ""; From 610e2234dddf0bc900611e880015dc862b734f5c Mon Sep 17 00:00:00 2001 From: Charles Strahan Date: Thu, 17 Mar 2016 01:47:24 -0400 Subject: [PATCH 133/678] go-sct: init at 2016-01-11 Color temperature setting library and CLI that operates in a similar way to f.lux and Redshift --- pkgs/top-level/all-packages.nix | 2 ++ pkgs/top-level/go-packages.nix | 22 ++++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c6195748ef3..c3968193fe8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1813,6 +1813,8 @@ let go-pup = goPackages.pup.bin // { outputs = [ "bin" ]; }; + go-sct = goPackages.go-sct.bin // { outputs = [ "bin" ]; }; + go-upower-notify = goPackages.upower-notify.bin // { outputs = [ "bin" ]; }; googleAuthenticator = callPackage ../os-specific/linux/google-authenticator { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 03c54d2ccc6..df49643c38b 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -272,6 +272,13 @@ let doCheck = false; }; + astrotime = buildFromGitHub { + rev = "9c7d514efdb561775030eaf8f1a9ae6bddb3a2ca"; + owner = "cpucycle"; + repo = "astrotime"; + sha256 = "024sc7g55v4s54irssm5wsn74sr2k2ynsm6z16w47q66cxhgvby1"; + }; + aws-sdk-go = buildFromGitHub { #rev = "a28ecdc9741b7905b5198059c94aed20868ffc08"; rev = "127313c1b41e534a0456a68b6b3a16712dacb35d"; @@ -1675,6 +1682,21 @@ let sha256 = "00f2rfhsaqj2wjanh5qp73phx7x12a5pwd7lc0rjfv68l6sgpg2v"; }; + go-sct = buildFromGitHub { + rev = "b82c2f81727357c45a47a43965c50ed5da5a2e74"; + date = "2016-01-11"; + owner = "d4l3k"; + repo = "go-sct"; + sha256 = "13hgmpv2c8ll5ap8fn1n480bdv1j21n86jjwcssd36kh2i933anl"; + buildInputs = [ astrotime pkgs.xorg.libX11 pkgs.xorg.libXrandr ]; + meta = with stdenv.lib; { + description = "Color temperature setting library and CLI that operates in a similar way to f.lux and Redshift"; + license = licenses.mit; + maintainers = with maintainers; [ cstrahan ]; + platforms = platforms.unix; + }; + }; + go-simplejson = buildFromGitHub { rev = "18db6e68d8fd9cbf2e8ebe4c81a78b96fd9bf05a"; date = "2015-03-31"; From 7475728593a49f09c4b7b959b15513aee38ab4b4 Mon Sep 17 00:00:00 2001 From: Charles Strahan Date: Thu, 17 Mar 2016 02:02:21 -0400 Subject: [PATCH 134/678] mbpfan: 1.9.0 -> 1.9.1 --- pkgs/os-specific/linux/mbpfan/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/mbpfan/default.nix b/pkgs/os-specific/linux/mbpfan/default.nix index 75099e95f90..54de1e1108c 100644 --- a/pkgs/os-specific/linux/mbpfan/default.nix +++ b/pkgs/os-specific/linux/mbpfan/default.nix @@ -2,12 +2,12 @@ stdenv.mkDerivation rec { name = "mbpfan-${version}"; - version = "1.9.0"; + version = "1.9.1"; src = fetchFromGitHub { owner = "dgraziotin"; repo = "mbpfan"; rev = "v${version}"; - sha256 = "15nm1d0a0c0lzxqngrpn2qpsydsmglnn6d20djl7brpsq26j24h9"; + sha256 = "0issn5233h2nclrmh2jzyy5y0dyyd57f1ia7gvs3bys95glcm2s5"; }; patches = [ ./fixes.patch ]; postPatch = '' From e9cd37110dc640a1e7b75c598fcaf93c233a3f41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophane=20Hufschmitt?= Date: Wed, 16 Mar 2016 17:43:16 +0100 Subject: [PATCH 135/678] pythonPackages.chai : init at 1.1.1 --- pkgs/top-level/python-packages.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9b510c886b6..0dec53579e0 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -918,6 +918,20 @@ in modules // { }); + chai = buildPythonPackage rec { + name = "chai-${version}"; + version = "1.1.1"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/c/chai/${name}.tar.gz"; + sha256 = "016kf3irrclpkpvcm7q0gmkfibq7jgy30a9v73pp42bq9h9a32bl"; + }; + + meta = { + description = "Mocking, stubbing and spying framework for python"; + }; + }; + arrow = buildPythonPackage rec { name = "arrow-${version}"; version = "0.5.0"; From 6f654123582468c529860dcf7dcf8df48baac5ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophane=20Hufschmitt?= Date: Mon, 7 Mar 2016 16:29:51 +0100 Subject: [PATCH 136/678] pythonPackages.arrow: 0.5.0 -> 0.7.0 --- pkgs/top-level/python-packages.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0dec53579e0..e170ce4a5c0 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -934,18 +934,22 @@ in modules // { arrow = buildPythonPackage rec { name = "arrow-${version}"; - version = "0.5.0"; + version = "0.7.0"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/a/arrow/${name}.tar.gz"; - sha256 = "1q3a6arjm6ysl2ff6lgdm504np7b1rbivrzspybjypq1nczcb7qy"; + sha256 = "0yx10dz3hp825fcq9w15zbp26v622npcjscb91da05zig8036lra"; }; - doCheck = false; + checkPhase = '' + nosetests + ''; + + buildInputs = with self; [ nose chai simplejson ]; propagatedBuildInputs = with self; [ dateutil ]; meta = { - description = "Twitter API library"; + description = "Python library for date manipulation"; license = "apache"; maintainers = with maintainers; [ thoughtpolice ]; }; From 11c57d4459cf2737c7522e14bcb301e797a7a602 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophane=20Hufschmitt?= Date: Tue, 8 Mar 2016 17:10:53 +0100 Subject: [PATCH 137/678] pythonPackages.termstyle: init at 0.1.10 --- pkgs/top-level/python-packages.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e170ce4a5c0..6e3cb7bd57c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -26037,4 +26037,20 @@ in modules // { }; }; + termstyle = buildPythonPackage rec { + name = "python-termstyle-${version}"; + version = "0.1.10"; + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/python-termstyle/${name}.tar.gz"; + sha256 = "1qllzkx1alf14zcfapppf8w87si4cpa7lgjmdp3f5idzdyqnnapl"; + }; + + meta = { + description = "console colouring for python"; + homepage = "https://pypi.python.org/pypi/python-termstyle/0.1.10"; + license = licenses.bsdOriginal; + }; + + }; + } From 93856f36a26ccd5dfc47d8e3cb7589ab73a785e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophane=20Hufschmitt?= Date: Thu, 17 Mar 2016 08:54:36 +0100 Subject: [PATCH 138/678] moreutils : 0.57 -> 0.58 --- pkgs/tools/misc/moreutils/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/moreutils/default.nix b/pkgs/tools/misc/moreutils/default.nix index feb5710282f..759847b897a 100644 --- a/pkgs/tools/misc/moreutils/default.nix +++ b/pkgs/tools/misc/moreutils/default.nix @@ -3,11 +3,11 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "moreutils-${version}"; - version = "0.57"; + version = "0.58"; src = fetchurl { url = "http://ftp.de.debian.org/debian/pool/main/m/moreutils/moreutils_${version}.orig.tar.gz"; - sha256 = "078dpkwwwrv8hxnylbc901kib2d1rr3hsja37j6dlpjfcfq58z9s"; + sha256 = "02n00vqp6jxbxr5v3rdjxmzp6kxxjdkjgcclam6wrw8qamsbljww"; }; preBuild = '' From f86f957ae308fc124e86dfa7a995d56929800e3c Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Wed, 16 Mar 2016 16:25:16 -0700 Subject: [PATCH 139/678] chromaprint: 1.2 -> 1.3.1 --- pkgs/development/libraries/chromaprint/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/chromaprint/default.nix b/pkgs/development/libraries/chromaprint/default.nix index c06b9355d30..7c3c776e81b 100644 --- a/pkgs/development/libraries/chromaprint/default.nix +++ b/pkgs/development/libraries/chromaprint/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "chromaprint-${version}"; - version = "1.2"; + version = "1.3.1"; src = fetchurl { url = "http://bitbucket.org/acoustid/chromaprint/downloads/${name}.tar.gz"; - sha256 = "06h36223r4bwcazp42faqs9w9g49wvspivd3z3309b12ld4qjaw2"; + sha256 = "10dm9cfqb77g12pyjnqaw80860kzdcvskni02ll7afpywq8s15cg"; }; nativeBuildInputs = [ cmake ]; From 174d5eac357b4435afd7ff38b7e4158cc0d601ca Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Thu, 17 Mar 2016 11:15:53 +0100 Subject: [PATCH 140/678] acoustidFingerprinter: fix taglib version check --- pkgs/tools/audio/acoustid-fingerprinter/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/audio/acoustid-fingerprinter/default.nix b/pkgs/tools/audio/acoustid-fingerprinter/default.nix index f5d4322ec93..07319fe4c39 100644 --- a/pkgs/tools/audio/acoustid-fingerprinter/default.nix +++ b/pkgs/tools/audio/acoustid-fingerprinter/default.nix @@ -12,9 +12,12 @@ stdenv.mkDerivation rec { buildInputs = [ cmake pkgconfig qt4 taglib chromaprint ffmpeg ]; - meta = { + cmakeFlags = [ "-DTAGLIB_MIN_VERSION=${(builtins.parseDrvName taglib.name).version}" ]; + + meta = with stdenv.lib; { homepage = "http://acoustid.org/fingerprinter"; description = "Audio fingerprinting tool using chromaprint"; license = stdenv.lib.licenses.gpl2Plus; + maintainers = with maintainers; [ ehmry ]; }; } From 826eeec841c9535b22408a30b80d305309c5b4c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Thu, 17 Mar 2016 10:56:15 +0000 Subject: [PATCH 141/678] nghttp2: fix url --- pkgs/development/libraries/nghttp2/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/nghttp2/default.nix b/pkgs/development/libraries/nghttp2/default.nix index 01248e3e27a..2243cb2cca3 100644 --- a/pkgs/development/libraries/nghttp2/default.nix +++ b/pkgs/development/libraries/nghttp2/default.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation rec { # Don't use fetchFromGitHub since this needs a bootstrap curl src = fetchurl { - url = "http://http.debian.net/debian/pool/main/n/nghttp2/nghttp2_${version}.orig.tar.bz2"; + url = "http://security.ubuntu.com/ubuntu/pool/universe/n/nghttp2/nghttp2_${version}.orig.tar.bz2"; sha256 = "0nbrww5gyjn4il33wz5b4sql5nifi12y2jbkmfbvxwlxlywm48kf"; }; From 6faa0aea88dc8bf46ebf0e74f91d17d94ad6f7d4 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 17 Mar 2016 13:05:13 +0100 Subject: [PATCH 142/678] linux: 3.18.27 -> 3.18.28 CVE-2016-2085 --- pkgs/os-specific/linux/kernel/linux-3.18.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-3.18.nix b/pkgs/os-specific/linux/kernel/linux-3.18.nix index a8c86d0e618..6aa0eff8937 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.18.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.18.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "3.18.27"; + version = "3.18.28"; extraMeta.branch = "3.18"; src = fetchurl { url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; - sha256 = "01lz0c3ns0yp5vnjch1pn10h43g6fr4xw7w3b6kb477083cjr7dc"; + sha256 = "1vd7xm5wh082bwh93f69r99727y1yd5l6qjdm68rs0j5lzhamdbl"; }; kernelPatches = args.kernelPatches; From 4b512321de9ef16bcf2301ebc2fae44b644c7b30 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 17 Mar 2016 13:05:57 +0100 Subject: [PATCH 143/678] linux: 4.4.5 -> 4.4.6 CVE-2016-2143 --- pkgs/os-specific/linux/kernel/linux-4.4.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.4.nix b/pkgs/os-specific/linux/kernel/linux-4.4.nix index 36181308a8b..fecb3b05f97 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.4.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.4.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.4.5"; + version = "4.4.6"; extraMeta.branch = "4.4"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "1daavrj2msl85aijh1izfm1cwf14c7mi75hldzidr1h2v629l89h"; + sha256 = "0zapxjnawdn0km6b9pc7399zbjiyb0a28rqmsif3afc9qb2cxg53"; }; kernelPatches = args.kernelPatches; From aa6ab92d93827391a6e30e03fafcb504a0ad94fa Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 17 Mar 2016 13:24:35 +0100 Subject: [PATCH 144/678] thunderbird: 38.6.0 -> 38.7.0 Lots of security fixes: https://www.mozilla.org/en-US/security/known-vulnerabilities/thunderbird/#thunderbird38.7 --- .../networking/mailreaders/thunderbird/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/mailreaders/thunderbird/default.nix b/pkgs/applications/networking/mailreaders/thunderbird/default.nix index 7fd4e3e1515..c1bee05c93b 100644 --- a/pkgs/applications/networking/mailreaders/thunderbird/default.nix +++ b/pkgs/applications/networking/mailreaders/thunderbird/default.nix @@ -13,7 +13,7 @@ enableOfficialBranding ? false }: -let version = "38.6.0"; in +let version = "38.7.0"; in let verName = "${version}"; in stdenv.mkDerivation rec { @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://archive.mozilla.org/pub/thunderbird/releases/${verName}/source/thunderbird-${verName}.source.tar.bz2"; - sha256 = "0sssw45sf4vfy63y0x1lj05zl9g3gjdcvgw232k6zfm44l9p25q4"; + sha256 = "1wbkj8a0p62mcbxlq8yyzrx51xi65qm8f2ccqiv5pb6qd51b5d0v"; }; buildInputs = # from firefox30Pkgs.xulrunner, but without gstreamer and libvpx From 2e51c60b08aae169122b4c1ca18cf18d7733708e Mon Sep 17 00:00:00 2001 From: "Ricardo M. Correia" Date: Wed, 16 Mar 2016 21:50:11 +0100 Subject: [PATCH 145/678] ocamlPackages.containers: 0.15 -> 0.16 --- .../ocaml-modules/containers/default.nix | 30 ++++++++++++++++--- 1 file changed, 26 insertions(+), 4 deletions(-) diff --git a/pkgs/development/ocaml-modules/containers/default.nix b/pkgs/development/ocaml-modules/containers/default.nix index 8a03098d84b..4a3ed5723dd 100644 --- a/pkgs/development/ocaml-modules/containers/default.nix +++ b/pkgs/development/ocaml-modules/containers/default.nix @@ -1,6 +1,14 @@ -{ stdenv, fetchFromGitHub, ocaml, findlib, cppo, gen, sequence, qtest, ounit }: +{ stdenv, fetchFromGitHub, ocaml, findlib, cppo, gen, sequence, qtest, ounit, ocaml_oasis, result }: -let version = "0.15"; in +let + + mkpath = p: + let v = stdenv.lib.getVersion ocaml; in + "${p}/lib/ocaml/${v}/site-lib"; + + version = "0.16"; + +in stdenv.mkDerivation { name = "ocaml-containers-${version}"; @@ -9,10 +17,24 @@ stdenv.mkDerivation { owner = "c-cube"; repo = "ocaml-containers"; rev = "${version}"; - sha256 = "13mdl8jp4ymg1wip7lqmh4224x4jnji3frm1ik55vvm3ac8caqng"; + sha256 = "1mc33b4nvn9k3r4k56amxr804bg5ndhxv92cmjzg5pf4qh220c2h"; }; - buildInputs = [ ocaml findlib cppo gen sequence qtest ounit ]; + buildInputs = [ ocaml findlib cppo gen sequence qtest ounit ocaml_oasis ]; + + propagatedBuildInputs = [ result ]; + + preConfigure = '' + # The following is done so that the '#use "topfind"' directive works in the ocaml top-level + export HOME="$(mktemp -d)" + export OCAML_TOPLEVEL_PATH="${mkpath findlib}" + cat < $HOME/.ocamlinit +let () = + try Topdirs.dir_directory (Sys.getenv "OCAML_TOPLEVEL_PATH") + with Not_found -> () +;; +EOF + ''; configureFlags = [ "--enable-unix" From 8e398a88a1fb3f477667d8bf42e0d8f1d8d5ddec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Thu, 17 Mar 2016 13:03:23 +0000 Subject: [PATCH 146/678] nixUnstable: point to latest 1.12pre --- pkgs/tools/package-management/nix/default.nix | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/package-management/nix/default.nix b/pkgs/tools/package-management/nix/default.nix index 3b303bab3b7..768193857c6 100644 --- a/pkgs/tools/package-management/nix/default.nix +++ b/pkgs/tools/package-management/nix/default.nix @@ -96,15 +96,12 @@ in rec { }; }; - nixUnstable = nixStable; - /* nixUnstable = lib.lowPrio (common rec { - name = "nix-1.11pre4379_786046c"; + name = "nix-1.12pre4509_69f28eb"; src = fetchurl { - url = "http://hydra.nixos.org/build/30375557/download/4/${name}.tar.xz"; - sha256 = "ff42c70697fce7ca6eade622a31e5fbe45aed0edf1204fb491b40df207a807d5"; + url = "http://hydra.nixos.org/build/33307573/download/4/${name}.tar.xz"; + sha256 = "0i8l9vlcrhmlq8f7hx3x083lpmp903xy0zbr4gsdc9365j9vlgqk"; }; }); - */ } From e524debaf0d8a56af8d41e63921e01717037deb9 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Wed, 16 Mar 2016 22:42:22 +0100 Subject: [PATCH 147/678] indent: delete redundant preBuild Builds fine for me without it. Also use https homepage url. --- pkgs/development/tools/misc/indent/default.nix | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/pkgs/development/tools/misc/indent/default.nix b/pkgs/development/tools/misc/indent/default.nix index 17714b7a9d4..c66455791e8 100644 --- a/pkgs/development/tools/misc/indent/default.nix +++ b/pkgs/development/tools/misc/indent/default.nix @@ -7,16 +7,9 @@ stdenv.mkDerivation rec { url = "mirror://gnu/indent/${name}.tar.gz"; sha256 = "0f9655vqdvfwbxvs1gpa7py8k1z71aqh8hp73f65vazwbfz436wa"; }; - - preBuild = - '' - sed -e '/extern FILE [*]output/i#ifndef OUTPUT_DEFINED_ELSEWHERE' -i src/indent.h - sed -e '/extern FILE [*]output/a#endif' -i src/indent.h - sed -e '1i#define OUTPUT_DEFINED_ELSEWHERE 1' -i src/output.c - ''; meta = { - homepage = http://www.gnu.org/software/indent/; + homepage = https://www.gnu.org/software/indent/; description = "A source code reformatter"; license = stdenv.lib.licenses.gpl3Plus; }; From a0663e3709d1b3d2db97572ec33f3c33a40bcc2a Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Thu, 17 Mar 2016 14:14:46 +0100 Subject: [PATCH 148/678] dnscrypt-proxy service: documentation fixes - fix `enable` option description using `mkEnableOption longDescription` is incorrect; override `description` instead - additional details for proper usage of the service, including an example of the recommended configuration - clarify `localAddress` option description - clarify `localPort` option description - clarify `customResolver` option description --- .../services/networking/dnscrypt-proxy.nix | 62 ++++++++++++------- 1 file changed, 41 insertions(+), 21 deletions(-) diff --git a/nixos/modules/services/networking/dnscrypt-proxy.nix b/nixos/modules/services/networking/dnscrypt-proxy.nix index 9bb28838878..d9ca430161e 100644 --- a/nixos/modules/services/networking/dnscrypt-proxy.nix +++ b/nixos/modules/services/networking/dnscrypt-proxy.nix @@ -27,25 +27,46 @@ in { options = { services.dnscrypt-proxy = { - enable = mkEnableOption '' - Enable dnscrypt-proxy. The proxy relays regular DNS queries to a - DNSCrypt enabled upstream resolver. The traffic between the - client and the upstream resolver is encrypted and authenticated, - which may mitigate the risk of MITM attacks and third-party + enable = mkEnableOption "dnscrypt-proxy" // { description = '' + Whether to enable the DNSCrypt client proxy. The proxy relays + DNS queries to a DNSCrypt enabled upstream resolver. The traffic + between the client and the upstream resolver is encrypted and + authenticated, mitigating the risk of MITM attacks and third-party snooping (assuming the upstream is trustworthy). - ''; + + Enabling this option does not alter the system nameserver; to relay + local queries, prepend 127.0.0.1 to + . + + The recommended configuration is to run DNSCrypt proxy as a forwarder + for a caching DNS client, as in + + { + services.dnscrypt-proxy.enable = true; + services.dnscrypt-proxy.localPort = 43; + services.dnsmasq.enable = true; + services.dnsmasq.servers = [ "127.0.0.1#43" ]; + services.dnsmasq.resolveLocalQueries = true; # this is the default + } + + ''; }; localAddress = mkOption { default = "127.0.0.1"; type = types.string; description = '' - Listen for DNS queries on this address. + Listen for DNS queries to relay on this address. The only reason to + change this from its default value is to proxy queries on behalf + of other machines (typically on the local network). ''; }; localPort = mkOption { default = 53; type = types.int; description = '' - Listen on this port. + Listen for DNS queries to relay on this port. The default value + assumes that the DNSCrypt proxy should relay DNS queries directly. + When running as a forwarder for another DNS client, set this option + to a different value; otherwise leave the default. ''; }; resolverName = mkOption { @@ -53,7 +74,7 @@ in type = types.nullOr types.string; description = '' The name of the upstream DNSCrypt resolver to use. See - ${resolverListFile} for alternative resolvers + ${resolverListFile} for alternative resolvers (e.g., if you are concerned about logging and/or server location). ''; @@ -61,9 +82,8 @@ in customResolver = mkOption { default = null; description = '' - Use a resolver not listed in the upstream list (e.g., - a private DNSCrypt provider). For advanced users only. - If specified, this option takes precedence. + Use an unlisted resolver (e.g., a private DNSCrypt provider). For + advanced users only. If specified, this option takes precedence. ''; type = types.nullOr (types.submodule ({ ... }: { options = { address = mkOption { @@ -80,20 +100,20 @@ in type = types.str; description = "Provider fully qualified domain name"; example = "2.dnscrypt-cert.opendns.com"; - }; - key = mkOption { - type = types.str; - description = "Provider public key"; - example = "B735:1140:206F:225D:3E2B:D822:D7FD:691E:A1C3:3CC8:D666:8D0C:BE04:BFAB:CA43:FB79"; - }; }; })); + }; + key = mkOption { + type = types.str; + description = "Provider public key"; + example = "B735:1140:206F:225D:3E2B:D822:D7FD:691E:A1C3:3CC8:D666:8D0C:BE04:BFAB:CA43:FB79"; + }; + }; })); }; tcpOnly = mkOption { default = false; type = types.bool; description = '' - Force sending encrypted DNS queries to the upstream resolver - over TCP instead of UDP (on port 443). Enabling this option may - help circumvent filtering, but should not be used otherwise. + Force sending encrypted DNS queries to the upstream resolver over + TCP instead of UDP (on port 443). Use only if the UDP port is blocked. ''; }; }; From cdef1cdd384601ee92c021dad6450733badc9e1f Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Thu, 17 Mar 2016 13:51:15 +0200 Subject: [PATCH 149/678] ARM stdenv: Update bootstrap tools For some reason, the current bootstrap tools fail to build gettext: init2.c:37: MPFR assertion failed: (64 - 0) == ((64 - 0)/8) * 8 && sizeof(mp_limb_t) == ((64 - 0)/8) libxml/xpath.c: In function 'xmlXPathCompPathExpr': libxml/xpath.c:10627:1: internal compiler error: Aborted xmlXPathCompPathExpr(xmlXPathParserContextPtr ctxt) { ^ Please submit a full bug report, with preprocessed source if appropriate. See for instructions. make[5]: *** [libxml/libxml_rpl_la-xpath.lo] Error 1 I didn't investigate why this is the case but rebuilding the bootstrap tools seems to help. I used this old-ish WIP branch https://github.com/dezgeg/nixpkgs/commits/arm-bootstrap since latest master has even more problems with cross-compiling anything. (I will eventually push this stuff and make the ARM bootstraps build on hydra.) --- pkgs/stdenv/linux/bootstrap/armv5tel.nix | 8 ++++---- pkgs/stdenv/linux/bootstrap/armv6l.nix | 8 ++++---- pkgs/stdenv/linux/bootstrap/armv7l.nix | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/pkgs/stdenv/linux/bootstrap/armv5tel.nix b/pkgs/stdenv/linux/bootstrap/armv5tel.nix index 082e60dde48..41d3eacafa0 100644 --- a/pkgs/stdenv/linux/bootstrap/armv5tel.nix +++ b/pkgs/stdenv/linux/bootstrap/armv5tel.nix @@ -1,12 +1,12 @@ { busybox = import { - url = "http://vicerveza.homeunix.net/~viric/tmp/nix/busybox"; - sha256 = "1vfadk3d2v0bsvmbaz1pvpn4g1vm7p751hkdxya1lkn5n1a9px5m"; + url = http://nixos-arm.dezgeg.me/bootstrap/armv5tel/busybox; + sha256 = "1jdwznkgbkmz0zy58idgrm6prpw8x8wis14dxkxwzbzk7g1l3a2x"; executable = true; }; bootstrapTools = import { - url = "http://vicerveza.homeunix.net/~viric/tmp/nix/bootstrap-tools.tar.xz"; - sha256 = "39df65053bab50bc2975060c4da177266e263f30c2afba231a97d23f4c471eb8"; + url = http://nixos-arm.dezgeg.me/bootstrap/armv5tel/bootstrap-tools.tar.xz; + sha256 = "10rjp7mv6cfh9n2wfifdlaak8wqcmcpmylhn8jn0430ap37qqhb0"; }; } diff --git a/pkgs/stdenv/linux/bootstrap/armv6l.nix b/pkgs/stdenv/linux/bootstrap/armv6l.nix index 34429413e73..619f38cb761 100644 --- a/pkgs/stdenv/linux/bootstrap/armv6l.nix +++ b/pkgs/stdenv/linux/bootstrap/armv6l.nix @@ -1,12 +1,12 @@ { busybox = import { - url = https://dl.dropboxusercontent.com/s/4705ffxjrxxqnh2/busybox?dl=0; - sha256 = "032maafy4akcdgccpxdxrza29pkcpm81g8kh1hv8bj2rvssly3z2"; + url = http://nixos-arm.dezgeg.me/bootstrap/armv6l/busybox; + sha256 = "12hij075qapim3jaqc8rb2rvjdradc4937i9mkfa27b6ly1injs0"; executable = true; }; bootstrapTools = import { - url = https://dl.dropboxusercontent.com/s/pen8ieymeqqdvqn/bootstrap-tools.tar.xz?dl=0; - sha256 = "0kjpjwi6qw82ca02ppsih3bnhc3y150q23k9d56xzscs0xf5d0dv"; + url = http://nixos-arm.dezgeg.me/bootstrap/armv6l/bootstrap-tools.tar.xz; + sha256 = "14irgvw2wl2ljqbmdislhw3nakmx6wmlm1xki26rk20q2ciic2il"; }; } diff --git a/pkgs/stdenv/linux/bootstrap/armv7l.nix b/pkgs/stdenv/linux/bootstrap/armv7l.nix index a6225f455de..c336dcf82bd 100644 --- a/pkgs/stdenv/linux/bootstrap/armv7l.nix +++ b/pkgs/stdenv/linux/bootstrap/armv7l.nix @@ -1,12 +1,12 @@ { busybox = import { - url = https://dl.dropboxusercontent.com/s/rowzme529tc5svq/busybox?dl=0; - sha256 = "18793riwv9r1bgz6zv03c84cd0v26gxsm8wd2c7gjrwwyfg46ls4"; + url = http://nixos-arm.dezgeg.me/bootstrap/armv7l/busybox; + sha256 = "1279nlh3x93fqpcxi98zycmn3jhly40pab63fwq41ygkna14vw6b"; executable = true; }; bootstrapTools = import { - url = https://dl.dropboxusercontent.com/s/3jr4s5449t7zjlj/bootstrap-tools.tar.xz?dl=0; - sha256 = "1qyp871dajz5mi3yaw9sndwh4yrh1jj184wjjwaf6dpr3jir4kyd"; + url = http://nixos-arm.dezgeg.me/bootstrap/armv7l/bootstrap-tools.tar.xz; + sha256 = "15sdnsk5dc3qz27p7c4iainziz8f3r7xpg69dpfwfdaq1drw6678"; }; } From 12877098cb6f76bd021ba74684cb70759a7b76b9 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Thu, 17 Mar 2016 14:34:56 +0100 Subject: [PATCH 150/678] dnscrypt-proxy service: expose option to use ephemeral keys Some users may wish to improve their privacy by using per-query key pairs, which makes it more difficult for upstream resolvers to track users across IP addresses. --- nixos/modules/services/networking/dnscrypt-proxy.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/nixos/modules/services/networking/dnscrypt-proxy.nix b/nixos/modules/services/networking/dnscrypt-proxy.nix index d9ca430161e..a6b5b1deed7 100644 --- a/nixos/modules/services/networking/dnscrypt-proxy.nix +++ b/nixos/modules/services/networking/dnscrypt-proxy.nix @@ -10,6 +10,7 @@ let daemonArgs = [ "--local-address=${localAddress}" (optionalString cfg.tcpOnly "--tcp-only") + (optionalString cfg.ephemeralKeys "-E") ] ++ resolverArgs; resolverArgs = if (cfg.customResolver != null) @@ -116,6 +117,17 @@ in TCP instead of UDP (on port 443). Use only if the UDP port is blocked. ''; }; + ephemeralKeys = mkOption { + default = false; + type = types.bool; + description = '' + Compute a new key pair for every query. Enabling this option + increases CPU usage, but makes it more difficult for the upstream + resolver to track your usage of their service across IP addresses. + The default is to re-use the public key pair for all queries, making + tracking trivial. + ''; + }; }; }; From c6d3a23cf6b3cc25f2f856285c4e8bde87e07560 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Thu, 17 Mar 2016 15:55:53 +0100 Subject: [PATCH 151/678] apt-cacher-ng: 0.8.9 -> 0.9.1 Tested by doing sandboxed build & running the resulting exectuable. Note that sources for 0.8.9 are no longer available on the Debian mirrors. --- pkgs/servers/http/apt-cacher-ng/default.nix | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/pkgs/servers/http/apt-cacher-ng/default.nix b/pkgs/servers/http/apt-cacher-ng/default.nix index 625d9406641..9e485946a18 100644 --- a/pkgs/servers/http/apt-cacher-ng/default.nix +++ b/pkgs/servers/http/apt-cacher-ng/default.nix @@ -2,20 +2,21 @@ stdenv.mkDerivation rec { name = "apt-cacher-ng-${version}"; - version = "0.8.9"; + version = "0.9.1"; src = fetchurl { url = "http://ftp.debian.org/debian/pool/main/a/apt-cacher-ng/apt-cacher-ng_${version}.orig.tar.xz"; - sha256 = "15zkacy8n6fiklqpdk139pa7qssynrr9akv5h54ky1l53n0k70m6"; + sha256 = "1d686knvig1niapc1ib2045f7jfad3m4jvz6gkwm276fqvm4p694"; }; NIX_LDFLAGS = "-lpthread"; - buildInputs = [ doxygen cmake zlib openssl bzip2 pkgconfig libpthreadstubs ]; + nativeBuildInputs = [ cmake doxygen pkgconfig ]; + buildInputs = [ zlib openssl bzip2 libpthreadstubs ]; - meta = { + meta = with stdenv.lib; { description = "A caching proxy specialized for linux distribution files"; - homepage = http://www.unix-ag.uni-kl.de/~bloch/acng/; - license = stdenv.lib.licenses.gpl2; - maintainers = [ stdenv.lib.maintainers.makefu ]; + homepage = https://www.unix-ag.uni-kl.de/~bloch/acng/; + license = licenses.gpl2; + maintainers = [ maintainers.makefu ]; }; } From ab29cfefab099cbc480d634e7c3fafc813d92eff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Teo=20Klestrup=20R=C3=B6ijezon?= Date: Thu, 17 Mar 2016 16:04:03 +0100 Subject: [PATCH 152/678] haproxy: 1.5.14 -> 1.6.4 --- pkgs/tools/networking/haproxy/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/networking/haproxy/default.nix b/pkgs/tools/networking/haproxy/default.nix index f6201b44b3e..2e04ea19492 100644 --- a/pkgs/tools/networking/haproxy/default.nix +++ b/pkgs/tools/networking/haproxy/default.nix @@ -1,13 +1,13 @@ { stdenv, pkgs, fetchurl, openssl, zlib }: stdenv.mkDerivation rec { - majorVersion = "1.5"; - version = "${majorVersion}.14"; + majorVersion = "1.6"; + version = "${majorVersion}.4"; name = "haproxy-${version}"; src = fetchurl { url = "http://haproxy.1wt.eu/download/${majorVersion}/src/${name}.tar.gz"; - sha256 = "16cg1jmy2d8mq2ypwifsvhbyp4pyrj0zm0r818sx0r4hchwdsrcm"; + sha256 = "0c6j1j30xw08zdlk149s9ghvwphhbiqadkacjyvfrs8z9xh3ryp5"; }; buildInputs = [ openssl zlib ]; From b8635a2f450b8b9f07c9e9cb74158b9a0a962aea Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 16 Mar 2016 21:46:48 +0100 Subject: [PATCH 153/678] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20160308-2-g1fd2040 using the following inputs: - Nixpkgs: https://github.com/NixOS/nixpkgs/commit/5963f785c987986df471cbbefa32440304295bf7 - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/918817d0604a9504b7fd24992e020c53f6f2e692 - LTS Haskell: https://github.com/fpco/lts-haskell/commit/6bcb171af74b3bcce09d9ba8da3c2ef819232dcc - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/fbf2e48e585f4323b603c9e72e8b925cfe0f5724 Also update list of broken packages in configuration-hackage2nix.yaml. --- .../configuration-hackage2nix.yaml | 7800 +++++++++-------- .../haskell-modules/configuration-lts-0.0.nix | 10 + .../haskell-modules/configuration-lts-0.1.nix | 10 + .../haskell-modules/configuration-lts-0.2.nix | 10 + .../haskell-modules/configuration-lts-0.3.nix | 10 + .../haskell-modules/configuration-lts-0.4.nix | 10 + .../haskell-modules/configuration-lts-0.5.nix | 10 + .../haskell-modules/configuration-lts-0.6.nix | 10 + .../haskell-modules/configuration-lts-0.7.nix | 10 + .../haskell-modules/configuration-lts-1.0.nix | 10 + .../haskell-modules/configuration-lts-1.1.nix | 10 + .../configuration-lts-1.10.nix | 10 + .../configuration-lts-1.11.nix | 10 + .../configuration-lts-1.12.nix | 10 + .../configuration-lts-1.13.nix | 10 + .../configuration-lts-1.14.nix | 10 + .../configuration-lts-1.15.nix | 10 + .../haskell-modules/configuration-lts-1.2.nix | 10 + .../haskell-modules/configuration-lts-1.4.nix | 10 + .../haskell-modules/configuration-lts-1.5.nix | 10 + .../haskell-modules/configuration-lts-1.7.nix | 10 + .../haskell-modules/configuration-lts-1.8.nix | 10 + .../haskell-modules/configuration-lts-1.9.nix | 10 + .../haskell-modules/configuration-lts-2.0.nix | 10 + .../haskell-modules/configuration-lts-2.1.nix | 10 + .../configuration-lts-2.10.nix | 10 + .../configuration-lts-2.11.nix | 10 + .../configuration-lts-2.12.nix | 10 + .../configuration-lts-2.13.nix | 10 + .../configuration-lts-2.14.nix | 10 + .../configuration-lts-2.15.nix | 10 + .../configuration-lts-2.16.nix | 10 + .../configuration-lts-2.17.nix | 10 + .../configuration-lts-2.18.nix | 10 + .../configuration-lts-2.19.nix | 11 + .../haskell-modules/configuration-lts-2.2.nix | 10 + .../configuration-lts-2.20.nix | 11 + .../configuration-lts-2.21.nix | 12 + .../configuration-lts-2.22.nix | 12 + .../haskell-modules/configuration-lts-2.3.nix | 10 + .../haskell-modules/configuration-lts-2.4.nix | 10 + .../haskell-modules/configuration-lts-2.5.nix | 10 + .../haskell-modules/configuration-lts-2.6.nix | 10 + .../haskell-modules/configuration-lts-2.7.nix | 10 + .../haskell-modules/configuration-lts-2.8.nix | 10 + .../haskell-modules/configuration-lts-2.9.nix | 10 + .../haskell-modules/configuration-lts-3.0.nix | 14 + .../haskell-modules/configuration-lts-3.1.nix | 14 + .../configuration-lts-3.10.nix | 15 + .../configuration-lts-3.11.nix | 15 + .../configuration-lts-3.12.nix | 15 + .../configuration-lts-3.13.nix | 15 + .../configuration-lts-3.14.nix | 15 + .../configuration-lts-3.15.nix | 15 + .../configuration-lts-3.16.nix | 15 + .../configuration-lts-3.17.nix | 15 + .../configuration-lts-3.18.nix | 15 + .../configuration-lts-3.19.nix | 15 + .../haskell-modules/configuration-lts-3.2.nix | 14 + .../configuration-lts-3.20.nix | 15 + .../configuration-lts-3.21.nix | 15 + .../configuration-lts-3.22.nix | 15 + .../haskell-modules/configuration-lts-3.3.nix | 14 + .../haskell-modules/configuration-lts-3.4.nix | 14 + .../haskell-modules/configuration-lts-3.5.nix | 14 + .../haskell-modules/configuration-lts-3.6.nix | 14 + .../haskell-modules/configuration-lts-3.7.nix | 14 + .../haskell-modules/configuration-lts-3.8.nix | 15 + .../haskell-modules/configuration-lts-3.9.nix | 15 + .../haskell-modules/configuration-lts-4.0.nix | 20 + .../haskell-modules/configuration-lts-4.1.nix | 20 + .../haskell-modules/configuration-lts-4.2.nix | 21 + .../haskell-modules/configuration-lts-5.0.nix | 21 + .../haskell-modules/configuration-lts-5.1.nix | 21 + .../haskell-modules/configuration-lts-5.2.nix | 21 + .../haskell-modules/configuration-lts-5.3.nix | 21 + .../haskell-modules/configuration-lts-5.4.nix | 21 + .../haskell-modules/configuration-lts-5.5.nix | 21 + .../haskell-modules/configuration-lts-5.6.nix | 22 + .../haskell-modules/configuration-lts-5.7.nix | 25 + .../haskell-modules/configuration-lts-5.8.nix | 27 + .../haskell-modules/hackage-packages.nix | 1123 ++- 82 files changed, 5858 insertions(+), 4119 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index 2d549e54bc5..01e59932f36 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -145,3879 +145,3927 @@ dont-distribute-packages: yices-painless: [ i686-linux, x86_64-linux, x86_64-darwin ] # soft restrictions because of build errors - 3d-graphics-examples: [ x86_64-darwin ] - 3dmodels: [ i686-linux, x86_64-darwin, x86_64-linux ] - 4Blocks: [ i686-linux, x86_64-darwin, x86_64-linux ] - abc-puzzle: [ x86_64-darwin ] - abcBridge: [ i686-linux, x86_64-darwin, x86_64-linux ] - abstract-par-accelerate: [ i686-linux, x86_64-darwin, x86_64-linux ] - AC-BuildPlatform: [ i686-linux, x86_64-darwin, x86_64-linux ] - AC-EasyRaster-GTK: [ i686-linux, x86_64-darwin, x86_64-linux ] - AC-HalfInteger: [ i686-linux, x86_64-darwin, x86_64-linux ] - AC-MiniTest: [ i686-linux, x86_64-darwin, x86_64-linux ] - AC-Terminal: [ i686-linux, x86_64-darwin, x86_64-linux ] - AC-VanillaArray: [ i686-linux, x86_64-darwin, x86_64-linux ] - accelerate-arithmetic: [ i686-linux, x86_64-darwin, x86_64-linux ] - accelerate-fourier: [ i686-linux, x86_64-darwin, x86_64-linux ] - accelerate-utility: [ i686-linux, x86_64-darwin, x86_64-linux ] - accentuateus: [ i686-linux, x86_64-darwin, x86_64-linux ] - access-time: [ i686-linux, x86_64-darwin, x86_64-linux ] - acid-state-dist: [ i686-linux, x86_64-darwin, x86_64-linux ] - ACME: [ i686-linux, x86_64-darwin, x86_64-linux ] - acme-hq9plus: [ i686-linux, x86_64-darwin, x86_64-linux ] - acme-inator: [ i686-linux, x86_64-darwin, x86_64-linux ] - acme-numbersystem: [ i686-linux, x86_64-darwin, x86_64-linux ] - acme-schoenfinkel: [ i686-linux, x86_64-darwin, x86_64-linux ] - acme-zero: [ i686-linux, x86_64-darwin, x86_64-linux ] - ActionKid: [ i686-linux, x86_64-darwin, x86_64-linux ] - activehs: [ i686-linux, x86_64-darwin, x86_64-linux ] - actor: [ i686-linux, x86_64-darwin, x86_64-linux ] - Adaptive: [ i686-linux, x86_64-darwin, x86_64-linux ] - Adaptive-Blaisorblade: [ i686-linux, x86_64-darwin, x86_64-linux ] - adaptive-containers: [ i686-linux, x86_64-darwin, x86_64-linux ] - adaptive-tuple: [ i686-linux, x86_64-darwin, x86_64-linux ] - adhoc-network: [ i686-linux, x86_64-darwin, x86_64-linux ] - adict: [ i686-linux, x86_64-darwin, x86_64-linux ] - adobe-swatch-exchange: [ i686-linux, x86_64-darwin, x86_64-linux ] - adp-multi: [ i686-linux, x86_64-darwin, x86_64-linux ] - adp-multi-monadiccp: [ i686-linux, x86_64-darwin, x86_64-linux ] - ADPfusion: [ i686-linux, x86_64-darwin, x86_64-linux ] - Advgame: [ i686-linux, x86_64-darwin, x86_64-linux ] - AERN-Basics: [ i686-linux, x86_64-darwin, x86_64-linux ] - AERN-Net: [ i686-linux, x86_64-darwin, x86_64-linux ] - AERN-Real: [ i686-linux, x86_64-darwin, x86_64-linux ] - AERN-Real-Double: [ i686-linux, x86_64-darwin, x86_64-linux ] - AERN-Real-Interval: [ i686-linux, x86_64-darwin, x86_64-linux ] - AERN-RnToRm: [ i686-linux, x86_64-darwin, x86_64-linux ] - AERN-RnToRm-Plot: [ i686-linux, x86_64-linux ] - aeson-bson: [ i686-linux, x86_64-darwin, x86_64-linux ] - aeson-native: [ i686-linux, x86_64-darwin, x86_64-linux ] - aeson-smart: [ i686-linux, x86_64-darwin, x86_64-linux ] - AesonBson: [ i686-linux, x86_64-darwin, x86_64-linux ] - afv: [ i686-linux, x86_64-darwin, x86_64-linux ] - Agata: [ i686-linux, x86_64-darwin, x86_64-linux ] - Agda: [ i686-linux, x86_64-darwin, x86_64-linux ] - Agda-executable: [ i686-linux, x86_64-darwin, x86_64-linux ] - agda-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - agda-snippets: [ i686-linux, x86_64-darwin, x86_64-linux ] - agda-snippets-hakyll: [ i686-linux, x86_64-darwin, x86_64-linux ] - AGI: [ i686-linux, x86_64-darwin, x86_64-linux ] - AhoCorasick: [ i686-linux, x86_64-darwin, x86_64-linux ] - airbrake: [ i686-linux, x86_64-darwin, x86_64-linux ] - ajhc: [ i686-linux, x86_64-darwin, x86_64-linux ] - al: [ i686-linux, x86_64-darwin, x86_64-linux ] - alea: [ i686-linux, x86_64-darwin, x86_64-linux ] - alga: [ i686-linux ] - algebraic: [ i686-linux, x86_64-darwin, x86_64-linux ] - AlignmentAlgorithms: [ i686-linux, x86_64-darwin, x86_64-linux ] - Allure: [ i686-linux, x86_64-darwin, x86_64-linux ] - alms: [ i686-linux, x86_64-darwin, x86_64-linux ] - alpha: [ i686-linux, x86_64-darwin, x86_64-linux ] - alpino-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] - alsa: [ i686-linux, x86_64-linux ] - alsa-midi: [ i686-linux, x86_64-linux ] - alsa-pcm-tests: [ i686-linux, x86_64-linux ] - alsa-seq-tests: [ i686-linux, x86_64-linux ] - altfloat: [ i686-linux, x86_64-darwin, x86_64-linux ] - alure: [ i686-linux, x86_64-darwin, x86_64-linux ] - ALUT: [ x86_64-darwin ] - amazon-emailer: [ i686-linux, x86_64-darwin, x86_64-linux ] - amazon-products: [ i686-linux, x86_64-darwin, x86_64-linux ] - amazonka-rds: [ i686-linux ] - amazonka-sqs: [ i686-linux ] - AMI: [ i686-linux, x86_64-darwin, x86_64-linux ] - ampersand: [ i686-linux, x86_64-darwin, x86_64-linux ] - anansi-pandoc: [ i686-linux, x86_64-darwin, x86_64-linux ] - anatomy: [ i686-linux, x86_64-darwin, x86_64-linux ] - android-lint-summary: [ i686-linux, x86_64-darwin, x86_64-linux ] - AndroidViewHierarchyImporter: [ i686-linux, x86_64-darwin, x86_64-linux ] - Animas: [ i686-linux, x86_64-darwin, x86_64-linux ] - antfarm: [ i686-linux, x86_64-darwin, x86_64-linux ] - anticiv: [ i686-linux, x86_64-darwin, x86_64-linux ] - antigate: [ i686-linux, x86_64-darwin, x86_64-linux ] - antimirov: [ i686-linux, x86_64-darwin, x86_64-linux ] - antlrc: [ i686-linux, x86_64-darwin, x86_64-linux ] - anydbm: [ i686-linux, x86_64-darwin, x86_64-linux ] - aosd: [ i686-linux, x86_64-darwin, x86_64-linux ] - apelsin: [ i686-linux, x86_64-darwin, x86_64-linux ] - api-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] - apiary-helics: [ i686-linux, x86_64-linux ] - apiary-purescript: [ i686-linux, x86_64-darwin, x86_64-linux ] - apis: [ i686-linux, x86_64-darwin, x86_64-linux ] - apotiki: [ i686-linux, x86_64-darwin, x86_64-linux ] - app-lens: [ i686-linux, x86_64-darwin, x86_64-linux ] - appc: [ i686-linux, x86_64-darwin, x86_64-linux ] - ApplePush: [ i686-linux, x86_64-darwin, x86_64-linux ] - AppleScript: [ i686-linux, x86_64-darwin, x86_64-linux ] - apply-refact: [ x86_64-darwin ] - approx-rand-test: [ i686-linux, x86_64-darwin, x86_64-linux ] - arb-fft: [ i686-linux, x86_64-darwin, x86_64-linux ] - arbb-vm: [ i686-linux, x86_64-darwin, x86_64-linux ] - archiver: [ i686-linux, x86_64-darwin, x86_64-linux ] - archlinux: [ i686-linux, x86_64-darwin, x86_64-linux ] - archlinux-web: [ i686-linux, x86_64-darwin, x86_64-linux ] - arff: [ i686-linux, x86_64-darwin, x86_64-linux ] - arghwxhaskell: [ x86_64-darwin ] - argon2: [ i686-linux, x86_64-darwin, x86_64-linux ] - argparser: [ i686-linux, x86_64-darwin, x86_64-linux ] - arguedit: [ i686-linux, x86_64-darwin, x86_64-linux ] - ariadne: [ i686-linux, x86_64-darwin, x86_64-linux ] - arion: [ i686-linux, x86_64-darwin, x86_64-linux ] - arith-encode: [ i686-linux, x86_64-darwin, x86_64-linux ] - arithmetic: [ i686-linux ] - arithmoi: [ i686-linux ] - armada: [ i686-linux, x86_64-darwin, x86_64-linux ] - array-forth: [ i686-linux, x86_64-darwin, x86_64-linux ] - ArrayRef: [ i686-linux, x86_64-darwin, x86_64-linux ] - arrow-improve: [ i686-linux, x86_64-darwin, x86_64-linux ] - arrowapply-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - arrowp: [ i686-linux, x86_64-darwin, x86_64-linux ] - ArrowVHDL: [ i686-linux, x86_64-darwin, x86_64-linux ] - ascii85-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - asic: [ i686-linux, x86_64-darwin, x86_64-linux ] - asil: [ i686-linux, x86_64-darwin, x86_64-linux ] - AspectAG: [ i686-linux, x86_64-darwin, x86_64-linux ] - assimp: [ i686-linux, x86_64-darwin, x86_64-linux ] - astrds: [ i686-linux, x86_64-linux ] - astview: [ i686-linux, x86_64-darwin, x86_64-linux ] - async-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] - aterm-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - atlassian-connect-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - atlassian-connect-descriptor: [ i686-linux, x86_64-darwin, x86_64-linux ] - atom-msp430: [ x86_64-darwin, x86_64-linux ] - atomic-primops-foreign: [ x86_64-darwin ] - atomic-primops-vector: [ i686-linux, x86_64-darwin, x86_64-linux ] - atomo: [ i686-linux, x86_64-darwin, x86_64-linux ] - AttoJson: [ i686-linux, x86_64-darwin, x86_64-linux ] - attoparsec-csv: [ i686-linux, x86_64-darwin, x86_64-linux ] - attoparsec-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] - attoparsec-text: [ i686-linux, x86_64-darwin, x86_64-linux ] - attoparsec-text-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] - Attrac: [ i686-linux, x86_64-darwin, x86_64-linux ] - atuin: [ i686-linux, x86_64-darwin, x86_64-linux ] - audiovisual: [ i686-linux, x86_64-darwin, x86_64-linux ] - augeas: [ i686-linux, x86_64-darwin, x86_64-linux ] - augur: [ i686-linux, x86_64-darwin, x86_64-linux ] - Aurochs: [ i686-linux, x86_64-darwin, x86_64-linux ] - authoring: [ i686-linux, x86_64-darwin, x86_64-linux ] - AutoForms: [ i686-linux, x86_64-darwin, x86_64-linux ] - autoproc: [ i686-linux, x86_64-darwin, x86_64-linux ] - avahi: [ i686-linux, x86_64-darwin, x86_64-linux ] - AvlTree: [ i686-linux, x86_64-darwin, x86_64-linux ] - awesomium: [ i686-linux, x86_64-darwin, x86_64-linux ] - awesomium-glut: [ i686-linux, x86_64-darwin, x86_64-linux ] - awesomium-raw: [ i686-linux, x86_64-darwin, x86_64-linux ] - aws-configuration-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] - aws-dynamodb-streams: [ i686-linux, x86_64-darwin, x86_64-linux ] - aws-elastic-transcoder: [ i686-linux, x86_64-darwin, x86_64-linux ] - aws-general: [ i686-linux, x86_64-darwin, x86_64-linux ] - aws-kinesis: [ i686-linux, x86_64-darwin, x86_64-linux ] - aws-kinesis-client: [ i686-linux, x86_64-darwin, x86_64-linux ] - aws-kinesis-reshard: [ i686-linux, x86_64-darwin, x86_64-linux ] - aws-lambda: [ i686-linux, x86_64-darwin, x86_64-linux ] - aws-performance-tests: [ i686-linux, x86_64-darwin, x86_64-linux ] - aws-sdk: [ i686-linux, x86_64-darwin, x86_64-linux ] - aws-sign4: [ i686-linux, x86_64-darwin, x86_64-linux ] - aws-sns: [ i686-linux, x86_64-darwin, x86_64-linux ] - azure-service-api: [ i686-linux, x86_64-darwin, x86_64-linux ] - azurify: [ i686-linux, x86_64-darwin, x86_64-linux ] - b-tree: [ i686-linux, x86_64-darwin, x86_64-linux ] - babylon: [ x86_64-darwin ] - backdropper: [ i686-linux, x86_64-darwin, x86_64-linux ] - bag: [ i686-linux, x86_64-darwin, x86_64-linux ] - Baggins: [ i686-linux, x86_64-darwin, x86_64-linux ] - bamboo: [ i686-linux, x86_64-darwin, x86_64-linux ] - bamboo-launcher: [ i686-linux, x86_64-darwin, x86_64-linux ] - bamboo-plugin-highlight: [ i686-linux, x86_64-darwin, x86_64-linux ] - bamboo-plugin-photo: [ i686-linux, x86_64-darwin, x86_64-linux ] - bamboo-theme-blueprint: [ i686-linux, x86_64-darwin, x86_64-linux ] - bamboo-theme-mini-html5: [ i686-linux, x86_64-darwin, x86_64-linux ] - bamse: [ i686-linux, x86_64-darwin, x86_64-linux ] - Bang: [ x86_64-darwin ] - barchart: [ i686-linux, x86_64-darwin, x86_64-linux ] - barcodes-code128: [ i686-linux, x86_64-darwin, x86_64-linux ] - barley: [ i686-linux, x86_64-darwin, x86_64-linux ] - Barracuda: [ i686-linux, x86_64-darwin, x86_64-linux ] - barrie: [ i686-linux, x86_64-darwin, x86_64-linux ] - barrier-monad: [ i686-linux, x86_64-darwin, x86_64-linux ] - base32-bytestring: [ x86_64-darwin ] - BASIC: [ i686-linux, x86_64-darwin, x86_64-linux ] - baskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - battleships: [ i686-linux, x86_64-darwin, x86_64-linux ] - bayes-stack: [ i686-linux, x86_64-darwin, x86_64-linux ] - BCMtools: [ i686-linux, x86_64-darwin, x86_64-linux ] - beamable: [ i686-linux, x86_64-darwin, x86_64-linux ] - beautifHOL: [ i686-linux, x86_64-darwin, x86_64-linux ] - bed-and-breakfast: [ i686-linux, x86_64-darwin, x86_64-linux ] - Befunge93: [ i686-linux, x86_64-darwin, x86_64-linux ] - bein: [ i686-linux, x86_64-darwin, x86_64-linux ] - berkeleydb: [ i686-linux, x86_64-darwin, x86_64-linux ] - BerkeleyDBXML: [ i686-linux, x86_64-darwin, x86_64-linux ] - berp: [ i686-linux, x86_64-darwin, x86_64-linux ] - bff: [ i686-linux, x86_64-darwin, x86_64-linux ] - bgzf: [ i686-linux, x86_64-darwin, x86_64-linux ] - bidirectionalization-combined: [ i686-linux, x86_64-darwin, x86_64-linux ] - bidispec: [ i686-linux, x86_64-darwin, x86_64-linux ] - BigPixel: [ x86_64-darwin ] - billboard-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] - billeksah-forms: [ i686-linux, x86_64-darwin, x86_64-linux ] - billeksah-main: [ i686-linux, x86_64-darwin, x86_64-linux ] - billeksah-pane: [ i686-linux, x86_64-darwin, x86_64-linux ] - billeksah-services: [ i686-linux, x86_64-darwin, x86_64-linux ] - bimaps: [ i686-linux, x86_64-darwin, x86_64-linux ] - binary-derive: [ i686-linux, x86_64-darwin, x86_64-linux ] - binary-indexed-tree: [ i686-linux, x86_64-darwin, x86_64-linux ] - binary-protocol-zmq: [ i686-linux, x86_64-darwin, x86_64-linux ] - binary-streams: [ i686-linux, x86_64-darwin, x86_64-linux ] - bind-marshal: [ i686-linux, x86_64-darwin, x86_64-linux ] - binding-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] - binding-wx: [ x86_64-darwin ] - bindings-apr: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-apr-util: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-bfd: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-cctools: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-codec2: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-common: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-dc1394: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-eskit: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-EsounD: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-fann: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-fluidsynth: [ x86_64-darwin ] - bindings-friso: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-GLFW: [ x86_64-darwin ] - bindings-gpgme: [ x86_64-darwin ] - bindings-gsl: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-gts: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-hamlib: [ x86_64-darwin ] - bindings-hdf5: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-K8055: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-libcddb: [ x86_64-darwin ] - bindings-libftdi: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-librrd: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-libstemmer: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-libv4l2: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-libzip: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-linux-videodev2: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-mmap: [ x86_64-darwin ] - bindings-mpdecimal: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-parport: [ x86_64-darwin ] - bindings-portaudio: [ x86_64-darwin ] - bindings-posix: [ x86_64-darwin ] - bindings-ppdev: [ x86_64-darwin ] - bindings-sane: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-sc3: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-sipc: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-svm: [ x86_64-darwin ] - binembed-example: [ x86_64-darwin ] - bio: [ i686-linux, x86_64-darwin, x86_64-linux ] - Biobase: [ i686-linux, x86_64-darwin, x86_64-linux ] - BiobaseBlast: [ i686-linux, x86_64-darwin, x86_64-linux ] - BiobaseDotP: [ i686-linux, x86_64-darwin, x86_64-linux ] - BiobaseFasta: [ i686-linux, x86_64-darwin, x86_64-linux ] - BiobaseFR3D: [ i686-linux, x86_64-darwin, x86_64-linux ] - BiobaseInfernal: [ i686-linux, x86_64-darwin, x86_64-linux ] - BiobaseMAF: [ i686-linux, x86_64-darwin, x86_64-linux ] - BiobaseTrainingData: [ i686-linux, x86_64-darwin, x86_64-linux ] - BiobaseTurner: [ i686-linux, x86_64-darwin, x86_64-linux ] - BiobaseTypes: [ i686-linux, x86_64-darwin, x86_64-linux ] - BiobaseVienna: [ i686-linux, x86_64-darwin, x86_64-linux ] - BiobaseXNA: [ i686-linux, x86_64-darwin, x86_64-linux ] - biohazard: [ i686-linux, x86_64-darwin, x86_64-linux ] - bioinformatics-toolkit: [ i686-linux, x86_64-darwin, x86_64-linux ] - biosff: [ i686-linux, x86_64-darwin, x86_64-linux ] - biostockholm: [ i686-linux, x86_64-darwin, x86_64-linux ] - bird: [ i686-linux, x86_64-darwin, x86_64-linux ] - BirdPP: [ i686-linux, x86_64-darwin, x86_64-linux ] - bit-vector: [ i686-linux ] - bitcoin-rpc: [ i686-linux, x86_64-darwin, x86_64-linux ] - Bitly: [ i686-linux, x86_64-darwin, x86_64-linux ] - bitly-cli: [ i686-linux, x86_64-darwin, x86_64-linux ] - bitmap-opengl: [ x86_64-darwin ] - bits-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - bits-extras: [ x86_64-darwin ] - bitset: [ i686-linux, x86_64-darwin, x86_64-linux ] - bitspeak: [ i686-linux, x86_64-darwin, x86_64-linux ] - bitstream: [ i686-linux, x86_64-darwin, x86_64-linux ] - bittorrent: [ i686-linux, x86_64-darwin, x86_64-linux ] - bitvec: [ i686-linux, x86_64-darwin, x86_64-linux ] - bkr: [ i686-linux, x86_64-darwin, x86_64-linux ] - bla: [ i686-linux, x86_64-darwin, x86_64-linux ] - black-jewel: [ i686-linux, x86_64-darwin, x86_64-linux ] - blake2: [ i686-linux ] - blakesum: [ i686-linux, x86_64-darwin, x86_64-linux ] - blakesum-demo: [ i686-linux, x86_64-darwin, x86_64-linux ] - blas: [ i686-linux, x86_64-darwin, x86_64-linux ] - blas-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - blaze-html-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] - blaze-html-hexpat: [ i686-linux, x86_64-darwin, x86_64-linux ] - blaze-textual-native: [ i686-linux, x86_64-darwin, x86_64-linux ] - blazeMarker: [ i686-linux, x86_64-darwin, x86_64-linux ] - blip: [ i686-linux, x86_64-darwin, x86_64-linux ] - Blobs: [ i686-linux, x86_64-darwin, x86_64-linux ] - blogination: [ i686-linux, x86_64-darwin, x86_64-linux ] - BlogLiterately-diagrams: [ x86_64-darwin ] - bloodhound: [ i686-linux, x86_64-darwin, x86_64-linux ] - bloxorz: [ x86_64-darwin ] - blubber: [ x86_64-darwin ] - Blueprint: [ i686-linux, x86_64-darwin, x86_64-linux ] - bluetile: [ i686-linux, x86_64-darwin, x86_64-linux ] - bluetileutils: [ x86_64-darwin ] - board-games: [ i686-linux, x86_64-darwin, x86_64-linux ] - bogre-banana: [ i686-linux, x86_64-darwin, x86_64-linux ] - bond: [ i686-linux, x86_64-darwin, x86_64-linux ] - bond-haskell-compiler: [ i686-linux, x86_64-darwin, x86_64-linux ] - boolean-normal-forms: [ i686-linux, x86_64-darwin, x86_64-linux ] - boolsimplifier: [ i686-linux, x86_64-darwin, x86_64-linux ] - boomslang: [ i686-linux, x86_64-darwin, x86_64-linux ] - borel: [ i686-linux, x86_64-darwin, x86_64-linux ] - bot: [ i686-linux, x86_64-darwin, x86_64-linux ] - bowntz: [ x86_64-darwin ] - Bravo: [ i686-linux, x86_64-darwin, x86_64-linux ] - breakout: [ i686-linux, x86_64-darwin, x86_64-linux ] - breve: [ x86_64-darwin ] - brians-brain: [ i686-linux, x86_64-darwin, x86_64-linux ] - brillig: [ i686-linux, x86_64-darwin, x86_64-linux ] - broker-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - bsd-sysctl: [ i686-linux, x86_64-darwin, x86_64-linux ] - bson-generics: [ i686-linux, x86_64-darwin, x86_64-linux ] - bson-mapping: [ i686-linux, x86_64-darwin, x86_64-linux ] - btree-concurrent: [ i686-linux, x86_64-darwin, x86_64-linux ] - btrfs: [ x86_64-darwin ] - buffer-builder: [ i686-linux ] - buffer-builder-aeson: [ i686-linux, x86_64-darwin, x86_64-linux ] - buffon: [ i686-linux, x86_64-darwin, x86_64-linux ] - buildbox-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] - buildwrapper: [ i686-linux, x86_64-darwin, x86_64-linux ] - bullet: [ i686-linux, x86_64-darwin, x86_64-linux ] - Buster: [ i686-linux, x86_64-darwin, x86_64-linux ] - buster: [ i686-linux, x86_64-darwin, x86_64-linux ] - buster-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] - buster-network: [ i686-linux, x86_64-darwin, x86_64-linux ] - bustle: [ x86_64-darwin ] - butterflies: [ i686-linux, x86_64-darwin, x86_64-linux ] - bytable: [ i686-linux, x86_64-darwin, x86_64-linux ] - bytestring-class: [ i686-linux, x86_64-darwin, x86_64-linux ] - bytestring-csv: [ i686-linux, x86_64-darwin, x86_64-linux ] - bytestring-rematch: [ i686-linux, x86_64-darwin, x86_64-linux ] - bytestringparser: [ i686-linux, x86_64-darwin, x86_64-linux ] - bytestringreadp: [ i686-linux, x86_64-darwin, x86_64-linux ] - c-io: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabal-constraints: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabal-dev: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabal-ghci: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabal-graphdeps: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabal-install-bundle: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabal-install-ghc72: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabal-install-ghc74: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabal-query: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabal-setup: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabal-test: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabal-upload: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabal2arch: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabal2doap: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabal2spec: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabalgraph: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabalmdvrpm: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabalrpmdeps: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabocha: [ i686-linux, x86_64-darwin, x86_64-linux ] - cairo-appbase: [ x86_64-darwin ] - cake3: [ i686-linux, x86_64-darwin, x86_64-linux ] - cakyrespa: [ i686-linux, x86_64-darwin, x86_64-linux ] - cal3d: [ i686-linux, x86_64-darwin, x86_64-linux ] - cal3d-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - cal3d-opengl: [ i686-linux, x86_64-darwin, x86_64-linux ] - calc: [ i686-linux, x86_64-darwin, x86_64-linux ] - calculator: [ x86_64-darwin ] - caldims: [ i686-linux, x86_64-darwin, x86_64-linux ] - caledon: [ i686-linux, x86_64-darwin, x86_64-linux ] - call: [ i686-linux, x86_64-darwin, x86_64-linux ] - call-haskell-from-anything: [ i686-linux, x86_64-darwin, x86_64-linux ] - campfire: [ i686-linux, x86_64-darwin, x86_64-linux ] - cantor: [ i686-linux, x86_64-darwin, x86_64-linux ] - cao: [ i686-linux, x86_64-darwin, x86_64-linux ] - cap: [ i686-linux, x86_64-darwin, x86_64-linux ] - Capabilities: [ i686-linux, x86_64-darwin, x86_64-linux ] - capri: [ i686-linux, x86_64-darwin, x86_64-linux ] - caramia: [ x86_64-darwin ] - carboncopy: [ i686-linux, x86_64-darwin, x86_64-linux ] - carettah: [ i686-linux, x86_64-linux ] - casadi-bindings: [ i686-linux, x86_64-darwin, x86_64-linux ] - casadi-bindings-control: [ i686-linux, x86_64-darwin, x86_64-linux ] - casadi-bindings-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - casadi-bindings-internal: [ i686-linux, x86_64-darwin, x86_64-linux ] - casadi-bindings-ipopt-interface: [ i686-linux, x86_64-darwin, x86_64-linux ] - casadi-bindings-snopt-interface: [ i686-linux, x86_64-darwin, x86_64-linux ] - Cascade: [ i686-linux, x86_64-darwin, x86_64-linux ] - cascading: [ i686-linux, x86_64-darwin, x86_64-linux ] - cash: [ i686-linux, x86_64-darwin, x86_64-linux ] - cassandra-thrift: [ i686-linux, x86_64-darwin, x86_64-linux ] - cassava-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - cassy: [ i686-linux, x86_64-darwin, x86_64-linux ] - casui: [ i686-linux, x86_64-darwin, x86_64-linux ] - Catana: [ i686-linux, x86_64-darwin, x86_64-linux ] - catch-fd: [ i686-linux, x86_64-darwin, x86_64-linux ] - categorical-algebra: [ i686-linux, x86_64-darwin, x86_64-linux ] - category-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] - cblrepo: [ i686-linux, x86_64-darwin, x86_64-linux ] - CBOR: [ i686-linux, x86_64-darwin, x86_64-linux ] - CC-delcont: [ i686-linux, x86_64-darwin, x86_64-linux ] - CC-delcont-alt: [ i686-linux, x86_64-darwin, x86_64-linux ] - CC-delcont-cxe: [ i686-linux, x86_64-darwin, x86_64-linux ] - CC-delcont-exc: [ i686-linux, x86_64-darwin, x86_64-linux ] - CC-delcont-ref: [ i686-linux, x86_64-darwin, x86_64-linux ] - CC-delcont-ref-tf: [ i686-linux, x86_64-darwin, x86_64-linux ] - cci: [ i686-linux, x86_64-darwin, x86_64-linux ] - cctools-workqueue: [ i686-linux, x86_64-darwin, x86_64-linux ] - cedict: [ i686-linux, x86_64-darwin, x86_64-linux ] - ceilometer-common: [ i686-linux, x86_64-darwin, x86_64-linux ] - cellrenderer-cairo: [ x86_64-darwin ] - cereal-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] - cereal-ieee754: [ i686-linux, x86_64-darwin, x86_64-linux ] - cereal-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] - certificate: [ i686-linux, x86_64-darwin, x86_64-linux ] - cf: [ i686-linux, x86_64-darwin, x86_64-linux ] - cfipu: [ i686-linux, x86_64-darwin, x86_64-linux ] - cflp: [ i686-linux, x86_64-darwin, x86_64-linux ] - cfopu: [ i686-linux, x86_64-darwin, x86_64-linux ] - cgen: [ i686-linux, x86_64-darwin, x86_64-linux ] - cgi-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - chalkboard: [ i686-linux, x86_64-darwin, x86_64-linux ] - chalkboard-viewer: [ i686-linux, x86_64-darwin, x86_64-linux ] - charade: [ i686-linux, x86_64-darwin, x86_64-linux ] - charsetdetect: [ x86_64-darwin ] - charsetdetect-ae: [ x86_64-darwin ] - Chart-gtk: [ x86_64-darwin ] - Chart-simple: [ x86_64-darwin ] - chatter: [ i686-linux, x86_64-darwin, x86_64-linux ] - check-pvp: [ i686-linux, x86_64-darwin, x86_64-linux ] - checked: [ i686-linux, x86_64-darwin, x86_64-linux ] - chell-hunit: [ i686-linux, x86_64-darwin, x86_64-linux ] - chevalier-common: [ i686-linux, x86_64-darwin, x86_64-linux ] - Chitra: [ i686-linux, x86_64-darwin, x86_64-linux ] - chp: [ i686-linux, x86_64-darwin, x86_64-linux ] - chp-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] - chp-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] - chp-spec: [ i686-linux, x86_64-darwin, x86_64-linux ] - chp-transformers: [ i686-linux, x86_64-darwin, x86_64-linux ] - ChristmasTree: [ i686-linux, x86_64-darwin, x86_64-linux ] - chuchu: [ i686-linux, x86_64-darwin, x86_64-linux ] - chunks: [ i686-linux, x86_64-darwin, x86_64-linux ] - cil: [ i686-linux, x86_64-darwin, x86_64-linux ] - cinvoke: [ i686-linux, x86_64-darwin, x86_64-linux ] - cio: [ i686-linux, x86_64-darwin, x86_64-linux ] - citation-resolve: [ i686-linux, x86_64-darwin, x86_64-linux ] - citeproc-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - citeproc-hs-pandoc-filter: [ i686-linux, x86_64-darwin, x86_64-linux ] - cityhash: [ x86_64-darwin ] - cjk: [ i686-linux, x86_64-darwin, x86_64-linux ] - clafer: [ i686-linux, x86_64-darwin, x86_64-linux ] - claferIG: [ i686-linux, x86_64-darwin, x86_64-linux ] - claferwiki: [ i686-linux, x86_64-darwin, x86_64-linux ] - clang-pure: [ x86_64-darwin ] - CLASE: [ i686-linux, x86_64-darwin, x86_64-linux ] - clash: [ i686-linux, x86_64-darwin, x86_64-linux ] - clash-prelude-quickcheck: [ i686-linux, x86_64-darwin, x86_64-linux ] - ClassLaws: [ i686-linux, x86_64-darwin, x86_64-linux ] - ClassyPrelude: [ i686-linux, x86_64-darwin, x86_64-linux ] - clckwrks-plugin-bugs: [ i686-linux, x86_64-darwin, x86_64-linux ] - clckwrks-theme-geo-bootstrap: [ i686-linux, x86_64-darwin, x86_64-linux ] - cld2: [ x86_64-darwin ] - Clean: [ i686-linux, x86_64-darwin, x86_64-linux ] - clevercss: [ i686-linux, x86_64-darwin, x86_64-linux ] - click-clack: [ i686-linux, x86_64-darwin, x86_64-linux ] - clifford: [ i686-linux, x86_64-darwin, x86_64-linux ] - clipper: [ i686-linux, x86_64-darwin, x86_64-linux ] - clippings: [ i686-linux, x86_64-darwin, x86_64-linux ] - clocked: [ i686-linux, x86_64-darwin, x86_64-linux ] - clogparse: [ i686-linux, x86_64-darwin, x86_64-linux ] - clone-all: [ i686-linux, x86_64-darwin, x86_64-linux ] - cloudfront-signer: [ i686-linux, x86_64-darwin, x86_64-linux ] - cloudyfs: [ i686-linux, x86_64-linux ] - clua: [ i686-linux, x86_64-darwin, x86_64-linux ] - cluss: [ i686-linux, x86_64-darwin, x86_64-linux ] - clustertools: [ i686-linux, x86_64-darwin, x86_64-linux ] - clutterhs: [ i686-linux, x86_64-darwin, x86_64-linux ] - cmath: [ i686-linux, x86_64-darwin, x86_64-linux ] - cmathml3: [ i686-linux, x86_64-darwin, x86_64-linux ] - CMCompare: [ i686-linux, x86_64-darwin, x86_64-linux ] - cmdargs-browser: [ i686-linux, x86_64-darwin, x86_64-linux ] - cmdtheline: [ i686-linux, x86_64-darwin, x86_64-linux ] - cmonad: [ i686-linux, x86_64-darwin, x86_64-linux ] - cnc-spec-compiler: [ i686-linux, x86_64-darwin, x86_64-linux ] - cndict: [ i686-linux, x86_64-darwin, x86_64-linux ] - Coadjute: [ i686-linux, x86_64-darwin, x86_64-linux ] - Codec-Image-DevIL: [ i686-linux, x86_64-darwin, x86_64-linux ] - codec-libevent: [ i686-linux, x86_64-darwin, x86_64-linux ] - codecov-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - codemonitor: [ i686-linux, x86_64-darwin, x86_64-linux ] - codepad: [ i686-linux, x86_64-darwin, x86_64-linux ] - cognimeta-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - coinbase-exchange: [ i686-linux, x86_64-darwin, x86_64-linux ] - colada: [ i686-linux, x86_64-darwin, x86_64-linux ] - collada-output: [ i686-linux, x86_64-darwin, x86_64-linux ] - collada-types: [ i686-linux, x86_64-darwin, x86_64-linux ] - collections: [ i686-linux, x86_64-darwin, x86_64-linux ] - collections-api: [ i686-linux, x86_64-darwin, x86_64-linux ] - collections-base-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] - coltrane: [ i686-linux, x86_64-darwin, x86_64-linux ] - com: [ i686-linux, x86_64-darwin, x86_64-linux ] - combinat: [ i686-linux, x86_64-darwin, x86_64-linux ] - combinat-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] - combinator-interactive: [ i686-linux, x86_64-darwin, x86_64-linux ] - combinatorial-problems: [ i686-linux, x86_64-darwin, x86_64-linux ] - Combinatorrent: [ i686-linux, x86_64-darwin, x86_64-linux ] - Commando: [ i686-linux, x86_64-darwin, x86_64-linux ] - commodities: [ i686-linux, x86_64-darwin, x86_64-linux ] - commsec: [ i686-linux, x86_64-darwin, x86_64-linux ] - commsec-keyexchange: [ i686-linux, x86_64-darwin, x86_64-linux ] - comonad-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] - comonad-random: [ i686-linux, x86_64-darwin, x86_64-linux ] - compact-map: [ i686-linux, x86_64-darwin, x86_64-linux ] - compact-string: [ i686-linux, x86_64-darwin, x86_64-linux ] - compilation: [ i686-linux, x86_64-darwin, x86_64-linux ] - complexity: [ i686-linux, x86_64-darwin, x86_64-linux ] - compose-trans: [ i686-linux, x86_64-darwin, x86_64-linux ] - compression: [ i686-linux, x86_64-darwin, x86_64-linux ] - compstrat: [ i686-linux, x86_64-darwin, x86_64-linux ] - comptrans: [ i686-linux, x86_64-darwin, x86_64-linux ] - computational-algebra: [ i686-linux, x86_64-darwin, x86_64-linux ] - concraft: [ i686-linux, x86_64-darwin, x86_64-linux ] - concraft-hr: [ i686-linux, x86_64-darwin, x86_64-linux ] - concraft-pl: [ i686-linux, x86_64-darwin, x86_64-linux ] - concrete-typerep: [ i686-linux, x86_64-darwin, x86_64-linux ] - concurrent-state: [ i686-linux, x86_64-darwin, x86_64-linux ] - ConcurrentUtils: [ i686-linux, x86_64-darwin, x86_64-linux ] - condor: [ i686-linux, x86_64-darwin, x86_64-linux ] - Condor: [ i686-linux, x86_64-darwin, x86_64-linux ] - condorcet: [ i686-linux, x86_64-darwin, x86_64-linux ] - conductive-hsc3: [ i686-linux, x86_64-darwin, x86_64-linux ] - conduit-audio-lame: [ i686-linux, x86_64-darwin, x86_64-linux ] - conduit-audio-samplerate: [ i686-linux, x86_64-darwin, x86_64-linux ] - conduit-audio-sndfile: [ x86_64-darwin ] - conduit-network-stream: [ i686-linux, x86_64-darwin, x86_64-linux ] - conduit-resumablesink: [ i686-linux, x86_64-darwin, x86_64-linux ] - config-select: [ i686-linux, x86_64-darwin, x86_64-linux ] - Configger: [ i686-linux, x86_64-darwin, x86_64-linux ] - conjure: [ i686-linux, x86_64-darwin, x86_64-linux ] - consistent: [ i686-linux, x86_64-darwin, x86_64-linux ] - const-math-ghc-plugin: [ i686-linux, x86_64-darwin, x86_64-linux ] - ConstraintKinds: [ i686-linux, x86_64-darwin, x86_64-linux ] - constructible: [ i686-linux ] - constructive-algebra: [ i686-linux, x86_64-darwin, x86_64-linux ] - Consumer: [ i686-linux, x86_64-darwin, x86_64-linux ] - consumers: [ x86_64-darwin ] - container: [ i686-linux, x86_64-darwin, x86_64-linux ] - context-stack: [ i686-linux, x86_64-darwin, x86_64-linux ] - continue: [ i686-linux, x86_64-darwin, x86_64-linux ] - continuum: [ i686-linux, x86_64-darwin, x86_64-linux ] - Contract: [ i686-linux, x86_64-darwin, x86_64-linux ] - control-event: [ i686-linux, x86_64-darwin, x86_64-linux ] - control-monad-attempt: [ i686-linux, x86_64-darwin, x86_64-linux ] - control-monad-failure: [ i686-linux, x86_64-darwin, x86_64-linux ] - control-monad-failure-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] - Control-Monad-MultiPass: [ i686-linux, x86_64-darwin, x86_64-linux ] - Control-Monad-ST2: [ i686-linux, x86_64-darwin, x86_64-linux ] - contstuff-monads-tf: [ i686-linux, x86_64-darwin, x86_64-linux ] - contstuff-transformers: [ i686-linux, x86_64-darwin, x86_64-linux ] - convert: [ i686-linux, x86_64-darwin, x86_64-linux ] - convertible-ascii: [ i686-linux, x86_64-darwin, x86_64-linux ] - convertible-text: [ i686-linux, x86_64-darwin, x86_64-linux ] - copilot: [ i686-linux, x86_64-darwin, x86_64-linux ] - copilot-cbmc: [ i686-linux, x86_64-darwin, x86_64-linux ] - COrdering: [ i686-linux, x86_64-darwin, x86_64-linux ] - core: [ i686-linux, x86_64-darwin, x86_64-linux ] - core-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - corebot-bliki: [ i686-linux, x86_64-darwin, x86_64-linux ] - CoreFoundation: [ i686-linux, x86_64-darwin, x86_64-linux ] - Coroutine: [ i686-linux, x86_64-darwin, x86_64-linux ] - coroutine-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] - couch-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - couch-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] - CouchDB: [ i686-linux, x86_64-darwin, x86_64-linux ] - couchdb-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - couchdb-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] - court: [ i686-linux, x86_64-darwin, x86_64-linux ] - CPBrainfuck: [ i686-linux, x86_64-darwin, x86_64-linux ] - cpio-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - cplusplus-th: [ i686-linux, x86_64-darwin, x86_64-linux ] - cpuperf: [ i686-linux, x86_64-darwin, x86_64-linux ] - cpython: [ i686-linux, x86_64-darwin, x86_64-linux ] - cqrs-postgresql: [ i686-linux, x86_64-darwin, x86_64-linux ] - cqrs-sqlite3: [ i686-linux, x86_64-darwin, x86_64-linux ] - cqrs-test: [ i686-linux, x86_64-darwin, x86_64-linux ] - cr: [ i686-linux, x86_64-darwin, x86_64-linux ] - crack: [ i686-linux, x86_64-darwin, x86_64-linux ] - Craft3e: [ i686-linux, x86_64-darwin, x86_64-linux ] - craftwerk: [ i686-linux, x86_64-darwin, x86_64-linux ] - craftwerk-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] - craftwerk-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] - crc16: [ i686-linux, x86_64-darwin, x86_64-linux ] - crf-chain1: [ i686-linux, x86_64-darwin, x86_64-linux ] - crf-chain1-constrained: [ i686-linux, x86_64-darwin, x86_64-linux ] - crf-chain2-generic: [ i686-linux, x86_64-darwin, x86_64-linux ] - crf-chain2-tiers: [ i686-linux, x86_64-darwin, x86_64-linux ] - criterion-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] - crocodile: [ i686-linux, x86_64-darwin, x86_64-linux ] - cron-compat: [ i686-linux, x86_64-darwin, x86_64-linux ] - cruncher-types: [ i686-linux, x86_64-darwin, x86_64-linux ] - crunghc: [ i686-linux, x86_64-darwin, x86_64-linux ] - crypto-cipher-benchmarks: [ i686-linux, x86_64-darwin, x86_64-linux ] - crypto-enigma: [ i686-linux, x86_64-darwin, x86_64-linux ] - cryptsy-api: [ i686-linux, x86_64-darwin, x86_64-linux ] - crystalfontz: [ i686-linux, x86_64-darwin, x86_64-linux ] - cse-ghc-plugin: [ i686-linux, x86_64-darwin, x86_64-linux ] - csound-catalog: [ i686-linux, x86_64-linux ] - csp: [ i686-linux, x86_64-darwin, x86_64-linux ] - CSPM-cspm: [ i686-linux, x86_64-darwin, x86_64-linux ] - CSPM-FiringRules: [ i686-linux, x86_64-darwin, x86_64-linux ] - cspmchecker: [ i686-linux, x86_64-darwin, x86_64-linux ] - css: [ i686-linux, x86_64-darwin, x86_64-linux ] - ctemplate: [ i686-linux, x86_64-darwin, x86_64-linux ] - ctkl: [ i686-linux, x86_64-darwin, x86_64-linux ] - ctpl: [ i686-linux, x86_64-darwin, x86_64-linux ] - cubicbezier: [ i686-linux, x86_64-darwin, x86_64-linux ] - cuboid: [ i686-linux, x86_64-darwin ] - cudd: [ i686-linux, x86_64-linux ] - curry-base: [ i686-linux, x86_64-darwin, x86_64-linux ] - curry-frontend: [ i686-linux, x86_64-darwin, x86_64-linux ] - CurryDB: [ i686-linux, x86_64-darwin, x86_64-linux ] - curves: [ i686-linux, x86_64-darwin, x86_64-linux ] - CV: [ i686-linux, x86_64-darwin, x86_64-linux ] - cyclotomic: [ i686-linux ] - cypher: [ i686-linux, x86_64-darwin, x86_64-linux ] - DAG-Tournament: [ i686-linux, x86_64-darwin, x86_64-linux ] - Dangerous: [ i686-linux, x86_64-darwin, x86_64-linux ] - Dao: [ i686-linux, x86_64-darwin, x86_64-linux ] - dao: [ i686-linux, x86_64-darwin, x86_64-linux ] - dapi: [ i686-linux, x86_64-darwin, x86_64-linux ] - darcs-benchmark: [ i686-linux, x86_64-darwin, x86_64-linux ] - darcs-beta: [ i686-linux, x86_64-darwin, x86_64-linux ] - darcs-buildpackage: [ i686-linux, x86_64-darwin, x86_64-linux ] - darcs-cabalized: [ i686-linux, x86_64-darwin, x86_64-linux ] - darcs-fastconvert: [ i686-linux, x86_64-darwin, x86_64-linux ] - darcs-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] - darcs-monitor: [ i686-linux, x86_64-darwin, x86_64-linux ] - darcs2dot: [ i686-linux, x86_64-darwin, x86_64-linux ] - darcsden: [ i686-linux, x86_64-darwin, x86_64-linux ] - DarcsHelpers: [ i686-linux, x86_64-darwin, x86_64-linux ] - darcswatch: [ i686-linux, x86_64-darwin, x86_64-linux ] - darkplaces-demo: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-cycle: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-dispersal: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-easy: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-ivar: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-layer: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-lens-ixset: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-named: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-nat: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-object-json: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-object-yaml: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-quotientref: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-result: [ i686-linux, x86_64-darwin, x86_64-linux ] - Data-Rope: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-rope: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-rtuple: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-store: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-type: [ i686-linux, x86_64-darwin, x86_64-linux ] - datadog: [ i686-linux ] - datalog: [ i686-linux, x86_64-darwin, x86_64-linux ] - DataTreeView: [ i686-linux, x86_64-darwin, x86_64-linux ] - dbjava: [ i686-linux, x86_64-darwin, x86_64-linux ] - DBus: [ i686-linux, x86_64-darwin, x86_64-linux ] - dbus-client: [ i686-linux, x86_64-darwin, x86_64-linux ] - dbus-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - dclabel: [ i686-linux, x86_64-darwin, x86_64-linux ] - ddc-build: [ i686-linux, x86_64-darwin, x86_64-linux ] - ddc-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - ddc-core-eval: [ i686-linux, x86_64-darwin, x86_64-linux ] - ddc-core-flow: [ i686-linux, x86_64-darwin, x86_64-linux ] - ddc-core-llvm: [ i686-linux, x86_64-darwin, x86_64-linux ] - ddc-core-salt: [ i686-linux, x86_64-darwin, x86_64-linux ] - ddc-core-simpl: [ i686-linux, x86_64-darwin, x86_64-linux ] - ddc-core-tetra: [ i686-linux, x86_64-darwin, x86_64-linux ] - ddc-driver: [ i686-linux, x86_64-darwin, x86_64-linux ] - ddc-source-tetra: [ i686-linux, x86_64-darwin, x86_64-linux ] - ddc-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] - ddci-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - dead-simple-json: [ i686-linux, x86_64-darwin, x86_64-linux ] - decepticons: [ i686-linux, x86_64-darwin, x86_64-linux ] - DecisionTree: [ i686-linux, x86_64-darwin, x86_64-linux ] - decoder-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - dedukti: [ i686-linux, x86_64-darwin, x86_64-linux ] - deeplearning-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - deepseq-bounded: [ i686-linux, x86_64-darwin, x86_64-linux ] - deepseq-th: [ i686-linux, x86_64-darwin, x86_64-linux ] - deepzoom: [ i686-linux, x86_64-darwin, x86_64-linux ] - defargs: [ i686-linux, x86_64-darwin, x86_64-linux ] - DefendTheKing: [ i686-linux, x86_64-darwin, x86_64-linux ] - definitive-base: [ i686-linux, x86_64-darwin, x86_64-linux ] - definitive-filesystem: [ i686-linux, x86_64-darwin, x86_64-linux ] - definitive-graphics: [ i686-linux, x86_64-darwin, x86_64-linux ] - definitive-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] - definitive-reactive: [ i686-linux, x86_64-darwin, x86_64-linux ] - definitive-sound: [ i686-linux, x86_64-linux ] - deka: [ i686-linux, x86_64-darwin, x86_64-linux ] - deka-tests: [ i686-linux, x86_64-darwin, x86_64-linux ] - delicious: [ i686-linux, x86_64-darwin, x86_64-linux ] - delta: [ x86_64-darwin ] - delta-h: [ i686-linux, x86_64-darwin, x86_64-linux ] - demarcate: [ i686-linux, x86_64-darwin, x86_64-linux ] - denominate: [ i686-linux, x86_64-darwin, x86_64-linux ] - dependent-state: [ i686-linux, x86_64-darwin, x86_64-linux ] - depends: [ i686-linux, x86_64-darwin, x86_64-linux ] - dephd: [ i686-linux, x86_64-darwin, x86_64-linux ] - dequeue: [ i686-linux, x86_64-darwin, x86_64-linux ] - derangement: [ i686-linux, x86_64-darwin, x86_64-linux ] - derivation-trees: [ i686-linux, x86_64-darwin, x86_64-linux ] - derive-gadt: [ i686-linux, x86_64-darwin, x86_64-linux ] - derive-IG: [ i686-linux, x86_64-darwin, x86_64-linux ] - derive-topdown: [ i686-linux, x86_64-darwin, x86_64-linux ] - derive-trie: [ i686-linux, x86_64-darwin, x86_64-linux ] - derp-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] - devil: [ x86_64-darwin ] - dewdrop: [ i686-linux, x86_64-darwin, x86_64-linux ] - Dflow: [ i686-linux, x86_64-darwin, x86_64-linux ] - dfsbuild: [ i686-linux, x86_64-darwin, x86_64-linux ] - dgim: [ i686-linux, x86_64-darwin, x86_64-linux ] - dgs: [ i686-linux, x86_64-darwin, x86_64-linux ] - diagrams-builder: [ x86_64-darwin ] - diagrams-cairo: [ x86_64-darwin ] - diagrams-gtk: [ x86_64-darwin ] - diagrams-haddock: [ x86_64-darwin ] - diagrams-pandoc: [ x86_64-darwin ] - diagrams-pdf: [ i686-linux, x86_64-darwin, x86_64-linux ] - diagrams-pgf: [ i686-linux, x86_64-darwin, x86_64-linux ] - diagrams-reflex: [ i686-linux, x86_64-linux ] - diagrams-tikz: [ i686-linux, x86_64-darwin, x86_64-linux ] - dice-entropy-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - dictparser: [ i686-linux, x86_64-darwin, x86_64-linux ] - diffcabal: [ i686-linux, x86_64-darwin, x86_64-linux ] - DifferenceLogic: [ i686-linux, x86_64-darwin, x86_64-linux ] - DifferentialEvolution: [ i686-linux, x86_64-darwin, x86_64-linux ] - digestive-functors-hsp: [ i686-linux, x86_64-darwin, x86_64-linux ] - DimensionalHash: [ i686-linux, x86_64-darwin, x86_64-linux ] - dingo-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - dingo-example: [ i686-linux, x86_64-darwin, x86_64-linux ] - dingo-widgets: [ i686-linux, x86_64-darwin, x86_64-linux ] - diophantine: [ i686-linux, x86_64-darwin, x86_64-linux ] - diplomacy-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - direct-binary-files: [ i686-linux, x86_64-darwin, x86_64-linux ] - direct-fastcgi: [ i686-linux, x86_64-darwin, x86_64-linux ] - direct-http: [ i686-linux, x86_64-darwin, x86_64-linux ] - direct-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] - directed-cubical: [ i686-linux, x86_64-darwin, x86_64-linux ] - dirfiles: [ i686-linux, x86_64-darwin, x86_64-linux ] - discount: [ i686-linux, x86_64-darwin, x86_64-linux ] - disjoint-set: [ i686-linux, x86_64-darwin, x86_64-linux ] - DisTract: [ i686-linux, x86_64-darwin, x86_64-linux ] - distributed-process-azure: [ i686-linux, x86_64-darwin, x86_64-linux ] - distributed-process-lifted: [ i686-linux, x86_64-darwin, x86_64-linux ] - distributed-process-platform: [ i686-linux, x86_64-darwin, x86_64-linux ] - distributed-process-registry: [ x86_64-linux ] - distributed-process-zookeeper: [ i686-linux, x86_64-darwin, x86_64-linux ] - distribution: [ i686-linux, x86_64-darwin, x86_64-linux ] - distribution-plot: [ i686-linux, x86_64-darwin, x86_64-linux ] - djembe: [ x86_64-darwin ] - djinn-th: [ i686-linux, x86_64-darwin, x86_64-linux ] - DnaProteinAlignment: [ i686-linux, x86_64-darwin, x86_64-linux ] - dnscache: [ i686-linux, x86_64-darwin, x86_64-linux ] - dnssd: [ i686-linux, x86_64-darwin, x86_64-linux ] - doc-review: [ i686-linux, x86_64-darwin, x86_64-linux ] - doccheck: [ i686-linux, x86_64-darwin, x86_64-linux ] - docidx: [ i686-linux, x86_64-darwin, x86_64-linux ] - dockercook: [ i686-linux, x86_64-darwin, x86_64-linux ] - DocTest: [ i686-linux, x86_64-darwin, x86_64-linux ] - doctest-discover: [ i686-linux, x86_64-darwin, x86_64-linux ] - doctest-discover-configurator: [ i686-linux, x86_64-darwin, x86_64-linux ] - DOM: [ i686-linux, x86_64-darwin, x86_64-linux ] - dow: [ x86_64-darwin ] - download: [ i686-linux, x86_64-darwin, x86_64-linux ] - download-media-content: [ i686-linux, x86_64-darwin, x86_64-linux ] - DP: [ i686-linux, x86_64-darwin, x86_64-linux ] - dph-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - dph-lifted-base: [ i686-linux, x86_64-darwin, x86_64-linux ] - dph-lifted-copy: [ i686-linux, x86_64-darwin, x86_64-linux ] - dph-lifted-vseg: [ i686-linux, x86_64-darwin, x86_64-linux ] - dph-prim-par: [ i686-linux, x86_64-darwin, x86_64-linux ] - dph-prim-seq: [ i686-linux, x86_64-darwin, x86_64-linux ] - dpkg: [ i686-linux, x86_64-linux ] - DPM: [ i686-linux, x86_64-darwin, x86_64-linux ] - drClickOn: [ i686-linux, x86_64-darwin, x86_64-linux ] - dresdner-verkehrsbetriebe: [ i686-linux, x86_64-darwin, x86_64-linux ] - DrHylo: [ i686-linux, x86_64-darwin, x86_64-linux ] - DrIFT: [ i686-linux, x86_64-darwin, x86_64-linux ] - DrIFT-cabalized: [ i686-linux, x86_64-darwin, x86_64-linux ] - dropbox-sdk: [ i686-linux, x86_64-darwin, x86_64-linux ] - dropsolve: [ i686-linux, x86_64-darwin, x86_64-linux ] - ds-kanren: [ i686-linux, x86_64-darwin, x86_64-linux ] - dsmc: [ i686-linux, x86_64-darwin, x86_64-linux ] - dsmc-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] - DSTM: [ i686-linux, x86_64-darwin, x86_64-linux ] - dstring: [ i686-linux, x86_64-darwin, x86_64-linux ] - DTC: [ i686-linux, x86_64-darwin, x86_64-linux ] - dtd: [ i686-linux, x86_64-darwin, x86_64-linux ] - dtd-text: [ i686-linux, x86_64-darwin, x86_64-linux ] - dtd-types: [ i686-linux, x86_64-darwin, x86_64-linux ] - duplo: [ i686-linux, x86_64-darwin, x86_64-linux ] - Dust: [ i686-linux, x86_64-darwin, x86_64-linux ] - Dust-crypto: [ i686-linux, x86_64-darwin, x86_64-linux ] - Dust-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] - Dust-tools-pcap: [ i686-linux, x86_64-darwin, x86_64-linux ] - dvda: [ i686-linux, x86_64-darwin, x86_64-linux ] - dvdread: [ i686-linux, x86_64-darwin, x86_64-linux ] - dynamic-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] - dynamic-object: [ i686-linux, x86_64-darwin, x86_64-linux ] - dynamic-plot: [ i686-linux, x86_64-darwin, x86_64-linux ] - dynamic-pp: [ i686-linux, x86_64-darwin, x86_64-linux ] - DynamicTimeWarp: [ i686-linux, x86_64-darwin, x86_64-linux ] - dynobud: [ i686-linux, x86_64-darwin, x86_64-linux ] - DysFRP-Cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] - DysFRP-Craftwerk: [ i686-linux, x86_64-darwin, x86_64-linux ] - easy-api: [ i686-linux, x86_64-darwin, x86_64-linux ] - easyjson: [ i686-linux, x86_64-darwin, x86_64-linux ] - easyplot: [ i686-linux, x86_64-darwin, x86_64-linux ] - easyrender: [ i686-linux, x86_64-darwin, x86_64-linux ] - ebnf-bff: [ i686-linux, x86_64-darwin, x86_64-linux ] - ecdsa: [ i686-linux, x86_64-darwin, x86_64-linux ] - ecma262: [ i686-linux, x86_64-darwin, x86_64-linux ] - ecu: [ i686-linux, x86_64-darwin, x86_64-linux ] - ed25519: [ i686-linux, x86_64-darwin, x86_64-linux ] - edenmodules: [ i686-linux, x86_64-darwin, x86_64-linux ] - edenskel: [ i686-linux, x86_64-darwin, x86_64-linux ] - edentv: [ i686-linux, x86_64-darwin, x86_64-linux ] - edge: [ i686-linux, x86_64-darwin, x86_64-linux ] - edit-lenses: [ i686-linux, x86_64-darwin, x86_64-linux ] - editline: [ i686-linux, x86_64-darwin, x86_64-linux ] - EditTimeReport: [ i686-linux, x86_64-darwin, x86_64-linux ] - EEConfig: [ i686-linux, x86_64-darwin, x86_64-linux ] - effect-monad: [ i686-linux, x86_64-darwin, x86_64-linux ] - effective-aspects: [ i686-linux, x86_64-darwin, x86_64-linux ] - effective-aspects-mzv: [ i686-linux, x86_64-darwin, x86_64-linux ] - egison-quote: [ i686-linux, x86_64-darwin, x86_64-linux ] - ehaskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - ehs: [ i686-linux, x86_64-darwin, x86_64-linux ] - eibd-client-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] - eigen: [ x86_64-darwin ] - EitherT: [ i686-linux, x86_64-darwin, x86_64-linux ] - ekg-rrd: [ i686-linux ] - electrum-mnemonic: [ i686-linux ] - elerea-examples: [ x86_64-darwin ] - elerea-sdl: [ x86_64-darwin ] - elision: [ i686-linux, x86_64-darwin, x86_64-linux ] - emacs-keys: [ i686-linux, x86_64-darwin, x86_64-linux ] - email: [ i686-linux, x86_64-darwin, x86_64-linux ] - email-header: [ i686-linux, x86_64-darwin, x86_64-linux ] - email-postmark: [ i686-linux, x86_64-darwin, x86_64-linux ] - embeddock: [ i686-linux, x86_64-darwin, x86_64-linux ] - embeddock-example: [ i686-linux, x86_64-darwin, x86_64-linux ] - embroidery: [ i686-linux, x86_64-darwin, x86_64-linux ] - emgm: [ i686-linux, x86_64-darwin, x86_64-linux ] - Emping: [ i686-linux, x86_64-darwin, x86_64-linux ] - Encode: [ i686-linux, x86_64-darwin, x86_64-linux ] - enumerate: [ i686-linux, x86_64-darwin, x86_64-linux ] - enumeration: [ i686-linux, x86_64-darwin, x86_64-linux ] - enumfun: [ i686-linux, x86_64-darwin, x86_64-linux ] - EnumMap: [ i686-linux, x86_64-darwin, x86_64-linux ] - enummapmap: [ i686-linux, x86_64-darwin, x86_64-linux ] - env-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] - epanet-haskell: [ x86_64-darwin ] - epic: [ x86_64-darwin ] - epoll: [ i686-linux, x86_64-darwin, x86_64-linux ] - epub-metadata: [ x86_64-darwin ] - epub-tools: [ x86_64-darwin ] - epubname: [ i686-linux, x86_64-darwin, x86_64-linux ] - Eq: [ i686-linux, x86_64-darwin, x86_64-linux ] - eros-client: [ i686-linux, x86_64-darwin, x86_64-linux ] - error-message: [ i686-linux, x86_64-darwin, x86_64-linux ] - ersatz: [ i686-linux, x86_64-darwin, x86_64-linux ] - ersatz-toysat: [ i686-linux, x86_64-darwin, x86_64-linux ] - esotericbot: [ i686-linux, x86_64-darwin, x86_64-linux ] - EsounD: [ i686-linux, x86_64-darwin, x86_64-linux ] - estimators: [ i686-linux, x86_64-darwin, x86_64-linux ] - estreps: [ i686-linux, x86_64-darwin, x86_64-linux ] - Etage: [ i686-linux, x86_64-darwin, x86_64-linux ] - Etage-Graph: [ i686-linux, x86_64-darwin, x86_64-linux ] - EtaMOO: [ x86_64-darwin ] - eternal: [ i686-linux, x86_64-darwin, x86_64-linux ] - Eternal10Seconds: [ i686-linux, x86_64-linux ] - Etherbunny: [ i686-linux, x86_64-darwin, x86_64-linux ] - ethereum-client-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - ethereum-merkle-patricia-db: [ i686-linux, x86_64-darwin, x86_64-linux ] - euphoria: [ i686-linux, x86_64-darwin, x86_64-linux ] - eurofxref: [ i686-linux, x86_64-darwin, x86_64-linux ] - Euterpea: [ i686-linux, x86_64-linux ] - event-driven: [ i686-linux, x86_64-darwin, x86_64-linux ] - event-monad: [ i686-linux, x86_64-darwin, x86_64-linux ] - eventloop: [ i686-linux, x86_64-darwin, x86_64-linux ] - EventSocket: [ i686-linux, x86_64-darwin, x86_64-linux ] - every-bit-counts: [ i686-linux, x86_64-darwin, x86_64-linux ] - ewe: [ i686-linux, x86_64-darwin, x86_64-linux ] - exif: [ i686-linux, x86_64-darwin, x86_64-linux ] - exists: [ i686-linux, x86_64-darwin, x86_64-linux ] - exp-pairs: [ i686-linux, x86_64-darwin, x86_64-linux ] - expand: [ i686-linux, x86_64-darwin, x86_64-linux ] - expat-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] - explain: [ i686-linux, x86_64-darwin, x86_64-linux ] - explicit-sharing: [ i686-linux, x86_64-darwin, x86_64-linux ] - explore: [ i686-linux, x86_64-darwin, x86_64-linux ] - exposed-containers: [ i686-linux, x86_64-darwin, x86_64-linux ] - extcore: [ i686-linux, x86_64-darwin, x86_64-linux ] - extemp: [ i686-linux, x86_64-darwin, x86_64-linux ] - extended-categories: [ i686-linux, x86_64-darwin, x86_64-linux ] - ez-couch: [ i686-linux, x86_64-darwin, x86_64-linux ] - faceted: [ i686-linux, x86_64-darwin, x86_64-linux ] - factory: [ i686-linux, x86_64-darwin, x86_64-linux ] - factual-api: [ i686-linux, x86_64-darwin, x86_64-linux ] - FailureT: [ i686-linux, x86_64-darwin, x86_64-linux ] - falling-turnip: [ x86_64-darwin, x86_64-linux ] - fallingblocks: [ i686-linux, x86_64-linux ] - family-tree: [ i686-linux, x86_64-darwin, x86_64-linux ] - farmhash: [ x86_64-darwin ] - fast-digits: [ i686-linux ] - fast-tags: [ i686-linux, x86_64-darwin, x86_64-linux ] - fastbayes: [ i686-linux, x86_64-darwin, x86_64-linux ] - fastirc: [ i686-linux, x86_64-darwin, x86_64-linux ] - fault-tree: [ i686-linux, x86_64-darwin, x86_64-linux ] - fay-hsx: [ i686-linux, x86_64-darwin, x86_64-linux ] - fcd: [ i686-linux, x86_64-darwin, x86_64-linux ] - fckeditor: [ i686-linux, x86_64-darwin, x86_64-linux ] - FComp: [ i686-linux, x86_64-darwin, x86_64-linux ] - fdo-trash: [ i686-linux, x86_64-darwin, x86_64-linux ] - feed-cli: [ i686-linux, x86_64-darwin, x86_64-linux ] - feed-translator: [ i686-linux, x86_64-darwin, x86_64-linux ] - feed2lj: [ i686-linux, x86_64-darwin, x86_64-linux ] - feed2twitter: [ i686-linux, x86_64-darwin, x86_64-linux ] - feldspar-compiler: [ i686-linux, x86_64-darwin, x86_64-linux ] - feldspar-language: [ i686-linux, x86_64-darwin, x86_64-linux ] - fenfire: [ i686-linux, x86_64-darwin, x86_64-linux ] - FermatsLastMargin: [ i686-linux, x86_64-darwin, x86_64-linux ] - FerryCore: [ i686-linux, x86_64-darwin, x86_64-linux ] - ffeed: [ i686-linux, x86_64-darwin, x86_64-linux ] - ffmpeg-tutorials: [ i686-linux, x86_64-darwin, x86_64-linux ] - fibon: [ i686-linux, x86_64-darwin, x86_64-linux ] - fields: [ i686-linux, x86_64-darwin, x86_64-linux ] - FieldTrip: [ i686-linux, x86_64-darwin, x86_64-linux ] - fieldwise: [ i686-linux, x86_64-darwin, x86_64-linux ] - file-location: [ x86_64-darwin ] - filecache: [ x86_64-darwin ] - FileManip: [ i686-linux, x86_64-darwin, x86_64-linux ] - FileManipCompat: [ i686-linux, x86_64-darwin, x86_64-linux ] - FileSystem: [ i686-linux, x86_64-darwin, x86_64-linux ] - filesystem-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - filesystem-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] - Finance-Quote-Yahoo: [ i686-linux, x86_64-darwin, x86_64-linux ] - Finance-Treasury: [ i686-linux, x86_64-darwin, x86_64-linux ] - find-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - FiniteMap: [ i686-linux, x86_64-darwin, x86_64-linux ] - firstify: [ i686-linux, x86_64-darwin, x86_64-linux ] - FirstOrderTheory: [ i686-linux, x86_64-darwin, x86_64-linux ] - fishfood: [ i686-linux, x86_64-darwin, x86_64-linux ] - fit: [ i686-linux, x86_64-darwin, x86_64-linux ] - fitsio: [ i686-linux, x86_64-darwin, x86_64-linux ] - fix-parser-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] - fix-symbols-gitit: [ i686-linux, x86_64-darwin, x86_64-linux ] - fixed-point: [ i686-linux, x86_64-darwin, x86_64-linux ] - fixed-point-vector: [ i686-linux, x86_64-darwin, x86_64-linux ] - fixed-point-vector-space: [ i686-linux, x86_64-darwin, x86_64-linux ] - fixed-precision: [ i686-linux, x86_64-darwin, x86_64-linux ] - fixed-storable-array: [ i686-linux, x86_64-darwin, x86_64-linux ] - fixfile: [ i686-linux, x86_64-darwin, x86_64-linux ] - flexiwrap: [ i686-linux, x86_64-darwin, x86_64-linux ] - flexiwrap-smallcheck: [ i686-linux, x86_64-darwin, x86_64-linux ] - flickr: [ i686-linux, x86_64-darwin, x86_64-linux ] - Flippi: [ i686-linux, x86_64-darwin, x86_64-linux ] - flite: [ i686-linux, x86_64-darwin, x86_64-linux ] - floating-bits: [ i686-linux, x86_64-darwin, x86_64-linux ] - flow2dot: [ i686-linux, x86_64-darwin, x86_64-linux ] - flowdock-api: [ i686-linux, x86_64-darwin, x86_64-linux ] - flowdock-rest: [ i686-linux, x86_64-darwin, x86_64-linux ] - flower: [ i686-linux, x86_64-darwin, x86_64-linux ] - flowlocks-framework: [ i686-linux, x86_64-darwin, x86_64-linux ] - flowsim: [ i686-linux, x86_64-darwin, x86_64-linux ] - fluidsynth: [ x86_64-darwin ] - FM-SBLEX: [ i686-linux, x86_64-darwin, x86_64-linux ] - FModExRaw: [ i686-linux, x86_64-darwin, x86_64-linux ] - fold-debounce: [ x86_64-darwin ] - fold-debounce-conduit: [ x86_64-darwin ] - foldl-incremental: [ i686-linux, x86_64-darwin, x86_64-linux ] - folds: [ i686-linux, x86_64-linux ] - folds-common: [ i686-linux, x86_64-darwin, x86_64-linux ] - follower: [ i686-linux, x86_64-darwin, x86_64-linux ] - foma: [ i686-linux, x86_64-darwin, x86_64-linux ] - font-opengl-basic4x6: [ i686-linux, x86_64-darwin, x86_64-linux ] - foo: [ i686-linux, x86_64-darwin, x86_64-linux ] - for-free: [ i686-linux, x86_64-darwin, x86_64-linux ] - forbidden-fruit: [ i686-linux, x86_64-darwin, x86_64-linux ] - fordo: [ i686-linux, x86_64-darwin, x86_64-linux ] - formal: [ i686-linux, x86_64-darwin, x86_64-linux ] - FormalGrammars: [ i686-linux, x86_64-darwin, x86_64-linux ] - format: [ i686-linux, x86_64-darwin, x86_64-linux ] - format-status: [ i686-linux, x86_64-darwin, x86_64-linux ] - forml: [ i686-linux, x86_64-darwin, x86_64-linux ] - formlets: [ i686-linux, x86_64-darwin, x86_64-linux ] - formlets-hsp: [ i686-linux, x86_64-darwin, x86_64-linux ] - ForSyDe: [ i686-linux, x86_64-darwin, x86_64-linux ] - forth-hll: [ i686-linux, x86_64-darwin, x86_64-linux ] - foscam-sort: [ i686-linux, x86_64-darwin, x86_64-linux ] - Foster: [ i686-linux, x86_64-darwin, x86_64-linux ] - fpco-api: [ i686-linux, x86_64-darwin, x86_64-linux ] - fpnla-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - FractalArt: [ i686-linux, x86_64-darwin, x86_64-linux ] - Fractaler: [ i686-linux, x86_64-linux ] - frag: [ i686-linux, x86_64-darwin, x86_64-linux ] - franchise: [ i686-linux, x86_64-darwin, x86_64-linux ] - Frank: [ i686-linux, x86_64-darwin, x86_64-linux ] - free-game: [ i686-linux, x86_64-darwin, x86_64-linux ] - free-operational: [ i686-linux, x86_64-darwin, x86_64-linux ] - free-theorems: [ i686-linux, x86_64-darwin, x86_64-linux ] - free-theorems-counterexamples: [ i686-linux, x86_64-darwin, x86_64-linux ] - free-theorems-seq: [ i686-linux, x86_64-darwin, x86_64-linux ] - free-theorems-seq-webui: [ i686-linux, x86_64-darwin, x86_64-linux ] - free-theorems-webui: [ i686-linux, x86_64-darwin, x86_64-linux ] - freekick2: [ i686-linux, x86_64-linux ] - freer: [ i686-linux ] - freesect: [ i686-linux, x86_64-darwin, x86_64-linux ] - freesound: [ i686-linux, x86_64-darwin, x86_64-linux ] - FreeTypeGL: [ i686-linux, x86_64-darwin, x86_64-linux ] - friday-juicypixels: [ i686-linux, x86_64-darwin, x86_64-linux ] - frp-arduino: [ i686-linux, x86_64-darwin, x86_64-linux ] - frpnow-gloss: [ x86_64-darwin ] - frpnow-gtk: [ x86_64-darwin ] - fs-events: [ i686-linux, x86_64-darwin, x86_64-linux ] - fsmActions: [ i686-linux, x86_64-darwin, x86_64-linux ] - ftdi: [ i686-linux, x86_64-darwin, x86_64-linux ] - ftp-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - ftshell: [ i686-linux, x86_64-darwin, x86_64-linux ] - full-sessions: [ i686-linux, x86_64-darwin, x86_64-linux ] - full-text-search: [ i686-linux, x86_64-darwin, x86_64-linux ] - fullstop: [ i686-linux, x86_64-darwin, x86_64-linux ] - funbot: [ i686-linux, x86_64-darwin, x86_64-linux ] - funbot-client: [ i686-linux, x86_64-darwin, x86_64-linux ] - funbot-git-hook: [ i686-linux, x86_64-darwin, x86_64-linux ] - function-combine: [ i686-linux, x86_64-darwin, x86_64-linux ] - functional-arrow: [ i686-linux, x86_64-darwin, x86_64-linux ] - functorm: [ i686-linux, x86_64-darwin, x86_64-linux ] - FunGEn: [ x86_64-darwin ] - funion: [ i686-linux, x86_64-linux ] - funsat: [ i686-linux, x86_64-darwin, x86_64-linux ] - future: [ i686-linux, x86_64-darwin, x86_64-linux ] - fuzzytime: [ i686-linux, x86_64-darwin, x86_64-linux ] - fwgl: [ i686-linux ] - fwgl-glfw: [ i686-linux, x86_64-darwin ] - g-npm: [ i686-linux, x86_64-darwin, x86_64-linux ] - gact: [ i686-linux, x86_64-darwin, x86_64-linux ] - gameclock: [ i686-linux, x86_64-darwin, x86_64-linux ] - Gamgine: [ i686-linux, x86_64-darwin, x86_64-linux ] - Ganymede: [ i686-linux, x86_64-darwin, x86_64-linux ] - gbu: [ i686-linux, x86_64-darwin, x86_64-linux ] - gc-monitoring-wai: [ i686-linux, x86_64-darwin, x86_64-linux ] - gdiff-ig: [ i686-linux, x86_64-darwin, x86_64-linux ] - gdiff-th: [ i686-linux, x86_64-darwin, x86_64-linux ] - gearbox: [ i686-linux, x86_64-darwin, x86_64-linux ] - GeBoP: [ x86_64-darwin ] - geek: [ i686-linux, x86_64-darwin, x86_64-linux ] - geek-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - gelatin: [ i686-linux, x86_64-darwin, x86_64-linux ] - gemstone: [ i686-linux, x86_64-linux ] - gencheck: [ i686-linux, x86_64-darwin, x86_64-linux ] - gender: [ i686-linux, x86_64-darwin, x86_64-linux ] - genders: [ i686-linux, x86_64-darwin, x86_64-linux ] - general-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] - GeneralTicTacToe: [ i686-linux, x86_64-darwin, x86_64-linux ] - generators: [ i686-linux, x86_64-darwin, x86_64-linux ] - generic-church: [ i686-linux, x86_64-darwin, x86_64-linux ] - generic-storable: [ i686-linux, x86_64-darwin, x86_64-linux ] - generic-xml: [ i686-linux, x86_64-darwin, x86_64-linux ] - genericserialize: [ i686-linux, x86_64-darwin, x86_64-linux ] - genetics: [ i686-linux, x86_64-darwin, x86_64-linux ] - GenI: [ i686-linux, x86_64-darwin, x86_64-linux ] - geni-gui: [ i686-linux, x86_64-darwin, x86_64-linux ] - geni-util: [ i686-linux, x86_64-darwin, x86_64-linux ] - geniconvert: [ i686-linux, x86_64-darwin, x86_64-linux ] - geniserver: [ i686-linux, x86_64-darwin, x86_64-linux ] - GenSmsPdu: [ i686-linux, x86_64-darwin, x86_64-linux ] - GenussFold: [ i686-linux, x86_64-darwin, x86_64-linux ] - geo-resolver: [ i686-linux, x86_64-linux ] - GeocoderOpenCage: [ i686-linux, x86_64-darwin, x86_64-linux ] - GeoIp: [ i686-linux, x86_64-darwin, x86_64-linux ] - geoip2: [ i686-linux ] - geojson: [ x86_64-darwin ] - geom2d: [ i686-linux, x86_64-darwin ] - GeomPredicates-SSE: [ i686-linux, x86_64-darwin, x86_64-linux ] - getemx: [ i686-linux, x86_64-darwin, x86_64-linux ] - getflag: [ i686-linux, x86_64-darwin, x86_64-linux ] - ggtsTC: [ i686-linux, x86_64-darwin, x86_64-linux ] - ghc-dup: [ i686-linux, x86_64-darwin, x86_64-linux ] - ghc-events-parallel: [ i686-linux, x86_64-darwin, x86_64-linux ] - ghc-exactprint: [ x86_64-darwin ] - ghc-pkg-autofix: [ i686-linux, x86_64-darwin, x86_64-linux ] - ghc-syb: [ i686-linux, x86_64-darwin, x86_64-linux ] - ghc-vis: [ x86_64-darwin ] - ghci-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] - ghci-haskeline: [ i686-linux, x86_64-darwin, x86_64-linux ] - ghclive: [ i686-linux, x86_64-darwin, x86_64-linux ] - ght: [ i686-linux, x86_64-darwin, x86_64-linux ] - gi-atk: [ i686-linux, x86_64-darwin ] - gi-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] - gi-gdk: [ i686-linux, x86_64-darwin, x86_64-linux ] - gi-gdkpixbuf: [ i686-linux, x86_64-darwin ] - gi-gio: [ i686-linux ] - gi-girepository: [ i686-linux, x86_64-darwin ] - gi-glib: [ i686-linux ] - gi-gobject: [ i686-linux ] - gi-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] - gi-javascriptcore: [ i686-linux, x86_64-darwin, x86_64-linux ] - gi-notify: [ i686-linux, x86_64-darwin ] - gi-pango: [ i686-linux, x86_64-darwin ] - gi-poppler: [ i686-linux, x86_64-darwin, x86_64-linux ] - gi-soup: [ i686-linux, x86_64-darwin ] - gi-vte: [ i686-linux, x86_64-linux ] - gi-webkit: [ i686-linux, x86_64-linux ] - gi-webkit2: [ i686-linux, x86_64-darwin, x86_64-linux ] - gi-webkit2webextension: [ i686-linux, x86_64-darwin, x86_64-linux ] - Gifcurry: [ x86_64-darwin ] - gist: [ i686-linux, x86_64-darwin, x86_64-linux ] - git-all: [ i686-linux, x86_64-darwin, x86_64-linux ] - git-checklist: [ i686-linux, x86_64-darwin, x86_64-linux ] - git-date: [ i686-linux, x86_64-darwin, x86_64-linux ] - git-gpush: [ i686-linux, x86_64-darwin, x86_64-linux ] - git-repair: [ i686-linux, x86_64-darwin, x86_64-linux ] - gitdo: [ i686-linux, x86_64-darwin, x86_64-linux ] - github-backup: [ i686-linux, x86_64-darwin, x86_64-linux ] - github-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - gitlib-cross: [ i686-linux, x86_64-darwin, x86_64-linux ] - gitlib-s3: [ i686-linux, x86_64-darwin, x86_64-linux ] - gitlib-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - gl: [ x86_64-darwin ] - gl-capture: [ x86_64-darwin ] - glade: [ i686-linux, x86_64-darwin, x86_64-linux ] - gladexml-accessor: [ i686-linux, x86_64-darwin, x86_64-linux ] - glapp: [ x86_64-darwin ] - GLFW: [ x86_64-darwin ] - GLFW-b: [ x86_64-darwin ] - GLFW-b-demo: [ x86_64-darwin ] - GLFW-OGL: [ i686-linux, x86_64-darwin, x86_64-linux ] - GLFW-task: [ x86_64-darwin ] - GLHUI: [ x86_64-darwin ] - glicko: [ i686-linux, x86_64-darwin, x86_64-linux ] - glider-nlp: [ i686-linux, x86_64-darwin, x86_64-linux ] - GLMatrix: [ i686-linux, x86_64-darwin, x86_64-linux ] - global: [ i686-linux, x86_64-darwin, x86_64-linux ] - glome-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - GlomeTrace: [ i686-linux, x86_64-darwin, x86_64-linux ] - GlomeView: [ i686-linux, x86_64-darwin, x86_64-linux ] - gloss: [ x86_64-darwin ] - gloss-accelerate: [ x86_64-darwin ] - gloss-algorithms: [ x86_64-darwin ] - gloss-banana: [ i686-linux, x86_64-darwin, x86_64-linux ] - gloss-devil: [ i686-linux, x86_64-darwin, x86_64-linux ] - gloss-examples: [ x86_64-darwin ] - gloss-game: [ x86_64-darwin ] - gloss-juicy: [ x86_64-darwin ] - gloss-raster: [ x86_64-darwin ] - gloss-rendering: [ x86_64-darwin ] - gloss-sodium: [ x86_64-darwin ] - GLURaw: [ x86_64-darwin ] - GLUT: [ x86_64-darwin ] - GLUtil: [ i686-linux, x86_64-darwin, x86_64-linux ] - gluturtle: [ x86_64-darwin ] - gmap: [ i686-linux, x86_64-darwin, x86_64-linux ] - gmndl: [ i686-linux, x86_64-linux ] - gnome-desktop: [ i686-linux, x86_64-darwin, x86_64-linux ] - gnome-keyring: [ i686-linux, x86_64-linux ] - gnomevfs: [ i686-linux, x86_64-linux ] - gnss-converters: [ i686-linux, x86_64-darwin, x86_64-linux ] - goa: [ i686-linux, x86_64-darwin, x86_64-linux ] - goal-core: [ x86_64-darwin ] - goal-geometry: [ x86_64-darwin ] - goal-probability: [ x86_64-darwin ] - goal-simulation: [ i686-linux, x86_64-darwin, x86_64-linux ] - gofer-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] - gooey: [ i686-linux, x86_64-darwin, x86_64-linux ] - google-html5-slide: [ i686-linux, x86_64-darwin, x86_64-linux ] - google-mail-filters: [ i686-linux, x86_64-darwin, x86_64-linux ] - google-search: [ i686-linux, x86_64-darwin, x86_64-linux ] - GoogleDirections: [ i686-linux, x86_64-darwin, x86_64-linux ] - googleplus: [ i686-linux, x86_64-darwin, x86_64-linux ] - GoogleSB: [ i686-linux, x86_64-darwin, x86_64-linux ] - GoogleTranslate: [ i686-linux, x86_64-darwin, x86_64-linux ] - gopherbot: [ i686-linux, x86_64-darwin, x86_64-linux ] - gore-and-ash-demo: [ i686-linux, x86_64-darwin, x86_64-linux ] - gore-and-ash-glfw: [ x86_64-darwin ] - gpah: [ i686-linux, x86_64-darwin, x86_64-linux ] - GPipe: [ x86_64-darwin ] - GPipe-Collada: [ i686-linux, x86_64-darwin, x86_64-linux ] - GPipe-Examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - GPipe-GLFW: [ x86_64-darwin ] - GPipe-TextureLoad: [ i686-linux, x86_64-darwin, x86_64-linux ] - gps: [ i686-linux, x86_64-darwin, x86_64-linux ] - gps2htmlReport: [ i686-linux, x86_64-darwin, x86_64-linux ] - GPX: [ i686-linux, x86_64-darwin, x86_64-linux ] - gpx-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - grammar-combinators: [ i686-linux, x86_64-darwin, x86_64-linux ] - GrammarProducts: [ i686-linux, x86_64-darwin, x86_64-linux ] - grapefruit-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - grapefruit-frp: [ i686-linux, x86_64-darwin, x86_64-linux ] - grapefruit-records: [ i686-linux, x86_64-darwin, x86_64-linux ] - grapefruit-ui: [ i686-linux, x86_64-darwin, x86_64-linux ] - grapefruit-ui-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] - graph-rewriting-cl: [ i686-linux, x86_64-darwin, x86_64-linux ] - graph-rewriting-gl: [ x86_64-darwin ] - graph-rewriting-lambdascope: [ x86_64-darwin ] - graph-rewriting-ski: [ x86_64-darwin ] - graph-rewriting-trs: [ x86_64-darwin ] - graph-rewriting-ww: [ x86_64-darwin ] - graph-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - Graph500: [ i686-linux, x86_64-darwin, x86_64-linux ] - Graphalyze: [ i686-linux, x86_64-darwin, x86_64-linux ] - graphbuilder: [ i686-linux, x86_64-darwin, x86_64-linux ] - GraphHammer: [ i686-linux, x86_64-darwin, x86_64-linux ] - GraphHammer-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - graphics-formats-collada: [ i686-linux, x86_64-darwin, x86_64-linux ] - graphicsFormats: [ i686-linux, x86_64-darwin, x86_64-linux ] - graphicstools: [ i686-linux, x86_64-darwin, x86_64-linux ] - graphtype: [ i686-linux, x86_64-darwin, x86_64-linux ] - graylog: [ i686-linux, x86_64-darwin, x86_64-linux ] - greencard: [ i686-linux, x86_64-darwin, x86_64-linux ] - greencard-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] - greg-client: [ i686-linux, x86_64-darwin, x86_64-linux ] - gremlin-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - Grempa: [ i686-linux, x86_64-darwin, x86_64-linux ] - gridfs: [ i686-linux, x86_64-darwin, x86_64-linux ] - grm: [ i686-linux, x86_64-darwin, x86_64-linux ] - Grow: [ i686-linux, x86_64-darwin, x86_64-linux ] - GrowlNotify: [ i686-linux, x86_64-darwin, x86_64-linux ] - gruff: [ i686-linux, x86_64-linux ] - gruff-examples: [ i686-linux, x86_64-linux ] - gsl-random: [ i686-linux, x86_64-darwin, x86_64-linux ] - gsl-random-fu: [ i686-linux, x86_64-darwin, x86_64-linux ] - gsmenu: [ i686-linux, x86_64-darwin, x86_64-linux ] - gstreamer: [ i686-linux, x86_64-darwin, x86_64-linux ] - GTALib: [ i686-linux, x86_64-darwin, x86_64-linux ] - gtfs: [ i686-linux, x86_64-darwin, x86_64-linux ] - gtk: [ x86_64-darwin ] - gtk-helpers: [ x86_64-darwin ] - gtk-jsinput: [ x86_64-darwin ] - gtk-largeTreeStore: [ x86_64-darwin ] - gtk-mac-integration: [ i686-linux, x86_64-darwin, x86_64-linux ] - gtk-serialized-event: [ i686-linux, x86_64-darwin, x86_64-linux ] - gtk-simple-list-view: [ x86_64-darwin ] - gtk-toggle-button-list: [ x86_64-darwin ] - gtk-toy: [ i686-linux, x86_64-darwin, x86_64-linux ] - gtk-traymanager: [ x86_64-darwin ] - gtk2hs-cast-glade: [ i686-linux, x86_64-darwin, x86_64-linux ] - gtk2hs-cast-gnomevfs: [ i686-linux, x86_64-linux ] - gtk2hs-cast-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] - gtk2hs-cast-gtkglext: [ i686-linux, x86_64-linux ] - gtk2hs-cast-gtksourceview2: [ x86_64-darwin ] - gtk2hs-hello: [ x86_64-darwin ] - gtk2hs-rpn: [ i686-linux, x86_64-darwin, x86_64-linux ] - Gtk2hsGenerics: [ i686-linux, x86_64-darwin, x86_64-linux ] - gtk3: [ x86_64-darwin ] - gtk3-mac-integration: [ i686-linux, x86_64-darwin, x86_64-linux ] - gtkglext: [ i686-linux, x86_64-linux ] - GtkGLTV: [ i686-linux, x86_64-linux ] - gtkimageview: [ i686-linux, x86_64-darwin, x86_64-linux ] - gtkrsync: [ i686-linux, x86_64-darwin, x86_64-linux ] - gtksourceview2: [ x86_64-darwin ] - GtkTV: [ x86_64-darwin ] - guess-combinator: [ i686-linux, x86_64-darwin, x86_64-linux ] - GuiHaskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - GuiTV: [ i686-linux, x86_64-darwin, x86_64-linux ] - gulcii: [ x86_64-darwin ] - H: [ i686-linux, x86_64-darwin ] - h-booru: [ i686-linux, x86_64-darwin, x86_64-linux ] - h-gpgme: [ i686-linux, x86_64-darwin, x86_64-linux ] - haar: [ i686-linux, x86_64-darwin, x86_64-linux ] - Hach: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack-contrib-press: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack-frontend-happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack-handler-epoll: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack-handler-evhttp: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack-handler-fastcgi: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack-handler-happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack-handler-hyena: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack-handler-kibro: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack-handler-simpleserver: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack-middleware-cleanpath: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack-middleware-clientsession: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack-middleware-jsonp: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack2-handler-happstack-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack2-handler-mongrel2-http: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack2-handler-warp: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack2-interface-wai: [ i686-linux, x86_64-darwin, x86_64-linux ] - hackage-proxy: [ i686-linux, x86_64-darwin, x86_64-linux ] - hackage-repo-tool: [ i686-linux, x86_64-darwin, x86_64-linux ] - hackage-security: [ i686-linux, x86_64-darwin, x86_64-linux ] - hackage-security-HTTP: [ i686-linux, x86_64-darwin, x86_64-linux ] - hackage-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - hackage-sparks: [ i686-linux, x86_64-darwin, x86_64-linux ] - hackage2hwn: [ i686-linux, x86_64-darwin, x86_64-linux ] - hackage2twitter: [ i686-linux, x86_64-darwin, x86_64-linux ] - hackernews: [ i686-linux, x86_64-darwin, x86_64-linux ] - HackMail: [ i686-linux, x86_64-darwin, x86_64-linux ] - hactor: [ i686-linux, x86_64-darwin, x86_64-linux ] - haddock-leksah: [ i686-linux, x86_64-darwin, x86_64-linux ] - haggis: [ i686-linux, x86_64-darwin, x86_64-linux ] - Haggressive: [ i686-linux, x86_64-darwin, x86_64-linux ] - haiji: [ i686-linux, x86_64-darwin, x86_64-linux ] - hairy: [ i686-linux, x86_64-darwin, x86_64-linux ] - hakaru: [ i686-linux, x86_64-darwin, x86_64-linux ] - hakismet: [ i686-linux, x86_64-darwin, x86_64-linux ] - hakyll-agda: [ i686-linux, x86_64-darwin, x86_64-linux ] - hakyll-blaze-templates: [ i686-linux, x86_64-darwin, x86_64-linux ] - hakyll-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] - hakyll-contrib-links: [ i686-linux, x86_64-darwin, x86_64-linux ] - hakyll-convert: [ i686-linux, x86_64-darwin, x86_64-linux ] - hakyll-R: [ i686-linux, x86_64-darwin, x86_64-linux ] - halberd: [ i686-linux, x86_64-darwin, x86_64-linux ] - HaLeX: [ i686-linux, x86_64-darwin, x86_64-linux ] - halfs: [ i686-linux, x86_64-linux ] - halipeto: [ i686-linux, x86_64-darwin, x86_64-linux ] - halma: [ x86_64-darwin ] - hamid: [ x86_64-darwin ] - hampp: [ i686-linux, x86_64-darwin, x86_64-linux ] - hamtmap: [ i686-linux, x86_64-darwin, x86_64-linux ] - hamusic: [ i686-linux, x86_64-darwin, x86_64-linux ] - handa-opengl: [ x86_64-darwin ] - handsy: [ i686-linux, x86_64-darwin, x86_64-linux ] - hannahci: [ i686-linux, x86_64-darwin, x86_64-linux ] - haphviz: [ i686-linux, x86_64-darwin, x86_64-linux ] - happindicator: [ i686-linux, x86_64-darwin, x86_64-linux ] - happindicator3: [ i686-linux, x86_64-darwin, x86_64-linux ] - happraise: [ i686-linux, x86_64-darwin, x86_64-linux ] - HAppS-Data: [ i686-linux, x86_64-darwin, x86_64-linux ] - happs-hsp: [ i686-linux, x86_64-darwin, x86_64-linux ] - happs-hsp-template: [ i686-linux, x86_64-darwin, x86_64-linux ] - HAppS-IxSet: [ i686-linux, x86_64-darwin, x86_64-linux ] - HAppS-Server: [ i686-linux, x86_64-darwin, x86_64-linux ] - HAppS-State: [ i686-linux, x86_64-darwin, x86_64-linux ] - happs-tutorial: [ i686-linux, x86_64-darwin, x86_64-linux ] - HAppS-Util: [ i686-linux, x86_64-darwin, x86_64-linux ] - happstack-auth: [ i686-linux, x86_64-darwin, x86_64-linux ] - happstack-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] - happstack-data: [ i686-linux, x86_64-darwin, x86_64-linux ] - happstack-dlg: [ i686-linux, x86_64-darwin, x86_64-linux ] - happstack-facebook: [ i686-linux, x86_64-darwin, x86_64-linux ] - happstack-fay: [ i686-linux, x86_64-darwin, x86_64-linux ] - happstack-heist: [ i686-linux, x86_64-darwin, x86_64-linux ] - happstack-helpers: [ i686-linux, x86_64-darwin, x86_64-linux ] - happstack-ixset: [ i686-linux, x86_64-darwin, x86_64-linux ] - happstack-monad-peel: [ i686-linux, x86_64-darwin, x86_64-linux ] - happstack-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] - happstack-state: [ i686-linux, x86_64-darwin, x86_64-linux ] - happstack-static-routing: [ i686-linux, x86_64-darwin, x86_64-linux ] - happstack-util: [ i686-linux, x86_64-darwin, x86_64-linux ] - happstack-yui: [ i686-linux, x86_64-darwin, x86_64-linux ] - happybara: [ i686-linux, x86_64-darwin, x86_64-linux ] - happybara-webkit: [ i686-linux, x86_64-darwin, x86_64-linux ] - happybara-webkit-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - harchive: [ i686-linux, x86_64-darwin, x86_64-linux ] - hardware-edsl: [ i686-linux, x86_64-darwin, x86_64-linux ] - HaRe: [ x86_64-darwin ] - hark: [ i686-linux, x86_64-darwin, x86_64-linux ] - HARM: [ i686-linux, x86_64-darwin, x86_64-linux ] - harmony: [ i686-linux, x86_64-darwin, x86_64-linux ] - HarmTrace: [ i686-linux, x86_64-darwin, x86_64-linux ] - HarmTrace-Base: [ i686-linux, x86_64-darwin, x86_64-linux ] - haroonga: [ i686-linux, x86_64-darwin, x86_64-linux ] - haroonga-httpd: [ i686-linux, x86_64-darwin, x86_64-linux ] - has: [ i686-linux, x86_64-darwin, x86_64-linux ] - has-th: [ i686-linux, x86_64-darwin, x86_64-linux ] - hascal: [ i686-linux, x86_64-darwin, x86_64-linux ] - hascat: [ i686-linux, x86_64-darwin, x86_64-linux ] - hascat-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] - hascat-setup: [ i686-linux, x86_64-darwin, x86_64-linux ] - hascat-system: [ i686-linux, x86_64-darwin, x86_64-linux ] - Haschoo: [ i686-linux, x86_64-darwin, x86_64-linux ] - HasGP: [ i686-linux, x86_64-darwin, x86_64-linux ] - hash: [ i686-linux, x86_64-darwin, x86_64-linux ] - hashable-generics: [ i686-linux, x86_64-darwin, x86_64-linux ] - hashed-storage: [ i686-linux, x86_64-darwin, x86_64-linux ] - Hashell: [ i686-linux, x86_64-darwin, x86_64-linux ] - hashids: [ i686-linux, x86_64-darwin, x86_64-linux ] - hasim: [ i686-linux, x86_64-darwin, x86_64-linux ] - hask: [ i686-linux, x86_64-darwin, x86_64-linux ] - hask-home: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskanoid: [ i686-linux ] - haskarrow: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskeem: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskeline-class: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-aliyun: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-awk: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-brainfuck: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-cnc: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-course-preludes: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-formatter: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-ftp: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-gi: [ i686-linux, x86_64-darwin ] - haskell-gi-base: [ i686-linux ] - haskell-mpfr: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-names: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-openflow: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-pdf-presenter: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-platform-test: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-plot: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-reflect: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-rules: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-src-meta-mwotton: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-token-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-tor: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-type-exts: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-tyrant: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-xmpp: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell2010: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell98: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskelldb-connect-hdbc: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskelldb-connect-hdbc-catchio-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskelldb-connect-hdbc-catchio-tf: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskelldb-connect-hdbc-catchio-transformers: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskelldb-connect-hdbc-lifted: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskelldb-dynamic: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskelldb-hdbc-mysql: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskelldb-hsql: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskelldb-hsql-mysql: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskelldb-hsql-odbc: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskelldb-hsql-postgresql: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskelldb-hsql-sqlite3: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskelldb-wx: [ i686-linux, x86_64-darwin, x86_64-linux ] - HaskellLM: [ i686-linux, x86_64-darwin, x86_64-linux ] - HaskellNN: [ i686-linux, x86_64-darwin, x86_64-linux ] - Haskelloids: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskellscrabble: [ i686-linux, x86_64-darwin, x86_64-linux ] - HaskellTorrent: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskgame: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskheap: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskhol-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskoin: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskoin-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskoin-crypto: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskoin-node: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskoin-protocol: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskoin-script: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskoin-util: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskoin-wallet: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskoon: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskoon-httpspec: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskoon-salvia: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskore: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskore-realtime: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskore-supercollider: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskore-synthesizer: [ i686-linux, x86_64-darwin, x86_64-linux ] - haslo: [ i686-linux, x86_64-darwin, x86_64-linux ] - hasloGUI: [ i686-linux, x86_64-darwin, x86_64-linux ] - hasparql-client: [ i686-linux, x86_64-darwin, x86_64-linux ] - hasql-postgres: [ i686-linux, x86_64-darwin, x86_64-linux ] - hasql-postgres-options: [ i686-linux, x86_64-darwin, x86_64-linux ] - haste-perch: [ i686-linux, x86_64-darwin, x86_64-linux ] - hat: [ i686-linux, x86_64-darwin, x86_64-linux ] - Hate: [ i686-linux, x86_64-darwin, x86_64-linux ] - hatex-guide: [ i686-linux, x86_64-darwin, x86_64-linux ] - HaTeX-meta: [ i686-linux, x86_64-darwin, x86_64-linux ] - haverer: [ i686-linux, x86_64-darwin, x86_64-linux ] - HaVSA: [ i686-linux, x86_64-darwin, x86_64-linux ] - hawitter: [ i686-linux, x86_64-darwin, x86_64-linux ] - Hawk: [ i686-linux, x86_64-darwin, x86_64-linux ] - haxparse: [ i686-linux, x86_64-darwin, x86_64-linux ] - hayland: [ i686-linux, x86_64-linux ] - Hayoo: [ i686-linux, x86_64-darwin, x86_64-linux ] - hayoo-cli: [ i686-linux, x86_64-darwin, x86_64-linux ] - hback: [ i686-linux, x86_64-darwin, x86_64-linux ] - hbayes: [ i686-linux, x86_64-darwin, x86_64-linux ] - hbb: [ i686-linux, x86_64-darwin, x86_64-linux ] - hBDD-CMUBDD: [ i686-linux, x86_64-darwin, x86_64-linux ] - hBDD-CUDD: [ i686-linux, x86_64-linux ] - hbeat: [ i686-linux, x86_64-linux ] - hblas: [ i686-linux, x86_64-linux ] - hblock: [ i686-linux, x86_64-darwin, x86_64-linux ] - hbro: [ i686-linux, x86_64-linux ] - hburg: [ i686-linux, x86_64-darwin, x86_64-linux ] - HCard: [ i686-linux, x86_64-darwin, x86_64-linux ] - hcheat: [ i686-linux, x86_64-darwin, x86_64-linux ] - hchesslib: [ i686-linux, x86_64-darwin, x86_64-linux ] - HCL: [ i686-linux, x86_64-darwin, x86_64-linux ] - hcron: [ i686-linux, x86_64-darwin, x86_64-linux ] - hCsound: [ i686-linux, x86_64-darwin, x86_64-linux ] - hcube: [ i686-linux, x86_64-darwin, x86_64-linux ] - hdaemonize-buildfix: [ i686-linux, x86_64-darwin, x86_64-linux ] - HDBC-mysql: [ i686-linux, x86_64-darwin, x86_64-linux ] - hdbi: [ i686-linux, x86_64-darwin, x86_64-linux ] - hdbi-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - hdbi-postgresql: [ i686-linux, x86_64-darwin, x86_64-linux ] - hdbi-sqlite: [ i686-linux, x86_64-darwin, x86_64-linux ] - hdbi-tests: [ i686-linux, x86_64-darwin, x86_64-linux ] - hDFA: [ i686-linux, x86_64-darwin, x86_64-linux ] - hdigest: [ i686-linux, x86_64-darwin, x86_64-linux ] - hdirect: [ i686-linux, x86_64-darwin, x86_64-linux ] - hdis86: [ i686-linux, x86_64-darwin, x86_64-linux ] - hdiscount: [ i686-linux, x86_64-darwin, x86_64-linux ] - hdm: [ i686-linux, x86_64-darwin, x86_64-linux ] - hdph: [ i686-linux, x86_64-darwin, x86_64-linux ] - hdph-closure: [ i686-linux, x86_64-darwin, x86_64-linux ] - hdr-histogram: [ i686-linux ] - HDRUtils: [ i686-linux, x86_64-darwin, x86_64-linux ] - hecc: [ i686-linux, x86_64-darwin, x86_64-linux ] - Hedi: [ i686-linux, x86_64-darwin, x86_64-linux ] - hedn: [ i686-linux, x86_64-darwin, x86_64-linux ] - heist-aeson: [ i686-linux, x86_64-darwin, x86_64-linux ] - helics: [ i686-linux, x86_64-linux ] - helics-wai: [ i686-linux, x86_64-linux ] - helium: [ i686-linux, x86_64-darwin, x86_64-linux ] - hell: [ i686-linux, x86_64-darwin, x86_64-linux ] - hellage: [ i686-linux, x86_64-darwin, x86_64-linux ] - hellnet: [ i686-linux, x86_64-darwin, x86_64-linux ] - helm: [ i686-linux, x86_64-darwin, x86_64-linux ] - hemkay: [ i686-linux, x86_64-darwin, x86_64-linux ] - hen: [ i686-linux, x86_64-darwin, x86_64-linux ] - henet: [ i686-linux, x86_64-darwin, x86_64-linux ] - hepevt: [ i686-linux, x86_64-darwin, x86_64-linux ] - her-lexer: [ i686-linux, x86_64-darwin, x86_64-linux ] - her-lexer-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] - HERA: [ i686-linux, x86_64-darwin, x86_64-linux ] - herbalizer: [ i686-linux, x86_64-darwin, x86_64-linux ] - Hermes: [ i686-linux, x86_64-darwin, x86_64-linux ] - hermit: [ i686-linux, x86_64-darwin, x86_64-linux ] - hermit-syb: [ i686-linux, x86_64-darwin, x86_64-linux ] - herringbone: [ i686-linux, x86_64-darwin, x86_64-linux ] - herringbone-embed: [ i686-linux, x86_64-darwin, x86_64-linux ] - herringbone-wai: [ i686-linux, x86_64-darwin, x86_64-linux ] - hesh: [ i686-linux, x86_64-darwin, x86_64-linux ] - hesql: [ i686-linux, x86_64-darwin, x86_64-linux ] - hetris: [ i686-linux, x86_64-darwin, x86_64-linux ] - heukarya: [ i686-linux, x86_64-darwin, x86_64-linux ] - hevolisa: [ i686-linux, x86_64-darwin, x86_64-linux ] - hevolisa-dph: [ i686-linux, x86_64-darwin, x86_64-linux ] - hexpat-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] - hexpat-pickle-generic: [ i686-linux, x86_64-darwin, x86_64-linux ] - hexquote: [ i686-linux, x86_64-darwin, x86_64-linux ] - hF2: [ i686-linux, x86_64-darwin, x86_64-linux ] - hfann: [ i686-linux, x86_64-darwin, x86_64-linux ] - hfd: [ i686-linux, x86_64-darwin, x86_64-linux ] - hfiar: [ i686-linux, x86_64-darwin, x86_64-linux ] - hfmt: [ i686-linux, x86_64-darwin, x86_64-linux ] - hfoil: [ i686-linux, x86_64-darwin, x86_64-linux ] - hfractal: [ i686-linux, x86_64-darwin, x86_64-linux ] - HFrequencyQueue: [ i686-linux, x86_64-darwin, x86_64-linux ] - hfusion: [ i686-linux, x86_64-darwin, x86_64-linux ] - hg-buildpackage: [ i686-linux, x86_64-darwin, x86_64-linux ] - hgalib: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-API: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-Audio: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-Bullet-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-CAudio-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-CEGUI-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-Common: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-Data: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-Enet-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-Graphics3D: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-GUI: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-InputSystem: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-Network: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-Ogre-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-OIS-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-SDL2-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-SFML-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-WinEvent: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-Wire: [ i686-linux, x86_64-darwin, x86_64-linux ] - hgen: [ i686-linux, x86_64-darwin, x86_64-linux ] - hgeometric: [ i686-linux, x86_64-darwin, x86_64-linux ] - hgeometry: [ i686-linux, x86_64-darwin, x86_64-linux ] - hgithub: [ i686-linux, x86_64-darwin, x86_64-linux ] - hgom: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGraphStorage: [ i686-linux, x86_64-darwin, x86_64-linux ] - hgrib: [ i686-linux, x86_64-darwin, x86_64-linux ] - hharp: [ i686-linux, x86_64-darwin, x86_64-linux ] - HHDL: [ i686-linux, x86_64-darwin, x86_64-linux ] - hiccup: [ i686-linux, x86_64-darwin, x86_64-linux ] - hichi: [ i686-linux, x86_64-darwin, x86_64-linux ] - hieraclus: [ i686-linux, x86_64-darwin, x86_64-linux ] - hierarchical-clustering-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] - hiernotify: [ i686-linux, x86_64-darwin, x86_64-linux ] - Hieroglyph: [ i686-linux, x86_64-linux ] - HiggsSet: [ i686-linux, x86_64-darwin, x86_64-linux ] - higher-leveldb: [ x86_64-darwin ] - higherorder: [ i686-linux, x86_64-darwin, x86_64-linux ] - highjson: [ i686-linux ] - highWaterMark: [ i686-linux, x86_64-darwin, x86_64-linux ] - himg: [ i686-linux, x86_64-darwin, x86_64-linux ] - himpy: [ i686-linux, x86_64-darwin, x86_64-linux ] - hinduce-classifier: [ i686-linux, x86_64-darwin, x86_64-linux ] - hinduce-classifier-decisiontree: [ i686-linux, x86_64-darwin, x86_64-linux ] - hinduce-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - hinvaders: [ i686-linux, x86_64-darwin, x86_64-linux ] - hinze-streams: [ i686-linux, x86_64-darwin, x86_64-linux ] - hip: [ i686-linux, x86_64-darwin, x86_64-linux ] - hipchat-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - hipe: [ i686-linux, x86_64-darwin, x86_64-linux ] - Hipmunk: [ x86_64-darwin ] - HipmunkPlayground: [ x86_64-darwin ] - hircules: [ i686-linux, x86_64-darwin, x86_64-linux ] - hirt: [ i686-linux, x86_64-darwin, x86_64-linux ] - hissmetrics: [ i686-linux, x86_64-darwin, x86_64-linux ] - hist-pl: [ i686-linux, x86_64-darwin, x86_64-linux ] - hist-pl-fusion: [ i686-linux, x86_64-darwin, x86_64-linux ] - hist-pl-lmf: [ i686-linux, x86_64-darwin, x86_64-linux ] - historian: [ i686-linux, x86_64-darwin, x86_64-linux ] - hjs: [ i686-linux, x86_64-darwin, x86_64-linux ] - hjsonschema: [ i686-linux, x86_64-darwin, x86_64-linux ] - HJVM: [ i686-linux, x86_64-darwin, x86_64-linux ] - hlbfgsb: [ i686-linux, x86_64-darwin, x86_64-linux ] - hlcm: [ i686-linux, x86_64-darwin, x86_64-linux ] - HLearn-algebra: [ i686-linux, x86_64-darwin, x86_64-linux ] - HLearn-approximation: [ i686-linux, x86_64-darwin, x86_64-linux ] - HLearn-classification: [ i686-linux, x86_64-darwin, x86_64-linux ] - HLearn-datastructures: [ i686-linux, x86_64-darwin, x86_64-linux ] - HLearn-distributions: [ i686-linux, x86_64-darwin, x86_64-linux ] - hledger-chart: [ i686-linux, x86_64-darwin, x86_64-linux ] - hledger-vty: [ i686-linux, x86_64-darwin, x86_64-linux ] - hlibev: [ i686-linux, x86_64-darwin, x86_64-linux ] - hlibfam: [ i686-linux, x86_64-linux ] - HLogger: [ i686-linux, x86_64-darwin, x86_64-linux ] - hlogger: [ i686-linux, x86_64-darwin, x86_64-linux ] - hly: [ i686-linux, x86_64-darwin, x86_64-linux ] - HMap: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmark: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmarkup: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmatrix-banded: [ i686-linux, x86_64-linux ] - hmatrix-mmap: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmatrix-nipals: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmatrix-quadprogpp: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmatrix-repa: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmatrix-special: [ i686-linux, x86_64-linux ] - hmatrix-static: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmatrix-svdlibc: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmatrix-syntax: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmeap: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmeap-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmenu: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmidi: [ x86_64-darwin ] - hmk: [ i686-linux, x86_64-darwin, x86_64-linux ] - HMM: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmm: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmm-hmatrix: [ i686-linux, x86_64-darwin, x86_64-linux ] - hMollom: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmp3: [ i686-linux, x86_64-darwin, x86_64-linux ] - Hmpf: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmpfr: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmumps: [ i686-linux, x86_64-darwin, x86_64-linux ] - hnetcdf: [ i686-linux, x86_64-darwin, x86_64-linux ] - HNM: [ i686-linux, x86_64-darwin, x86_64-linux ] - hnn: [ i686-linux, x86_64-darwin, x86_64-linux ] - hoauth: [ i686-linux, x86_64-darwin, x86_64-linux ] - hob: [ i686-linux, x86_64-linux ] - hobbes: [ i686-linux, x86_64-darwin, x86_64-linux ] - hobbits: [ i686-linux, x86_64-darwin, x86_64-linux ] - HODE: [ i686-linux, x86_64-darwin, x86_64-linux ] - Hoed: [ i686-linux, x86_64-darwin, x86_64-linux ] - hofix-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] - hog: [ i686-linux, x86_64-darwin, x86_64-linux ] - hogg: [ i686-linux, x86_64-darwin, x86_64-linux ] - hogre: [ i686-linux, x86_64-darwin, x86_64-linux ] - hogre-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - hois: [ i686-linux, x86_64-darwin, x86_64-linux ] - hole: [ i686-linux, x86_64-darwin, x86_64-linux ] - Holumbus-Distribution: [ i686-linux, x86_64-darwin, x86_64-linux ] - Holumbus-MapReduce: [ i686-linux, x86_64-darwin, x86_64-linux ] - Holumbus-Searchengine: [ i686-linux, x86_64-darwin, x86_64-linux ] - Holumbus-Storage: [ i686-linux, x86_64-darwin, x86_64-linux ] - homeomorphic: [ i686-linux, x86_64-darwin, x86_64-linux ] - hommage: [ i686-linux, x86_64-darwin, x86_64-linux ] - homplexity: [ i686-linux, x86_64-darwin, x86_64-linux ] - HongoDB: [ i686-linux, x86_64-darwin, x86_64-linux ] - honi: [ i686-linux, x86_64-linux ] - honk: [ x86_64-darwin ] - hood-off: [ i686-linux, x86_64-darwin, x86_64-linux ] - hoodie: [ i686-linux, x86_64-darwin, x86_64-linux ] - hoodle: [ i686-linux, x86_64-darwin, x86_64-linux ] - hoodle-builder: [ i686-linux, x86_64-darwin, x86_64-linux ] - hoodle-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - hoodle-extra: [ i686-linux, x86_64-darwin, x86_64-linux ] - hoodle-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] - hoodle-publish: [ i686-linux, x86_64-darwin, x86_64-linux ] - hoodle-render: [ i686-linux, x86_64-darwin, x86_64-linux ] - hoodle-types: [ i686-linux, x86_64-darwin, x86_64-linux ] - hoovie: [ i686-linux, x86_64-darwin, x86_64-linux ] - hopencc: [ i686-linux, x86_64-darwin, x86_64-linux ] - hopencl: [ i686-linux, x86_64-darwin, x86_64-linux ] - hopfield: [ i686-linux, x86_64-darwin, x86_64-linux ] - hops: [ i686-linux, x86_64-darwin, x86_64-linux ] - hoq: [ i686-linux, x86_64-darwin, x86_64-linux ] - hosts-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - hothasktags: [ i686-linux, x86_64-darwin, x86_64-linux ] - hourglass-fuzzy-parsing: [ i686-linux, x86_64-darwin, x86_64-linux ] - hp2any-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - hp2any-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] - hp2any-manager: [ i686-linux, x86_64-linux ] - hpage: [ i686-linux, x86_64-darwin, x86_64-linux ] - hpapi: [ i686-linux, x86_64-darwin, x86_64-linux ] - hpaste: [ i686-linux, x86_64-darwin, x86_64-linux ] - hpasteit: [ i686-linux, x86_64-darwin, x86_64-linux ] - HPath: [ i686-linux, x86_64-darwin, x86_64-linux ] - hpc-tracer: [ i686-linux, x86_64-darwin, x86_64-linux ] - hPDB-examples: [ x86_64-darwin ] - HPi: [ i686-linux, x86_64-darwin, x86_64-linux ] - hplayground: [ i686-linux, x86_64-darwin, x86_64-linux ] - hplaylist: [ i686-linux, x86_64-darwin, x86_64-linux ] - HPlot: [ i686-linux, x86_64-darwin, x86_64-linux ] - hpodder: [ i686-linux, x86_64-darwin, x86_64-linux ] - HPong: [ i686-linux, x86_64-darwin, x86_64-linux ] - hpqtypes: [ x86_64-darwin ] - hprotoc-fork: [ i686-linux, x86_64-darwin, x86_64-linux ] - hps-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] - hpylos: [ i686-linux, x86_64-darwin, x86_64-linux ] - hquantlib: [ i686-linux, x86_64-linux ] - hR: [ i686-linux, x86_64-darwin, x86_64-linux ] - hranker: [ i686-linux, x86_64-darwin, x86_64-linux ] - HRay: [ i686-linux, x86_64-darwin, x86_64-linux ] - Hricket: [ i686-linux, x86_64-darwin, x86_64-linux ] - HROOT: [ i686-linux, x86_64-darwin, x86_64-linux ] - HROOT-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - HROOT-graf: [ i686-linux, x86_64-darwin, x86_64-linux ] - HROOT-hist: [ i686-linux, x86_64-darwin, x86_64-linux ] - HROOT-io: [ i686-linux, x86_64-darwin, x86_64-linux ] - HROOT-math: [ i686-linux, x86_64-darwin, x86_64-linux ] - hruby: [ i686-linux ] - hs-carbon-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-cdb: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-dotnet: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-duktape: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-ffmpeg: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-fltk: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-gchart: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-gen-iface: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-GeoIP: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-java: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-json-rpc: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-logo: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-mesos: [ i686-linux, x86_64-linux ] - hs-nombre-generator: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-pgms: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-pkpass: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-twitter: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-twitterarchiver: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-vcard: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs2bf: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs2dot: [ i686-linux, x86_64-darwin, x86_64-linux ] - Hs2lib: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsbackup: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsbencher-fusion: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsc2hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsc3-auditor: [ x86_64-darwin ] - hsc3-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsc3-data: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsc3-forth: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsc3-graphs: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsc3-lang: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsc3-lisp: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsc3-plot: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsc3-rec: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsc3-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsc3-sf-hsndfile: [ x86_64-darwin ] - hsc3-unsafe: [ i686-linux, x86_64-darwin, x86_64-linux ] - hscamwire: [ i686-linux, x86_64-darwin, x86_64-linux ] - hscassandra: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsclock: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsdip: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsdns-cache: [ i686-linux, x86_64-darwin, x86_64-linux ] - Hsed: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsfacter: [ i686-linux, x86_64-darwin, x86_64-linux ] - HSFFIG: [ i686-linux, x86_64-darwin, x86_64-linux ] - HSGEP: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsgnutls: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsgnutls-yj: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsgsom: [ i686-linux, x86_64-darwin, x86_64-linux ] - HsHaruPDF: [ i686-linux, x86_64-darwin, x86_64-linux ] - HSHHelpers: [ i686-linux, x86_64-darwin, x86_64-linux ] - HsHyperEstraier: [ i686-linux, x86_64-darwin, x86_64-linux ] - hSimpleDB: [ i686-linux, x86_64-darwin, x86_64-linux ] - HsJudy: [ i686-linux, x86_64-darwin, x86_64-linux ] - hskeleton: [ i686-linux, x86_64-darwin, x86_64-linux ] - hslackbuilder: [ i686-linux, x86_64-darwin, x86_64-linux ] - hslibsvm: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsmagick: [ i686-linux, x86_64-darwin, x86_64-linux ] - HSmarty: [ i686-linux, x86_64-darwin, x86_64-linux ] - Hsmtlib: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsmtpclient: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsndfile: [ x86_64-darwin ] - hsndfile-storablevector: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsndfile-vector: [ x86_64-darwin ] - hsnock: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsns: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsntp: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsoptions: [ i686-linux, x86_64-darwin, x86_64-linux ] - HSoundFile: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsp-cgi: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsparql: [ i686-linux, x86_64-darwin, x86_64-linux ] - hspear: [ i686-linux, x86_64-darwin, x86_64-linux ] - hspec-experimental: [ i686-linux, x86_64-darwin, x86_64-linux ] - hspec-shouldbe: [ i686-linux, x86_64-darwin, x86_64-linux ] - HsPerl5: [ i686-linux, x86_64-darwin, x86_64-linux ] - hspread: [ i686-linux, x86_64-darwin, x86_64-linux ] - hspresent: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsprocess: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsql-mysql: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsqml-datamodel: [ i686-linux, x86_64-linux ] - hsqml-datamodel-vinyl: [ i686-linux, x86_64-linux ] - hsqml-demo-morris: [ i686-linux ] - hsqml-demo-samples: [ i686-linux, x86_64-linux ] - hsqml-morris: [ i686-linux, x86_64-linux ] - hsseccomp: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsshellscript: [ x86_64-darwin ] - hssourceinfo: [ x86_64-darwin ] - hsSqlite3: [ i686-linux, x86_64-darwin, x86_64-linux ] - HsSVN: [ i686-linux, x86_64-darwin, x86_64-linux ] - hstest: [ i686-linux, x86_64-darwin, x86_64-linux ] - hstidy: [ i686-linux, x86_64-darwin, x86_64-linux ] - hstorchat: [ i686-linux, x86_64-linux ] - hstradeking: [ i686-linux, x86_64-darwin, x86_64-linux ] - HStringTemplateHelpers: [ i686-linux, x86_64-darwin, x86_64-linux ] - hstyle: [ i686-linux, x86_64-darwin, x86_64-linux ] - hstzaar: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsubconvert: [ i686-linux, x86_64-darwin, x86_64-linux ] - HSvm: [ i686-linux, x86_64-darwin, x86_64-linux ] - hswip: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsx: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsx-xhtml: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsXenCtrl: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsyscall: [ i686-linux, x86_64-darwin, x86_64-linux ] - hszephyr: [ i686-linux, x86_64-darwin, x86_64-linux ] - HTab: [ i686-linux, x86_64-darwin, x86_64-linux ] - hTalos: [ i686-linux, x86_64-darwin, x86_64-linux ] - HTicTacToe: [ i686-linux, x86_64-darwin, x86_64-linux ] - html-entities: [ i686-linux, x86_64-darwin, x86_64-linux ] - html-rules: [ i686-linux, x86_64-darwin, x86_64-linux ] - htoml: [ i686-linux, x86_64-darwin, x86_64-linux ] - htsn-import: [ i686-linux, x86_64-darwin, x86_64-linux ] - http-client-request-modifiers: [ i686-linux, x86_64-darwin, x86_64-linux ] - http-conduit-browser: [ i686-linux, x86_64-darwin, x86_64-linux ] - http-conduit-downloader: [ i686-linux, x86_64-darwin, x86_64-linux ] - http-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] - http-monad: [ i686-linux, x86_64-darwin, x86_64-linux ] - http-proxy: [ i686-linux, x86_64-darwin, x86_64-linux ] - http-shed: [ i686-linux, x86_64-darwin, x86_64-linux ] - https-everywhere-rules: [ i686-linux, x86_64-darwin, x86_64-linux ] - httpspec: [ i686-linux, x86_64-darwin, x86_64-linux ] - htune: [ i686-linux, x86_64-linux ] - htzaar: [ x86_64-darwin ] - hubris: [ i686-linux, x86_64-darwin, x86_64-linux ] - hugs2yc: [ i686-linux, x86_64-darwin, x86_64-linux ] - hulk: [ i686-linux, x86_64-darwin, x86_64-linux ] - HulkImport: [ i686-linux, x86_64-darwin, x86_64-linux ] - hums: [ i686-linux, x86_64-darwin, x86_64-linux ] - HUnit-Diff: [ i686-linux, x86_64-darwin, x86_64-linux ] - hunit-gui: [ i686-linux, x86_64-darwin, x86_64-linux ] - HUnit-Plus: [ i686-linux, x86_64-darwin, x86_64-linux ] - hunit-rematch: [ i686-linux, x86_64-darwin, x86_64-linux ] - hunt-searchengine: [ i686-linux, x86_64-darwin, x86_64-linux ] - hunt-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - hurdle: [ i686-linux, x86_64-darwin, x86_64-linux ] - husky: [ i686-linux, x86_64-darwin, x86_64-linux ] - hutton: [ i686-linux, x86_64-darwin, x86_64-linux ] - huzzy: [ i686-linux, x86_64-darwin, x86_64-linux ] - hVOIDP: [ i686-linux, x86_64-linux ] - hws: [ i686-linux, x86_64-darwin, x86_64-linux ] - hXmixer: [ x86_64-darwin ] - HXMPP: [ i686-linux, x86_64-darwin, x86_64-linux ] - hxmppc: [ i686-linux, x86_64-darwin, x86_64-linux ] - hxournal: [ i686-linux, x86_64-darwin, x86_64-linux ] - hxt-binary: [ i686-linux, x86_64-darwin, x86_64-linux ] - hxt-filter: [ i686-linux, x86_64-darwin, x86_64-linux ] - hxthelper: [ i686-linux, x86_64-darwin, x86_64-linux ] - hxweb: [ i686-linux, x86_64-darwin, x86_64-linux ] - hybrid: [ i686-linux, x86_64-darwin, x86_64-linux ] - hydra-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - hydrogen-cli: [ i686-linux, x86_64-darwin, x86_64-linux ] - hydrogen-cli-args: [ i686-linux, x86_64-darwin, x86_64-linux ] - hydrogen-data: [ i686-linux, x86_64-darwin, x86_64-linux ] - hydrogen-parsing: [ i686-linux, x86_64-darwin, x86_64-linux ] - hydrogen-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] - hydrogen-prelude-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] - hydrogen-syntax: [ i686-linux, x86_64-darwin, x86_64-linux ] - hydrogen-util: [ i686-linux, x86_64-darwin, x86_64-linux ] - hyena: [ i686-linux, x86_64-darwin, x86_64-linux ] - hylolib: [ i686-linux, x86_64-darwin, x86_64-linux ] - hylotab: [ i686-linux, x86_64-darwin, x86_64-linux ] - hyloutils: [ i686-linux, x86_64-darwin, x86_64-linux ] - hyperdrive: [ i686-linux, x86_64-darwin, x86_64-linux ] - hyperpublic: [ i686-linux, x86_64-darwin, x86_64-linux ] - hypher: [ i686-linux, x86_64-darwin, x86_64-linux ] - i18n: [ i686-linux, x86_64-darwin, x86_64-linux ] - ideas: [ i686-linux, x86_64-darwin, x86_64-linux ] - ideas-math: [ i686-linux, x86_64-darwin, x86_64-linux ] - idiii: [ i686-linux, x86_64-darwin, x86_64-linux ] - idna2008: [ i686-linux, x86_64-darwin, x86_64-linux ] - idris: [ i686-linux, x86_64-darwin, x86_64-linux ] - IDynamic: [ i686-linux, x86_64-darwin, x86_64-linux ] - ieee-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - iException: [ i686-linux, x86_64-darwin, x86_64-linux ] - IFS: [ i686-linux, x86_64-darwin, x86_64-linux ] - ige-mac-integration: [ i686-linux, x86_64-darwin, x86_64-linux ] - igraph: [ i686-linux, x86_64-darwin, x86_64-linux ] - ihaskell-diagrams: [ x86_64-darwin ] - ihaskell-inline-r: [ i686-linux, x86_64-darwin, x86_64-linux ] - ihaskell-plot: [ x86_64-darwin ] - ihaskell-widgets: [ i686-linux, x86_64-darwin, x86_64-linux ] - ihttp: [ i686-linux, x86_64-darwin, x86_64-linux ] - illuminate: [ i686-linux, x86_64-darwin, x86_64-linux ] - imagemagick: [ i686-linux, x86_64-darwin ] - imagepaste: [ i686-linux, x86_64-darwin, x86_64-linux ] - imap: [ i686-linux, x86_64-darwin, x86_64-linux ] - imbib: [ i686-linux, x86_64-linux ] - imgurder: [ i686-linux, x86_64-darwin, x86_64-linux ] - imm: [ i686-linux, x86_64-darwin, x86_64-linux ] - imparse: [ i686-linux, x86_64-darwin, x86_64-linux ] - imperative-edsl: [ i686-linux, x86_64-darwin ] - imperative-edsl-vhdl: [ i686-linux, x86_64-darwin, x86_64-linux ] - ImperativeHaskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - improve: [ i686-linux, x86_64-darwin, x86_64-linux ] - INblobs: [ i686-linux, x86_64-darwin, x86_64-linux ] - inch: [ i686-linux, x86_64-darwin, x86_64-linux ] - incremental-computing: [ i686-linux, x86_64-darwin, x86_64-linux ] - incremental-sat-solver: [ i686-linux, x86_64-darwin, x86_64-linux ] - increments: [ i686-linux, x86_64-darwin, x86_64-linux ] - index-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - indian-language-font-converter: [ x86_64-darwin ] - indices: [ i686-linux, x86_64-darwin, x86_64-linux ] - indieweb-algorithms: [ i686-linux, x86_64-darwin, x86_64-linux ] - inf-interval: [ i686-linux, x86_64-darwin, x86_64-linux ] - infer-upstream: [ i686-linux, x86_64-darwin, x86_64-linux ] - infinity: [ i686-linux, x86_64-darwin, x86_64-linux ] - infix: [ i686-linux, x86_64-darwin, x86_64-linux ] - InfixApplicative: [ i686-linux, x86_64-darwin, x86_64-linux ] - inflist: [ i686-linux, x86_64-darwin, x86_64-linux ] - influxdb: [ i686-linux, x86_64-darwin, x86_64-linux ] - informative: [ i686-linux, x86_64-darwin, x86_64-linux ] - inilist: [ i686-linux, x86_64-darwin, x86_64-linux ] - inline-c-cpp: [ x86_64-darwin ] - inline-r: [ i686-linux, x86_64-darwin ] - instant-zipper: [ i686-linux, x86_64-darwin, x86_64-linux ] - integer-pure: [ i686-linux, x86_64-darwin, x86_64-linux ] - intel-aes: [ i686-linux, x86_64-darwin, x86_64-linux ] - interleavableGen: [ i686-linux, x86_64-darwin, x86_64-linux ] - interleavableIO: [ i686-linux, x86_64-darwin, x86_64-linux ] - internetmarke: [ i686-linux, x86_64-darwin, x86_64-linux ] - interpolatedstring-qq: [ i686-linux, x86_64-darwin, x86_64-linux ] - interpolatedstring-qq-mwotton: [ i686-linux, x86_64-darwin, x86_64-linux ] - intset: [ i686-linux, x86_64-darwin, x86_64-linux ] - io-reactive: [ i686-linux, x86_64-darwin, x86_64-linux ] - IOR: [ i686-linux, x86_64-darwin, x86_64-linux ] - IORefCAS: [ i686-linux, x86_64-darwin, x86_64-linux ] - iotransaction: [ i686-linux, x86_64-darwin, x86_64-linux ] - ipatch: [ i686-linux, x86_64-darwin, x86_64-linux ] - ipc: [ i686-linux, x86_64-darwin, x86_64-linux ] - ipopt-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - iptables-helpers: [ i686-linux, x86_64-darwin, x86_64-linux ] - iptadmin: [ i686-linux, x86_64-linux ] - Irc: [ i686-linux, x86_64-darwin, x86_64-linux ] - isevaluated: [ i686-linux, x86_64-darwin, x86_64-linux ] - isiz: [ x86_64-darwin ] - ismtp: [ i686-linux, x86_64-darwin, x86_64-linux ] - iter-stats: [ i686-linux, x86_64-darwin, x86_64-linux ] - iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] - iteratee-compress: [ i686-linux, x86_64-darwin, x86_64-linux ] - iteratee-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] - iteratee-stm: [ i686-linux, x86_64-darwin, x86_64-linux ] - iterIO: [ i686-linux, x86_64-darwin, x86_64-linux ] - iterio-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - ivor: [ i686-linux, x86_64-darwin, x86_64-linux ] - ivory: [ i686-linux, x86_64-darwin, x86_64-linux ] - ivory-backend-c: [ i686-linux, x86_64-darwin, x86_64-linux ] - ivory-bitdata: [ i686-linux, x86_64-darwin, x86_64-linux ] - ivory-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - ivory-hw: [ i686-linux, x86_64-darwin, x86_64-linux ] - ivory-opts: [ i686-linux, x86_64-darwin, x86_64-linux ] - ivory-quickcheck: [ i686-linux, x86_64-darwin, x86_64-linux ] - ivory-stdlib: [ i686-linux, x86_64-darwin, x86_64-linux ] - ivy-web: [ i686-linux, x86_64-darwin, x86_64-linux ] - ixdopp: [ i686-linux, x86_64-darwin, x86_64-linux ] - iyql: [ i686-linux, x86_64-darwin, x86_64-linux ] - j2hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - jack: [ x86_64-darwin ] - jack-bindings: [ i686-linux, x86_64-darwin, x86_64-linux ] - JackMiniMix: [ i686-linux, x86_64-darwin, x86_64-linux ] - jackminimix: [ i686-linux, x86_64-darwin, x86_64-linux ] - jacobi-roots: [ i686-linux, x86_64-darwin, x86_64-linux ] - jalla: [ i686-linux, x86_64-darwin, x86_64-linux ] - jarfind: [ i686-linux, x86_64-darwin, x86_64-linux ] - java-bridge: [ i686-linux, x86_64-darwin, x86_64-linux ] - java-bridge-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] - java-reflect: [ i686-linux, x86_64-darwin, x86_64-linux ] - javasf: [ i686-linux, x86_64-darwin, x86_64-linux ] - Javasf: [ i686-linux, x86_64-darwin, x86_64-linux ] - javav: [ i686-linux, x86_64-darwin, x86_64-linux ] - Javav: [ i686-linux, x86_64-darwin, x86_64-linux ] - jespresso: [ i686-linux, x86_64-linux ] - join: [ i686-linux, x86_64-darwin, x86_64-linux ] - joinlist: [ i686-linux, x86_64-darwin, x86_64-linux ] - jonathanscard: [ i686-linux, x86_64-darwin, x86_64-linux ] - jort: [ i686-linux, x86_64-darwin, x86_64-linux ] - js-good-parts: [ i686-linux, x86_64-darwin, x86_64-linux ] - jsaddle: [ i686-linux, x86_64-linux ] - jsaddle-hello: [ i686-linux, x86_64-linux ] - jsc: [ i686-linux, x86_64-linux ] - JsContracts: [ i686-linux, x86_64-darwin, x86_64-linux ] - jsmw: [ i686-linux, x86_64-darwin, x86_64-linux ] - json-b: [ i686-linux, x86_64-darwin, x86_64-linux ] - JSON-Combinator: [ i686-linux, x86_64-darwin, x86_64-linux ] - JSON-Combinator-Examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - json-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] - json-pointer-hasql: [ i686-linux, x86_64-darwin, x86_64-linux ] - json-qq: [ i686-linux, x86_64-darwin, x86_64-linux ] - json-stream: [ i686-linux ] - json-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] - json2: [ i686-linux, x86_64-darwin, x86_64-linux ] - json2-hdbc: [ i686-linux, x86_64-darwin, x86_64-linux ] - JSONb: [ i686-linux, x86_64-darwin, x86_64-linux ] - JsonGrammar: [ i686-linux, x86_64-darwin, x86_64-linux ] - jsonresume: [ i686-linux, x86_64-darwin, x86_64-linux ] - jspath: [ i686-linux, x86_64-darwin, x86_64-linux ] - judy: [ i686-linux, x86_64-darwin, x86_64-linux ] - jukebox: [ x86_64-darwin ] - JunkDB-driver-gdbm: [ i686-linux, x86_64-darwin, x86_64-linux ] - JYU-Utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - kafka-client: [ x86_64-darwin ] - kangaroo: [ i686-linux, x86_64-darwin, x86_64-linux ] - kansas-lava: [ i686-linux, x86_64-darwin, x86_64-linux ] - kansas-lava-cores: [ i686-linux, x86_64-darwin, x86_64-linux ] - kansas-lava-papilio: [ i686-linux, x86_64-darwin, x86_64-linux ] - kansas-lava-shake: [ i686-linux, x86_64-darwin, x86_64-linux ] - karakuri: [ i686-linux, x86_64-darwin, x86_64-linux ] - katt: [ i686-linux, x86_64-darwin, x86_64-linux ] - kazura-queue: [ x86_64-linux ] - keera-hails-mvc-environment-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] - keera-hails-mvc-model-lightmodel: [ i686-linux, x86_64-darwin, x86_64-linux ] - keera-hails-mvc-model-protectedmodel: [ i686-linux, x86_64-darwin, x86_64-linux ] - keera-hails-mvc-solutions-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] - keera-hails-mvc-view-gtk: [ x86_64-darwin ] - keera-hails-reactive-fs: [ i686-linux, x86_64-darwin, x86_64-linux ] - keera-hails-reactive-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] - keera-hails-reactive-network: [ i686-linux, x86_64-darwin, x86_64-linux ] - keera-hails-reactive-polling: [ i686-linux, x86_64-darwin, x86_64-linux ] - keera-hails-reactive-wx: [ i686-linux, x86_64-darwin, x86_64-linux ] - keera-hails-reactive-yampa: [ i686-linux, x86_64-darwin, x86_64-linux ] - keera-hails-reactivelenses: [ i686-linux, x86_64-darwin, x86_64-linux ] - keera-hails-reactivevalues: [ i686-linux, x86_64-darwin, x86_64-linux ] - keera-posture: [ i686-linux, x86_64-linux ] - keiretsu: [ i686-linux, x86_64-darwin, x86_64-linux ] - Ketchup: [ i686-linux, x86_64-darwin, x86_64-linux ] - kevin: [ i686-linux, x86_64-darwin, x86_64-linux ] - keyring: [ i686-linux, x86_64-darwin, x86_64-linux ] - keystore: [ i686-linux, x86_64-darwin, x86_64-linux ] - kicad-data: [ i686-linux, x86_64-darwin, x86_64-linux ] - kickass-torrents-dump-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] - KiCS: [ i686-linux, x86_64-darwin, x86_64-linux ] - KiCS-debugger: [ i686-linux, x86_64-darwin, x86_64-linux ] - KiCS-prophecy: [ i686-linux, x86_64-darwin, x86_64-linux ] - kif-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] - kit: [ i686-linux, x86_64-darwin, x86_64-linux ] - kmeans-par: [ i686-linux, x86_64-darwin, x86_64-linux ] - koellner-phonetic: [ i686-linux, x86_64-darwin, x86_64-linux ] - Konf: [ i686-linux, x86_64-darwin, x86_64-linux ] - korfu: [ i686-linux, x86_64-darwin, x86_64-linux ] - kqueue: [ i686-linux, x86_64-darwin, x86_64-linux ] - ktx: [ x86_64-darwin ] - kure-your-boilerplate: [ i686-linux, x86_64-darwin, x86_64-linux ] - KyotoCabinet: [ i686-linux, x86_64-darwin, x86_64-linux ] - kyotocabinet: [ x86_64-darwin ] - l-bfgs-b: [ i686-linux, x86_64-darwin, x86_64-linux ] - L-seed: [ i686-linux, x86_64-darwin, x86_64-linux ] - labeled-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] - laborantin-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - labyrinth: [ i686-linux, x86_64-darwin, x86_64-linux ] - labyrinth-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - lagrangian: [ i686-linux, x86_64-darwin, x86_64-linux ] - laika: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambda-bridge: [ i686-linux, x86_64-linux ] - lambda-canvas: [ x86_64-darwin ] - lambda-devs: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambda-toolbox: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdaBase: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdabot: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdabot-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdabot-haskell-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdabot-irc-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdabot-misc-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdabot-novelty-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdabot-reference-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdabot-social-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdabot-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - LambdaCalculator: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdacat: [ i686-linux, x86_64-linux ] - lambdacube: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdacube-bullet: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdacube-engine: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdacube-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdacube-gl: [ x86_64-darwin ] - lambdacube-samples: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdaFeed: [ i686-linux, x86_64-darwin, x86_64-linux ] - LambdaHack: [ i686-linux, x86_64-darwin, x86_64-linux ] - LambdaINet: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdaLit: [ i686-linux, x86_64-darwin, x86_64-linux ] - LambdaNet: [ i686-linux, x86_64-darwin, x86_64-linux ] - LambdaPrettyQuote: [ i686-linux, x86_64-darwin, x86_64-linux ] - LambdaShell: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdatwit: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdiff: [ i686-linux, x86_64-darwin, x86_64-linux ] - lame-tester: [ i686-linux, x86_64-darwin, x86_64-linux ] - language-bash: [ i686-linux, x86_64-linux ] - language-boogie: [ i686-linux, x86_64-darwin, x86_64-linux ] - language-c-comments: [ i686-linux, x86_64-darwin, x86_64-linux ] - language-c-inline: [ i686-linux, x86_64-darwin, x86_64-linux ] - language-eiffel: [ i686-linux, x86_64-darwin, x86_64-linux ] - language-go: [ i686-linux, x86_64-darwin, x86_64-linux ] - language-java-classfile: [ i686-linux, x86_64-darwin, x86_64-linux ] - language-mixal: [ i686-linux, x86_64-darwin, x86_64-linux ] - language-objc: [ i686-linux, x86_64-darwin, x86_64-linux ] - language-puppet: [ i686-linux, x86_64-darwin, x86_64-linux ] - language-python-colour: [ i686-linux, x86_64-darwin, x86_64-linux ] - language-qux: [ i686-linux, x86_64-darwin, x86_64-linux ] - language-sh: [ i686-linux, x86_64-darwin, x86_64-linux ] - language-spelling: [ i686-linux, x86_64-darwin, x86_64-linux ] - language-sqlite: [ i686-linux, x86_64-darwin, x86_64-linux ] - Lastik: [ i686-linux, x86_64-darwin, x86_64-linux ] - lat: [ i686-linux, x86_64-darwin, x86_64-linux ] - latest-npm-version: [ i686-linux, x86_64-darwin, x86_64-linux ] - launchpad-control: [ i686-linux, x86_64-darwin, x86_64-linux ] - layers: [ i686-linux, x86_64-darwin, x86_64-linux ] - layers-game: [ i686-linux, x86_64-darwin, x86_64-linux ] - layout: [ i686-linux, x86_64-darwin, x86_64-linux ] - layout-bootstrap: [ i686-linux, x86_64-darwin, x86_64-linux ] - Lazy-Pbkdf2: [ i686-linux ] - lazyarray: [ i686-linux, x86_64-darwin, x86_64-linux ] - lazysplines: [ i686-linux, x86_64-darwin, x86_64-linux ] - lcs: [ i686-linux, x86_64-darwin, x86_64-linux ] - ldif: [ i686-linux, x86_64-darwin, x86_64-linux ] - leaf: [ i686-linux, x86_64-darwin, x86_64-linux ] - leaky: [ i686-linux, x86_64-darwin, x86_64-linux ] - learn-physics: [ i686-linux, x86_64-darwin, x86_64-linux ] - learn-physics-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - leksah: [ i686-linux, x86_64-linux ] - leksah-server: [ x86_64-darwin ] - Level0: [ x86_64-darwin ] - leveldb-haskell: [ x86_64-darwin ] - leveldb-haskell-fork: [ i686-linux, x86_64-darwin, x86_64-linux ] - levmar: [ i686-linux, x86_64-linux ] - levmar-chart: [ i686-linux, x86_64-linux ] - lgtk: [ i686-linux, x86_64-darwin, x86_64-linux ] - lha: [ i686-linux, x86_64-darwin, x86_64-linux ] - lhae: [ i686-linux, x86_64-darwin, x86_64-linux ] - lhe: [ i686-linux, x86_64-darwin, x86_64-linux ] - LibClang: [ i686-linux, x86_64-darwin, x86_64-linux ] - libconfig: [ i686-linux, x86_64-linux ] - libcspm: [ i686-linux, x86_64-darwin, x86_64-linux ] - libexpect: [ i686-linux, x86_64-darwin, x86_64-linux ] - libGenI: [ i686-linux, x86_64-darwin, x86_64-linux ] - libgraph: [ i686-linux, x86_64-darwin, x86_64-linux ] - libhbb: [ i686-linux, x86_64-darwin, x86_64-linux ] - libjenkins: [ i686-linux, x86_64-linux ] - liblinear-enumerator: [ x86_64-darwin ] - libltdl: [ i686-linux, x86_64-darwin, x86_64-linux ] - libnotify: [ x86_64-darwin ] - liboleg: [ i686-linux, x86_64-darwin, x86_64-linux ] - libpafe: [ i686-linux, x86_64-darwin, x86_64-linux ] - libpq: [ i686-linux, x86_64-darwin, x86_64-linux ] - libssh2-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - libsystemd-daemon: [ i686-linux, x86_64-darwin, x86_64-linux ] - libvirt-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - libxls: [ i686-linux, x86_64-darwin, x86_64-linux ] - libxml: [ i686-linux, x86_64-darwin, x86_64-linux ] - libxslt: [ i686-linux, x86_64-darwin, x86_64-linux ] - LibZip: [ i686-linux, x86_64-darwin, x86_64-linux ] - life: [ x86_64-darwin ] - lifter: [ i686-linux, x86_64-darwin, x86_64-linux ] - lighttpd-conf: [ i686-linux, x86_64-darwin, x86_64-linux ] - lighttpd-conf-qq: [ i686-linux, x86_64-darwin, x86_64-linux ] - lilypond: [ i686-linux, x86_64-darwin, x86_64-linux ] - Limit: [ i686-linux, x86_64-darwin, x86_64-linux ] - limp-cbc: [ i686-linux, x86_64-darwin, x86_64-linux ] - lin-alg: [ i686-linux, x86_64-darwin, x86_64-linux ] - linda: [ i686-linux, x86_64-darwin, x86_64-linux ] - linear-algebra-cblas: [ i686-linux, x86_64-darwin, x86_64-linux ] - linear-circuit: [ i686-linux, x86_64-darwin, x86_64-linux ] - linear-maps: [ i686-linux, x86_64-darwin, x86_64-linux ] - linear-opengl: [ i686-linux, x86_64-darwin, x86_64-linux ] - linearscan-hoopl: [ i686-linux, x86_64-darwin, x86_64-linux ] - LinearSplit: [ i686-linux, x86_64-darwin, x86_64-linux ] - LinguisticsTypes: [ i686-linux, x86_64-darwin, x86_64-linux ] - LinkChecker: [ i686-linux, x86_64-darwin, x86_64-linux ] - linkchk: [ i686-linux, x86_64-darwin, x86_64-linux ] - linkcore: [ i686-linux, x86_64-darwin, x86_64-linux ] - linode: [ i686-linux, x86_64-darwin, x86_64-linux ] - linux-blkid: [ i686-linux, x86_64-darwin, x86_64-linux ] - linux-evdev: [ x86_64-darwin ] - linux-file-extents: [ x86_64-darwin ] - linux-inotify: [ x86_64-darwin ] - linux-kmod: [ i686-linux, x86_64-darwin, x86_64-linux ] - linux-mount: [ x86_64-darwin ] - linux-namespaces: [ x86_64-darwin ] - linux-perf: [ i686-linux, x86_64-darwin, x86_64-linux ] - linux-ptrace: [ i686-linux, x86_64-darwin, x86_64-linux ] - lio-eci11: [ i686-linux, x86_64-darwin, x86_64-linux ] - lio-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] - list-t-html-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] - listlike-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] - literals: [ i686-linux, x86_64-darwin, x86_64-linux ] - live-sequencer: [ i686-linux, x86_64-linux ] - ll-picosat: [ i686-linux, x86_64-darwin, x86_64-linux ] - llsd: [ i686-linux, x86_64-darwin, x86_64-linux ] - llvm: [ i686-linux, x86_64-darwin, x86_64-linux ] - llvm-analysis: [ i686-linux, x86_64-darwin, x86_64-linux ] - llvm-base: [ i686-linux, x86_64-darwin, x86_64-linux ] - llvm-base-types: [ i686-linux, x86_64-darwin, x86_64-linux ] - llvm-base-util: [ i686-linux, x86_64-darwin, x86_64-linux ] - llvm-data-interop: [ i686-linux, x86_64-darwin, x86_64-linux ] - llvm-extra: [ i686-linux, x86_64-darwin, x86_64-linux ] - llvm-ffi: [ i686-linux, x86_64-darwin, x86_64-linux ] - llvm-general: [ x86_64-darwin ] - llvm-general-quote: [ i686-linux, x86_64-darwin, x86_64-linux ] - llvm-ht: [ i686-linux, x86_64-darwin, x86_64-linux ] - llvm-tf: [ i686-linux, x86_64-darwin, x86_64-linux ] - llvm-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] - lmdb: [ x86_64-darwin ] - lmonad: [ i686-linux, x86_64-darwin, x86_64-linux ] - lmonad-yesod: [ i686-linux, x86_64-darwin, x86_64-linux ] - local-search: [ i686-linux, x86_64-darwin, x86_64-linux ] - loch: [ i686-linux, x86_64-darwin, x86_64-linux ] - locked-poll: [ i686-linux, x86_64-darwin, x86_64-linux ] - log: [ x86_64-darwin ] - log-effect: [ i686-linux, x86_64-darwin, x86_64-linux ] - log2json: [ i686-linux, x86_64-darwin, x86_64-linux ] - logic-classes: [ i686-linux, x86_64-darwin, x86_64-linux ] - LogicGrowsOnTrees: [ i686-linux, x86_64-darwin, x86_64-linux ] - LogicGrowsOnTrees-MPI: [ i686-linux, x86_64-darwin, x86_64-linux ] - LogicGrowsOnTrees-network: [ i686-linux, x86_64-darwin, x86_64-linux ] - LogicGrowsOnTrees-processes: [ i686-linux, x86_64-darwin, x86_64-linux ] - lojban: [ i686-linux, x86_64-darwin, x86_64-linux ] - lojbanParser: [ i686-linux, x86_64-darwin, x86_64-linux ] - lojbanXiragan: [ i686-linux, x86_64-darwin, x86_64-linux ] - lojysamban: [ i686-linux, x86_64-darwin, x86_64-linux ] - lol: [ i686-linux, x86_64-darwin ] - lol-apps: [ i686-linux, x86_64-darwin, x86_64-linux ] - loli: [ i686-linux, x86_64-darwin, x86_64-linux ] - loop-effin: [ i686-linux, x86_64-darwin, x86_64-linux ] - loopy: [ i686-linux, x86_64-darwin, x86_64-linux ] - lord: [ i686-linux, x86_64-darwin, x86_64-linux ] - loris: [ i686-linux, x86_64-darwin, x86_64-linux ] - lostcities: [ i686-linux, x86_64-darwin, x86_64-linux ] - lowgl: [ x86_64-darwin ] - ls-usb: [ i686-linux, x86_64-darwin, x86_64-linux ] - lscabal: [ i686-linux, x86_64-darwin, x86_64-linux ] - LslPlus: [ i686-linux, x86_64-darwin, x86_64-linux ] - lsystem: [ i686-linux, x86_64-darwin, x86_64-linux ] - ltk: [ x86_64-darwin ] - luachunk: [ i686-linux, x86_64-darwin, x86_64-linux ] - lucienne: [ i686-linux, x86_64-darwin, x86_64-linux ] - Lucu: [ i686-linux, x86_64-darwin, x86_64-linux ] - lui: [ i686-linux, x86_64-darwin, x86_64-linux ] - luka: [ i686-linux, x86_64-darwin, x86_64-linux ] - luminance: [ x86_64-darwin ] - luminance-samples: [ x86_64-darwin ] - lushtags: [ i686-linux, x86_64-darwin, x86_64-linux ] - luthor: [ i686-linux, x86_64-darwin, x86_64-linux ] - lvish: [ i686-linux, x86_64-darwin, x86_64-linux ] - lvmlib: [ i686-linux, x86_64-darwin, x86_64-linux ] - lye: [ i686-linux, x86_64-darwin, x86_64-linux ] - lzma: [ i686-linux ] - lzma-streams: [ i686-linux ] - mage: [ i686-linux, x86_64-darwin, x86_64-linux ] - MagicHaskeller: [ i686-linux, x86_64-darwin, x86_64-linux ] - magico: [ i686-linux, x86_64-darwin, x86_64-linux ] - mahoro: [ i686-linux, x86_64-darwin, x86_64-linux ] - majordomo: [ i686-linux, x86_64-darwin, x86_64-linux ] - majority: [ i686-linux, x86_64-darwin, x86_64-linux ] - make-package: [ i686-linux, x86_64-darwin, x86_64-linux ] - manatee: [ i686-linux, x86_64-darwin, x86_64-linux ] - manatee-all: [ i686-linux, x86_64-linux ] - manatee-anything: [ i686-linux, x86_64-darwin, x86_64-linux ] - manatee-browser: [ i686-linux, x86_64-linux ] - manatee-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - manatee-curl: [ i686-linux, x86_64-darwin, x86_64-linux ] - manatee-editor: [ i686-linux, x86_64-darwin, x86_64-linux ] - manatee-filemanager: [ i686-linux, x86_64-darwin, x86_64-linux ] - manatee-imageviewer: [ i686-linux, x86_64-darwin, x86_64-linux ] - manatee-ircclient: [ i686-linux, x86_64-darwin, x86_64-linux ] - manatee-mplayer: [ i686-linux, x86_64-darwin, x86_64-linux ] - manatee-pdfviewer: [ i686-linux, x86_64-darwin, x86_64-linux ] - manatee-processmanager: [ i686-linux, x86_64-darwin, x86_64-linux ] - manatee-reader: [ i686-linux, x86_64-linux ] - manatee-template: [ i686-linux, x86_64-darwin, x86_64-linux ] - manatee-terminal: [ i686-linux, x86_64-linux ] - manatee-welcome: [ i686-linux, x86_64-darwin, x86_64-linux ] - mandulia: [ i686-linux, x86_64-darwin, x86_64-linux ] - manifold-random: [ x86_64-darwin ] - manifolds: [ x86_64-darwin ] - mappy: [ i686-linux, x86_64-darwin, x86_64-linux ] - marionetta: [ i686-linux, x86_64-darwin, x86_64-linux ] - markdown-kate: [ i686-linux, x86_64-darwin, x86_64-linux ] - markdown-pap: [ i686-linux, x86_64-darwin, x86_64-linux ] - markdown2svg: [ i686-linux, x86_64-darwin, x86_64-linux ] - markov-processes: [ i686-linux, x86_64-darwin, x86_64-linux ] - markup-preview: [ i686-linux, x86_64-linux ] - marmalade-upload: [ i686-linux, x86_64-darwin, x86_64-linux ] - marquise: [ i686-linux, x86_64-darwin, x86_64-linux ] - marxup: [ i686-linux, x86_64-darwin, x86_64-linux ] - masakazu-bot: [ i686-linux, x86_64-darwin, x86_64-linux ] - matchers: [ i686-linux, x86_64-darwin, x86_64-linux ] - mathblog: [ i686-linux, x86_64-darwin, x86_64-linux ] - mathlink: [ i686-linux, x86_64-darwin, x86_64-linux ] - matlab: [ i686-linux, x86_64-darwin, x86_64-linux ] - matsuri: [ i686-linux, x86_64-darwin, x86_64-linux ] - maude: [ i686-linux, x86_64-darwin, x86_64-linux ] - maxent: [ i686-linux, x86_64-darwin, x86_64-linux ] - maxsharing: [ i686-linux, x86_64-darwin, x86_64-linux ] - maybench: [ i686-linux, x86_64-darwin, x86_64-linux ] - MaybeT: [ i686-linux, x86_64-darwin, x86_64-linux ] - MaybeT-monads-tf: [ i686-linux, x86_64-darwin, x86_64-linux ] - MaybeT-transformers: [ i686-linux, x86_64-darwin, x86_64-linux ] - MazesOfMonad: [ i686-linux, x86_64-darwin, x86_64-linux ] - mbox-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] - MC-Fold-DP: [ i686-linux, x86_64-darwin, x86_64-linux ] - mcmaster-gloss-examples: [ x86_64-darwin ] - mcmc-samplers: [ i686-linux, x86_64-darwin, x86_64-linux ] - mdcat: [ i686-linux, x86_64-darwin, x86_64-linux ] - Measure: [ i686-linux, x86_64-darwin, x86_64-linux ] - mecab: [ i686-linux, x86_64-darwin, x86_64-linux ] - mediawiki: [ i686-linux, x86_64-darwin, x86_64-linux ] - mediawiki2latex: [ i686-linux, x86_64-darwin, x86_64-linux ] - medium-sdk-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - meep: [ i686-linux, x86_64-darwin, x86_64-linux ] - mega-sdist: [ i686-linux, x86_64-darwin, x86_64-linux ] - melody: [ i686-linux, x86_64-darwin, x86_64-linux ] - memo-sqlite: [ i686-linux, x86_64-darwin, x86_64-linux ] - meta-par-accelerate: [ i686-linux, x86_64-darwin, x86_64-linux ] - metadata: [ x86_64-linux ] - metaplug: [ i686-linux, x86_64-darwin, x86_64-linux ] - metric: [ i686-linux, x86_64-darwin, x86_64-linux ] - Metrics: [ i686-linux, x86_64-darwin, x86_64-linux ] - metronome: [ i686-linux, x86_64-darwin, x86_64-linux ] - Mhailist: [ i686-linux, x86_64-darwin, x86_64-linux ] - MHask: [ i686-linux, x86_64-darwin, x86_64-linux ] - Michelangelo: [ i686-linux, x86_64-darwin, x86_64-linux ] - microlens-aeson: [ i686-linux ] - midisurface: [ i686-linux, x86_64-linux ] - mighttpd: [ i686-linux, x86_64-darwin, x86_64-linux ] - mikmod: [ x86_64-darwin ] - mime-string: [ i686-linux, x86_64-darwin, x86_64-linux ] - minesweeper: [ i686-linux, x86_64-darwin, x86_64-linux ] - MiniAgda: [ i686-linux, x86_64-darwin, x86_64-linux ] - miniball: [ x86_64-darwin ] - miniforth: [ i686-linux, x86_64-darwin, x86_64-linux ] - minimung: [ i686-linux, x86_64-darwin, x86_64-linux ] - minioperational: [ i686-linux, x86_64-darwin, x86_64-linux ] - miniplex: [ i686-linux, x86_64-darwin, x86_64-linux ] - minirotate: [ i686-linux, x86_64-darwin, x86_64-linux ] - minisat: [ x86_64-darwin ] - ministg: [ i686-linux, x86_64-darwin, x86_64-linux ] - mirror-tweet: [ i686-linux, x86_64-darwin, x86_64-linux ] - missing-py2: [ i686-linux, x86_64-darwin, x86_64-linux ] - MissingPy: [ i686-linux, x86_64-darwin, x86_64-linux ] - mix-arrows: [ i686-linux, x86_64-darwin, x86_64-linux ] - mkbndl: [ i686-linux, x86_64-darwin, x86_64-linux ] - ml-w: [ i686-linux, x86_64-darwin, x86_64-linux ] - mlist: [ i686-linux, x86_64-darwin, x86_64-linux ] - mmtl: [ i686-linux, x86_64-darwin, x86_64-linux ] - mmtl-base: [ i686-linux, x86_64-darwin, x86_64-linux ] - moan: [ i686-linux, x86_64-darwin, x86_64-linux ] - modelicaparser: [ i686-linux, x86_64-darwin, x86_64-linux ] - modsplit: [ i686-linux, x86_64-darwin, x86_64-linux ] - modular-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] - modular-prelude-classy: [ i686-linux, x86_64-darwin, x86_64-linux ] - module-management: [ i686-linux, x86_64-darwin, x86_64-linux ] - Moe: [ x86_64-darwin ] - mohws: [ i686-linux, x86_64-darwin, x86_64-linux ] - monad-abort-fd: [ i686-linux, x86_64-darwin, x86_64-linux ] - monad-atom: [ i686-linux, x86_64-darwin, x86_64-linux ] - monad-atom-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] - monad-exception: [ i686-linux, x86_64-darwin, x86_64-linux ] - monad-interleave: [ i686-linux, x86_64-darwin, x86_64-linux ] - monad-levels: [ i686-linux, x86_64-darwin, x86_64-linux ] - monad-lrs: [ i686-linux, x86_64-darwin, x86_64-linux ] - monad-memo: [ i686-linux, x86_64-darwin, x86_64-linux ] - monad-mersenne-random: [ i686-linux, x86_64-darwin, x86_64-linux ] - monad-ran: [ i686-linux, x86_64-darwin, x86_64-linux ] - monad-stlike-io: [ i686-linux, x86_64-darwin, x86_64-linux ] - monad-stlike-stm: [ i686-linux, x86_64-darwin, x86_64-linux ] - monad-tx: [ i686-linux, x86_64-darwin, x86_64-linux ] - monad-unify: [ i686-linux, x86_64-darwin, x86_64-linux ] - monadacme: [ i686-linux, x86_64-darwin, x86_64-linux ] - MonadCatchIO-mtl-foreign: [ i686-linux, x86_64-darwin, x86_64-linux ] - MonadCatchIO-transformers-foreign: [ i686-linux, x86_64-darwin, x86_64-linux ] - monadiccp: [ i686-linux, x86_64-darwin, x86_64-linux ] - monadiccp-gecode: [ i686-linux, x86_64-darwin, x86_64-linux ] - Monadius: [ i686-linux, x86_64-darwin, x86_64-linux ] - MonadLab: [ i686-linux, x86_64-darwin, x86_64-linux ] - monarch: [ i686-linux, x86_64-darwin, x86_64-linux ] - Monaris: [ i686-linux, x86_64-darwin, x86_64-linux ] - Monatron: [ i686-linux, x86_64-darwin, x86_64-linux ] - Monatron-IO: [ i686-linux, x86_64-darwin, x86_64-linux ] - mongodb-queue: [ i686-linux, x86_64-darwin, x86_64-linux ] - mongrel2-handler: [ i686-linux, x86_64-darwin, x86_64-linux ] - monitor: [ x86_64-darwin ] - mono-foldable: [ i686-linux, x86_64-darwin, x86_64-linux ] - Monocle: [ i686-linux, x86_64-darwin, x86_64-linux ] - monoid-owns: [ i686-linux, x86_64-darwin, x86_64-linux ] - monoidplus: [ i686-linux, x86_64-darwin, x86_64-linux ] - monoids: [ i686-linux, x86_64-darwin, x86_64-linux ] - monte-carlo: [ i686-linux, x86_64-darwin, x86_64-linux ] - moo: [ i686-linux, x86_64-darwin, x86_64-linux ] - morfette: [ i686-linux, x86_64-darwin, x86_64-linux ] - morfeusz: [ i686-linux, x86_64-darwin, x86_64-linux ] - mosaico-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] - mount: [ i686-linux, x86_64-darwin, x86_64-linux ] - mp: [ i686-linux, x86_64-darwin, x86_64-linux ] - mp3decoder: [ i686-linux, x86_64-darwin, x86_64-linux ] - mpdmate: [ i686-linux, x86_64-darwin, x86_64-linux ] - mpppc: [ i686-linux, x86_64-darwin, x86_64-linux ] - mpretty: [ i686-linux, x86_64-darwin, x86_64-linux ] - mprover: [ i686-linux, x86_64-darwin, x86_64-linux ] - mps: [ i686-linux, x86_64-darwin, x86_64-linux ] - mpvguihs: [ i686-linux, x86_64-darwin, x86_64-linux ] - msgpack-idl: [ i686-linux, x86_64-darwin, x86_64-linux ] - msh: [ i686-linux, x86_64-darwin, x86_64-linux ] - mtgoxapi: [ i686-linux, x86_64-darwin, x86_64-linux ] - mtl-tf: [ i686-linux, x86_64-darwin, x86_64-linux ] - mtlx: [ i686-linux, x86_64-darwin, x86_64-linux ] - mtp: [ i686-linux, x86_64-darwin, x86_64-linux ] - mudbath: [ i686-linux, x86_64-darwin, x86_64-linux ] - mulang: [ i686-linux, x86_64-darwin, x86_64-linux ] - multi-cabal: [ i686-linux, x86_64-darwin, x86_64-linux ] - multifocal: [ i686-linux, x86_64-darwin, x86_64-linux ] - multipass: [ i686-linux, x86_64-darwin, x86_64-linux ] - multiplate-simplified: [ i686-linux, x86_64-darwin, x86_64-linux ] - multirec-alt-deriver: [ i686-linux, x86_64-darwin, x86_64-linux ] - multirec-binary: [ i686-linux, x86_64-darwin, x86_64-linux ] - multisetrewrite: [ i686-linux, x86_64-darwin, x86_64-linux ] - murder: [ i686-linux, x86_64-darwin, x86_64-linux ] - murmurhash3: [ i686-linux, x86_64-darwin, x86_64-linux ] - music-graphics: [ i686-linux, x86_64-darwin, x86_64-linux ] - music-parts: [ i686-linux, x86_64-darwin, x86_64-linux ] - music-preludes: [ i686-linux, x86_64-darwin, x86_64-linux ] - music-score: [ i686-linux, x86_64-darwin, x86_64-linux ] - music-sibelius: [ i686-linux, x86_64-darwin, x86_64-linux ] - music-suite: [ i686-linux, x86_64-darwin, x86_64-linux ] - music-util: [ i686-linux, x86_64-darwin, x86_64-linux ] - musicbrainz-email: [ i686-linux, x86_64-darwin, x86_64-linux ] - musicxml: [ i686-linux, x86_64-darwin, x86_64-linux ] - mustache2hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - mutable-iter: [ i686-linux, x86_64-darwin, x86_64-linux ] - mvc-updates: [ i686-linux, x86_64-darwin, x86_64-linux ] - mvclient: [ i686-linux, x86_64-darwin, x86_64-linux ] - myo: [ i686-linux, x86_64-darwin, x86_64-linux ] - mysnapsession: [ i686-linux, x86_64-darwin, x86_64-linux ] - mysnapsession-example: [ i686-linux, x86_64-darwin, x86_64-linux ] - mysql-simple-quasi: [ i686-linux, x86_64-darwin, x86_64-linux ] - mysql-simple-typed: [ i686-linux, x86_64-darwin, x86_64-linux ] - myTestlll: [ i686-linux, x86_64-linux ] - mzv: [ i686-linux, x86_64-darwin, x86_64-linux ] - nagios-plugin-ekg: [ i686-linux, x86_64-darwin, x86_64-linux ] - named-lock: [ i686-linux, x86_64-darwin, x86_64-linux ] - nano-cryptr: [ i686-linux, x86_64-darwin, x86_64-linux ] - nano-hmac: [ i686-linux, x86_64-darwin, x86_64-linux ] - nano-md5: [ i686-linux, x86_64-darwin, x86_64-linux ] - nanoAgda: [ i686-linux, x86_64-darwin, x86_64-linux ] - nanocurses: [ i686-linux, x86_64-darwin, x86_64-linux ] - nanq: [ i686-linux ] - narc: [ i686-linux, x86_64-darwin, x86_64-linux ] - nats-queue: [ i686-linux, x86_64-darwin, x86_64-linux ] - natural-number: [ i686-linux, x86_64-darwin, x86_64-linux ] - NaturalLanguageAlphabets: [ i686-linux, x86_64-darwin, x86_64-linux ] - nc-indicators: [ x86_64-darwin ] - neat: [ i686-linux, x86_64-darwin, x86_64-linux ] - needle: [ i686-linux, x86_64-darwin, x86_64-linux ] - nehe-tuts: [ i686-linux, x86_64-darwin, x86_64-linux ] - nerf: [ i686-linux, x86_64-darwin, x86_64-linux ] - nero: [ i686-linux, x86_64-darwin, x86_64-linux ] - nero-wai: [ i686-linux, x86_64-darwin, x86_64-linux ] - nero-warp: [ i686-linux, x86_64-darwin, x86_64-linux ] - netcore: [ i686-linux, x86_64-darwin, x86_64-linux ] - netlines: [ i686-linux, x86_64-darwin, x86_64-linux ] - netlink: [ x86_64-darwin ] - NetSNMP: [ i686-linux, x86_64-darwin, x86_64-linux ] - netspec: [ i686-linux, x86_64-darwin, x86_64-linux ] - nettle-frp: [ i686-linux, x86_64-darwin, x86_64-linux ] - nettle-netkit: [ i686-linux, x86_64-darwin, x86_64-linux ] - nettle-openflow: [ i686-linux, x86_64-darwin, x86_64-linux ] - netwire-input-glfw: [ x86_64-darwin ] - network-address: [ i686-linux, x86_64-darwin, x86_64-linux ] - network-anonymous-i2p: [ i686-linux ] - network-anonymous-tor: [ i686-linux ] - network-attoparsec: [ i686-linux ] - network-builder: [ i686-linux, x86_64-darwin, x86_64-linux ] - network-bytestring: [ i686-linux, x86_64-darwin, x86_64-linux ] - network-connection: [ i686-linux, x86_64-darwin, x86_64-linux ] - network-interfacerequest: [ x86_64-darwin ] - network-minihttp: [ i686-linux, x86_64-darwin, x86_64-linux ] - network-netpacket: [ x86_64-darwin ] - network-rpca: [ i686-linux, x86_64-darwin, x86_64-linux ] - network-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - network-simple-tls: [ i686-linux, x86_64-darwin, x86_64-linux ] - network-topic-models: [ i686-linux, x86_64-darwin, x86_64-linux ] - network-transport-amqp: [ i686-linux, x86_64-darwin, x86_64-linux ] - network-websocket: [ i686-linux, x86_64-darwin, x86_64-linux ] - newports: [ i686-linux, x86_64-darwin, x86_64-linux ] - newsynth: [ i686-linux, x86_64-darwin, x86_64-linux ] - newt: [ i686-linux, x86_64-darwin, x86_64-linux ] - newtype-th: [ i686-linux, x86_64-darwin, x86_64-linux ] - NGrams: [ i686-linux, x86_64-darwin, x86_64-linux ] - niagra: [ i686-linux, x86_64-darwin, x86_64-linux ] - nibblestring: [ i686-linux, x86_64-darwin, x86_64-linux ] - nikepub: [ i686-linux, x86_64-darwin, x86_64-linux ] - nimber: [ i686-linux ] - Ninjas: [ i686-linux, x86_64-darwin, x86_64-linux ] - nitro: [ i686-linux, x86_64-darwin, x86_64-linux ] - nixfromnpm: [ i686-linux, x86_64-darwin, x86_64-linux ] - nkjp: [ i686-linux, x86_64-darwin, x86_64-linux ] - nm: [ i686-linux, x86_64-darwin, x86_64-linux ] - nme: [ i686-linux, x86_64-darwin, x86_64-linux ] - nntp: [ i686-linux, x86_64-darwin, x86_64-linux ] - noise: [ i686-linux, x86_64-darwin, x86_64-linux ] - Nomyx: [ i686-linux, x86_64-darwin, x86_64-linux ] - Nomyx-Core: [ i686-linux, x86_64-darwin, x86_64-linux ] - Nomyx-Language: [ i686-linux, x86_64-darwin, x86_64-linux ] - Nomyx-Rules: [ i686-linux, x86_64-darwin, x86_64-linux ] - Nomyx-Web: [ i686-linux, x86_64-darwin, x86_64-linux ] - NonEmptyList: [ i686-linux, x86_64-darwin, x86_64-linux ] - noodle: [ i686-linux, x86_64-darwin, x86_64-linux ] - NoSlow: [ i686-linux, x86_64-darwin, x86_64-linux ] - not-gloss: [ i686-linux, x86_64-darwin, x86_64-linux ] - not-gloss-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - notmuch-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - notmuch-web: [ i686-linux, x86_64-darwin, x86_64-linux ] - np-linear: [ i686-linux, x86_64-darwin, x86_64-linux ] - nptools: [ i686-linux, x86_64-darwin, x86_64-linux ] - nthable: [ i686-linux, x86_64-darwin, x86_64-linux ] - NTRU: [ i686-linux ] - null-canvas: [ i686-linux, x86_64-darwin, x86_64-linux ] - NumberSieves: [ i686-linux, x86_64-darwin, x86_64-linux ] - numerals: [ i686-linux, x86_64-darwin, x86_64-linux ] - numerals-base: [ i686-linux, x86_64-darwin, x86_64-linux ] - Nussinov78: [ i686-linux, x86_64-darwin, x86_64-linux ] - nvim-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - nvim-hs-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] - NXT: [ i686-linux, x86_64-darwin, x86_64-linux ] - NXTDSL: [ i686-linux, x86_64-darwin, x86_64-linux ] - nymphaea: [ i686-linux, x86_64-darwin, x86_64-linux ] - oberon0: [ i686-linux, x86_64-darwin, x86_64-linux ] - obj: [ i686-linux, x86_64-darwin, x86_64-linux ] - Object: [ i686-linux, x86_64-darwin, x86_64-linux ] - ObjectIO: [ i686-linux, x86_64-darwin, x86_64-linux ] - octopus: [ i686-linux, x86_64-darwin, x86_64-linux ] - oculus: [ i686-linux, x86_64-linux ] - OddWord: [ i686-linux ] - oden-go-packages: [ i686-linux, x86_64-darwin, x86_64-linux ] - OGL: [ i686-linux, x86_64-darwin, x86_64-linux ] - ohloh-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - oidc-client: [ i686-linux, x86_64-darwin, x86_64-linux ] - ois-input-manager: [ i686-linux, x86_64-darwin, x86_64-linux ] - omaketex: [ i686-linux, x86_64-darwin, x86_64-linux ] - Omega: [ i686-linux, x86_64-darwin, x86_64-linux ] - omega: [ i686-linux, x86_64-darwin, x86_64-linux ] - omnicodec: [ i686-linux, x86_64-darwin, x86_64-linux ] - on-a-horse: [ i686-linux, x86_64-darwin, x86_64-linux ] - one-liner: [ i686-linux, x86_64-darwin, x86_64-linux ] - oneormore: [ i686-linux, x86_64-darwin, x86_64-linux ] - onu-course: [ i686-linux, x86_64-darwin, x86_64-linux ] - open-pandoc: [ i686-linux, x86_64-darwin, x86_64-linux ] - open-typerep: [ i686-linux, x86_64-darwin ] - open-union: [ x86_64-darwin, x86_64-linux ] - open-witness: [ i686-linux, x86_64-darwin, x86_64-linux ] - OpenAFP: [ i686-linux, x86_64-darwin, x86_64-linux ] - OpenAFP-Utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - OpenAL: [ x86_64-darwin ] - OpenCL: [ i686-linux, x86_64-darwin, x86_64-linux ] - OpenCLRaw: [ i686-linux, x86_64-darwin, x86_64-linux ] - opencog-atomspace: [ i686-linux, x86_64-darwin, x86_64-linux ] - opencv-raw: [ i686-linux, x86_64-linux ] - openexchangerates: [ i686-linux, x86_64-darwin, x86_64-linux ] - openflow: [ i686-linux, x86_64-darwin, x86_64-linux ] - OpenGL: [ x86_64-darwin ] - opengl-dlp-stereo: [ x86_64-darwin ] - opengl-spacenavigator: [ x86_64-darwin ] - OpenGLCheck: [ i686-linux, x86_64-darwin, x86_64-linux ] - opengles: [ i686-linux, x86_64-darwin, x86_64-linux ] - OpenGLRaw: [ x86_64-darwin ] - OpenGLRaw21: [ i686-linux, x86_64-darwin, x86_64-linux ] - openid: [ i686-linux, x86_64-darwin, x86_64-linux ] - openpgp-Crypto: [ i686-linux, x86_64-darwin, x86_64-linux ] - openpgp-crypto-api: [ i686-linux, x86_64-darwin, x86_64-linux ] - OpenSCAD: [ i686-linux, x86_64-darwin, x86_64-linux ] - openssh-github-keys: [ i686-linux, x86_64-darwin, x86_64-linux ] - opentheory-char: [ i686-linux, x86_64-darwin, x86_64-linux ] - OpenVG: [ i686-linux, x86_64-darwin, x86_64-linux ] - OpenVGRaw: [ i686-linux, x86_64-darwin, x86_64-linux ] - Operads: [ i686-linux, x86_64-darwin, x86_64-linux ] - optimal-blocks: [ i686-linux, x86_64-darwin, x86_64-linux ] - optimusprime: [ i686-linux, x86_64-darwin, x86_64-linux ] - orchestrate: [ i686-linux, x86_64-darwin, x86_64-linux ] - OrchestrateDB: [ i686-linux, x86_64-darwin, x86_64-linux ] - orchid: [ i686-linux, x86_64-darwin, x86_64-linux ] - orchid-demo: [ i686-linux, x86_64-darwin, x86_64-linux ] - order-maintenance: [ i686-linux, x86_64-darwin, x86_64-linux ] - orgmode-parse: [ i686-linux, x86_64-darwin, x86_64-linux ] - origami: [ i686-linux, x86_64-darwin, x86_64-linux ] - osdkeys: [ x86_64-darwin ] - OSM: [ i686-linux, x86_64-darwin, x86_64-linux ] - osm-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - osm-download: [ i686-linux, x86_64-darwin, x86_64-linux ] - ot: [ i686-linux, x86_64-darwin, x86_64-linux ] - pack: [ x86_64-darwin ] - package-vt: [ i686-linux, x86_64-darwin, x86_64-linux ] - packedstring: [ i686-linux, x86_64-darwin, x86_64-linux ] - packman: [ i686-linux, x86_64-darwin, x86_64-linux ] - padKONTROL: [ i686-linux, x86_64-darwin, x86_64-linux ] - PageIO: [ i686-linux, x86_64-darwin, x86_64-linux ] - Paillier: [ x86_64-darwin ] - panda: [ i686-linux, x86_64-darwin, x86_64-linux ] - pandoc-japanese-filters: [ i686-linux, x86_64-darwin, x86_64-linux ] - pandoc-lens: [ i686-linux, x86_64-darwin, x86_64-linux ] - pandoc-plantuml-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] - pandoc-unlit: [ i686-linux, x86_64-darwin, x86_64-linux ] - PandocAgda: [ i686-linux, x86_64-darwin, x86_64-linux ] - pango: [ x86_64-darwin ] - papillon: [ i686-linux, x86_64-darwin, x86_64-linux ] - pappy: [ i686-linux, x86_64-darwin, x86_64-linux ] - paragon: [ i686-linux, x86_64-darwin, x86_64-linux ] - Paraiso: [ i686-linux, x86_64-darwin, x86_64-linux ] - parallel-tasks: [ i686-linux, x86_64-darwin, x86_64-linux ] - parameterized-data: [ i686-linux, x86_64-darwin, x86_64-linux ] - parco: [ i686-linux, x86_64-darwin, x86_64-linux ] - parco-attoparsec: [ i686-linux, x86_64-darwin, x86_64-linux ] - parco-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] - parconc-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - parport: [ x86_64-darwin ] - Parry: [ i686-linux, x86_64-darwin, x86_64-linux ] - parse-help: [ i686-linux, x86_64-darwin, x86_64-linux ] - parsely: [ i686-linux, x86_64-darwin, x86_64-linux ] - parser-helper: [ i686-linux, x86_64-darwin, x86_64-linux ] - parser241: [ i686-linux, x86_64-darwin, x86_64-linux ] - parsestar: [ i686-linux, x86_64-darwin, x86_64-linux ] - partial-lens: [ i686-linux, x86_64-darwin, x86_64-linux ] - partly: [ i686-linux, x86_64-darwin, x86_64-linux ] - passage: [ i686-linux, x86_64-darwin, x86_64-linux ] - pastis: [ i686-linux, x86_64-darwin, x86_64-linux ] - pasty: [ i686-linux, x86_64-darwin, x86_64-linux ] - Pathfinder: [ i686-linux, x86_64-darwin, x86_64-linux ] - pathfindingcore: [ i686-linux, x86_64-darwin, x86_64-linux ] - patterns: [ i686-linux, x86_64-darwin, x86_64-linux ] - paypal-adaptive-hoops: [ i686-linux, x86_64-darwin, x86_64-linux ] - paypal-api: [ i686-linux, x86_64-darwin, x86_64-linux ] - pb: [ i686-linux, x86_64-darwin, x86_64-linux ] - PCLT: [ i686-linux, x86_64-darwin, x86_64-linux ] - PCLT-DB: [ i686-linux, x86_64-darwin, x86_64-linux ] - pdf-toolbox-viewer: [ x86_64-darwin ] - pdynload: [ i686-linux, x86_64-darwin, x86_64-linux ] - peakachu: [ i686-linux, x86_64-darwin, x86_64-linux ] - pec: [ i686-linux, x86_64-darwin, x86_64-linux ] - peg: [ i686-linux, x86_64-darwin, x86_64-linux ] - pell: [ i686-linux, x86_64-darwin, x86_64-linux ] - penny: [ i686-linux, x86_64-darwin, x86_64-linux ] - penny-bin: [ i686-linux, x86_64-darwin, x86_64-linux ] - penny-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] - peparser: [ i686-linux, x86_64-darwin, x86_64-linux ] - perdure: [ i686-linux, x86_64-darwin, x86_64-linux ] - PerfectHash: [ i686-linux, x86_64-darwin, x86_64-linux ] - perm: [ i686-linux, x86_64-darwin, x86_64-linux ] - permute: [ i686-linux, x86_64-darwin, x86_64-linux ] - PermuteEffects: [ i686-linux, x86_64-darwin, x86_64-linux ] - persistent-hssqlppp: [ i686-linux, x86_64-darwin, x86_64-linux ] - persistent-map: [ i686-linux, x86_64-darwin, x86_64-linux ] - persistent-protobuf: [ i686-linux, x86_64-darwin, x86_64-linux ] - pesca: [ i686-linux, x86_64-darwin, x86_64-linux ] - peyotls: [ i686-linux, x86_64-darwin, x86_64-linux ] - peyotls-codec: [ i686-linux, x86_64-darwin, x86_64-linux ] - pez: [ i686-linux, x86_64-darwin, x86_64-linux ] - pg-harness: [ i686-linux, x86_64-darwin, x86_64-linux ] - pg-harness-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - pgsql-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] - pgstream: [ i686-linux, x86_64-darwin, x86_64-linux ] - phasechange: [ i686-linux, x86_64-darwin, x86_64-linux ] - phoityne: [ x86_64-darwin ] - phone-numbers: [ i686-linux, x86_64-darwin, x86_64-linux ] - phone-push: [ i686-linux, x86_64-darwin, x86_64-linux ] - phooey: [ i686-linux, x86_64-darwin, x86_64-linux ] - photoname: [ i686-linux, x86_64-darwin, x86_64-linux ] - phraskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - Phsu: [ i686-linux, x86_64-darwin, x86_64-linux ] - phybin: [ i686-linux, x86_64-darwin, x86_64-linux ] - pi-calculus: [ i686-linux, x86_64-darwin, x86_64-linux ] - pianola: [ i686-linux, x86_64-darwin, x86_64-linux ] - piet: [ i686-linux, x86_64-darwin, x86_64-linux ] - piki: [ i686-linux, x86_64-darwin, x86_64-linux ] - pinch: [ i686-linux ] - Pipe: [ i686-linux, x86_64-darwin, x86_64-linux ] - pipes-cereal-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] - pipes-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - pipes-courier: [ i686-linux, x86_64-darwin, x86_64-linux ] - pipes-files: [ i686-linux ] - pipes-key-value-csv: [ i686-linux, x86_64-darwin, x86_64-linux ] - pipes-network-tls: [ i686-linux, x86_64-darwin, x86_64-linux ] - pipes-p2p-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - pisigma: [ i686-linux, x86_64-darwin, x86_64-linux ] - pit: [ i686-linux, x86_64-darwin, x86_64-linux ] - pkggraph: [ i686-linux, x86_64-darwin, x86_64-linux ] - planar-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] - plat: [ i686-linux, x86_64-darwin, x86_64-linux ] - plist-buddy: [ i686-linux, x86_64-linux ] - plivo: [ i686-linux, x86_64-darwin, x86_64-linux ] - plot: [ x86_64-darwin ] - plot-gtk: [ x86_64-darwin ] - plot-gtk-ui: [ x86_64-darwin ] - plot-gtk3: [ x86_64-darwin ] - Plot-ho-matic: [ x86_64-darwin ] - plot-lab: [ x86_64-darwin ] - PlslTools: [ i686-linux, x86_64-darwin, x86_64-linux ] - plugins-auto: [ i686-linux, x86_64-darwin, x86_64-linux ] - plugins-multistage: [ i686-linux, x86_64-darwin, x86_64-linux ] - plumbers: [ i686-linux, x86_64-darwin, x86_64-linux ] - ply-loader: [ i686-linux, x86_64-darwin, x86_64-linux ] - pngload: [ i686-linux, x86_64-darwin, x86_64-linux ] - pngload-fixed: [ i686-linux, x86_64-darwin, x86_64-linux ] - pocket-dns: [ i686-linux, x86_64-darwin, x86_64-linux ] - pointless-lenses: [ i686-linux, x86_64-darwin, x86_64-linux ] - pointless-rewrite: [ i686-linux, x86_64-darwin, x86_64-linux ] - polar-configfile: [ i686-linux, x86_64-darwin, x86_64-linux ] - polh-lexicon: [ i686-linux, x86_64-darwin, x86_64-linux ] - Pollutocracy: [ i686-linux, x86_64-darwin, x86_64-linux ] - polynom: [ i686-linux, x86_64-darwin, x86_64-linux ] - polyseq: [ i686-linux, x86_64-darwin, x86_64-linux ] - polytypeable: [ i686-linux, x86_64-darwin, x86_64-linux ] - polytypeable-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - pong-server: [ i686-linux, x86_64-linux ] - pontarius-mediaserver: [ i686-linux, x86_64-darwin, x86_64-linux ] - pontarius-xmpp: [ i686-linux, x86_64-darwin, x86_64-linux ] - pontarius-xpmn: [ i686-linux, x86_64-darwin, x86_64-linux ] - pool: [ i686-linux, x86_64-darwin, x86_64-linux ] - pool-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - popenhs: [ i686-linux, x86_64-darwin, x86_64-linux ] - poppler: [ i686-linux, x86_64-darwin, x86_64-linux ] - portaudio: [ x86_64-darwin ] - porte: [ i686-linux, x86_64-darwin, x86_64-linux ] - porter: [ i686-linux, x86_64-darwin, x86_64-linux ] - ports: [ i686-linux, x86_64-darwin, x86_64-linux ] - posix-acl: [ i686-linux, x86_64-linux ] - posix-realtime: [ x86_64-darwin ] - posix-timer: [ x86_64-darwin ] - posix-waitpid: [ i686-linux, x86_64-darwin, x86_64-linux ] - PostgreSQL: [ i686-linux, x86_64-darwin, x86_64-linux ] - postgresql-simple-typed: [ i686-linux, x86_64-darwin, x86_64-linux ] - postgresql-typed: [ i686-linux, x86_64-darwin, x86_64-linux ] - postgrest: [ i686-linux, x86_64-darwin, x86_64-linux ] - postie: [ i686-linux, x86_64-darwin, x86_64-linux ] - postmaster: [ i686-linux, x86_64-darwin, x86_64-linux ] - powermate: [ i686-linux, x86_64-darwin, x86_64-linux ] - powerpc: [ i686-linux, x86_64-darwin, x86_64-linux ] - pqc: [ i686-linux, x86_64-darwin, x86_64-linux ] - pqueue-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] - practice-room: [ i686-linux, x86_64-darwin, x86_64-linux ] - precis: [ i686-linux, x86_64-darwin, x86_64-linux ] - prednote-test: [ i686-linux, x86_64-darwin, x86_64-linux ] - prefork: [ i686-linux, x86_64-darwin, x86_64-linux ] - pregame: [ i686-linux, x86_64-darwin, x86_64-linux ] - prelude-generalize: [ i686-linux, x86_64-darwin, x86_64-linux ] - prelude-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] - preprocess-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - press: [ i686-linux, x86_64-darwin, x86_64-linux ] - primitive-simd: [ i686-linux, x86_64-darwin, x86_64-linux ] - PrimitiveArray: [ i686-linux, x86_64-darwin, x86_64-linux ] - primula-board: [ i686-linux, x86_64-darwin, x86_64-linux ] - primula-bot: [ i686-linux, x86_64-darwin, x86_64-linux ] - print-debugger: [ i686-linux, x86_64-darwin, x86_64-linux ] - printf-mauke: [ i686-linux, x86_64-darwin, x86_64-linux ] - Printf-TH: [ i686-linux, x86_64-darwin, x86_64-linux ] - priority-queue: [ i686-linux, x86_64-darwin, x86_64-linux ] - PriorityChansConverger: [ i686-linux, x86_64-darwin, x86_64-linux ] - ProbabilityMonads: [ i686-linux, x86_64-darwin, x86_64-linux ] - proc: [ i686-linux, x86_64-darwin, x86_64-linux ] - process-iterio: [ i686-linux, x86_64-darwin, x86_64-linux ] - process-leksah: [ i686-linux, x86_64-darwin, x86_64-linux ] - process-listlike: [ i686-linux, x86_64-darwin, x86_64-linux ] - process-progress: [ i686-linux, x86_64-darwin, x86_64-linux ] - process-qq: [ i686-linux, x86_64-darwin, x86_64-linux ] - processing: [ i686-linux, x86_64-darwin, x86_64-linux ] - procrastinating-structure: [ i686-linux, x86_64-darwin, x86_64-linux ] - procrastinating-variable: [ i686-linux, x86_64-darwin, x86_64-linux ] - procstat: [ i686-linux, x86_64-darwin, x86_64-linux ] - prof2dot: [ i686-linux, x86_64-darwin, x86_64-linux ] - progress: [ i686-linux, x86_64-darwin, x86_64-linux ] - progressbar: [ i686-linux, x86_64-darwin, x86_64-linux ] - progression: [ i686-linux, x86_64-darwin, x86_64-linux ] - progressive: [ i686-linux, x86_64-darwin, x86_64-linux ] - proj4-hs-bindings: [ i686-linux, x86_64-darwin, x86_64-linux ] - prolog: [ i686-linux, x86_64-darwin, x86_64-linux ] - prolog-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] - prolog-graph-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] - prologue: [ i686-linux, x86_64-darwin, x86_64-linux ] - propane: [ i686-linux, x86_64-darwin, x86_64-linux ] - Proper: [ i686-linux, x86_64-darwin, x86_64-linux ] - proplang: [ i686-linux, x86_64-darwin, x86_64-linux ] - protobuf-native: [ i686-linux, x86_64-darwin, x86_64-linux ] - protocol-buffers-descriptor-fork: [ i686-linux, x86_64-darwin, x86_64-linux ] - protocol-buffers-fork: [ i686-linux, x86_64-darwin, x86_64-linux ] - prove-everywhere-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - proxy-kindness: [ i686-linux, x86_64-darwin, x86_64-linux ] - pub: [ i686-linux, x86_64-darwin, x86_64-linux ] - publicsuffixlistcreate: [ i686-linux, x86_64-darwin, x86_64-linux ] - pubnub: [ i686-linux, x86_64-darwin, x86_64-linux ] - pubsub: [ i686-linux, x86_64-darwin, x86_64-linux ] - puffytools: [ i686-linux, x86_64-darwin, x86_64-linux ] - pugixml: [ x86_64-darwin ] - Pugs: [ i686-linux, x86_64-darwin, x86_64-linux ] - pugs-hsregex: [ i686-linux, x86_64-darwin, x86_64-linux ] - pugs-HsSyck: [ i686-linux, x86_64-darwin, x86_64-linux ] - PUH-Project: [ i686-linux, x86_64-darwin, x86_64-linux ] - pulse-simple: [ x86_64-darwin ] - punkt: [ i686-linux, x86_64-darwin, x86_64-linux ] - Pup-Events-Demo: [ i686-linux, x86_64-darwin, x86_64-linux ] - puppetresources: [ i686-linux, x86_64-darwin, x86_64-linux ] - push-notify: [ i686-linux, x86_64-darwin, x86_64-linux ] - push-notify-ccs: [ i686-linux, x86_64-darwin, x86_64-linux ] - push-notify-general: [ i686-linux, x86_64-darwin, x86_64-linux ] - pushme: [ i686-linux, x86_64-darwin, x86_64-linux ] - putlenses: [ i686-linux, x86_64-darwin, x86_64-linux ] - puzzle-draw: [ i686-linux, x86_64-darwin, x86_64-linux ] - puzzle-draw-cmdline: [ i686-linux, x86_64-darwin, x86_64-linux ] - pvd: [ i686-linux, x86_64-darwin, x86_64-linux ] - python-pickle: [ i686-linux, x86_64-darwin, x86_64-linux ] - qd: [ i686-linux, x86_64-darwin, x86_64-linux ] - qd-vec: [ i686-linux, x86_64-darwin, x86_64-linux ] - qed: [ i686-linux, x86_64-darwin, x86_64-linux ] - qhull-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] - QIO: [ i686-linux, x86_64-darwin, x86_64-linux ] - qt: [ i686-linux, x86_64-darwin, x86_64-linux ] - QuadEdge: [ i686-linux, x86_64-darwin, x86_64-linux ] - quadratic-irrational: [ i686-linux, x86_64-darwin, x86_64-linux ] - quantum-arrow: [ i686-linux, x86_64-darwin, x86_64-linux ] - qudb: [ i686-linux, x86_64-darwin, x86_64-linux ] - Quelea: [ x86_64-darwin ] - quenya-verb: [ i686-linux, x86_64-darwin, x86_64-linux ] - querystring-pickle: [ i686-linux, x86_64-darwin, x86_64-linux ] - queuelike: [ i686-linux, x86_64-darwin, x86_64-linux ] - QuickAnnotate: [ i686-linux, x86_64-darwin, x86_64-linux ] - QuickCheck-GenT: [ i686-linux, x86_64-darwin, x86_64-linux ] - quickcheck-poly: [ i686-linux, x86_64-darwin, x86_64-linux ] - quickcheck-rematch: [ i686-linux, x86_64-darwin, x86_64-linux ] - quickpull: [ i686-linux, x86_64-darwin, x86_64-linux ] - quickset: [ i686-linux, x86_64-darwin, x86_64-linux ] - Quickson: [ i686-linux, x86_64-darwin, x86_64-linux ] - quicktest: [ i686-linux, x86_64-darwin, x86_64-linux ] - quoridor-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - qux: [ i686-linux, x86_64-darwin, x86_64-linux ] - R-pandoc: [ i686-linux, x86_64-darwin, x86_64-linux ] - rabocsv2qif: [ i686-linux, x86_64-darwin, x86_64-linux ] - rad: [ i686-linux, x86_64-darwin, x86_64-linux ] - radium: [ i686-linux, x86_64-darwin, x86_64-linux ] - radium-formula-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] - rados-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - rail-compiler-editor: [ i686-linux, x86_64-darwin, x86_64-linux ] - rainbow-tests: [ i686-linux, x86_64-darwin, x86_64-linux ] - rakhana: [ i686-linux, x86_64-darwin, x86_64-linux ] - ralist: [ i686-linux, x86_64-darwin, x86_64-linux ] - rallod: [ i686-linux, x86_64-darwin, x86_64-linux ] - rand-vars: [ i686-linux, x86_64-darwin, x86_64-linux ] - randfile: [ i686-linux, x86_64-darwin, x86_64-linux ] - random-access-list: [ i686-linux, x86_64-darwin, x86_64-linux ] - random-eff: [ i686-linux, x86_64-darwin, x86_64-linux ] - random-effin: [ i686-linux, x86_64-darwin, x86_64-linux ] - random-hypergeometric: [ i686-linux, x86_64-darwin, x86_64-linux ] - random-stream: [ i686-linux, x86_64-darwin, x86_64-linux ] - random-variates: [ i686-linux ] - RandomDotOrg: [ i686-linux, x86_64-darwin, x86_64-linux ] - rangemin: [ i686-linux, x86_64-darwin, x86_64-linux ] - Ranka: [ i686-linux, x86_64-darwin, x86_64-linux ] - Rasenschach: [ i686-linux, x86_64-darwin, x86_64-linux ] - raven-haskell-scotty: [ i686-linux, x86_64-darwin, x86_64-linux ] - rbr: [ i686-linux, x86_64-darwin, x86_64-linux ] - rcu: [ i686-linux, x86_64-darwin, x86_64-linux ] - rdf4h: [ i686-linux, x86_64-darwin, x86_64-linux ] - rdioh: [ i686-linux, x86_64-darwin, x86_64-linux ] - re2: [ x86_64-darwin ] - reaction-logic: [ i686-linux, x86_64-darwin, x86_64-linux ] - reactive: [ i686-linux, x86_64-darwin, x86_64-linux ] - reactive-bacon: [ i686-linux, x86_64-darwin, x86_64-linux ] - reactive-balsa: [ i686-linux, x86_64-linux ] - reactive-banana-sdl: [ i686-linux, x86_64-darwin, x86_64-linux ] - reactive-banana-sdl2: [ x86_64-darwin ] - reactive-banana-threepenny: [ i686-linux, x86_64-darwin, x86_64-linux ] - reactive-banana-wx: [ x86_64-darwin ] - reactive-fieldtrip: [ i686-linux, x86_64-darwin, x86_64-linux ] - reactive-glut: [ i686-linux, x86_64-darwin, x86_64-linux ] - reactive-thread: [ i686-linux, x86_64-darwin, x86_64-linux ] - reactor: [ i686-linux, x86_64-darwin, x86_64-linux ] - really-simple-xml-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] - reasonable-lens: [ i686-linux, x86_64-darwin, x86_64-linux ] - record-aeson: [ i686-linux, x86_64-darwin, x86_64-linux ] - record-gl: [ i686-linux, x86_64-darwin, x86_64-linux ] - record-preprocessor: [ i686-linux, x86_64-darwin, x86_64-linux ] - record-syntax: [ i686-linux, x86_64-darwin, x86_64-linux ] - records: [ i686-linux, x86_64-darwin, x86_64-linux ] - records-th: [ i686-linux, x86_64-darwin, x86_64-linux ] - recursive-line-count: [ x86_64-darwin ] - redHandlers: [ i686-linux, x86_64-darwin, x86_64-linux ] - Redmine: [ i686-linux, x86_64-darwin, x86_64-linux ] - reedsolomon: [ i686-linux, x86_64-darwin, x86_64-linux ] - reenact: [ x86_64-darwin ] - ref: [ i686-linux, x86_64-darwin, x86_64-linux ] - Ref: [ i686-linux, x86_64-darwin, x86_64-linux ] - Referees: [ i686-linux, x86_64-darwin, x86_64-linux ] - refh: [ i686-linux, x86_64-darwin, x86_64-linux ] - reflection-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] - reflex-dom-contrib: [ i686-linux, x86_64-linux ] - reflex-gloss: [ x86_64-darwin ] - reflex-gloss-scene: [ x86_64-darwin ] - reflex-orphans: [ i686-linux, x86_64-darwin, x86_64-linux ] - regex-deriv: [ i686-linux, x86_64-darwin, x86_64-linux ] - regex-dfa: [ i686-linux, x86_64-darwin, x86_64-linux ] - regex-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] - regex-pderiv: [ i686-linux, x86_64-darwin, x86_64-linux ] - regex-tdfa-utf8: [ i686-linux, x86_64-darwin, x86_64-linux ] - regex-tre: [ i686-linux, x86_64-darwin, x86_64-linux ] - regex-xmlschema: [ i686-linux, x86_64-darwin, x86_64-linux ] - regexchar: [ i686-linux, x86_64-darwin, x86_64-linux ] - regexdot: [ i686-linux, x86_64-darwin, x86_64-linux ] - regexp-tries: [ i686-linux, x86_64-darwin, x86_64-linux ] - regexqq: [ i686-linux, x86_64-darwin, x86_64-linux ] - regional-pointers: [ i686-linux, x86_64-darwin, x86_64-linux ] - regions: [ i686-linux, x86_64-darwin, x86_64-linux ] - regions-monadsfd: [ i686-linux, x86_64-darwin, x86_64-linux ] - regions-monadstf: [ i686-linux, x86_64-darwin, x86_64-linux ] - regions-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] - regular-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] - regular-web: [ i686-linux, x86_64-darwin, x86_64-linux ] - reheat: [ i686-linux, x86_64-darwin, x86_64-linux ] - rei: [ i686-linux, x86_64-darwin, x86_64-linux ] - reified-records: [ i686-linux, x86_64-darwin, x86_64-linux ] - reify: [ i686-linux, x86_64-darwin, x86_64-linux ] - reinterpret-cast: [ i686-linux ] - remote: [ i686-linux, x86_64-darwin, x86_64-linux ] - remote-json: [ i686-linux, x86_64-darwin, x86_64-linux ] - remote-json-client: [ i686-linux, x86_64-darwin, x86_64-linux ] - remote-json-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - remotion: [ i686-linux, x86_64-darwin, x86_64-linux ] - reorderable: [ i686-linux, x86_64-darwin, x86_64-linux ] - repa-array: [ i686-linux, x86_64-darwin, x86_64-linux ] - repa-flow: [ i686-linux, x86_64-darwin, x86_64-linux ] - repa-plugin: [ i686-linux, x86_64-darwin, x86_64-linux ] - repa-series: [ i686-linux, x86_64-darwin, x86_64-linux ] - repa-sndfile: [ x86_64-darwin ] - repa-stream: [ i686-linux, x86_64-darwin, x86_64-linux ] - repa-v4l2: [ i686-linux, x86_64-darwin, x86_64-linux ] - repl: [ i686-linux, x86_64-darwin, x86_64-linux ] - repo-based-blog: [ i686-linux, x86_64-darwin, x86_64-linux ] - repr: [ i686-linux, x86_64-darwin, x86_64-linux ] - representable-functors: [ i686-linux, x86_64-darwin, x86_64-linux ] - representable-tries: [ i686-linux, x86_64-darwin, x86_64-linux ] - resistor-cube: [ i686-linux, x86_64-darwin, x86_64-linux ] - resource-embed: [ i686-linux, x86_64-darwin, x86_64-linux ] - resource-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] - respond: [ i686-linux, x86_64-darwin, x86_64-linux ] - restful-snap: [ i686-linux, x86_64-darwin, x86_64-linux ] - RESTng: [ i686-linux, x86_64-darwin, x86_64-linux ] - restricted-workers: [ i686-linux, x86_64-darwin, x86_64-linux ] - restyle: [ i686-linux, x86_64-darwin, x86_64-linux ] - resumable-exceptions: [ i686-linux, x86_64-darwin, x86_64-linux ] - rethinkdb-model: [ i686-linux, x86_64-darwin, x86_64-linux ] - ReviewBoard: [ i686-linux, x86_64-darwin, x86_64-linux ] - rewrite: [ i686-linux, x86_64-darwin, x86_64-linux ] - rewriting: [ i686-linux, x86_64-darwin, x86_64-linux ] - rezoom: [ i686-linux, x86_64-darwin, x86_64-linux ] - rhythm-game-tutorial: [ i686-linux, x86_64-darwin, x86_64-linux ] - riot: [ i686-linux, x86_64-darwin, x86_64-linux ] - ripple: [ i686-linux, x86_64-darwin, x86_64-linux ] - ripple-federation: [ i686-linux, x86_64-darwin, x86_64-linux ] - risc386: [ i686-linux, x86_64-darwin, x86_64-linux ] - rivers: [ i686-linux, x86_64-darwin, x86_64-linux ] - RJson: [ i686-linux, x86_64-darwin, x86_64-linux ] - rmonad: [ i686-linux, x86_64-darwin, x86_64-linux ] - RMP: [ i686-linux, x86_64-linux ] - RNAdesign: [ i686-linux, x86_64-darwin, x86_64-linux ] - RNAdraw: [ i686-linux, x86_64-darwin, x86_64-linux ] - RNAFold: [ i686-linux, x86_64-darwin, x86_64-linux ] - RNAFoldProgs: [ i686-linux, x86_64-darwin, x86_64-linux ] - RNAwolf: [ i686-linux, x86_64-darwin, x86_64-linux ] - roguestar: [ i686-linux, x86_64-darwin, x86_64-linux ] - roguestar-engine: [ i686-linux, x86_64-darwin, x86_64-linux ] - roguestar-gl: [ i686-linux, x86_64-darwin, x86_64-linux ] - roguestar-glut: [ i686-linux, x86_64-darwin, x86_64-linux ] - RollingDirectory: [ i686-linux, x86_64-darwin, x86_64-linux ] - rope: [ i686-linux, x86_64-darwin, x86_64-linux ] - rosa: [ i686-linux, x86_64-darwin, x86_64-linux ] - roshask: [ i686-linux, x86_64-darwin, x86_64-linux ] - rosso: [ i686-linux, x86_64-darwin, x86_64-linux ] - rounding: [ i686-linux, x86_64-darwin, x86_64-linux ] - roundtrip: [ i686-linux, x86_64-darwin, x86_64-linux ] - roundtrip-aeson: [ i686-linux, x86_64-darwin, x86_64-linux ] - roundtrip-string: [ i686-linux, x86_64-darwin, x86_64-linux ] - roundtrip-xml: [ i686-linux, x86_64-darwin, x86_64-linux ] - route-generator: [ i686-linux, x86_64-darwin, x86_64-linux ] - route-planning: [ i686-linux, x86_64-darwin, x86_64-linux ] - rowrecord: [ i686-linux, x86_64-darwin, x86_64-linux ] - rpc: [ i686-linux, x86_64-darwin, x86_64-linux ] - rpc-framework: [ i686-linux, x86_64-darwin, x86_64-linux ] - rpm: [ i686-linux, x86_64-darwin, x86_64-linux ] - rsagl: [ i686-linux, x86_64-darwin, x86_64-linux ] - rsagl-frp: [ i686-linux, x86_64-darwin, x86_64-linux ] - rsagl-math: [ i686-linux, x86_64-darwin, x86_64-linux ] - rss2irc: [ i686-linux, x86_64-darwin, x86_64-linux ] - rtcm: [ i686-linux, x86_64-darwin, x86_64-linux ] - rtorrent-rpc: [ i686-linux, x86_64-darwin, x86_64-linux ] - ruff: [ i686-linux, x86_64-darwin, x86_64-linux ] - ruler-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - rungekutta: [ i686-linux, x86_64-darwin, x86_64-linux ] - RxHaskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - safe-freeze: [ i686-linux, x86_64-darwin, x86_64-linux ] - safe-globals: [ i686-linux, x86_64-darwin, x86_64-linux ] - safe-lazy-io: [ i686-linux, x86_64-darwin, x86_64-linux ] - safe-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] - safer-file-handles: [ i686-linux, x86_64-darwin, x86_64-linux ] - safer-file-handles-bytestring: [ i686-linux, x86_64-darwin, x86_64-linux ] - safer-file-handles-text: [ i686-linux, x86_64-darwin, x86_64-linux ] - sai-shape-syb: [ i686-linux, x86_64-darwin, x86_64-linux ] - Salsa: [ i686-linux, x86_64-darwin, x86_64-linux ] - salvia: [ i686-linux, x86_64-darwin, x86_64-linux ] - salvia-demo: [ i686-linux, x86_64-darwin, x86_64-linux ] - salvia-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] - salvia-protocol: [ i686-linux, x86_64-darwin, x86_64-linux ] - salvia-sessions: [ i686-linux, x86_64-darwin, x86_64-linux ] - salvia-websocket: [ i686-linux, x86_64-darwin, x86_64-linux ] - samtools-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] - sarasvati: [ x86_64-darwin ] - sasl: [ i686-linux, x86_64-darwin, x86_64-linux ] - sat: [ i686-linux, x86_64-darwin, x86_64-linux ] - sat-micro-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - satchmo: [ x86_64-darwin ] - satchmo-backends: [ i686-linux, x86_64-darwin, x86_64-linux ] - satchmo-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - satchmo-funsat: [ i686-linux, x86_64-darwin, x86_64-linux ] - satchmo-minisat: [ i686-linux, x86_64-darwin, x86_64-linux ] - satchmo-toysat: [ i686-linux, x86_64-darwin, x86_64-linux ] - SBench: [ i686-linux, x86_64-darwin, x86_64-linux ] - sbp: [ i686-linux, x86_64-darwin, x86_64-linux ] - scaleimage: [ i686-linux, x86_64-darwin, x86_64-linux ] - scalp-webhooks: [ i686-linux, x86_64-darwin, x86_64-linux ] - scan-vector-machine: [ i686-linux, x86_64-darwin, x86_64-linux ] - scenegraph: [ i686-linux, x86_64-darwin, x86_64-linux ] - schedevr: [ i686-linux, x86_64-darwin, x86_64-linux ] - scholdoc: [ i686-linux, x86_64-darwin, x86_64-linux ] - scholdoc-citeproc: [ i686-linux, x86_64-darwin, x86_64-linux ] - science-constants-dimensional: [ i686-linux, x86_64-darwin, x86_64-linux ] - scion: [ i686-linux, x86_64-darwin, x86_64-linux ] - scion-browser: [ i686-linux, x86_64-darwin, x86_64-linux ] - scope: [ i686-linux, x86_64-darwin, x86_64-linux ] - scope-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] - scottish: [ i686-linux, x86_64-darwin, x86_64-linux ] - scotty-blaze: [ i686-linux, x86_64-darwin, x86_64-linux ] - scotty-fay: [ i686-linux, x86_64-darwin, x86_64-linux ] - scotty-hastache: [ i686-linux, x86_64-darwin, x86_64-linux ] - scotty-session: [ i686-linux, x86_64-darwin, x86_64-linux ] - scrabble-bot: [ i686-linux, x86_64-darwin, x86_64-linux ] - ScratchFs: [ i686-linux, x86_64-linux ] - scrobble: [ i686-linux, x86_64-darwin, x86_64-linux ] - scrz: [ i686-linux, x86_64-darwin, x86_64-linux ] - Scurry: [ i686-linux, x86_64-darwin, x86_64-linux ] - SDL-gfx: [ x86_64-darwin ] - SDL-image: [ x86_64-darwin ] - SDL-mpeg: [ x86_64-darwin ] - SDL-ttf: [ x86_64-darwin ] - sdl2-compositor: [ x86_64-darwin ] - sdl2-image: [ i686-linux, x86_64-darwin, x86_64-linux ] - sdl2-ttf: [ x86_64-darwin ] - sdr: [ x86_64-linux ] - seacat: [ i686-linux, x86_64-darwin, x86_64-linux ] - search: [ i686-linux, x86_64-darwin, x86_64-linux ] - secdh: [ i686-linux, x86_64-darwin, x86_64-linux ] - second-transfer: [ i686-linux, x86_64-darwin, x86_64-linux ] - secp256k1: [ i686-linux, x86_64-darwin, x86_64-linux ] - secret-santa: [ i686-linux, x86_64-darwin, x86_64-linux ] - secret-sharing: [ i686-linux, x86_64-darwin, x86_64-linux ] - secrm: [ i686-linux, x86_64-darwin, x86_64-linux ] - sednaDBXML: [ i686-linux, x86_64-darwin, x86_64-linux ] - select: [ x86_64-darwin ] - selectors: [ i686-linux, x86_64-darwin, x86_64-linux ] - selenium: [ i686-linux, x86_64-darwin, x86_64-linux ] - selenium-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - selinux: [ i686-linux, x86_64-darwin, x86_64-linux ] - Semantique: [ i686-linux, x86_64-darwin, x86_64-linux ] - semi-iso: [ i686-linux, x86_64-darwin, x86_64-linux ] - semigroups-actions: [ i686-linux, x86_64-darwin, x86_64-linux ] - semiring: [ i686-linux, x86_64-darwin, x86_64-linux ] - semver-range: [ i686-linux, x86_64-darwin, x86_64-linux ] - sensenet: [ i686-linux, x86_64-darwin, x86_64-linux ] - sentry: [ i686-linux, x86_64-darwin, x86_64-linux ] - seqaid: [ i686-linux, x86_64-darwin, x86_64-linux ] - seqalign: [ i686-linux ] - SeqAlign: [ i686-linux, x86_64-darwin, x86_64-linux ] - seqloc-datafiles: [ i686-linux, x86_64-darwin, x86_64-linux ] - sequent-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - sequor: [ i686-linux, x86_64-darwin, x86_64-linux ] - servant-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - servant-pool: [ i686-linux, x86_64-darwin, x86_64-linux ] - servant-postgresql: [ i686-linux, x86_64-darwin, x86_64-linux ] - servant-scotty: [ i686-linux, x86_64-darwin, x86_64-linux ] - servant-swagger: [ i686-linux ] - serversession-backend-acid-state: [ x86_64-darwin ] - serversession-backend-persistent: [ x86_64-darwin ] - ses-html-snaplet: [ i686-linux, x86_64-darwin, x86_64-linux ] - SessionLogger: [ i686-linux, x86_64-darwin, x86_64-linux ] - sessions: [ i686-linux, x86_64-darwin, x86_64-linux ] - set-cover: [ i686-linux, x86_64-darwin, x86_64-linux ] - set-with: [ i686-linux, x86_64-darwin, x86_64-linux ] - sexp: [ i686-linux, x86_64-darwin, x86_64-linux ] - sexp-grammar: [ i686-linux, x86_64-darwin, x86_64-linux ] - sexpr: [ i686-linux, x86_64-darwin, x86_64-linux ] - SFML: [ i686-linux, x86_64-darwin, x86_64-linux ] - sfml-audio: [ x86_64-darwin ] - SFML-control: [ i686-linux, x86_64-darwin, x86_64-linux ] - SFont: [ i686-linux, x86_64-darwin, x86_64-linux ] - SG: [ i686-linux, x86_64-darwin, x86_64-linux ] - SGdemo: [ i686-linux, x86_64-darwin, x86_64-linux ] - sgrep: [ i686-linux, x86_64-darwin, x86_64-linux ] - shadower: [ i686-linux, x86_64-darwin, x86_64-linux ] - shady-gen: [ i686-linux, x86_64-darwin, x86_64-linux ] - shady-graphics: [ i686-linux, x86_64-darwin, x86_64-linux ] - shake-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] - shaker: [ i686-linux, x86_64-darwin, x86_64-linux ] - shapely-data: [ i686-linux, x86_64-darwin, x86_64-linux ] - shared-buffer: [ i686-linux, x86_64-darwin, x86_64-linux ] - shared-memory: [ x86_64-darwin ] - she: [ i686-linux, x86_64-darwin, x86_64-linux ] - shelduck: [ x86_64-darwin ] - shell-pipe: [ i686-linux, x86_64-darwin, x86_64-linux ] - Shellac: [ i686-linux, x86_64-darwin, x86_64-linux ] - Shellac-compatline: [ i686-linux, x86_64-darwin, x86_64-linux ] - Shellac-editline: [ i686-linux, x86_64-darwin, x86_64-linux ] - Shellac-haskeline: [ i686-linux, x86_64-darwin, x86_64-linux ] - Shellac-readline: [ i686-linux, x86_64-darwin, x86_64-linux ] - shellish: [ i686-linux, x86_64-darwin, x86_64-linux ] - showdown: [ i686-linux, x86_64-darwin, x86_64-linux ] - shpider: [ i686-linux, x86_64-darwin, x86_64-linux ] - Shu-thing: [ i686-linux, x86_64-darwin, x86_64-linux ] - sifflet: [ i686-linux, x86_64-darwin, x86_64-linux ] - sifflet-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] - signals: [ i686-linux, x86_64-darwin, x86_64-linux ] - simd: [ i686-linux, x86_64-darwin, x86_64-linux ] - simgi: [ i686-linux, x86_64-darwin, x86_64-linux ] - simple-bluetooth: [ i686-linux, x86_64-darwin, x86_64-linux ] - simple-c-value: [ i686-linux, x86_64-darwin, x86_64-linux ] - simple-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - simple-css: [ i686-linux, x86_64-darwin, x86_64-linux ] - simple-firewire: [ i686-linux, x86_64-darwin, x86_64-linux ] - simple-form: [ i686-linux, x86_64-darwin, x86_64-linux ] - simple-log-syslog: [ i686-linux, x86_64-darwin, x86_64-linux ] - simple-pascal: [ i686-linux, x86_64-darwin, x86_64-linux ] - simple-vec3: [ i686-linux, x86_64-darwin, x86_64-linux ] - SimpleGL: [ i686-linux, x86_64-darwin, x86_64-linux ] - SimpleH: [ i686-linux, x86_64-darwin, x86_64-linux ] - simpleirc: [ i686-linux, x86_64-darwin, x86_64-linux ] - simpleirc-lens: [ i686-linux, x86_64-darwin, x86_64-linux ] - SimpleLog: [ i686-linux, x86_64-darwin, x86_64-linux ] - simplenote: [ i686-linux, x86_64-darwin, x86_64-linux ] - simpleprelude: [ i686-linux, x86_64-darwin, x86_64-linux ] - simplessh: [ i686-linux, x86_64-darwin, x86_64-linux ] - simseq: [ i686-linux, x86_64-darwin, x86_64-linux ] - sindre: [ i686-linux, x86_64-darwin, x86_64-linux ] - sirkel: [ i686-linux, x86_64-darwin, x86_64-linux ] - sized: [ i686-linux, x86_64-darwin, x86_64-linux ] - skeleton: [ i686-linux, x86_64-darwin, x86_64-linux ] - skype4hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - slack: [ i686-linux, x86_64-darwin, x86_64-linux ] - slidemews: [ i686-linux, x86_64-darwin, x86_64-linux ] - sloth: [ i686-linux, x86_64-darwin, x86_64-linux ] - smallarray: [ i686-linux, x86_64-darwin, x86_64-linux ] - smallpt-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - smallstring: [ i686-linux, x86_64-darwin, x86_64-linux ] - smartGroup: [ i686-linux, x86_64-linux ] - smartword: [ i686-linux, x86_64-darwin, x86_64-linux ] - sme: [ i686-linux, x86_64-darwin, x86_64-linux ] - Smooth: [ i686-linux, x86_64-darwin, x86_64-linux ] - smt-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] - smtp-mail-ng: [ i686-linux, x86_64-darwin, x86_64-linux ] - smtp2mta: [ i686-linux, x86_64-darwin, x86_64-linux ] - snake-game: [ i686-linux, x86_64-darwin, x86_64-linux ] - snap-accept: [ i686-linux, x86_64-darwin, x86_64-linux ] - snap-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] - snap-predicates: [ i686-linux, x86_64-darwin, x86_64-linux ] - snap-testing: [ i686-linux, x86_64-darwin, x86_64-linux ] - snap-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-actionlog: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-css-min: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-environments: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-hasql: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-haxl: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-hdbc: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-i18n: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-influxdb: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-mongoDB: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-mongodb-minimalistic: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-mysql-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-oauth: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-redson: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-rest: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-sedna: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-tasks: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-typed-sessions: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-wordpress: [ i686-linux, x86_64-darwin, x86_64-linux ] - snappy: [ x86_64-darwin ] - snappy-conduit: [ x86_64-darwin ] - snappy-framing: [ x86_64-darwin ] - snappy-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] - sndfile-enumerators: [ i686-linux, x86_64-darwin, x86_64-linux ] - SNet: [ i686-linux, x86_64-darwin, x86_64-linux ] - snm: [ i686-linux, x86_64-darwin, x86_64-linux ] - snow-white: [ i686-linux, x86_64-darwin, x86_64-linux ] - snowglobe: [ i686-linux, x86_64-darwin, x86_64-linux ] - Snusmumrik: [ i686-linux, x86_64-linux ] - SoccerFun: [ i686-linux, x86_64-darwin, x86_64-linux ] - SoccerFunGL: [ i686-linux, x86_64-darwin, x86_64-linux ] - sock2stream: [ i686-linux, x86_64-darwin, x86_64-linux ] - socket-sctp: [ i686-linux, x86_64-darwin, x86_64-linux ] - socketio: [ i686-linux, x86_64-darwin, x86_64-linux ] - socketson: [ i686-linux, x86_64-darwin, x86_64-linux ] - soegtk: [ x86_64-darwin ] - sonic-visualiser: [ i686-linux, x86_64-darwin, x86_64-linux ] - SoOSiM: [ i686-linux, x86_64-darwin, x86_64-linux ] - sorted: [ i686-linux, x86_64-darwin, x86_64-linux ] - sound-collage: [ i686-linux, x86_64-darwin, x86_64-linux ] - source-code-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - SourceGraph: [ i686-linux, x86_64-darwin, x86_64-linux ] - sousit: [ i686-linux, x86_64-darwin, x86_64-linux ] - soxlib: [ i686-linux, x86_64-darwin, x86_64-linux ] - soyuz: [ i686-linux, x86_64-darwin, x86_64-linux ] - SpaceInvaders: [ i686-linux ] - SpacePrivateers: [ i686-linux, x86_64-darwin, x86_64-linux ] - spanout: [ i686-linux, x86_64-darwin, x86_64-linux ] - sparse: [ i686-linux, x86_64-darwin, x86_64-linux ] - sparsebit: [ i686-linux, x86_64-darwin, x86_64-linux ] - sparsecheck: [ i686-linux, x86_64-darwin, x86_64-linux ] - spata: [ i686-linux, x86_64-darwin, x86_64-linux ] - special-functors: [ i686-linux, x86_64-darwin, x86_64-linux ] - specialize-th: [ i686-linux, x86_64-darwin, x86_64-linux ] - sphero: [ i686-linux, x86_64-darwin, x86_64-linux ] - sphinx-cli: [ i686-linux, x86_64-darwin, x86_64-linux ] - spice: [ x86_64-darwin ] - spike: [ i686-linux, x86_64-linux ] - splaytree: [ i686-linux, x86_64-darwin, x86_64-linux ] - spline3: [ i686-linux ] - splines: [ i686-linux, x86_64-darwin, x86_64-linux ] - split-record: [ i686-linux, x86_64-darwin, x86_64-linux ] - Spock: [ x86_64-darwin ] - Spock-auth: [ i686-linux, x86_64-darwin, x86_64-linux ] - Spock-digestive: [ x86_64-darwin ] - Spock-worker: [ x86_64-darwin ] - spoonutil: [ i686-linux, x86_64-darwin, x86_64-linux ] - spoty: [ i686-linux, x86_64-darwin, x86_64-linux ] - Sprig: [ i686-linux, x86_64-darwin, x86_64-linux ] - spsa: [ i686-linux, x86_64-darwin, x86_64-linux ] - spy: [ i686-linux, x86_64-darwin, x86_64-linux ] - sql-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] - sql-simple-mysql: [ i686-linux, x86_64-darwin, x86_64-linux ] - sql-simple-pool: [ i686-linux, x86_64-darwin, x86_64-linux ] - sql-simple-postgresql: [ i686-linux, x86_64-darwin, x86_64-linux ] - sql-simple-sqlite: [ i686-linux, x86_64-darwin, x86_64-linux ] - sqlite-simple-typed: [ i686-linux, x86_64-darwin, x86_64-linux ] - squeeze: [ i686-linux, x86_64-darwin, x86_64-linux ] - srcinst: [ i686-linux, x86_64-darwin, x86_64-linux ] - ssh: [ i686-linux, x86_64-linux ] - sssp: [ i686-linux, x86_64-darwin, x86_64-linux ] - sstable: [ i686-linux, x86_64-darwin, x86_64-linux ] - stable-tree: [ i686-linux, x86_64-darwin, x86_64-linux ] - stack-hpc-coveralls: [ i686-linux, x86_64-darwin, x86_64-linux ] - stack-prism: [ i686-linux, x86_64-darwin, x86_64-linux ] - starrover2: [ i686-linux, x86_64-linux ] - stateful-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] - statgrab: [ i686-linux, x86_64-darwin, x86_64-linux ] - statistics-dirichlet: [ i686-linux, x86_64-darwin, x86_64-linux ] - statistics-fusion: [ i686-linux, x86_64-darwin, x86_64-linux ] - stb-truetype: [ i686-linux, x86_64-darwin, x86_64-linux ] - step-function: [ i686-linux, x86_64-darwin, x86_64-linux ] - stepwise: [ i686-linux, x86_64-darwin, x86_64-linux ] - stm-chunked-queues: [ i686-linux, x86_64-darwin, x86_64-linux ] - stmcontrol: [ i686-linux, x86_64-darwin, x86_64-linux ] - Stomp: [ i686-linux, x86_64-darwin, x86_64-linux ] - stopwatch: [ x86_64-darwin ] - storable-static-array: [ i686-linux, x86_64-darwin, x86_64-linux ] - storablevector: [ i686-linux, x86_64-darwin, x86_64-linux ] - storablevector-carray: [ i686-linux, x86_64-darwin, x86_64-linux ] - storablevector-streamfusion: [ i686-linux, x86_64-darwin, x86_64-linux ] - Strafunski-Sdf2Haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - stratum-tool: [ i686-linux, x86_64-darwin, x86_64-linux ] - stream-fusion: [ i686-linux, x86_64-darwin, x86_64-linux ] - streamed: [ i686-linux, x86_64-linux ] - streaming-utils: [ i686-linux ] - strict-concurrency: [ i686-linux, x86_64-darwin, x86_64-linux ] - StrictBench: [ i686-linux, x86_64-darwin, x86_64-linux ] - stringlike: [ i686-linux, x86_64-darwin, x86_64-linux ] - structured-mongoDB: [ i686-linux, x86_64-darwin, x86_64-linux ] - structures: [ i686-linux, x86_64-darwin, x86_64-linux ] - stunts: [ i686-linux, x86_64-darwin, x86_64-linux ] - sub-state: [ i686-linux, x86_64-darwin, x86_64-linux ] - subhask: [ i686-linux, x86_64-darwin, x86_64-linux ] - subleq-toolchain: [ i686-linux, x86_64-darwin, x86_64-linux ] - SuffixStructures: [ i686-linux, x86_64-darwin, x86_64-linux ] - suitable: [ i686-linux, x86_64-darwin, x86_64-linux ] - sunlight: [ i686-linux, x86_64-darwin, x86_64-linux ] - sunroof-compiler: [ i686-linux, x86_64-darwin, x86_64-linux ] - sunroof-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - sunroof-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - super-user-spark: [ i686-linux, x86_64-darwin, x86_64-linux ] - supercollider-midi: [ i686-linux, x86_64-linux ] - superdoc: [ i686-linux, x86_64-darwin, x86_64-linux ] - supero: [ i686-linux, x86_64-darwin, x86_64-linux ] - supervisor: [ i686-linux, x86_64-darwin, x86_64-linux ] - SVG2Q: [ i686-linux, x86_64-darwin, x86_64-linux ] - svg2q: [ i686-linux, x86_64-darwin, x86_64-linux ] - svgcairo: [ x86_64-darwin ] - svm-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] - svndump: [ i686-linux, x86_64-darwin, x86_64-linux ] - swagger2: [ i686-linux ] - swapper: [ i686-linux, x86_64-darwin, x86_64-linux ] - swearjure: [ i686-linux, x86_64-darwin, x86_64-linux ] - swf: [ i686-linux, x86_64-darwin, x86_64-linux ] - swift-lda: [ i686-linux, x86_64-darwin, x86_64-linux ] - sws: [ i686-linux, x86_64-darwin, x86_64-linux ] - syb-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] - sylvia: [ i686-linux, x86_64-darwin, x86_64-linux ] - sym-plot: [ i686-linux, x86_64-darwin, x86_64-linux ] - symengine-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - sync: [ i686-linux, x86_64-darwin, x86_64-linux ] - sync-mht: [ i686-linux ] - syncthing-hs: [ x86_64-darwin ] - syntactic: [ i686-linux, x86_64-darwin ] - syntax: [ i686-linux, x86_64-darwin, x86_64-linux ] - syntax-attoparsec: [ i686-linux, x86_64-darwin, x86_64-linux ] - syntax-example: [ i686-linux, x86_64-darwin, x86_64-linux ] - syntax-example-json: [ i686-linux, x86_64-darwin, x86_64-linux ] - syntax-pretty: [ i686-linux, x86_64-darwin, x86_64-linux ] - syntax-printer: [ i686-linux, x86_64-darwin, x86_64-linux ] - syntax-trees: [ i686-linux, x86_64-darwin, x86_64-linux ] - syntax-trees-fork-bairyn: [ i686-linux, x86_64-darwin, x86_64-linux ] - SyntaxMacros: [ i686-linux, x86_64-darwin, x86_64-linux ] - synthesizer: [ i686-linux, x86_64-darwin, x86_64-linux ] - synthesizer-alsa: [ i686-linux, x86_64-linux ] - synthesizer-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - synthesizer-dimensional: [ i686-linux, x86_64-darwin, x86_64-linux ] - synthesizer-filter: [ i686-linux, x86_64-darwin, x86_64-linux ] - synthesizer-llvm: [ i686-linux, x86_64-darwin, x86_64-linux ] - synthesizer-midi: [ i686-linux, x86_64-darwin, x86_64-linux ] - Sysmon: [ i686-linux, x86_64-darwin, x86_64-linux ] - system-canonicalpath: [ i686-linux, x86_64-darwin, x86_64-linux ] - system-inotify: [ x86_64-darwin ] - system-lifted: [ i686-linux, x86_64-darwin, x86_64-linux ] - system-random-effect: [ i686-linux, x86_64-darwin, x86_64-linux ] - system-time-monotonic: [ x86_64-darwin ] - ta: [ i686-linux, x86_64-darwin, x86_64-linux ] - tables: [ i686-linux, x86_64-darwin, x86_64-linux ] - Tables: [ i686-linux, x86_64-darwin, x86_64-linux ] - tablestorage: [ i686-linux, x86_64-darwin, x86_64-linux ] - tabloid: [ i686-linux, x86_64-darwin, x86_64-linux ] - taffybar: [ x86_64-darwin ] - tagged-list: [ i686-linux, x86_64-darwin, x86_64-linux ] - tagged-th: [ i686-linux, x86_64-darwin, x86_64-linux ] - tagsoup-ht: [ i686-linux, x86_64-darwin, x86_64-linux ] - tagsoup-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] - Takusen: [ i686-linux, x86_64-darwin, x86_64-linux ] - takusen-oracle: [ i686-linux, x86_64-darwin, x86_64-linux ] - tamarin-prover: [ i686-linux, x86_64-darwin, x86_64-linux ] - tamarin-prover-term: [ i686-linux, x86_64-darwin, x86_64-linux ] - tamarin-prover-theory: [ i686-linux, x86_64-darwin, x86_64-linux ] - tamarin-prover-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - task: [ i686-linux, x86_64-darwin, x86_64-linux ] - task-distribution: [ i686-linux, x86_64-darwin, x86_64-linux ] - taskpool: [ x86_64-darwin ] - tasty-integrate: [ i686-linux, x86_64-darwin, x86_64-linux ] - TBC: [ i686-linux, x86_64-darwin, x86_64-linux ] - TBit: [ i686-linux, x86_64-darwin, x86_64-linux ] - tbox: [ i686-linux, x86_64-darwin, x86_64-linux ] - tccli: [ i686-linux, x86_64-darwin, x86_64-linux ] - tcp: [ i686-linux, x86_64-darwin, x86_64-linux ] - tdd-util: [ i686-linux, x86_64-darwin, x86_64-linux ] - TeaHS: [ i686-linux, x86_64-linux ] - teams: [ i686-linux, x86_64-darwin, x86_64-linux ] - telegram: [ i686-linux, x86_64-darwin, x86_64-linux ] - template-default: [ i686-linux, x86_64-darwin, x86_64-linux ] - template-haskell-util: [ i686-linux, x86_64-darwin, x86_64-linux ] - template-hsml: [ i686-linux, x86_64-darwin, x86_64-linux ] - template-yj: [ i686-linux, x86_64-darwin, x86_64-linux ] - tempodb: [ i686-linux, x86_64-darwin, x86_64-linux ] - temporal-csound: [ i686-linux, x86_64-darwin, x86_64-linux ] - tempus: [ i686-linux, x86_64-darwin, x86_64-linux ] - tensor: [ i686-linux, x86_64-darwin, x86_64-linux ] - term-rewriting: [ i686-linux, x86_64-darwin, x86_64-linux ] - termbox-bindings: [ i686-linux, x86_64-darwin, x86_64-linux ] - terntup: [ i686-linux, x86_64-darwin, x86_64-linux ] - terrahs: [ i686-linux, x86_64-darwin, x86_64-linux ] - test-framework-doctest: [ i686-linux, x86_64-darwin, x86_64-linux ] - test-framework-quickcheck: [ i686-linux, x86_64-darwin, x86_64-linux ] - testloop: [ i686-linux, x86_64-darwin, x86_64-linux ] - testpack: [ i686-linux, x86_64-darwin, x86_64-linux ] - testpattern: [ i686-linux, x86_64-darwin, x86_64-linux ] - testPkg: [ i686-linux, x86_64-darwin, x86_64-linux ] - testrunner: [ i686-linux, x86_64-darwin, x86_64-linux ] - tetris: [ x86_64-darwin ] - tex2txt: [ i686-linux, x86_64-darwin, x86_64-linux ] - texrunner: [ i686-linux, x86_64-darwin, x86_64-linux ] - text-json-qq: [ i686-linux, x86_64-darwin, x86_64-linux ] - text-normal: [ i686-linux, x86_64-darwin, x86_64-linux ] - text-register-machine: [ i686-linux, x86_64-darwin, x86_64-linux ] - text-show-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] - text-xml-generic: [ i686-linux, x86_64-darwin, x86_64-linux ] - text-xml-qq: [ i686-linux, x86_64-darwin, x86_64-linux ] - textmatetags: [ i686-linux, x86_64-darwin, x86_64-linux ] - tfp-th: [ i686-linux, x86_64-darwin, x86_64-linux ] - tftp: [ x86_64-darwin ] - th-context: [ i686-linux, x86_64-darwin, x86_64-linux ] - th-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] - th-kinds: [ i686-linux, x86_64-darwin, x86_64-linux ] - Theora: [ i686-linux, x86_64-darwin, x86_64-linux ] - theoremquest-client: [ i686-linux, x86_64-darwin, x86_64-linux ] - thih: [ i686-linux, x86_64-darwin, x86_64-linux ] - thimk: [ i686-linux, x86_64-darwin, x86_64-linux ] - Thingie: [ i686-linux, x86_64-darwin, x86_64-linux ] - threadscope: [ x86_64-darwin ] - thrift: [ i686-linux, x86_64-darwin, x86_64-linux ] - Thrift: [ i686-linux, x86_64-darwin, x86_64-linux ] - tic-tac-toe: [ i686-linux, x86_64-darwin, x86_64-linux ] - tickle: [ i686-linux ] - TicTacToe: [ i686-linux, x86_64-darwin, x86_64-linux ] - tidal-midi: [ i686-linux, x86_64-linux ] - tiger: [ i686-linux, x86_64-darwin, x86_64-linux ] - tighttp: [ i686-linux, x86_64-darwin, x86_64-linux ] - timberc: [ i686-linux, x86_64-darwin, x86_64-linux ] - time-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] - time-exts: [ i686-linux ] - time-http: [ i686-linux, x86_64-darwin, x86_64-linux ] - time-qq: [ i686-linux ] - time-recurrence: [ i686-linux, x86_64-darwin, x86_64-linux ] - time-series: [ i686-linux, x86_64-darwin, x86_64-linux ] - time-w3c: [ i686-linux, x86_64-darwin, x86_64-linux ] - timecalc: [ i686-linux, x86_64-darwin, x86_64-linux ] - timeout: [ i686-linux, x86_64-darwin, x86_64-linux ] - timeparsers: [ i686-linux, x86_64-darwin, x86_64-linux ] - TimePiece: [ i686-linux, x86_64-darwin, x86_64-linux ] - timestamp-subprocess-lines: [ i686-linux, x86_64-darwin, x86_64-linux ] - TinyLaunchbury: [ i686-linux, x86_64-darwin, x86_64-linux ] - TinyURL: [ i686-linux, x86_64-darwin, x86_64-linux ] - tip-haskell-frontend: [ i686-linux, x86_64-darwin, x86_64-linux ] - Titim: [ i686-linux, x86_64-darwin, x86_64-linux ] - tkhs: [ i686-linux, x86_64-darwin, x86_64-linux ] - tkyprof: [ i686-linux, x86_64-darwin, x86_64-linux ] - tls-extra: [ i686-linux, x86_64-darwin, x86_64-linux ] - to-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - to-string-class: [ i686-linux, x86_64-darwin, x86_64-linux ] - to-string-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] - todos: [ i686-linux, x86_64-darwin, x86_64-linux ] - toilet: [ i686-linux, x86_64-darwin, x86_64-linux ] - toktok: [ i686-linux, x86_64-darwin, x86_64-linux ] - tokyocabinet-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - tomato-rubato-openal: [ x86_64-darwin ] - toml: [ i686-linux, x86_64-darwin, x86_64-linux ] - toolshed: [ i686-linux, x86_64-darwin, x86_64-linux ] - Top: [ i686-linux, x86_64-darwin, x86_64-linux ] - topkata: [ i686-linux, x86_64-darwin, x86_64-linux ] - torch: [ i686-linux, x86_64-darwin, x86_64-linux ] - Tournament: [ i686-linux, x86_64-darwin, x86_64-linux ] - toysolver: [ i686-linux, x86_64-darwin, x86_64-linux ] - tracker: [ i686-linux, x86_64-darwin, x86_64-linux ] - trajectory: [ i686-linux, x86_64-darwin, x86_64-linux ] - transactional-events: [ i686-linux, x86_64-darwin, x86_64-linux ] - transformers-convert: [ i686-linux, x86_64-darwin, x86_64-linux ] - transformers-runnable: [ i686-linux, x86_64-darwin, x86_64-linux ] - transient: [ i686-linux, x86_64-darwin, x86_64-linux ] - translate: [ i686-linux, x86_64-darwin, x86_64-linux ] - traypoweroff: [ i686-linux, x86_64-darwin, x86_64-linux ] - tremulous-query: [ i686-linux, x86_64-darwin, x86_64-linux ] - TrendGraph: [ i686-linux, x86_64-darwin, x86_64-linux ] - trhsx: [ i686-linux, x86_64-darwin, x86_64-linux ] - triangulation: [ i686-linux, x86_64-darwin, x86_64-linux ] - TrieMap: [ i686-linux, x86_64-darwin, x86_64-linux ] - trimpolya: [ i686-linux, x86_64-darwin, x86_64-linux ] - tripLL: [ x86_64-darwin ] - tsession: [ i686-linux, x86_64-darwin, x86_64-linux ] - tsession-happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] - tskiplist: [ i686-linux, x86_64-darwin, x86_64-linux ] - tsp-viz: [ i686-linux, x86_64-darwin, x86_64-linux ] - tuntap: [ i686-linux, x86_64-darwin, x86_64-linux ] - tuple-gen: [ i686-linux, x86_64-darwin, x86_64-linux ] - tuple-morph: [ i686-linux, x86_64-darwin, x86_64-linux ] - tupleinstances: [ i686-linux, x86_64-darwin, x86_64-linux ] - turing-music: [ x86_64-darwin ] - twee: [ x86_64-darwin ] - twentefp: [ x86_64-darwin ] - twentefp-eventloop-trees: [ i686-linux, x86_64-darwin, x86_64-linux ] - twentefp-rosetree: [ i686-linux, x86_64-darwin, x86_64-linux ] - twhs: [ i686-linux, x86_64-darwin, x86_64-linux ] - twidge: [ i686-linux, x86_64-darwin, x86_64-linux ] - twilight-stm: [ i686-linux, x86_64-darwin, x86_64-linux ] - twilio: [ i686-linux, x86_64-darwin, x86_64-linux ] - twill: [ i686-linux, x86_64-darwin, x86_64-linux ] - twiml: [ i686-linux, x86_64-darwin, x86_64-linux ] - twine: [ i686-linux, x86_64-darwin, x86_64-linux ] - twisty: [ i686-linux, x86_64-darwin, x86_64-linux ] - twitter: [ i686-linux, x86_64-darwin, x86_64-linux ] - twitter-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] - tx: [ i686-linux, x86_64-darwin, x86_64-linux ] - TYB: [ i686-linux, x86_64-darwin, x86_64-linux ] - typalyze: [ i686-linux, x86_64-darwin, x86_64-linux ] - type-cereal: [ i686-linux, x86_64-darwin, x86_64-linux ] - type-digits: [ i686-linux, x86_64-darwin, x86_64-linux ] - type-equality-check: [ i686-linux, x86_64-darwin, x86_64-linux ] - type-int: [ i686-linux, x86_64-darwin, x86_64-linux ] - type-level: [ i686-linux, x86_64-darwin, x86_64-linux ] - type-level-bst: [ i686-linux, x86_64-darwin, x86_64-linux ] - type-ord: [ i686-linux, x86_64-darwin, x86_64-linux ] - type-ord-spine-cereal: [ i686-linux, x86_64-darwin, x86_64-linux ] - type-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] - type-settheory: [ i686-linux, x86_64-darwin, x86_64-linux ] - type-spine: [ i686-linux, x86_64-darwin, x86_64-linux ] - type-structure: [ i686-linux, x86_64-darwin, x86_64-linux ] - type-sub-th: [ i686-linux, x86_64-darwin, x86_64-linux ] - typeable-th: [ i686-linux, x86_64-darwin, x86_64-linux ] - TypeClass: [ i686-linux, x86_64-darwin, x86_64-linux ] - typed-spreadsheet: [ x86_64-darwin ] - typed-wire: [ i686-linux, x86_64-darwin, x86_64-linux ] - typedquery: [ i686-linux, x86_64-darwin, x86_64-linux ] - typehash: [ i686-linux, x86_64-darwin, x86_64-linux ] - TypeIlluminator: [ i686-linux, x86_64-darwin, x86_64-linux ] - typelevel-tensor: [ i686-linux, x86_64-darwin, x86_64-linux ] - typeparams: [ i686-linux, x86_64-darwin, x86_64-linux ] - typescript-docs: [ i686-linux, x86_64-darwin, x86_64-linux ] - tz: [ x86_64-darwin ] - uAgda: [ i686-linux, x86_64-darwin, x86_64-linux ] - uberlast: [ i686-linux, x86_64-darwin, x86_64-linux ] - uconv: [ i686-linux, x86_64-darwin, x86_64-linux ] - udbus: [ i686-linux, x86_64-darwin, x86_64-linux ] - udbus-model: [ i686-linux, x86_64-darwin, x86_64-linux ] - udev: [ i686-linux, x86_64-darwin, x86_64-linux ] - ui-command: [ i686-linux, x86_64-darwin, x86_64-linux ] - UISF: [ x86_64-darwin ] - UMM: [ i686-linux, x86_64-darwin, x86_64-linux ] - unamb-custom: [ i686-linux, x86_64-darwin, x86_64-linux ] - unbounded-delays-units: [ i686-linux, x86_64-darwin, x86_64-linux ] - unboxed-containers: [ i686-linux, x86_64-darwin, x86_64-linux ] - unbreak: [ x86_64-darwin ] - unicode-normalization: [ i686-linux, x86_64-darwin, x86_64-linux ] - unicoder: [ i686-linux, x86_64-darwin, x86_64-linux ] - uniform-io: [ i686-linux, x86_64-darwin, x86_64-linux ] - union-map: [ i686-linux, x86_64-darwin, x86_64-linux ] - uniqueid: [ i686-linux, x86_64-darwin, x86_64-linux ] - unittyped: [ i686-linux, x86_64-darwin, x86_64-linux ] - universe-th: [ i686-linux, x86_64-darwin, x86_64-linux ] - unix-process-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - Unixutils-shadow: [ x86_64-darwin ] - unlit: [ i686-linux, x86_64-darwin, x86_64-linux ] - unordered-containers-rematch: [ i686-linux, x86_64-darwin, x86_64-linux ] - unpack-funcs: [ i686-linux, x86_64-darwin, x86_64-linux ] - unscramble: [ i686-linux, x86_64-darwin, x86_64-linux ] - up: [ i686-linux, x86_64-darwin, x86_64-linux ] - uploadcare: [ i686-linux, x86_64-darwin, x86_64-linux ] - upskirt: [ i686-linux, x86_64-darwin, x86_64-linux ] - ureader: [ i686-linux, x86_64-darwin, x86_64-linux ] - urembed: [ i686-linux, x86_64-darwin, x86_64-linux ] - uri-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - uri-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] - uri-enumerator-file: [ i686-linux, x86_64-darwin, x86_64-linux ] - url-generic: [ i686-linux, x86_64-darwin, x86_64-linux ] - urlcheck: [ i686-linux, x86_64-darwin, x86_64-linux ] - urldecode: [ i686-linux, x86_64-darwin, x86_64-linux ] - UrlDisp: [ i686-linux, x86_64-darwin, x86_64-linux ] - urldisp-happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] - URLT: [ i686-linux, x86_64-darwin, x86_64-linux ] - urxml: [ i686-linux, x86_64-darwin, x86_64-linux ] - usb-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] - usb-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] - usb-safe: [ i686-linux, x86_64-darwin, x86_64-linux ] - utf8-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] - UTFTConverter: [ i686-linux, x86_64-darwin, x86_64-linux ] - uuagc-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] - uvector: [ i686-linux, x86_64-darwin, x86_64-linux ] - uvector-algorithms: [ i686-linux, x86_64-darwin, x86_64-linux ] - v4l2: [ i686-linux, x86_64-darwin, x86_64-linux ] - v4l2-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - vacuum: [ i686-linux, x86_64-darwin, x86_64-linux ] - vacuum-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] - vacuum-graphviz: [ i686-linux, x86_64-darwin, x86_64-linux ] - vacuum-opengl: [ i686-linux, x86_64-darwin, x86_64-linux ] - vacuum-ubigraph: [ i686-linux, x86_64-darwin, x86_64-linux ] - vampire: [ i686-linux, x86_64-darwin, x86_64-linux ] - var: [ i686-linux, x86_64-darwin, x86_64-linux ] - vaultaire-common: [ i686-linux, x86_64-darwin, x86_64-linux ] - vcache: [ x86_64-darwin ] - vcache-trie: [ x86_64-darwin ] - vcsgui: [ x86_64-darwin ] - Vec-Boolean: [ i686-linux, x86_64-darwin, x86_64-linux ] - Vec-OpenGLRaw: [ i686-linux, x86_64-darwin, x86_64-linux ] - Vec-Transform: [ i686-linux, x86_64-darwin, x86_64-linux ] - vect-opengl: [ i686-linux, x86_64-darwin, x86_64-linux ] - vector-bytestring: [ i686-linux, x86_64-darwin, x86_64-linux ] - vector-clock: [ i686-linux, x86_64-darwin, x86_64-linux ] - vector-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - vector-functorlazy: [ i686-linux, x86_64-darwin, x86_64-linux ] - vector-instances-collections: [ i686-linux, x86_64-darwin, x86_64-linux ] - vector-random: [ i686-linux, x86_64-darwin, x86_64-linux ] - vector-read-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] - vector-space-opengl: [ i686-linux, x86_64-darwin, x86_64-linux ] - vector-static: [ i686-linux, x86_64-darwin, x86_64-linux ] - verilog: [ i686-linux, x86_64-darwin, x86_64-linux ] - versions: [ i686-linux, x86_64-darwin, x86_64-linux ] - vigilance: [ i686-linux, x86_64-darwin, x86_64-linux ] - vintage-basic: [ i686-linux, x86_64-darwin, x86_64-linux ] - vinyl-gl: [ i686-linux, x86_64-darwin, x86_64-linux ] - vinyl-json: [ i686-linux, x86_64-darwin, x86_64-linux ] - vinyl-vectors: [ i686-linux, x86_64-darwin, x86_64-linux ] - virthualenv: [ i686-linux, x86_64-darwin, x86_64-linux ] - vision: [ i686-linux, x86_64-darwin, x86_64-linux ] - visual-graphrewrite: [ i686-linux, x86_64-darwin, x86_64-linux ] - visual-prof: [ i686-linux, x86_64-darwin, x86_64-linux ] - vivid: [ i686-linux, x86_64-darwin, x86_64-linux ] - vk-aws-route53: [ i686-linux, x86_64-darwin, x86_64-linux ] - vowpal-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - voyeur: [ i686-linux, x86_64-linux ] - vrpn: [ x86_64-darwin ] - vte: [ i686-linux, x86_64-linux ] - vtegtk3: [ i686-linux, x86_64-linux ] - vty-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - vty-menu: [ i686-linux, x86_64-darwin, x86_64-linux ] - vty-ui-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] - vulkan: [ i686-linux, x86_64-darwin, x86_64-linux ] - wacom-daemon: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-graceful: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-handler-devel: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-handler-snap: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-handler-webkit: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-hastache: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-lite: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-logger-prefork: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-middleware-cache: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-middleware-cache-redis: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-middleware-catch: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-middleware-crowd: [ i686-linux ] - wai-middleware-headers: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-middleware-hmac-client: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-middleware-preprocessor: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-middleware-route: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-middleware-static-caching: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-session-tokyocabinet: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-static-cache: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-thrift: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-throttler: [ i686-linux, x86_64-darwin, x86_64-linux ] - warp-dynamic: [ i686-linux, x86_64-darwin, x86_64-linux ] - warp-static: [ i686-linux, x86_64-darwin, x86_64-linux ] - warp-tls-uid: [ i686-linux, x86_64-darwin, x86_64-linux ] - WashNGo: [ i686-linux, x86_64-darwin, x86_64-linux ] - watchdog: [ i686-linux, x86_64-darwin, x86_64-linux ] - watcher: [ i686-linux, x86_64-darwin, x86_64-linux ] - watchit: [ i686-linux, x86_64-darwin, x86_64-linux ] - WaveFront: [ i686-linux, x86_64-darwin, x86_64-linux ] - wavesurfer: [ i686-linux, x86_64-darwin, x86_64-linux ] - weather-api: [ i686-linux, x86_64-darwin, x86_64-linux ] - web-browser-in-haskell: [ i686-linux, x86_64-linux ] - web-encodings: [ i686-linux, x86_64-darwin, x86_64-linux ] - web-mongrel2: [ i686-linux, x86_64-darwin, x86_64-linux ] - web-routes-quasi: [ i686-linux, x86_64-darwin, x86_64-linux ] - web-routes-transformers: [ i686-linux, x86_64-darwin, x86_64-linux ] - webapi: [ i686-linux, x86_64-darwin, x86_64-linux ] - webapp: [ i686-linux, x86_64-darwin, x86_64-linux ] - WebBits-Html: [ i686-linux, x86_64-darwin, x86_64-linux ] - WebBits-multiplate: [ i686-linux, x86_64-darwin, x86_64-linux ] - WebCont: [ i686-linux, x86_64-darwin, x86_64-linux ] - webdriver-snoy: [ i686-linux, x86_64-darwin, x86_64-linux ] - webify: [ i686-linux, x86_64-darwin, x86_64-linux ] - webkit-javascriptcore: [ i686-linux, x86_64-linux ] - Webrexp: [ i686-linux, x86_64-darwin, x86_64-linux ] - webserver: [ i686-linux, x86_64-darwin, x86_64-linux ] - websnap: [ i686-linux, x86_64-linux ] - webwire: [ i686-linux, x86_64-darwin, x86_64-linux ] - wedged: [ i686-linux, x86_64-darwin, x86_64-linux ] - weighted-regexp: [ i686-linux, x86_64-darwin, x86_64-linux ] - welshy: [ i686-linux, x86_64-darwin, x86_64-linux ] - Wheb: [ i686-linux, x86_64-darwin, x86_64-linux ] - wheb-mongo: [ i686-linux, x86_64-darwin, x86_64-linux ] - wheb-redis: [ i686-linux, x86_64-darwin, x86_64-linux ] - wheb-strapped: [ i686-linux, x86_64-darwin, x86_64-linux ] - whim: [ i686-linux, x86_64-darwin, x86_64-linux ] - whitespace: [ i686-linux, x86_64-darwin, x86_64-linux ] - WikimediaParser: [ i686-linux, x86_64-darwin, x86_64-linux ] - wikipedia4epub: [ i686-linux, x86_64-darwin, x86_64-linux ] - windowslive: [ i686-linux, x86_64-darwin, x86_64-linux ] - winerror: [ i686-linux, x86_64-darwin, x86_64-linux ] - winio: [ i686-linux, x86_64-darwin, x86_64-linux ] - Wired: [ x86_64-darwin ] - WL500gPControl: [ i686-linux, x86_64-darwin, x86_64-linux ] - wlc-hs: [ i686-linux, x86_64-linux ] - WMSigner: [ i686-linux ] - wobsurv: [ i686-linux, x86_64-darwin, x86_64-linux ] - woffex: [ i686-linux, x86_64-darwin, x86_64-linux ] - wolf: [ i686-linux, x86_64-darwin, x86_64-linux ] - word24: [ i686-linux, x86_64-darwin, x86_64-linux ] - WordAlignment: [ i686-linux, x86_64-darwin, x86_64-linux ] - Wordlint: [ i686-linux, x86_64-darwin, x86_64-linux ] - WordNet: [ i686-linux, x86_64-darwin, x86_64-linux ] - WordNet-ghc74: [ i686-linux, x86_64-darwin, x86_64-linux ] - wordsearch: [ i686-linux, x86_64-darwin, x86_64-linux ] - workflow-osx: [ i686-linux, x86_64-darwin, x86_64-linux ] - wp-archivebot: [ i686-linux, x86_64-darwin, x86_64-linux ] - wraxml: [ i686-linux, x86_64-darwin, x86_64-linux ] - wright: [ i686-linux, x86_64-darwin, x86_64-linux ] - wtk: [ i686-linux, x86_64-darwin, x86_64-linux ] - wtk-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] - wumpus-basic: [ i686-linux, x86_64-darwin, x86_64-linux ] - wumpus-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - wumpus-drawing: [ i686-linux, x86_64-darwin, x86_64-linux ] - wumpus-microprint: [ i686-linux, x86_64-darwin, x86_64-linux ] - wumpus-tree: [ i686-linux, x86_64-darwin, x86_64-linux ] - WURFL: [ i686-linux, x86_64-darwin, x86_64-linux ] - wx: [ x86_64-darwin ] - wxAsteroids: [ x86_64-darwin ] - wxc: [ x86_64-darwin ] - wxcore: [ x86_64-darwin ] - WXDiffCtrl: [ i686-linux, x86_64-darwin, x86_64-linux ] - wxFruit: [ i686-linux, x86_64-darwin, x86_64-linux ] - WxGeneric: [ x86_64-darwin ] - wxhnotepad: [ i686-linux, x86_64-darwin, x86_64-linux ] - wxturtle: [ i686-linux, x86_64-darwin, x86_64-linux ] - wyvern: [ i686-linux, x86_64-darwin, x86_64-linux ] - x-dsp: [ i686-linux, x86_64-darwin, x86_64-linux ] - X11-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] - X11-rm: [ i686-linux, x86_64-darwin, x86_64-linux ] - X11-xdamage: [ i686-linux, x86_64-darwin, x86_64-linux ] - X11-xfixes: [ i686-linux, x86_64-darwin, x86_64-linux ] - x11-xinput: [ i686-linux, x86_64-darwin, x86_64-linux ] - xbattbar: [ x86_64-darwin ] - xchat-plugin: [ x86_64-darwin, x86_64-linux ] - xdot: [ x86_64-darwin ] - Xec: [ i686-linux, x86_64-darwin, x86_64-linux ] - xfconf: [ i686-linux, x86_64-darwin, x86_64-linux ] - xhaskell-library: [ i686-linux, x86_64-darwin, x86_64-linux ] - xhb-ewmh: [ i686-linux, x86_64-darwin, x86_64-linux ] - xine: [ i686-linux, x86_64-darwin, x86_64-linux ] - xing-api: [ i686-linux, x86_64-darwin, x86_64-linux ] - xkbcommon: [ i686-linux, x86_64-darwin, x86_64-linux ] - xkcd: [ i686-linux, x86_64-darwin, x86_64-linux ] - xlsx-templater: [ i686-linux, x86_64-darwin, x86_64-linux ] - xml-catalog: [ i686-linux, x86_64-darwin, x86_64-linux ] - xml-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] - xml-enumerator-combinators: [ i686-linux, x86_64-darwin, x86_64-linux ] - xml-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] - xml-pipe: [ i686-linux, x86_64-darwin, x86_64-linux ] - xml-prettify: [ i686-linux, x86_64-darwin, x86_64-linux ] - xml-push: [ i686-linux, x86_64-darwin, x86_64-linux ] - xml-query-xml-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - xml-query-xml-types: [ i686-linux, x86_64-darwin, x86_64-linux ] - xml2json: [ i686-linux, x86_64-darwin, x86_64-linux ] - xml2x: [ i686-linux, x86_64-darwin, x86_64-linux ] - XmlHtmlWriter: [ i686-linux, x86_64-darwin, x86_64-linux ] - xmltv: [ i686-linux, x86_64-darwin, x86_64-linux ] - XMMS: [ i686-linux, x86_64-darwin, x86_64-linux ] - xmms2-client: [ i686-linux, x86_64-darwin, x86_64-linux ] - xmms2-client-glib: [ i686-linux, x86_64-darwin, x86_64-linux ] - xmonad-bluetilebranch: [ i686-linux, x86_64-darwin, x86_64-linux ] - xmonad-contrib-bluetilebranch: [ i686-linux, x86_64-darwin, x86_64-linux ] - xmonad-eval: [ i686-linux, x86_64-darwin, x86_64-linux ] - xmonad-screenshot: [ x86_64-darwin ] - xmonad-utils: [ x86_64-darwin ] - xmpipe: [ i686-linux, x86_64-darwin, x86_64-linux ] - XMPP: [ i686-linux, x86_64-darwin, x86_64-linux ] - xournal-convert: [ i686-linux, x86_64-darwin, x86_64-linux ] - xournal-render: [ i686-linux, x86_64-darwin, x86_64-linux ] - xsact: [ i686-linux, x86_64-darwin, x86_64-linux ] - XSaiga: [ i686-linux, x86_64-darwin, x86_64-linux ] - xslt: [ i686-linux, x86_64-darwin, x86_64-linux ] - xtc: [ x86_64-darwin ] - y0l0bot: [ i686-linux, x86_64-darwin, x86_64-linux ] - Yablog: [ i686-linux, x86_64-darwin, x86_64-linux ] - YACPong: [ i686-linux, x86_64-linux ] - yahoo-web-search: [ i686-linux, x86_64-darwin, x86_64-linux ] - yajl: [ i686-linux, x86_64-darwin, x86_64-linux ] - yajl-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] - yaml-rpc: [ i686-linux, x86_64-darwin, x86_64-linux ] - yaml-rpc-scotty: [ i686-linux, x86_64-darwin, x86_64-linux ] - yaml-rpc-snap: [ i686-linux, x86_64-darwin, x86_64-linux ] - yaml-union: [ i686-linux, x86_64-darwin, x86_64-linux ] - yaml2owl: [ i686-linux, x86_64-darwin, x86_64-linux ] - YamlReference: [ x86_64-darwin ] - Yampa: [ i686-linux ] - yampa-canvas: [ i686-linux ] - yampa-glfw: [ i686-linux, x86_64-darwin, x86_64-linux ] - yampa-glut: [ i686-linux, x86_64-darwin, x86_64-linux ] - yampa2048: [ i686-linux, x86_64-darwin ] - YampaSynth: [ i686-linux ] - yaop: [ i686-linux, x86_64-darwin, x86_64-linux ] - yarr: [ i686-linux, x86_64-darwin, x86_64-linux ] - yarr-image-io: [ i686-linux, x86_64-darwin, x86_64-linux ] - yate: [ i686-linux, x86_64-darwin, x86_64-linux ] - yavie: [ i686-linux, x86_64-darwin, x86_64-linux ] - ycextra: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-angular-ui: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-auth-ldap: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-auth-pam: [ i686-linux, x86_64-linux ] - yesod-auth-smbclient: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-comments: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-content-pdf: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-continuations: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-datatables: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-goodies: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-links: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-media-simple: [ x86_64-darwin ] - yesod-paginate: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-pagination: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-pure: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-purescript: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-raml-bin: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-raml-mock: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-routes-typescript: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-rst: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-s3: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-session-redis: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-tableview: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-test-json: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-tls: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-vend: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-worker: [ i686-linux, x86_64-darwin, x86_64-linux ] - yet-another-logger: [ i686-linux ] - YFrob: [ i686-linux, x86_64-darwin, x86_64-linux ] - yhccore: [ i686-linux, x86_64-darwin, x86_64-linux ] - yi: [ x86_64-darwin ] - yi-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] - yi-fuzzy-open: [ x86_64-darwin ] - yi-monokai: [ x86_64-darwin ] - yi-rope: [ x86_64-darwin ] - yi-snippet: [ x86_64-darwin ] - yi-solarized: [ x86_64-darwin ] - yi-spolsky: [ x86_64-darwin ] - yices: [ i686-linux, x86_64-darwin, x86_64-linux ] - yjftp: [ i686-linux, x86_64-darwin, x86_64-linux ] - Yogurt: [ i686-linux, x86_64-darwin, x86_64-linux ] - Yogurt-Standalone: [ i686-linux, x86_64-darwin, x86_64-linux ] - yoko: [ i686-linux, x86_64-darwin, x86_64-linux ] - york-lava: [ i686-linux, x86_64-darwin, x86_64-linux ] - yql: [ i686-linux, x86_64-darwin, x86_64-linux ] - yuiGrid: [ i686-linux, x86_64-darwin, x86_64-linux ] - yuuko: [ i686-linux, x86_64-darwin, x86_64-linux ] - yxdb-utils: [ i686-linux ] - z3: [ x86_64-darwin ] - zampolit: [ i686-linux, x86_64-darwin, x86_64-linux ] - zasni-gerna: [ i686-linux, x86_64-darwin, x86_64-linux ] - zendesk-api: [ i686-linux, x86_64-darwin, x86_64-linux ] - zeno: [ i686-linux, x86_64-darwin, x86_64-linux ] - zerobin: [ i686-linux, x86_64-darwin, x86_64-linux ] - zeromq-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - zeromq3-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - zeromq3-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - zeroth: [ i686-linux, x86_64-darwin, x86_64-linux ] - ZFS: [ i686-linux, x86_64-darwin, x86_64-linux ] - zip: [ i686-linux, x86_64-darwin, x86_64-linux ] - zipedit: [ i686-linux, x86_64-darwin, x86_64-linux ] - ZMachine: [ i686-linux, x86_64-darwin, x86_64-linux ] - zmcat: [ i686-linux, x86_64-darwin, x86_64-linux ] - zmqat: [ i686-linux, x86_64-darwin, x86_64-linux ] - zoneinfo: [ i686-linux, x86_64-darwin, x86_64-linux ] - zoom: [ i686-linux, x86_64-darwin, x86_64-linux ] - zoom-cache: [ i686-linux, x86_64-darwin, x86_64-linux ] - zoom-cache-pcm: [ i686-linux, x86_64-darwin, x86_64-linux ] - zoom-cache-sndfile: [ i686-linux, x86_64-darwin, x86_64-linux ] - zot: [ i686-linux, x86_64-darwin, x86_64-linux ] - zsh-battery: [ i686-linux, x86_64-darwin, x86_64-linux ] - ztail: [ i686-linux, x86_64-darwin, x86_64-linux ] - Zwaluw: [ i686-linux, x86_64-darwin, x86_64-linux ] + 3d-graphics-examples: [ x86_64-darwin ] + 3dmodels: [ i686-linux, x86_64-darwin, x86_64-linux ] + 4Blocks: [ i686-linux, x86_64-darwin, x86_64-linux ] + abc-puzzle: [ x86_64-darwin ] + abcBridge: [ i686-linux, x86_64-darwin, x86_64-linux ] + abstract-par-accelerate: [ i686-linux, x86_64-darwin, x86_64-linux ] + AC-BuildPlatform: [ i686-linux, x86_64-darwin, x86_64-linux ] + AC-EasyRaster-GTK: [ i686-linux, x86_64-darwin, x86_64-linux ] + AC-HalfInteger: [ i686-linux, x86_64-darwin, x86_64-linux ] + AC-MiniTest: [ i686-linux, x86_64-darwin, x86_64-linux ] + AC-Terminal: [ i686-linux, x86_64-darwin, x86_64-linux ] + AC-VanillaArray: [ i686-linux, x86_64-darwin, x86_64-linux ] + accelerate-arithmetic: [ i686-linux, x86_64-darwin, x86_64-linux ] + accelerate-fourier: [ i686-linux, x86_64-darwin, x86_64-linux ] + accelerate-utility: [ i686-linux, x86_64-darwin, x86_64-linux ] + accentuateus: [ i686-linux, x86_64-darwin, x86_64-linux ] + access-time: [ i686-linux, x86_64-darwin, x86_64-linux ] + acid-state-dist: [ i686-linux, x86_64-darwin, x86_64-linux ] + acme-hq9plus: [ i686-linux, x86_64-darwin, x86_64-linux ] + acme-inator: [ i686-linux, x86_64-darwin, x86_64-linux ] + acme-numbersystem: [ i686-linux, x86_64-darwin, x86_64-linux ] + acme-schoenfinkel: [ i686-linux, x86_64-darwin, x86_64-linux ] + acme-zero: [ i686-linux, x86_64-darwin, x86_64-linux ] + ACME: [ i686-linux, x86_64-darwin, x86_64-linux ] + ActionKid: [ i686-linux, x86_64-darwin, x86_64-linux ] + activehs: [ i686-linux, x86_64-darwin, x86_64-linux ] + actor: [ i686-linux, x86_64-darwin, x86_64-linux ] + Adaptive-Blaisorblade: [ i686-linux, x86_64-darwin, x86_64-linux ] + adaptive-containers: [ i686-linux, x86_64-darwin, x86_64-linux ] + adaptive-tuple: [ i686-linux, x86_64-darwin, x86_64-linux ] + Adaptive: [ i686-linux, x86_64-darwin, x86_64-linux ] + adhoc-network: [ i686-linux, x86_64-darwin, x86_64-linux ] + adict: [ i686-linux, x86_64-darwin, x86_64-linux ] + adobe-swatch-exchange: [ i686-linux, x86_64-darwin, x86_64-linux ] + adp-multi-monadiccp: [ i686-linux, x86_64-darwin, x86_64-linux ] + adp-multi: [ i686-linux, x86_64-darwin, x86_64-linux ] + ADPfusion: [ i686-linux, x86_64-darwin, x86_64-linux ] + Advgame: [ i686-linux, x86_64-darwin, x86_64-linux ] + AERN-Basics: [ i686-linux, x86_64-darwin, x86_64-linux ] + AERN-Net: [ i686-linux, x86_64-darwin, x86_64-linux ] + AERN-Real-Double: [ i686-linux, x86_64-darwin, x86_64-linux ] + AERN-Real-Interval: [ i686-linux, x86_64-darwin, x86_64-linux ] + AERN-Real: [ i686-linux, x86_64-darwin, x86_64-linux ] + AERN-RnToRm-Plot: [ i686-linux, x86_64-linux, x86_64-darwin ] + AERN-RnToRm: [ i686-linux, x86_64-darwin, x86_64-linux ] + aeson-bson: [ i686-linux, x86_64-darwin, x86_64-linux ] + aeson-native: [ i686-linux, x86_64-darwin, x86_64-linux ] + aeson-smart: [ i686-linux, x86_64-darwin, x86_64-linux ] + AesonBson: [ i686-linux, x86_64-darwin, x86_64-linux ] + afv: [ i686-linux, x86_64-darwin, x86_64-linux ] + Agata: [ i686-linux, x86_64-darwin, x86_64-linux ] + Agda-executable: [ i686-linux, x86_64-darwin, x86_64-linux ] + agda-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + agda-snippets-hakyll: [ i686-linux, x86_64-darwin, x86_64-linux ] + agda-snippets: [ i686-linux, x86_64-darwin, x86_64-linux ] + Agda: [ i686-linux, x86_64-darwin, x86_64-linux ] + AGI: [ i686-linux, x86_64-darwin, x86_64-linux ] + AhoCorasick: [ i686-linux, x86_64-darwin, x86_64-linux ] + airbrake: [ i686-linux, x86_64-darwin, x86_64-linux ] + ajhc: [ i686-linux, x86_64-darwin, x86_64-linux ] + al: [ i686-linux, x86_64-darwin, x86_64-linux ] + alea: [ i686-linux, x86_64-darwin, x86_64-linux ] + alga: [ i686-linux ] + algebraic: [ i686-linux, x86_64-darwin, x86_64-linux ] + AlignmentAlgorithms: [ i686-linux, x86_64-darwin, x86_64-linux ] + Allure: [ i686-linux, x86_64-darwin, x86_64-linux ] + alms: [ i686-linux, x86_64-darwin, x86_64-linux ] + alpha: [ i686-linux, x86_64-darwin, x86_64-linux ] + alpino-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + alsa-core: [ x86_64-darwin ] + alsa-gui: [ x86_64-darwin ] + alsa-midi: [ i686-linux, x86_64-linux, x86_64-darwin ] + alsa-mixer: [ x86_64-darwin ] + alsa-pcm-tests: [ i686-linux, x86_64-linux, x86_64-darwin ] + alsa-pcm: [ x86_64-darwin ] + alsa-seq-tests: [ i686-linux, x86_64-linux, x86_64-darwin ] + alsa-seq: [ x86_64-darwin ] + alsa: [ i686-linux, x86_64-linux, x86_64-darwin ] + altfloat: [ i686-linux, x86_64-darwin, x86_64-linux ] + alure: [ i686-linux, x86_64-darwin, x86_64-linux ] + ALUT: [ x86_64-darwin ] + amazon-emailer: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazon-products: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-rds: [ i686-linux ] + amazonka-sqs: [ i686-linux ] + AMI: [ i686-linux, x86_64-darwin, x86_64-linux ] + ampersand: [ i686-linux, x86_64-darwin, x86_64-linux ] + anansi-pandoc: [ i686-linux, x86_64-darwin, x86_64-linux ] + anatomy: [ i686-linux, x86_64-darwin, x86_64-linux ] + android-lint-summary: [ i686-linux, x86_64-darwin, x86_64-linux ] + AndroidViewHierarchyImporter: [ i686-linux, x86_64-darwin, x86_64-linux ] + Animas: [ i686-linux, x86_64-darwin, x86_64-linux ] + antfarm: [ i686-linux, x86_64-darwin, x86_64-linux ] + anticiv: [ i686-linux, x86_64-darwin, x86_64-linux ] + antigate: [ i686-linux, x86_64-darwin, x86_64-linux ] + antimirov: [ i686-linux, x86_64-darwin, x86_64-linux ] + antlrc: [ i686-linux, x86_64-darwin, x86_64-linux ] + anydbm: [ i686-linux, x86_64-darwin, x86_64-linux ] + aosd: [ i686-linux, x86_64-darwin, x86_64-linux ] + apelsin: [ i686-linux, x86_64-darwin, x86_64-linux ] + api-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + apiary-helics: [ i686-linux, x86_64-linux ] + apiary-purescript: [ i686-linux, x86_64-darwin, x86_64-linux ] + apis: [ i686-linux, x86_64-darwin, x86_64-linux ] + apotiki: [ i686-linux, x86_64-darwin, x86_64-linux ] + app-lens: [ i686-linux, x86_64-darwin, x86_64-linux ] + appc: [ i686-linux, x86_64-darwin, x86_64-linux ] + ApplePush: [ i686-linux, x86_64-darwin, x86_64-linux ] + AppleScript: [ i686-linux, x86_64-darwin, x86_64-linux ] + apply-refact: [ x86_64-darwin ] + approx-rand-test: [ i686-linux, x86_64-darwin, x86_64-linux ] + arb-fft: [ i686-linux, x86_64-darwin, x86_64-linux ] + arbb-vm: [ i686-linux, x86_64-darwin, x86_64-linux ] + archiver: [ i686-linux, x86_64-darwin, x86_64-linux ] + archlinux-web: [ i686-linux, x86_64-darwin, x86_64-linux ] + archlinux: [ i686-linux, x86_64-darwin, x86_64-linux ] + arff: [ i686-linux, x86_64-darwin, x86_64-linux ] + arghwxhaskell: [ x86_64-darwin ] + argon2: [ i686-linux, x86_64-darwin, x86_64-linux ] + argparser: [ i686-linux, x86_64-darwin, x86_64-linux ] + arguedit: [ i686-linux, x86_64-darwin, x86_64-linux ] + ariadne: [ i686-linux, x86_64-darwin, x86_64-linux ] + arion: [ i686-linux, x86_64-darwin, x86_64-linux ] + arith-encode: [ i686-linux, x86_64-darwin, x86_64-linux ] + arithmetic: [ i686-linux ] + arithmoi: [ i686-linux ] + armada: [ i686-linux, x86_64-darwin, x86_64-linux ] + array-forth: [ i686-linux, x86_64-darwin, x86_64-linux ] + ArrayRef: [ i686-linux, x86_64-darwin, x86_64-linux ] + arrow-improve: [ i686-linux, x86_64-darwin, x86_64-linux ] + arrowapply-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + arrowp: [ i686-linux, x86_64-darwin, x86_64-linux ] + ArrowVHDL: [ i686-linux, x86_64-darwin, x86_64-linux ] + ascii85-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + asic: [ i686-linux, x86_64-darwin, x86_64-linux ] + asil: [ i686-linux, x86_64-darwin, x86_64-linux ] + AspectAG: [ i686-linux, x86_64-darwin, x86_64-linux ] + assimp: [ i686-linux, x86_64-darwin, x86_64-linux ] + astrds: [ i686-linux, x86_64-linux, x86_64-darwin ] + astview: [ i686-linux, x86_64-darwin, x86_64-linux ] + async-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + aterm-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + atlassian-connect-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + atlassian-connect-descriptor: [ i686-linux, x86_64-darwin, x86_64-linux ] + atom-msp430: [ x86_64-darwin, x86_64-linux ] + atomic-primops-foreign: [ x86_64-darwin ] + atomic-primops-vector: [ i686-linux, x86_64-darwin, x86_64-linux ] + atomo: [ i686-linux, x86_64-darwin, x86_64-linux ] + AttoJson: [ i686-linux, x86_64-darwin, x86_64-linux ] + attoparsec-csv: [ i686-linux, x86_64-darwin, x86_64-linux ] + attoparsec-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] + attoparsec-text-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + attoparsec-text: [ i686-linux, x86_64-darwin, x86_64-linux ] + Attrac: [ i686-linux, x86_64-darwin, x86_64-linux ] + atuin: [ i686-linux, x86_64-darwin, x86_64-linux ] + audiovisual: [ i686-linux, x86_64-darwin, x86_64-linux ] + augeas: [ i686-linux, x86_64-darwin, x86_64-linux ] + augur: [ i686-linux, x86_64-darwin, x86_64-linux ] + Aurochs: [ i686-linux, x86_64-darwin, x86_64-linux ] + authoring: [ i686-linux, x86_64-darwin, x86_64-linux ] + AutoForms: [ i686-linux, x86_64-darwin, x86_64-linux ] + autoproc: [ i686-linux, x86_64-darwin, x86_64-linux ] + avahi: [ i686-linux, x86_64-darwin, x86_64-linux ] + AvlTree: [ i686-linux, x86_64-darwin, x86_64-linux ] + awesomium-glut: [ i686-linux, x86_64-darwin, x86_64-linux ] + awesomium-raw: [ i686-linux, x86_64-darwin, x86_64-linux ] + awesomium: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-configuration-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-dynamodb-streams: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-elastic-transcoder: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-general: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-kinesis-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-kinesis-reshard: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-kinesis: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-lambda: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-performance-tests: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-sdk: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-sign4: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-sns: [ i686-linux, x86_64-darwin, x86_64-linux ] + azure-service-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + azurify: [ i686-linux, x86_64-darwin, x86_64-linux ] + b-tree: [ i686-linux, x86_64-darwin, x86_64-linux ] + babylon: [ x86_64-darwin ] + backdropper: [ i686-linux, x86_64-darwin, x86_64-linux ] + bag: [ i686-linux, x86_64-darwin, x86_64-linux ] + Baggins: [ i686-linux, x86_64-darwin, x86_64-linux ] + bamboo-launcher: [ i686-linux, x86_64-darwin, x86_64-linux ] + bamboo-plugin-highlight: [ i686-linux, x86_64-darwin, x86_64-linux ] + bamboo-plugin-photo: [ i686-linux, x86_64-darwin, x86_64-linux ] + bamboo-theme-blueprint: [ i686-linux, x86_64-darwin, x86_64-linux ] + bamboo-theme-mini-html5: [ i686-linux, x86_64-darwin, x86_64-linux ] + bamboo: [ i686-linux, x86_64-darwin, x86_64-linux ] + bamse: [ i686-linux, x86_64-darwin, x86_64-linux ] + Bang: [ x86_64-darwin ] + barchart: [ i686-linux, x86_64-darwin, x86_64-linux ] + barcodes-code128: [ i686-linux, x86_64-darwin, x86_64-linux ] + barley: [ i686-linux, x86_64-darwin, x86_64-linux ] + Barracuda: [ i686-linux, x86_64-darwin, x86_64-linux ] + barrie: [ i686-linux, x86_64-darwin, x86_64-linux ] + barrier-monad: [ i686-linux, x86_64-darwin, x86_64-linux ] + base32-bytestring: [ x86_64-darwin ] + BASIC: [ i686-linux, x86_64-darwin, x86_64-linux ] + baskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + battleships: [ i686-linux, x86_64-darwin, x86_64-linux ] + bayes-stack: [ i686-linux, x86_64-darwin, x86_64-linux ] + BCMtools: [ i686-linux, x86_64-darwin, x86_64-linux ] + beamable: [ i686-linux, x86_64-darwin, x86_64-linux ] + beautifHOL: [ i686-linux, x86_64-darwin, x86_64-linux ] + bed-and-breakfast: [ i686-linux, x86_64-darwin, x86_64-linux ] + Befunge93: [ i686-linux, x86_64-darwin, x86_64-linux ] + bein: [ i686-linux, x86_64-darwin, x86_64-linux ] + berkeleydb: [ i686-linux, x86_64-darwin, x86_64-linux ] + BerkeleyDBXML: [ i686-linux, x86_64-darwin, x86_64-linux ] + berp: [ i686-linux, x86_64-darwin, x86_64-linux ] + bff: [ i686-linux, x86_64-darwin, x86_64-linux ] + bgzf: [ i686-linux, x86_64-darwin, x86_64-linux ] + bidirectionalization-combined: [ i686-linux, x86_64-darwin, x86_64-linux ] + bidispec: [ i686-linux, x86_64-darwin, x86_64-linux ] + BigPixel: [ x86_64-darwin ] + billboard-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] + billeksah-forms: [ i686-linux, x86_64-darwin, x86_64-linux ] + billeksah-main: [ i686-linux, x86_64-darwin, x86_64-linux ] + billeksah-pane: [ i686-linux, x86_64-darwin, x86_64-linux ] + billeksah-services: [ i686-linux, x86_64-darwin, x86_64-linux ] + bimaps: [ i686-linux, x86_64-darwin, x86_64-linux ] + binary-derive: [ i686-linux, x86_64-darwin, x86_64-linux ] + binary-indexed-tree: [ i686-linux, x86_64-darwin, x86_64-linux ] + binary-protocol-zmq: [ i686-linux, x86_64-darwin, x86_64-linux ] + binary-streams: [ i686-linux, x86_64-darwin, x86_64-linux ] + bind-marshal: [ i686-linux, x86_64-darwin, x86_64-linux ] + binding-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + binding-wx: [ x86_64-darwin ] + bindings-apr-util: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-apr: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-bfd: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-cctools: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-codec2: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-common: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-dc1394: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-directfb: [ x86_64-darwin ] + bindings-eskit: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-EsounD: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-fann: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-fluidsynth: [ x86_64-darwin ] + bindings-friso: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-GLFW: [ x86_64-darwin ] + bindings-gpgme: [ x86_64-darwin ] + bindings-gsl: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-gts: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-hamlib: [ x86_64-darwin ] + bindings-hdf5: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-K8055: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-levmar: [ x86_64-darwin ] + bindings-libcddb: [ x86_64-darwin ] + bindings-libftdi: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-librrd: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-libstemmer: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-libv4l2: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-libzip: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-linux-videodev2: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-lxc: [ x86_64-darwin ] + bindings-mmap: [ x86_64-darwin ] + bindings-mpdecimal: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-parport: [ x86_64-darwin ] + bindings-portaudio: [ x86_64-darwin ] + bindings-posix: [ x86_64-darwin ] + bindings-ppdev: [ x86_64-darwin ] + bindings-sane: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-sc3: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-sipc: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-svm: [ x86_64-darwin ] + binembed-example: [ x86_64-darwin ] + bio: [ i686-linux, x86_64-darwin, x86_64-linux ] + Biobase: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseBlast: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseDotP: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseFasta: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseFR3D: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseInfernal: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseMAF: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseTrainingData: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseTurner: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseTypes: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseVienna: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseXNA: [ i686-linux, x86_64-darwin, x86_64-linux ] + biohazard: [ i686-linux, x86_64-darwin, x86_64-linux ] + bioinformatics-toolkit: [ i686-linux, x86_64-darwin, x86_64-linux ] + biosff: [ i686-linux, x86_64-darwin, x86_64-linux ] + biostockholm: [ i686-linux, x86_64-darwin, x86_64-linux ] + bird: [ i686-linux, x86_64-darwin, x86_64-linux ] + BirdPP: [ i686-linux, x86_64-darwin, x86_64-linux ] + bit-vector: [ i686-linux ] + bitcoin-rpc: [ i686-linux, x86_64-darwin, x86_64-linux ] + bitly-cli: [ i686-linux, x86_64-darwin, x86_64-linux ] + Bitly: [ i686-linux, x86_64-darwin, x86_64-linux ] + bitmap-opengl: [ x86_64-darwin ] + bits-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + bits-extras: [ x86_64-darwin ] + bitset: [ i686-linux, x86_64-darwin, x86_64-linux ] + bitspeak: [ i686-linux, x86_64-darwin, x86_64-linux ] + bitstream: [ i686-linux, x86_64-darwin, x86_64-linux ] + bittorrent: [ i686-linux, x86_64-darwin, x86_64-linux ] + bitvec: [ i686-linux, x86_64-darwin, x86_64-linux ] + bkr: [ i686-linux, x86_64-darwin, x86_64-linux ] + bla: [ i686-linux, x86_64-darwin, x86_64-linux ] + black-jewel: [ i686-linux, x86_64-darwin, x86_64-linux ] + blake2: [ i686-linux ] + blakesum-demo: [ i686-linux, x86_64-darwin, x86_64-linux ] + blakesum: [ i686-linux, x86_64-darwin, x86_64-linux ] + blas-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + blas: [ i686-linux, x86_64-darwin, x86_64-linux ] + blaze-html-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] + blaze-html-hexpat: [ i686-linux, x86_64-darwin, x86_64-linux ] + blaze-textual-native: [ i686-linux, x86_64-darwin, x86_64-linux ] + blazeMarker: [ i686-linux, x86_64-darwin, x86_64-linux ] + blip: [ i686-linux, x86_64-darwin, x86_64-linux ] + Blobs: [ i686-linux, x86_64-darwin, x86_64-linux ] + blogination: [ i686-linux, x86_64-darwin, x86_64-linux ] + BlogLiterately-diagrams: [ x86_64-darwin ] + bloodhound: [ i686-linux, x86_64-darwin, x86_64-linux ] + bloxorz: [ x86_64-darwin ] + blubber: [ x86_64-darwin ] + Blueprint: [ i686-linux, x86_64-darwin, x86_64-linux ] + bluetile: [ i686-linux, x86_64-darwin, x86_64-linux ] + bluetileutils: [ x86_64-darwin ] + board-games: [ i686-linux, x86_64-darwin, x86_64-linux ] + bogre-banana: [ i686-linux, x86_64-darwin, x86_64-linux ] + bond-haskell-compiler: [ i686-linux, x86_64-darwin, x86_64-linux ] + bond: [ i686-linux, x86_64-darwin, x86_64-linux ] + boolean-normal-forms: [ i686-linux, x86_64-darwin, x86_64-linux ] + boolsimplifier: [ i686-linux, x86_64-darwin, x86_64-linux ] + boomslang: [ i686-linux, x86_64-darwin, x86_64-linux ] + borel: [ i686-linux, x86_64-darwin, x86_64-linux ] + bot: [ i686-linux, x86_64-darwin, x86_64-linux ] + bowntz: [ x86_64-darwin ] + Bravo: [ i686-linux, x86_64-darwin, x86_64-linux ] + breakout: [ i686-linux, x86_64-darwin, x86_64-linux ] + breve: [ x86_64-darwin ] + brians-brain: [ i686-linux, x86_64-darwin, x86_64-linux ] + brillig: [ i686-linux, x86_64-darwin, x86_64-linux ] + broker-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + bsd-sysctl: [ i686-linux, x86_64-darwin, x86_64-linux ] + bson-generics: [ i686-linux, x86_64-darwin, x86_64-linux ] + bson-mapping: [ i686-linux, x86_64-darwin, x86_64-linux ] + btree-concurrent: [ i686-linux, x86_64-darwin, x86_64-linux ] + btrfs: [ x86_64-darwin ] + buffer-builder-aeson: [ i686-linux, x86_64-darwin, x86_64-linux ] + buffer-builder: [ i686-linux ] + buffon: [ i686-linux, x86_64-darwin, x86_64-linux ] + buildbox-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + buildwrapper: [ i686-linux, x86_64-darwin, x86_64-linux ] + bullet: [ i686-linux, x86_64-darwin, x86_64-linux ] + buster-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + buster-network: [ i686-linux, x86_64-darwin, x86_64-linux ] + Buster: [ i686-linux, x86_64-darwin, x86_64-linux ] + bustle: [ x86_64-darwin ] + butterflies: [ i686-linux, x86_64-darwin, x86_64-linux ] + bytable: [ i686-linux, x86_64-darwin, x86_64-linux ] + bytestring-class: [ i686-linux, x86_64-darwin, x86_64-linux ] + bytestring-csv: [ i686-linux, x86_64-darwin, x86_64-linux ] + bytestring-rematch: [ i686-linux, x86_64-darwin, x86_64-linux ] + bytestringparser: [ i686-linux, x86_64-darwin, x86_64-linux ] + bytestringreadp: [ i686-linux, x86_64-darwin, x86_64-linux ] + c-io: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-constraints: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-dev: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-ghci: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-graphdeps: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-install-bundle: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-install-ghc72: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-install-ghc74: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-query: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-setup: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-test: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-upload: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal2arch: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal2doap: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal2spec: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabalgraph: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabalmdvrpm: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabalrpmdeps: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabocha: [ i686-linux, x86_64-darwin, x86_64-linux ] + cairo-appbase: [ x86_64-darwin ] + cake3: [ i686-linux, x86_64-darwin, x86_64-linux ] + cakyrespa: [ i686-linux, x86_64-darwin, x86_64-linux ] + cal3d-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + cal3d-opengl: [ i686-linux, x86_64-darwin, x86_64-linux ] + cal3d: [ i686-linux, x86_64-darwin, x86_64-linux ] + calc: [ i686-linux, x86_64-darwin, x86_64-linux ] + calculator: [ x86_64-darwin ] + caldims: [ i686-linux, x86_64-darwin, x86_64-linux ] + caledon: [ i686-linux, x86_64-darwin, x86_64-linux ] + call-haskell-from-anything: [ i686-linux, x86_64-darwin, x86_64-linux ] + call: [ i686-linux, x86_64-darwin, x86_64-linux ] + campfire: [ i686-linux, x86_64-darwin, x86_64-linux ] + cantor: [ i686-linux, x86_64-darwin, x86_64-linux ] + cao: [ i686-linux, x86_64-darwin, x86_64-linux ] + cap: [ i686-linux, x86_64-darwin, x86_64-linux ] + Capabilities: [ i686-linux, x86_64-darwin, x86_64-linux ] + capri: [ i686-linux, x86_64-darwin, x86_64-linux ] + caramia: [ x86_64-darwin ] + carboncopy: [ i686-linux, x86_64-darwin, x86_64-linux ] + carettah: [ i686-linux, x86_64-linux, x86_64-darwin ] + casadi-bindings-control: [ i686-linux, x86_64-darwin, x86_64-linux ] + casadi-bindings-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + casadi-bindings-internal: [ i686-linux, x86_64-darwin, x86_64-linux ] + casadi-bindings-ipopt-interface: [ i686-linux, x86_64-darwin, x86_64-linux ] + casadi-bindings-snopt-interface: [ i686-linux, x86_64-darwin, x86_64-linux ] + casadi-bindings: [ i686-linux, x86_64-darwin, x86_64-linux ] + Cascade: [ i686-linux, x86_64-darwin, x86_64-linux ] + cascading: [ i686-linux, x86_64-darwin, x86_64-linux ] + cash: [ i686-linux, x86_64-darwin, x86_64-linux ] + cassandra-thrift: [ i686-linux, x86_64-darwin, x86_64-linux ] + cassava-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + cassy: [ i686-linux, x86_64-darwin, x86_64-linux ] + casui: [ i686-linux, x86_64-darwin, x86_64-linux ] + Catana: [ i686-linux, x86_64-darwin, x86_64-linux ] + catch-fd: [ i686-linux, x86_64-darwin, x86_64-linux ] + categorical-algebra: [ i686-linux, x86_64-darwin, x86_64-linux ] + category-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + cblrepo: [ i686-linux, x86_64-darwin, x86_64-linux ] + CBOR: [ i686-linux, x86_64-darwin, x86_64-linux ] + CC-delcont-alt: [ i686-linux, x86_64-darwin, x86_64-linux ] + CC-delcont-cxe: [ i686-linux, x86_64-darwin, x86_64-linux ] + CC-delcont-exc: [ i686-linux, x86_64-darwin, x86_64-linux ] + CC-delcont-ref-tf: [ i686-linux, x86_64-darwin, x86_64-linux ] + CC-delcont-ref: [ i686-linux, x86_64-darwin, x86_64-linux ] + CC-delcont: [ i686-linux, x86_64-darwin, x86_64-linux ] + cci: [ i686-linux, x86_64-darwin, x86_64-linux ] + cctools-workqueue: [ i686-linux, x86_64-darwin, x86_64-linux ] + cedict: [ i686-linux, x86_64-darwin, x86_64-linux ] + ceilometer-common: [ i686-linux, x86_64-darwin, x86_64-linux ] + cellrenderer-cairo: [ x86_64-darwin ] + cereal-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + cereal-ieee754: [ i686-linux, x86_64-darwin, x86_64-linux ] + cereal-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] + certificate: [ i686-linux, x86_64-darwin, x86_64-linux ] + cf: [ i686-linux, x86_64-darwin, x86_64-linux ] + cfipu: [ i686-linux, x86_64-darwin, x86_64-linux ] + cflp: [ i686-linux, x86_64-darwin, x86_64-linux ] + cfopu: [ i686-linux, x86_64-darwin, x86_64-linux ] + cgen: [ i686-linux, x86_64-darwin, x86_64-linux ] + cgi-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + chalkboard-viewer: [ i686-linux, x86_64-darwin, x86_64-linux ] + chalkboard: [ i686-linux, x86_64-darwin, x86_64-linux ] + charade: [ i686-linux, x86_64-darwin, x86_64-linux ] + charsetdetect-ae: [ x86_64-darwin ] + charsetdetect: [ x86_64-darwin ] + Chart-gtk: [ x86_64-darwin ] + Chart-simple: [ x86_64-darwin ] + chatter: [ i686-linux, x86_64-darwin, x86_64-linux ] + check-pvp: [ i686-linux, x86_64-darwin, x86_64-linux ] + checked: [ i686-linux, x86_64-darwin, x86_64-linux ] + chell-hunit: [ i686-linux, x86_64-darwin, x86_64-linux ] + chevalier-common: [ i686-linux, x86_64-darwin, x86_64-linux ] + Chitra: [ i686-linux, x86_64-darwin, x86_64-linux ] + chp-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] + chp-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] + chp-spec: [ i686-linux, x86_64-darwin, x86_64-linux ] + chp-transformers: [ i686-linux, x86_64-darwin, x86_64-linux ] + chp: [ i686-linux, x86_64-darwin, x86_64-linux ] + ChristmasTree: [ i686-linux, x86_64-darwin, x86_64-linux ] + chuchu: [ i686-linux, x86_64-darwin, x86_64-linux ] + chunks: [ i686-linux, x86_64-darwin, x86_64-linux ] + cil: [ i686-linux, x86_64-darwin, x86_64-linux ] + cinvoke: [ i686-linux, x86_64-darwin, x86_64-linux ] + cio: [ i686-linux, x86_64-darwin, x86_64-linux ] + citation-resolve: [ i686-linux, x86_64-darwin, x86_64-linux ] + citeproc-hs-pandoc-filter: [ i686-linux, x86_64-darwin, x86_64-linux ] + citeproc-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + cityhash: [ x86_64-darwin ] + cjk: [ i686-linux, x86_64-darwin, x86_64-linux ] + clafer: [ i686-linux, x86_64-darwin, x86_64-linux ] + claferIG: [ i686-linux, x86_64-darwin, x86_64-linux ] + claferwiki: [ i686-linux, x86_64-darwin, x86_64-linux ] + clang-pure: [ x86_64-darwin ] + CLASE: [ i686-linux, x86_64-darwin, x86_64-linux ] + clash-prelude-quickcheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + clash: [ i686-linux, x86_64-darwin, x86_64-linux ] + ClassLaws: [ i686-linux, x86_64-darwin, x86_64-linux ] + ClassyPrelude: [ i686-linux, x86_64-darwin, x86_64-linux ] + clckwrks-plugin-bugs: [ i686-linux, x86_64-darwin, x86_64-linux ] + clckwrks-theme-geo-bootstrap: [ i686-linux, x86_64-darwin, x86_64-linux ] + cld2: [ x86_64-darwin ] + Clean: [ i686-linux, x86_64-darwin, x86_64-linux ] + clevercss: [ i686-linux, x86_64-darwin, x86_64-linux ] + click-clack: [ i686-linux, x86_64-darwin, x86_64-linux ] + clifford: [ i686-linux, x86_64-darwin, x86_64-linux ] + clipper: [ i686-linux, x86_64-darwin, x86_64-linux ] + clippings: [ i686-linux, x86_64-darwin, x86_64-linux ] + clocked: [ i686-linux, x86_64-darwin, x86_64-linux ] + clogparse: [ i686-linux, x86_64-darwin, x86_64-linux ] + clone-all: [ i686-linux, x86_64-darwin, x86_64-linux ] + cloudfront-signer: [ i686-linux, x86_64-darwin, x86_64-linux ] + cloudyfs: [ i686-linux, x86_64-linux, x86_64-darwin ] + clua: [ i686-linux, x86_64-darwin, x86_64-linux ] + cluss: [ i686-linux, x86_64-darwin, x86_64-linux ] + clustertools: [ i686-linux, x86_64-darwin, x86_64-linux ] + clutterhs: [ i686-linux, x86_64-darwin, x86_64-linux ] + cmath: [ i686-linux, x86_64-darwin, x86_64-linux ] + cmathml3: [ i686-linux, x86_64-darwin, x86_64-linux ] + CMCompare: [ i686-linux, x86_64-darwin, x86_64-linux ] + cmdargs-browser: [ i686-linux, x86_64-darwin, x86_64-linux ] + cmdtheline: [ i686-linux, x86_64-darwin, x86_64-linux ] + cmonad: [ i686-linux, x86_64-darwin, x86_64-linux ] + cnc-spec-compiler: [ i686-linux, x86_64-darwin, x86_64-linux ] + cndict: [ i686-linux, x86_64-darwin, x86_64-linux ] + Coadjute: [ i686-linux, x86_64-darwin, x86_64-linux ] + Codec-Image-DevIL: [ i686-linux, x86_64-darwin, x86_64-linux ] + codec-libevent: [ i686-linux, x86_64-darwin, x86_64-linux ] + codecov-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + codemonitor: [ i686-linux, x86_64-darwin, x86_64-linux ] + codepad: [ i686-linux, x86_64-darwin, x86_64-linux ] + cognimeta-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + coinbase-exchange: [ i686-linux, x86_64-darwin, x86_64-linux ] + colada: [ i686-linux, x86_64-darwin, x86_64-linux ] + collada-output: [ i686-linux, x86_64-darwin, x86_64-linux ] + collada-types: [ i686-linux, x86_64-darwin, x86_64-linux ] + collections-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + collections-base-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] + collections: [ i686-linux, x86_64-darwin, x86_64-linux ] + coltrane: [ i686-linux, x86_64-darwin, x86_64-linux ] + com: [ i686-linux, x86_64-darwin, x86_64-linux ] + combinat-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] + combinat: [ i686-linux, x86_64-darwin, x86_64-linux ] + combinator-interactive: [ i686-linux, x86_64-darwin, x86_64-linux ] + combinatorial-problems: [ i686-linux, x86_64-darwin, x86_64-linux ] + Combinatorrent: [ i686-linux, x86_64-darwin, x86_64-linux ] + Commando: [ i686-linux, x86_64-darwin, x86_64-linux ] + commodities: [ i686-linux, x86_64-darwin, x86_64-linux ] + commsec-keyexchange: [ i686-linux, x86_64-darwin, x86_64-linux ] + commsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + comonad-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + comonad-random: [ i686-linux, x86_64-darwin, x86_64-linux ] + compact-map: [ i686-linux, x86_64-darwin, x86_64-linux ] + compact-string: [ i686-linux, x86_64-darwin, x86_64-linux ] + compilation: [ i686-linux, x86_64-darwin, x86_64-linux ] + complexity: [ i686-linux, x86_64-darwin, x86_64-linux ] + compose-trans: [ i686-linux, x86_64-darwin, x86_64-linux ] + compression: [ i686-linux, x86_64-darwin, x86_64-linux ] + compstrat: [ i686-linux, x86_64-darwin, x86_64-linux ] + comptrans: [ i686-linux, x86_64-darwin, x86_64-linux ] + computational-algebra: [ i686-linux, x86_64-darwin, x86_64-linux ] + concraft-hr: [ i686-linux, x86_64-darwin, x86_64-linux ] + concraft-pl: [ i686-linux, x86_64-darwin, x86_64-linux ] + concraft: [ i686-linux, x86_64-darwin, x86_64-linux ] + concrete-typerep: [ i686-linux, x86_64-darwin, x86_64-linux ] + concurrent-state: [ i686-linux, x86_64-darwin, x86_64-linux ] + ConcurrentUtils: [ i686-linux, x86_64-darwin, x86_64-linux ] + condor: [ i686-linux, x86_64-darwin, x86_64-linux ] + condorcet: [ i686-linux, x86_64-darwin, x86_64-linux ] + conductive-hsc3: [ i686-linux, x86_64-darwin, x86_64-linux ] + conduit-audio-lame: [ i686-linux, x86_64-darwin, x86_64-linux ] + conduit-audio-samplerate: [ i686-linux, x86_64-darwin, x86_64-linux ] + conduit-audio-sndfile: [ x86_64-darwin ] + conduit-network-stream: [ i686-linux, x86_64-darwin, x86_64-linux ] + conduit-resumablesink: [ i686-linux, x86_64-darwin, x86_64-linux ] + config-select: [ i686-linux, x86_64-darwin, x86_64-linux ] + Configger: [ i686-linux, x86_64-darwin, x86_64-linux ] + conjure: [ i686-linux, x86_64-darwin, x86_64-linux ] + consistent: [ i686-linux, x86_64-darwin, x86_64-linux ] + const-math-ghc-plugin: [ i686-linux, x86_64-darwin, x86_64-linux ] + ConstraintKinds: [ i686-linux, x86_64-darwin, x86_64-linux ] + constructible: [ i686-linux ] + constructive-algebra: [ i686-linux, x86_64-darwin, x86_64-linux ] + Consumer: [ i686-linux, x86_64-darwin, x86_64-linux ] + consumers: [ x86_64-darwin ] + container: [ i686-linux, x86_64-darwin, x86_64-linux ] + context-stack: [ i686-linux, x86_64-darwin, x86_64-linux ] + continue: [ i686-linux, x86_64-darwin, x86_64-linux ] + continuum: [ i686-linux, x86_64-darwin, x86_64-linux ] + Contract: [ i686-linux, x86_64-darwin, x86_64-linux ] + control-event: [ i686-linux, x86_64-darwin, x86_64-linux ] + control-monad-attempt: [ i686-linux, x86_64-darwin, x86_64-linux ] + control-monad-failure-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] + control-monad-failure: [ i686-linux, x86_64-darwin, x86_64-linux ] + Control-Monad-MultiPass: [ i686-linux, x86_64-darwin, x86_64-linux ] + Control-Monad-ST2: [ i686-linux, x86_64-darwin, x86_64-linux ] + contstuff-monads-tf: [ i686-linux, x86_64-darwin, x86_64-linux ] + contstuff-transformers: [ i686-linux, x86_64-darwin, x86_64-linux ] + convert: [ i686-linux, x86_64-darwin, x86_64-linux ] + convertible-ascii: [ i686-linux, x86_64-darwin, x86_64-linux ] + convertible-text: [ i686-linux, x86_64-darwin, x86_64-linux ] + copilot-cbmc: [ i686-linux, x86_64-darwin, x86_64-linux ] + copilot: [ i686-linux, x86_64-darwin, x86_64-linux ] + COrdering: [ i686-linux, x86_64-darwin, x86_64-linux ] + core-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + core: [ i686-linux, x86_64-darwin, x86_64-linux ] + corebot-bliki: [ i686-linux, x86_64-darwin, x86_64-linux ] + CoreFoundation: [ i686-linux, x86_64-darwin, x86_64-linux ] + coroutine-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] + Coroutine: [ i686-linux, x86_64-darwin, x86_64-linux ] + couch-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + couch-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + couchdb-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + couchdb-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + CouchDB: [ i686-linux, x86_64-darwin, x86_64-linux ] + court: [ i686-linux, x86_64-darwin, x86_64-linux ] + CPBrainfuck: [ i686-linux, x86_64-darwin, x86_64-linux ] + cpio-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + cplusplus-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + cpuperf: [ i686-linux, x86_64-darwin, x86_64-linux ] + cpython: [ i686-linux, x86_64-darwin, x86_64-linux ] + cqrs-postgresql: [ i686-linux, x86_64-darwin, x86_64-linux ] + cqrs-sqlite3: [ i686-linux, x86_64-darwin, x86_64-linux ] + cqrs-test: [ i686-linux, x86_64-darwin, x86_64-linux ] + cr: [ i686-linux, x86_64-darwin, x86_64-linux ] + crack: [ i686-linux, x86_64-darwin, x86_64-linux ] + Craft3e: [ i686-linux, x86_64-darwin, x86_64-linux ] + craftwerk-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] + craftwerk-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + craftwerk: [ i686-linux, x86_64-darwin, x86_64-linux ] + crc16: [ i686-linux, x86_64-darwin, x86_64-linux ] + crf-chain1-constrained: [ i686-linux, x86_64-darwin, x86_64-linux ] + crf-chain1: [ i686-linux, x86_64-darwin, x86_64-linux ] + crf-chain2-generic: [ i686-linux, x86_64-darwin, x86_64-linux ] + crf-chain2-tiers: [ i686-linux, x86_64-darwin, x86_64-linux ] + criterion-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] + crocodile: [ i686-linux, x86_64-darwin, x86_64-linux ] + cron-compat: [ i686-linux, x86_64-darwin, x86_64-linux ] + cruncher-types: [ i686-linux, x86_64-darwin, x86_64-linux ] + crunghc: [ i686-linux, x86_64-darwin, x86_64-linux ] + crypto-cipher-benchmarks: [ i686-linux, x86_64-darwin, x86_64-linux ] + crypto-enigma: [ i686-linux, x86_64-darwin, x86_64-linux ] + cryptsy-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + crystalfontz: [ i686-linux, x86_64-darwin, x86_64-linux ] + cse-ghc-plugin: [ i686-linux, x86_64-darwin, x86_64-linux ] + csound-catalog: [ i686-linux, x86_64-linux ] + csp: [ i686-linux, x86_64-darwin, x86_64-linux ] + CSPM-cspm: [ i686-linux, x86_64-darwin, x86_64-linux ] + CSPM-FiringRules: [ i686-linux, x86_64-darwin, x86_64-linux ] + cspmchecker: [ i686-linux, x86_64-darwin, x86_64-linux ] + css: [ i686-linux, x86_64-darwin, x86_64-linux ] + ctemplate: [ i686-linux, x86_64-darwin, x86_64-linux ] + ctkl: [ i686-linux, x86_64-darwin, x86_64-linux ] + ctpl: [ i686-linux, x86_64-darwin, x86_64-linux ] + cubicbezier: [ i686-linux, x86_64-darwin, x86_64-linux ] + cuboid: [ i686-linux, x86_64-darwin ] + cudd: [ i686-linux, x86_64-linux, x86_64-darwin ] + curry-base: [ i686-linux, x86_64-darwin, x86_64-linux ] + curry-frontend: [ i686-linux, x86_64-darwin, x86_64-linux ] + CurryDB: [ i686-linux, x86_64-darwin, x86_64-linux ] + curves: [ i686-linux, x86_64-darwin, x86_64-linux ] + cv-combinators: [ x86_64-darwin ] + CV: [ i686-linux, x86_64-darwin, x86_64-linux ] + cyclotomic: [ i686-linux ] + cypher: [ i686-linux, x86_64-darwin, x86_64-linux ] + DAG-Tournament: [ i686-linux, x86_64-darwin, x86_64-linux ] + Dangerous: [ i686-linux, x86_64-darwin, x86_64-linux ] + Dao: [ i686-linux, x86_64-darwin, x86_64-linux ] + dapi: [ i686-linux, x86_64-darwin, x86_64-linux ] + darcs-benchmark: [ i686-linux, x86_64-darwin, x86_64-linux ] + darcs-beta: [ i686-linux, x86_64-darwin, x86_64-linux ] + darcs-buildpackage: [ i686-linux, x86_64-darwin, x86_64-linux ] + darcs-cabalized: [ i686-linux, x86_64-darwin, x86_64-linux ] + darcs-fastconvert: [ i686-linux, x86_64-darwin, x86_64-linux ] + darcs-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] + darcs-monitor: [ i686-linux, x86_64-darwin, x86_64-linux ] + darcs2dot: [ i686-linux, x86_64-darwin, x86_64-linux ] + darcsden: [ i686-linux, x86_64-darwin, x86_64-linux ] + DarcsHelpers: [ i686-linux, x86_64-darwin, x86_64-linux ] + darcswatch: [ i686-linux, x86_64-darwin, x86_64-linux ] + darkplaces-demo: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-cycle: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-dispersal: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-easy: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-ivar: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-layer: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-lens-ixset: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-named: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-nat: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-object-json: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-object-yaml: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-quotientref: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-result: [ i686-linux, x86_64-darwin, x86_64-linux ] + Data-Rope: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-rtuple: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-store: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-type: [ i686-linux, x86_64-darwin, x86_64-linux ] + datadog: [ i686-linux ] + datalog: [ i686-linux, x86_64-darwin, x86_64-linux ] + DataTreeView: [ i686-linux, x86_64-darwin, x86_64-linux ] + dbjava: [ i686-linux, x86_64-darwin, x86_64-linux ] + dbus-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + dbus-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + DBus: [ i686-linux, x86_64-darwin, x86_64-linux ] + dclabel: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-build: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-core-eval: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-core-flow: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-core-llvm: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-core-salt: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-core-simpl: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-core-tetra: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-driver: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-source-tetra: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddci-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + dead-simple-json: [ i686-linux, x86_64-darwin, x86_64-linux ] + decepticons: [ i686-linux, x86_64-darwin, x86_64-linux ] + DecisionTree: [ i686-linux, x86_64-darwin, x86_64-linux ] + decoder-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + dedukti: [ i686-linux, x86_64-darwin, x86_64-linux ] + deeplearning-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + deepseq-bounded: [ i686-linux, x86_64-darwin, x86_64-linux ] + deepseq-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + deepzoom: [ i686-linux, x86_64-darwin, x86_64-linux ] + defargs: [ i686-linux, x86_64-darwin, x86_64-linux ] + DefendTheKing: [ i686-linux, x86_64-darwin, x86_64-linux ] + definitive-base: [ i686-linux, x86_64-darwin, x86_64-linux ] + definitive-filesystem: [ i686-linux, x86_64-darwin, x86_64-linux ] + definitive-graphics: [ i686-linux, x86_64-darwin, x86_64-linux ] + definitive-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] + definitive-reactive: [ i686-linux, x86_64-darwin, x86_64-linux ] + definitive-sound: [ i686-linux, x86_64-linux, x86_64-darwin ] + deka-tests: [ i686-linux, x86_64-darwin, x86_64-linux ] + deka: [ i686-linux, x86_64-darwin, x86_64-linux ] + delicious: [ i686-linux, x86_64-darwin, x86_64-linux ] + delta-h: [ i686-linux, x86_64-darwin, x86_64-linux ] + delta: [ x86_64-darwin ] + demarcate: [ i686-linux, x86_64-darwin, x86_64-linux ] + denominate: [ i686-linux, x86_64-darwin, x86_64-linux ] + dependent-state: [ i686-linux, x86_64-darwin, x86_64-linux ] + depends: [ i686-linux, x86_64-darwin, x86_64-linux ] + dephd: [ i686-linux, x86_64-darwin, x86_64-linux ] + dequeue: [ i686-linux, x86_64-darwin, x86_64-linux ] + derangement: [ i686-linux, x86_64-darwin, x86_64-linux ] + derivation-trees: [ i686-linux, x86_64-darwin, x86_64-linux ] + derive-gadt: [ i686-linux, x86_64-darwin, x86_64-linux ] + derive-IG: [ i686-linux, x86_64-darwin, x86_64-linux ] + derive-topdown: [ i686-linux, x86_64-darwin, x86_64-linux ] + derive-trie: [ i686-linux, x86_64-darwin, x86_64-linux ] + derp-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + devil: [ x86_64-darwin ] + dewdrop: [ i686-linux, x86_64-darwin, x86_64-linux ] + Dflow: [ i686-linux, x86_64-darwin, x86_64-linux ] + dfsbuild: [ i686-linux, x86_64-darwin, x86_64-linux ] + dgim: [ i686-linux, x86_64-darwin, x86_64-linux ] + dgs: [ i686-linux, x86_64-darwin, x86_64-linux ] + diagrams-builder: [ x86_64-darwin ] + diagrams-cairo: [ x86_64-darwin ] + diagrams-gtk: [ x86_64-darwin ] + diagrams-haddock: [ x86_64-darwin ] + diagrams-hsqml: [ x86_64-darwin ] + diagrams-pandoc: [ x86_64-darwin ] + diagrams-pdf: [ i686-linux, x86_64-darwin, x86_64-linux ] + diagrams-pgf: [ i686-linux, x86_64-darwin, x86_64-linux ] + diagrams-reflex: [ i686-linux, x86_64-linux, x86_64-darwin ] + diagrams-tikz: [ i686-linux, x86_64-darwin, x86_64-linux ] + dialog: [ x86_64-darwin ] + dice-entropy-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + dictparser: [ i686-linux, x86_64-darwin, x86_64-linux ] + diffcabal: [ i686-linux, x86_64-darwin, x86_64-linux ] + DifferenceLogic: [ i686-linux, x86_64-darwin, x86_64-linux ] + DifferentialEvolution: [ i686-linux, x86_64-darwin, x86_64-linux ] + digestive-functors-hsp: [ i686-linux, x86_64-darwin, x86_64-linux ] + DimensionalHash: [ i686-linux, x86_64-darwin, x86_64-linux ] + dingo-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + dingo-example: [ i686-linux, x86_64-darwin, x86_64-linux ] + dingo-widgets: [ i686-linux, x86_64-darwin, x86_64-linux ] + diophantine: [ i686-linux, x86_64-darwin, x86_64-linux ] + diplomacy-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + direct-binary-files: [ i686-linux, x86_64-darwin, x86_64-linux ] + direct-fastcgi: [ i686-linux, x86_64-darwin, x86_64-linux ] + direct-http: [ i686-linux, x86_64-darwin, x86_64-linux ] + direct-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + directed-cubical: [ i686-linux, x86_64-darwin, x86_64-linux ] + dirfiles: [ i686-linux, x86_64-darwin, x86_64-linux ] + discount: [ i686-linux, x86_64-darwin, x86_64-linux ] + disjoint-set: [ i686-linux, x86_64-darwin, x86_64-linux ] + DisTract: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-process-azure: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-process-lifted: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-process-platform: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-process-registry: [ x86_64-linux ] + distributed-process-zookeeper: [ i686-linux, x86_64-darwin, x86_64-linux ] + distribution-plot: [ i686-linux, x86_64-darwin, x86_64-linux ] + distribution: [ i686-linux, x86_64-darwin, x86_64-linux ] + djembe: [ x86_64-darwin ] + djinn-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + DnaProteinAlignment: [ i686-linux, x86_64-darwin, x86_64-linux ] + dnscache: [ i686-linux, x86_64-darwin, x86_64-linux ] + dnssd: [ i686-linux, x86_64-darwin, x86_64-linux ] + doc-review: [ i686-linux, x86_64-darwin, x86_64-linux ] + doccheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + docidx: [ i686-linux, x86_64-darwin, x86_64-linux ] + dockercook: [ i686-linux, x86_64-darwin, x86_64-linux ] + doctest-discover-configurator: [ i686-linux, x86_64-darwin, x86_64-linux ] + doctest-discover: [ i686-linux, x86_64-darwin, x86_64-linux ] + DocTest: [ i686-linux, x86_64-darwin, x86_64-linux ] + DOM: [ i686-linux, x86_64-darwin, x86_64-linux ] + dotfs: [ x86_64-darwin ] + dow: [ x86_64-darwin ] + download-media-content: [ i686-linux, x86_64-darwin, x86_64-linux ] + download: [ i686-linux, x86_64-darwin, x86_64-linux ] + DP: [ i686-linux, x86_64-darwin, x86_64-linux ] + dph-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + dph-lifted-base: [ i686-linux, x86_64-darwin, x86_64-linux ] + dph-lifted-copy: [ i686-linux, x86_64-darwin, x86_64-linux ] + dph-lifted-vseg: [ i686-linux, x86_64-darwin, x86_64-linux ] + dph-prim-par: [ i686-linux, x86_64-darwin, x86_64-linux ] + dph-prim-seq: [ i686-linux, x86_64-darwin, x86_64-linux ] + dpkg: [ i686-linux, x86_64-linux, x86_64-darwin ] + DPM: [ i686-linux, x86_64-darwin, x86_64-linux ] + drClickOn: [ i686-linux, x86_64-darwin, x86_64-linux ] + dresdner-verkehrsbetriebe: [ i686-linux, x86_64-darwin, x86_64-linux ] + DrHylo: [ i686-linux, x86_64-darwin, x86_64-linux ] + DrIFT-cabalized: [ i686-linux, x86_64-darwin, x86_64-linux ] + DrIFT: [ i686-linux, x86_64-darwin, x86_64-linux ] + dropbox-sdk: [ i686-linux, x86_64-darwin, x86_64-linux ] + dropsolve: [ i686-linux, x86_64-darwin, x86_64-linux ] + ds-kanren: [ i686-linux, x86_64-darwin, x86_64-linux ] + dsmc-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + dsmc: [ i686-linux, x86_64-darwin, x86_64-linux ] + DSTM: [ i686-linux, x86_64-darwin, x86_64-linux ] + dstring: [ i686-linux, x86_64-darwin, x86_64-linux ] + DTC: [ i686-linux, x86_64-darwin, x86_64-linux ] + dtd-text: [ i686-linux, x86_64-darwin, x86_64-linux ] + dtd-types: [ i686-linux, x86_64-darwin, x86_64-linux ] + dtd: [ i686-linux, x86_64-darwin, x86_64-linux ] + duplo: [ i686-linux, x86_64-darwin, x86_64-linux ] + Dust-crypto: [ i686-linux, x86_64-darwin, x86_64-linux ] + Dust-tools-pcap: [ i686-linux, x86_64-darwin, x86_64-linux ] + Dust-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + Dust: [ i686-linux, x86_64-darwin, x86_64-linux ] + dvda: [ i686-linux, x86_64-darwin, x86_64-linux ] + dvdread: [ i686-linux, x86_64-darwin, x86_64-linux ] + dynamic-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] + dynamic-object: [ i686-linux, x86_64-darwin, x86_64-linux ] + dynamic-plot: [ i686-linux, x86_64-darwin, x86_64-linux ] + dynamic-pp: [ i686-linux, x86_64-darwin, x86_64-linux ] + DynamicTimeWarp: [ i686-linux, x86_64-darwin, x86_64-linux ] + dynobud: [ i686-linux, x86_64-darwin, x86_64-linux ] + DysFRP-Cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] + DysFRP-Craftwerk: [ i686-linux, x86_64-darwin, x86_64-linux ] + easy-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + easyjson: [ i686-linux, x86_64-darwin, x86_64-linux ] + easyplot: [ i686-linux, x86_64-darwin, x86_64-linux ] + easyrender: [ i686-linux, x86_64-darwin, x86_64-linux ] + ebnf-bff: [ i686-linux, x86_64-darwin, x86_64-linux ] + ecdsa: [ i686-linux, x86_64-darwin, x86_64-linux ] + ecma262: [ i686-linux, x86_64-darwin, x86_64-linux ] + ecu: [ i686-linux, x86_64-darwin, x86_64-linux ] + ed25519: [ i686-linux, x86_64-darwin, x86_64-linux ] + edenmodules: [ i686-linux, x86_64-darwin, x86_64-linux ] + edenskel: [ i686-linux, x86_64-darwin, x86_64-linux ] + edentv: [ i686-linux, x86_64-darwin, x86_64-linux ] + edge: [ i686-linux, x86_64-darwin, x86_64-linux ] + edit-lenses: [ i686-linux, x86_64-darwin, x86_64-linux ] + editline: [ i686-linux, x86_64-darwin, x86_64-linux ] + EditTimeReport: [ i686-linux, x86_64-darwin, x86_64-linux ] + EEConfig: [ i686-linux, x86_64-darwin, x86_64-linux ] + effect-monad: [ i686-linux, x86_64-darwin, x86_64-linux ] + effective-aspects-mzv: [ i686-linux, x86_64-darwin, x86_64-linux ] + effective-aspects: [ i686-linux, x86_64-darwin, x86_64-linux ] + egison-quote: [ i686-linux, x86_64-darwin, x86_64-linux ] + ehaskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + ehs: [ i686-linux, x86_64-darwin, x86_64-linux ] + eibd-client-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + eigen: [ x86_64-darwin ] + EitherT: [ i686-linux, x86_64-darwin, x86_64-linux ] + ekg-rrd: [ i686-linux ] + electrum-mnemonic: [ i686-linux ] + elerea-examples: [ x86_64-darwin ] + elerea-sdl: [ x86_64-darwin ] + elision: [ i686-linux, x86_64-darwin, x86_64-linux ] + emacs-keys: [ i686-linux, x86_64-darwin, x86_64-linux ] + email-header: [ i686-linux, x86_64-darwin, x86_64-linux ] + email-postmark: [ i686-linux, x86_64-darwin, x86_64-linux ] + email: [ i686-linux, x86_64-darwin, x86_64-linux ] + embeddock-example: [ i686-linux, x86_64-darwin, x86_64-linux ] + embeddock: [ i686-linux, x86_64-darwin, x86_64-linux ] + embroidery: [ i686-linux, x86_64-darwin, x86_64-linux ] + emgm: [ i686-linux, x86_64-darwin, x86_64-linux ] + Emping: [ i686-linux, x86_64-darwin, x86_64-linux ] + Encode: [ i686-linux, x86_64-darwin, x86_64-linux ] + enumerate: [ i686-linux, x86_64-darwin, x86_64-linux ] + enumeration: [ i686-linux, x86_64-darwin, x86_64-linux ] + enumfun: [ i686-linux, x86_64-darwin, x86_64-linux ] + EnumMap: [ i686-linux, x86_64-darwin, x86_64-linux ] + enummapmap: [ i686-linux, x86_64-darwin, x86_64-linux ] + env-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] + epanet-haskell: [ x86_64-darwin ] + epic: [ x86_64-darwin ] + epoll: [ i686-linux, x86_64-darwin, x86_64-linux ] + epub-metadata: [ x86_64-darwin ] + epub-tools: [ x86_64-darwin ] + epubname: [ i686-linux, x86_64-darwin, x86_64-linux ] + Eq: [ i686-linux, x86_64-darwin, x86_64-linux ] + eros-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + error-message: [ i686-linux, x86_64-darwin, x86_64-linux ] + ersatz-toysat: [ i686-linux, x86_64-darwin, x86_64-linux ] + ersatz: [ i686-linux, x86_64-darwin, x86_64-linux ] + esotericbot: [ i686-linux, x86_64-darwin, x86_64-linux ] + EsounD: [ i686-linux, x86_64-darwin, x86_64-linux ] + estimators: [ i686-linux, x86_64-darwin, x86_64-linux ] + estreps: [ i686-linux, x86_64-darwin, x86_64-linux ] + Etage-Graph: [ i686-linux, x86_64-darwin, x86_64-linux ] + Etage: [ i686-linux, x86_64-darwin, x86_64-linux ] + EtaMOO: [ x86_64-darwin ] + Eternal10Seconds: [ i686-linux, x86_64-linux, x86_64-darwin ] + eternal: [ i686-linux, x86_64-darwin, x86_64-linux ] + Etherbunny: [ i686-linux, x86_64-darwin, x86_64-linux ] + ethereum-client-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + ethereum-merkle-patricia-db: [ i686-linux, x86_64-darwin, x86_64-linux ] + euphoria: [ i686-linux, x86_64-darwin, x86_64-linux ] + eurofxref: [ i686-linux, x86_64-darwin, x86_64-linux ] + Euterpea: [ i686-linux, x86_64-linux, x86_64-darwin ] + event-driven: [ i686-linux, x86_64-darwin, x86_64-linux ] + event-monad: [ i686-linux, x86_64-darwin, x86_64-linux ] + eventloop: [ i686-linux, x86_64-darwin, x86_64-linux ] + EventSocket: [ i686-linux, x86_64-darwin, x86_64-linux ] + every-bit-counts: [ i686-linux, x86_64-darwin, x86_64-linux ] + ewe: [ i686-linux, x86_64-darwin, x86_64-linux ] + exif: [ i686-linux, x86_64-darwin, x86_64-linux ] + exists: [ i686-linux, x86_64-darwin, x86_64-linux ] + exp-pairs: [ i686-linux, x86_64-darwin, x86_64-linux ] + expand: [ i686-linux, x86_64-darwin, x86_64-linux ] + expat-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + explain: [ i686-linux, x86_64-darwin, x86_64-linux ] + explicit-sharing: [ i686-linux, x86_64-darwin, x86_64-linux ] + explore: [ i686-linux, x86_64-darwin, x86_64-linux ] + exposed-containers: [ i686-linux, x86_64-darwin, x86_64-linux ] + extcore: [ i686-linux, x86_64-darwin, x86_64-linux ] + extemp: [ i686-linux, x86_64-darwin, x86_64-linux ] + extended-categories: [ i686-linux, x86_64-darwin, x86_64-linux ] + ez-couch: [ i686-linux, x86_64-darwin, x86_64-linux ] + faceted: [ i686-linux, x86_64-darwin, x86_64-linux ] + factory: [ i686-linux, x86_64-darwin, x86_64-linux ] + factual-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + FailureT: [ i686-linux, x86_64-darwin, x86_64-linux ] + falling-turnip: [ x86_64-darwin, x86_64-linux ] + fallingblocks: [ i686-linux, x86_64-linux, x86_64-darwin ] + family-tree: [ i686-linux, x86_64-darwin, x86_64-linux ] + farmhash: [ x86_64-darwin ] + fast-digits: [ i686-linux ] + fast-tags: [ i686-linux, x86_64-darwin, x86_64-linux ] + fastbayes: [ i686-linux, x86_64-darwin, x86_64-linux ] + fastirc: [ i686-linux, x86_64-darwin, x86_64-linux ] + fault-tree: [ i686-linux, x86_64-darwin, x86_64-linux ] + fay-hsx: [ i686-linux, x86_64-darwin, x86_64-linux ] + fcd: [ i686-linux, x86_64-darwin, x86_64-linux ] + fckeditor: [ i686-linux, x86_64-darwin, x86_64-linux ] + FComp: [ i686-linux, x86_64-darwin, x86_64-linux ] + fdo-trash: [ i686-linux, x86_64-darwin, x86_64-linux ] + feed-cli: [ i686-linux, x86_64-darwin, x86_64-linux ] + feed-translator: [ i686-linux, x86_64-darwin, x86_64-linux ] + feed2lj: [ i686-linux, x86_64-darwin, x86_64-linux ] + feed2twitter: [ i686-linux, x86_64-darwin, x86_64-linux ] + feldspar-compiler: [ i686-linux, x86_64-darwin, x86_64-linux ] + feldspar-language: [ i686-linux, x86_64-darwin, x86_64-linux ] + fenfire: [ i686-linux, x86_64-darwin, x86_64-linux ] + FermatsLastMargin: [ i686-linux, x86_64-darwin, x86_64-linux ] + FerryCore: [ i686-linux, x86_64-darwin, x86_64-linux ] + ffeed: [ i686-linux, x86_64-darwin, x86_64-linux ] + ffmpeg-tutorials: [ i686-linux, x86_64-darwin, x86_64-linux ] + fibon: [ i686-linux, x86_64-darwin, x86_64-linux ] + fields: [ i686-linux, x86_64-darwin, x86_64-linux ] + FieldTrip: [ i686-linux, x86_64-darwin, x86_64-linux ] + fieldwise: [ i686-linux, x86_64-darwin, x86_64-linux ] + file-location: [ x86_64-darwin ] + filecache: [ x86_64-darwin ] + FileManip: [ i686-linux, x86_64-darwin, x86_64-linux ] + FileManipCompat: [ i686-linux, x86_64-darwin, x86_64-linux ] + filesystem-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + filesystem-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + FileSystem: [ i686-linux, x86_64-darwin, x86_64-linux ] + Finance-Quote-Yahoo: [ i686-linux, x86_64-darwin, x86_64-linux ] + Finance-Treasury: [ i686-linux, x86_64-darwin, x86_64-linux ] + find-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + FiniteMap: [ i686-linux, x86_64-darwin, x86_64-linux ] + firstify: [ i686-linux, x86_64-darwin, x86_64-linux ] + FirstOrderTheory: [ i686-linux, x86_64-darwin, x86_64-linux ] + fishfood: [ i686-linux, x86_64-darwin, x86_64-linux ] + fit: [ i686-linux, x86_64-darwin, x86_64-linux ] + fitsio: [ i686-linux, x86_64-darwin, x86_64-linux ] + fix-parser-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + fix-symbols-gitit: [ i686-linux, x86_64-darwin, x86_64-linux ] + fixed-point-vector-space: [ i686-linux, x86_64-darwin, x86_64-linux ] + fixed-point-vector: [ i686-linux, x86_64-darwin, x86_64-linux ] + fixed-point: [ i686-linux, x86_64-darwin, x86_64-linux ] + fixed-precision: [ i686-linux, x86_64-darwin, x86_64-linux ] + fixed-storable-array: [ i686-linux, x86_64-darwin, x86_64-linux ] + fixfile: [ i686-linux, x86_64-darwin, x86_64-linux ] + flexiwrap-smallcheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + flexiwrap: [ i686-linux, x86_64-darwin, x86_64-linux ] + flickr: [ i686-linux, x86_64-darwin, x86_64-linux ] + Flippi: [ i686-linux, x86_64-darwin, x86_64-linux ] + flite: [ i686-linux, x86_64-darwin, x86_64-linux ] + floating-bits: [ i686-linux, x86_64-darwin, x86_64-linux ] + flow2dot: [ i686-linux, x86_64-darwin, x86_64-linux ] + flowdock-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + flowdock-rest: [ i686-linux, x86_64-darwin, x86_64-linux ] + flower: [ i686-linux, x86_64-darwin, x86_64-linux ] + flowlocks-framework: [ i686-linux, x86_64-darwin, x86_64-linux ] + flowsim: [ i686-linux, x86_64-darwin, x86_64-linux ] + fltkhs-demos: [ i686-linux, x86_64-darwin, x86_64-linux ] + fltkhs-hello-world: [ i686-linux, x86_64-darwin, x86_64-linux ] + fluidsynth: [ x86_64-darwin ] + FM-SBLEX: [ i686-linux, x86_64-darwin, x86_64-linux ] + FModExRaw: [ i686-linux, x86_64-darwin, x86_64-linux ] + fold-debounce-conduit: [ x86_64-darwin ] + fold-debounce: [ x86_64-darwin ] + foldl-incremental: [ i686-linux, x86_64-darwin, x86_64-linux ] + folds-common: [ i686-linux, x86_64-darwin, x86_64-linux ] + folds: [ i686-linux, x86_64-linux ] + follower: [ i686-linux, x86_64-darwin, x86_64-linux ] + foma: [ i686-linux, x86_64-darwin, x86_64-linux ] + font-opengl-basic4x6: [ i686-linux, x86_64-darwin, x86_64-linux ] + foo: [ i686-linux, x86_64-darwin, x86_64-linux ] + for-free: [ i686-linux, x86_64-darwin, x86_64-linux ] + forbidden-fruit: [ i686-linux, x86_64-darwin, x86_64-linux ] + fordo: [ i686-linux, x86_64-darwin, x86_64-linux ] + formal: [ i686-linux, x86_64-darwin, x86_64-linux ] + FormalGrammars: [ i686-linux, x86_64-darwin, x86_64-linux ] + format-status: [ i686-linux, x86_64-darwin, x86_64-linux ] + format: [ i686-linux, x86_64-darwin, x86_64-linux ] + forml: [ i686-linux, x86_64-darwin, x86_64-linux ] + formlets-hsp: [ i686-linux, x86_64-darwin, x86_64-linux ] + formlets: [ i686-linux, x86_64-darwin, x86_64-linux ] + ForSyDe: [ i686-linux, x86_64-darwin, x86_64-linux ] + forth-hll: [ i686-linux, x86_64-darwin, x86_64-linux ] + foscam-sort: [ i686-linux, x86_64-darwin, x86_64-linux ] + Foster: [ i686-linux, x86_64-darwin, x86_64-linux ] + fpco-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + fpnla-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + FractalArt: [ i686-linux, x86_64-darwin, x86_64-linux ] + Fractaler: [ i686-linux, x86_64-linux, x86_64-darwin ] + frag: [ i686-linux, x86_64-darwin, x86_64-linux ] + franchise: [ i686-linux, x86_64-darwin, x86_64-linux ] + Frank: [ i686-linux, x86_64-darwin, x86_64-linux ] + free-game: [ i686-linux, x86_64-darwin, x86_64-linux ] + free-operational: [ i686-linux, x86_64-darwin, x86_64-linux ] + free-theorems-counterexamples: [ i686-linux, x86_64-darwin, x86_64-linux ] + free-theorems-seq-webui: [ i686-linux, x86_64-darwin, x86_64-linux ] + free-theorems-seq: [ i686-linux, x86_64-darwin, x86_64-linux ] + free-theorems-webui: [ i686-linux, x86_64-darwin, x86_64-linux ] + free-theorems: [ i686-linux, x86_64-darwin, x86_64-linux ] + freekick2: [ i686-linux, x86_64-linux, x86_64-darwin ] + freenect: [ x86_64-darwin ] + freer: [ i686-linux ] + freesect: [ i686-linux, x86_64-darwin, x86_64-linux ] + freesound: [ i686-linux, x86_64-darwin, x86_64-linux ] + FreeTypeGL: [ i686-linux, x86_64-darwin, x86_64-linux ] + friday-juicypixels: [ i686-linux, x86_64-darwin, x86_64-linux ] + frp-arduino: [ i686-linux, x86_64-darwin, x86_64-linux ] + frpnow-gloss: [ x86_64-darwin ] + frpnow-gtk: [ x86_64-darwin ] + fs-events: [ i686-linux, x86_64-darwin, x86_64-linux ] + fsmActions: [ i686-linux, x86_64-darwin, x86_64-linux ] + ftdi: [ i686-linux, x86_64-darwin, x86_64-linux ] + FTGL-bytestring: [ x86_64-darwin ] + FTGL: [ x86_64-darwin ] + ftp-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + ftshell: [ i686-linux, x86_64-darwin, x86_64-linux ] + full-sessions: [ i686-linux, x86_64-darwin, x86_64-linux ] + full-text-search: [ i686-linux, x86_64-darwin, x86_64-linux ] + fullstop: [ i686-linux, x86_64-darwin, x86_64-linux ] + funbot-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + funbot-git-hook: [ i686-linux, x86_64-darwin, x86_64-linux ] + funbot: [ i686-linux, x86_64-darwin, x86_64-linux ] + function-combine: [ i686-linux, x86_64-darwin, x86_64-linux ] + functional-arrow: [ i686-linux, x86_64-darwin, x86_64-linux ] + functorm: [ i686-linux, x86_64-darwin, x86_64-linux ] + FunGEn: [ x86_64-darwin ] + funion: [ i686-linux, x86_64-linux, x86_64-darwin ] + funsat: [ i686-linux, x86_64-darwin, x86_64-linux ] + future: [ i686-linux, x86_64-darwin, x86_64-linux ] + fuzzytime: [ i686-linux, x86_64-darwin, x86_64-linux ] + fwgl-glfw: [ i686-linux, x86_64-darwin ] + fwgl: [ i686-linux ] + g-npm: [ i686-linux, x86_64-darwin, x86_64-linux ] + gact: [ i686-linux, x86_64-darwin, x86_64-linux ] + gameclock: [ i686-linux, x86_64-darwin, x86_64-linux ] + Gamgine: [ i686-linux, x86_64-darwin, x86_64-linux ] + Ganymede: [ i686-linux, x86_64-darwin, x86_64-linux ] + gbu: [ i686-linux, x86_64-darwin, x86_64-linux ] + gc-monitoring-wai: [ i686-linux, x86_64-darwin, x86_64-linux ] + gdiff-ig: [ i686-linux, x86_64-darwin, x86_64-linux ] + gdiff-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + gearbox: [ i686-linux, x86_64-darwin, x86_64-linux ] + GeBoP: [ x86_64-darwin ] + geek-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + geek: [ i686-linux, x86_64-darwin, x86_64-linux ] + gelatin: [ i686-linux, x86_64-darwin, x86_64-linux ] + gemstone: [ i686-linux, x86_64-linux, x86_64-darwin ] + gencheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + gender: [ i686-linux, x86_64-darwin, x86_64-linux ] + genders: [ i686-linux, x86_64-darwin, x86_64-linux ] + general-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] + GeneralTicTacToe: [ i686-linux, x86_64-darwin, x86_64-linux ] + generators: [ i686-linux, x86_64-darwin, x86_64-linux ] + generic-church: [ i686-linux, x86_64-darwin, x86_64-linux ] + generic-storable: [ i686-linux, x86_64-darwin, x86_64-linux ] + generic-xml: [ i686-linux, x86_64-darwin, x86_64-linux ] + genericserialize: [ i686-linux, x86_64-darwin, x86_64-linux ] + genetics: [ i686-linux, x86_64-darwin, x86_64-linux ] + geni-gui: [ i686-linux, x86_64-darwin, x86_64-linux ] + geni-util: [ i686-linux, x86_64-darwin, x86_64-linux ] + GenI: [ i686-linux, x86_64-darwin, x86_64-linux ] + geniconvert: [ i686-linux, x86_64-darwin, x86_64-linux ] + geniserver: [ i686-linux, x86_64-darwin, x86_64-linux ] + GenSmsPdu: [ i686-linux, x86_64-darwin, x86_64-linux ] + GenussFold: [ i686-linux, x86_64-darwin, x86_64-linux ] + geo-resolver: [ i686-linux, x86_64-linux ] + GeocoderOpenCage: [ i686-linux, x86_64-darwin, x86_64-linux ] + geoip2: [ i686-linux ] + GeoIp: [ i686-linux, x86_64-darwin, x86_64-linux ] + geojson: [ x86_64-darwin ] + geom2d: [ i686-linux, x86_64-darwin ] + GeomPredicates-SSE: [ i686-linux, x86_64-darwin, x86_64-linux ] + getemx: [ i686-linux, x86_64-darwin, x86_64-linux ] + getflag: [ i686-linux, x86_64-darwin, x86_64-linux ] + ggtsTC: [ i686-linux, x86_64-darwin, x86_64-linux ] + ghc-dup: [ i686-linux, x86_64-darwin, x86_64-linux ] + ghc-events-parallel: [ i686-linux, x86_64-darwin, x86_64-linux ] + ghc-exactprint: [ x86_64-darwin ] + ghc-pkg-autofix: [ i686-linux, x86_64-darwin, x86_64-linux ] + ghc-syb: [ i686-linux, x86_64-darwin, x86_64-linux ] + ghc-vis: [ x86_64-darwin ] + ghci-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] + ghci-haskeline: [ i686-linux, x86_64-darwin, x86_64-linux ] + ghcjs-dom-hello: [ x86_64-darwin ] + ghcjs-dom: [ x86_64-darwin ] + ghclive: [ i686-linux, x86_64-darwin, x86_64-linux ] + ght: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-atk: [ i686-linux, x86_64-darwin ] + gi-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-gdk: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-gdkpixbuf: [ i686-linux, x86_64-darwin ] + gi-gio: [ i686-linux ] + gi-girepository: [ i686-linux, x86_64-darwin ] + gi-glib: [ i686-linux ] + gi-gobject: [ i686-linux ] + gi-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-javascriptcore: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-notify: [ i686-linux, x86_64-darwin ] + gi-pango: [ i686-linux, x86_64-darwin ] + gi-poppler: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-soup: [ i686-linux, x86_64-darwin ] + gi-vte: [ i686-linux, x86_64-linux, x86_64-darwin ] + gi-webkit2: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-webkit2webextension: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-webkit: [ i686-linux, x86_64-linux, x86_64-darwin ] + Gifcurry: [ x86_64-darwin ] + gist: [ i686-linux, x86_64-darwin, x86_64-linux ] + git-all: [ i686-linux, x86_64-darwin, x86_64-linux ] + git-checklist: [ i686-linux, x86_64-darwin, x86_64-linux ] + git-date: [ i686-linux, x86_64-darwin, x86_64-linux ] + git-gpush: [ i686-linux, x86_64-darwin, x86_64-linux ] + git-repair: [ i686-linux, x86_64-darwin, x86_64-linux ] + gitdo: [ i686-linux, x86_64-darwin, x86_64-linux ] + github-backup: [ i686-linux, x86_64-darwin, x86_64-linux ] + github-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + gitlib-cross: [ i686-linux, x86_64-darwin, x86_64-linux ] + gitlib-s3: [ i686-linux, x86_64-darwin, x86_64-linux ] + gitlib-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + gl-capture: [ x86_64-darwin ] + gl: [ x86_64-darwin ] + glade: [ i686-linux, x86_64-darwin, x86_64-linux ] + gladexml-accessor: [ i686-linux, x86_64-darwin, x86_64-linux ] + glapp: [ x86_64-darwin ] + GLFW-b-demo: [ x86_64-darwin ] + GLFW-b: [ x86_64-darwin ] + GLFW-OGL: [ i686-linux, x86_64-darwin, x86_64-linux ] + GLFW-task: [ x86_64-darwin ] + GLFW: [ x86_64-darwin ] + GLHUI: [ x86_64-darwin ] + glicko: [ i686-linux, x86_64-darwin, x86_64-linux ] + glider-nlp: [ i686-linux, x86_64-darwin, x86_64-linux ] + GLMatrix: [ i686-linux, x86_64-darwin, x86_64-linux ] + global: [ i686-linux, x86_64-darwin, x86_64-linux ] + glome-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + GlomeTrace: [ i686-linux, x86_64-darwin, x86_64-linux ] + GlomeView: [ i686-linux, x86_64-darwin, x86_64-linux ] + gloss-accelerate: [ x86_64-darwin ] + gloss-algorithms: [ x86_64-darwin ] + gloss-banana: [ i686-linux, x86_64-darwin, x86_64-linux ] + gloss-devil: [ i686-linux, x86_64-darwin, x86_64-linux ] + gloss-examples: [ x86_64-darwin ] + gloss-game: [ x86_64-darwin ] + gloss-juicy: [ x86_64-darwin ] + gloss-raster: [ x86_64-darwin ] + gloss-rendering: [ x86_64-darwin ] + gloss-sodium: [ x86_64-darwin ] + gloss: [ x86_64-darwin ] + GLURaw: [ x86_64-darwin ] + GLUT: [ x86_64-darwin ] + GLUtil: [ i686-linux, x86_64-darwin, x86_64-linux ] + gluturtle: [ x86_64-darwin ] + gmap: [ i686-linux, x86_64-darwin, x86_64-linux ] + gmndl: [ i686-linux, x86_64-linux, x86_64-darwin ] + gnome-desktop: [ i686-linux, x86_64-darwin, x86_64-linux ] + gnome-keyring: [ i686-linux, x86_64-linux, x86_64-darwin ] + gnomevfs: [ i686-linux, x86_64-linux, x86_64-darwin ] + gnss-converters: [ i686-linux, x86_64-darwin, x86_64-linux ] + goa: [ i686-linux, x86_64-darwin, x86_64-linux ] + goal-core: [ x86_64-darwin ] + goal-geometry: [ x86_64-darwin ] + goal-probability: [ x86_64-darwin ] + goal-simulation: [ i686-linux, x86_64-darwin, x86_64-linux ] + gofer-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] + gooey: [ i686-linux, x86_64-darwin, x86_64-linux ] + google-html5-slide: [ i686-linux, x86_64-darwin, x86_64-linux ] + google-mail-filters: [ i686-linux, x86_64-darwin, x86_64-linux ] + google-search: [ i686-linux, x86_64-darwin, x86_64-linux ] + GoogleDirections: [ i686-linux, x86_64-darwin, x86_64-linux ] + googleplus: [ i686-linux, x86_64-darwin, x86_64-linux ] + GoogleSB: [ i686-linux, x86_64-darwin, x86_64-linux ] + GoogleTranslate: [ i686-linux, x86_64-darwin, x86_64-linux ] + gopherbot: [ i686-linux, x86_64-darwin, x86_64-linux ] + gore-and-ash-demo: [ i686-linux, x86_64-darwin, x86_64-linux ] + gore-and-ash-glfw: [ x86_64-darwin ] + gpah: [ i686-linux, x86_64-darwin, x86_64-linux ] + GPipe-Collada: [ i686-linux, x86_64-darwin, x86_64-linux ] + GPipe-Examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + GPipe-GLFW: [ x86_64-darwin ] + GPipe-TextureLoad: [ i686-linux, x86_64-darwin, x86_64-linux ] + GPipe: [ x86_64-darwin ] + gps2htmlReport: [ i686-linux, x86_64-darwin, x86_64-linux ] + gps: [ i686-linux, x86_64-darwin, x86_64-linux ] + gpx-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + GPX: [ i686-linux, x86_64-darwin, x86_64-linux ] + grammar-combinators: [ i686-linux, x86_64-darwin, x86_64-linux ] + GrammarProducts: [ i686-linux, x86_64-darwin, x86_64-linux ] + grapefruit-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + grapefruit-frp: [ i686-linux, x86_64-darwin, x86_64-linux ] + grapefruit-records: [ i686-linux, x86_64-darwin, x86_64-linux ] + grapefruit-ui-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + grapefruit-ui: [ i686-linux, x86_64-darwin, x86_64-linux ] + graph-rewriting-cl: [ i686-linux, x86_64-darwin, x86_64-linux ] + graph-rewriting-gl: [ x86_64-darwin ] + graph-rewriting-lambdascope: [ x86_64-darwin ] + graph-rewriting-ski: [ x86_64-darwin ] + graph-rewriting-trs: [ x86_64-darwin ] + graph-rewriting-ww: [ x86_64-darwin ] + graph-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + Graph500: [ i686-linux, x86_64-darwin, x86_64-linux ] + Graphalyze: [ i686-linux, x86_64-darwin, x86_64-linux ] + graphbuilder: [ i686-linux, x86_64-darwin, x86_64-linux ] + GraphHammer-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + GraphHammer: [ i686-linux, x86_64-darwin, x86_64-linux ] + graphics-drawingcombinators: [ x86_64-darwin ] + graphics-formats-collada: [ i686-linux, x86_64-darwin, x86_64-linux ] + graphicsFormats: [ i686-linux, x86_64-darwin, x86_64-linux ] + graphicstools: [ i686-linux, x86_64-darwin, x86_64-linux ] + graphtype: [ i686-linux, x86_64-darwin, x86_64-linux ] + graylog: [ i686-linux, x86_64-darwin, x86_64-linux ] + greencard-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + greencard: [ i686-linux, x86_64-darwin, x86_64-linux ] + greg-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + gremlin-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + Grempa: [ i686-linux, x86_64-darwin, x86_64-linux ] + gridfs: [ i686-linux, x86_64-darwin, x86_64-linux ] + gridland: [ x86_64-darwin ] + grm: [ i686-linux, x86_64-darwin, x86_64-linux ] + Grow: [ i686-linux, x86_64-darwin, x86_64-linux ] + GrowlNotify: [ i686-linux, x86_64-darwin, x86_64-linux ] + gruff-examples: [ i686-linux, x86_64-linux, x86_64-darwin ] + gruff: [ i686-linux, x86_64-linux, x86_64-darwin ] + gsl-random-fu: [ i686-linux, x86_64-darwin, x86_64-linux ] + gsl-random: [ i686-linux, x86_64-darwin, x86_64-linux ] + gsmenu: [ i686-linux, x86_64-darwin, x86_64-linux ] + gstreamer: [ i686-linux, x86_64-darwin, x86_64-linux ] + GTALib: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtfs: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk-helpers: [ x86_64-darwin ] + gtk-jsinput: [ x86_64-darwin ] + gtk-largeTreeStore: [ x86_64-darwin ] + gtk-mac-integration: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk-serialized-event: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk-simple-list-view: [ x86_64-darwin ] + gtk-toggle-button-list: [ x86_64-darwin ] + gtk-toy: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk-traymanager: [ x86_64-darwin ] + gtk2hs-cast-glade: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk2hs-cast-gnomevfs: [ i686-linux, x86_64-linux, x86_64-darwin ] + gtk2hs-cast-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk2hs-cast-gtkglext: [ i686-linux, x86_64-linux, x86_64-darwin ] + gtk2hs-cast-gtksourceview2: [ x86_64-darwin ] + gtk2hs-hello: [ x86_64-darwin ] + gtk2hs-rpn: [ i686-linux, x86_64-darwin, x86_64-linux ] + Gtk2hsGenerics: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk3-mac-integration: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk3: [ x86_64-darwin ] + gtk: [ x86_64-darwin ] + gtkglext: [ i686-linux, x86_64-linux, x86_64-darwin ] + GtkGLTV: [ i686-linux, x86_64-linux, x86_64-darwin ] + gtkimageview: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtkrsync: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtksourceview2: [ x86_64-darwin ] + gtksourceview3: [ x86_64-darwin ] + GtkTV: [ x86_64-darwin ] + guess-combinator: [ i686-linux, x86_64-darwin, x86_64-linux ] + GuiHaskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + GuiTV: [ i686-linux, x86_64-darwin, x86_64-linux ] + gulcii: [ x86_64-darwin ] + h-booru: [ i686-linux, x86_64-darwin, x86_64-linux ] + h-gpgme: [ i686-linux, x86_64-darwin, x86_64-linux ] + H: [ i686-linux, x86_64-darwin ] + haar: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hach: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-contrib-press: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-frontend-happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-handler-epoll: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-handler-evhttp: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-handler-fastcgi: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-handler-happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-handler-hyena: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-handler-kibro: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-handler-simpleserver: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-middleware-cleanpath: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-middleware-clientsession: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-middleware-jsonp: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack2-handler-happstack-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack2-handler-mongrel2-http: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack2-handler-warp: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack2-interface-wai: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackage-proxy: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackage-repo-tool: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackage-security-HTTP: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackage-security: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackage-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackage-sparks: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackage2hwn: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackage2twitter: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackernews: [ i686-linux, x86_64-darwin, x86_64-linux ] + HackMail: [ i686-linux, x86_64-darwin, x86_64-linux ] + hactor: [ i686-linux, x86_64-darwin, x86_64-linux ] + haddock-leksah: [ i686-linux, x86_64-darwin, x86_64-linux ] + haggis: [ i686-linux, x86_64-darwin, x86_64-linux ] + Haggressive: [ i686-linux, x86_64-darwin, x86_64-linux ] + haiji: [ i686-linux, x86_64-darwin, x86_64-linux ] + hairy: [ i686-linux, x86_64-darwin, x86_64-linux ] + hakaru: [ i686-linux, x86_64-darwin, x86_64-linux ] + hakismet: [ i686-linux, x86_64-darwin, x86_64-linux ] + hakyll-agda: [ i686-linux, x86_64-darwin, x86_64-linux ] + hakyll-blaze-templates: [ i686-linux, x86_64-darwin, x86_64-linux ] + hakyll-contrib-links: [ i686-linux, x86_64-darwin, x86_64-linux ] + hakyll-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] + hakyll-convert: [ i686-linux, x86_64-darwin, x86_64-linux ] + hakyll-R: [ i686-linux, x86_64-darwin, x86_64-linux ] + halberd: [ i686-linux, x86_64-darwin, x86_64-linux ] + HaLeX: [ i686-linux, x86_64-darwin, x86_64-linux ] + halfs: [ i686-linux, x86_64-linux, x86_64-darwin ] + halipeto: [ i686-linux, x86_64-darwin, x86_64-linux ] + halma: [ x86_64-darwin ] + hamid: [ x86_64-darwin ] + hampp: [ i686-linux, x86_64-darwin, x86_64-linux ] + hamtmap: [ i686-linux, x86_64-darwin, x86_64-linux ] + hamusic: [ i686-linux, x86_64-darwin, x86_64-linux ] + handa-opengl: [ x86_64-darwin ] + handsy: [ i686-linux, x86_64-darwin, x86_64-linux ] + hannahci: [ i686-linux, x86_64-darwin, x86_64-linux ] + haphviz: [ i686-linux, x86_64-darwin, x86_64-linux ] + happindicator3: [ i686-linux, x86_64-darwin, x86_64-linux ] + happindicator: [ i686-linux, x86_64-darwin, x86_64-linux ] + happraise: [ i686-linux, x86_64-darwin, x86_64-linux ] + HAppS-Data: [ i686-linux, x86_64-darwin, x86_64-linux ] + happs-hsp-template: [ i686-linux, x86_64-darwin, x86_64-linux ] + happs-hsp: [ i686-linux, x86_64-darwin, x86_64-linux ] + HAppS-IxSet: [ i686-linux, x86_64-darwin, x86_64-linux ] + HAppS-Server: [ i686-linux, x86_64-darwin, x86_64-linux ] + HAppS-State: [ i686-linux, x86_64-darwin, x86_64-linux ] + happs-tutorial: [ i686-linux, x86_64-darwin, x86_64-linux ] + HAppS-Util: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-auth: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-data: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-dlg: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-facebook: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-fay: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-heist: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-helpers: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-ixset: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-monad-peel: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-state: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-static-routing: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-util: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-yui: [ i686-linux, x86_64-darwin, x86_64-linux ] + happybara-webkit-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + happybara-webkit: [ i686-linux, x86_64-darwin, x86_64-linux ] + happybara: [ i686-linux, x86_64-darwin, x86_64-linux ] + harchive: [ i686-linux, x86_64-darwin, x86_64-linux ] + hardware-edsl: [ i686-linux, x86_64-darwin, x86_64-linux ] + HaRe: [ x86_64-darwin ] + hark: [ i686-linux, x86_64-darwin, x86_64-linux ] + HARM: [ i686-linux, x86_64-darwin, x86_64-linux ] + harmony: [ i686-linux, x86_64-darwin, x86_64-linux ] + HarmTrace-Base: [ i686-linux, x86_64-darwin, x86_64-linux ] + HarmTrace: [ i686-linux, x86_64-darwin, x86_64-linux ] + haroonga-httpd: [ i686-linux, x86_64-darwin, x86_64-linux ] + haroonga: [ i686-linux, x86_64-darwin, x86_64-linux ] + has-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + has: [ i686-linux, x86_64-darwin, x86_64-linux ] + hascal: [ i686-linux, x86_64-darwin, x86_64-linux ] + hascat-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + hascat-setup: [ i686-linux, x86_64-darwin, x86_64-linux ] + hascat-system: [ i686-linux, x86_64-darwin, x86_64-linux ] + hascat: [ i686-linux, x86_64-darwin, x86_64-linux ] + Haschoo: [ i686-linux, x86_64-darwin, x86_64-linux ] + HasGP: [ i686-linux, x86_64-darwin, x86_64-linux ] + hash: [ i686-linux, x86_64-darwin, x86_64-linux ] + hashable-generics: [ i686-linux, x86_64-darwin, x86_64-linux ] + hashed-storage: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hashell: [ i686-linux, x86_64-darwin, x86_64-linux ] + hashids: [ i686-linux, x86_64-darwin, x86_64-linux ] + hasim: [ i686-linux, x86_64-darwin, x86_64-linux ] + hask-home: [ i686-linux, x86_64-darwin, x86_64-linux ] + hask: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskakafka: [ x86_64-darwin ] + haskanoid: [ i686-linux, x86_64-darwin ] + haskarrow: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskeem: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskeline-class: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-aliyun: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-awk: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-brainfuck: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-cnc: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-course-preludes: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-formatter: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-ftp: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-gi-base: [ i686-linux ] + haskell-gi: [ i686-linux, x86_64-darwin ] + haskell-mpfr: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-names: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-openflow: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-pdf-presenter: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-platform-test: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-plot: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-reflect: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-rules: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-src-meta-mwotton: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-token-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-tor: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-type-exts: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-tyrant: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-xmpp: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell2010: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell98: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-connect-hdbc-catchio-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-connect-hdbc-catchio-tf: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-connect-hdbc-catchio-transformers: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-connect-hdbc-lifted: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-connect-hdbc: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-dynamic: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-hdbc-mysql: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-hsql-mysql: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-hsql-odbc: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-hsql-postgresql: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-hsql-sqlite3: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-hsql: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-wx: [ i686-linux, x86_64-darwin, x86_64-linux ] + HaskellLM: [ i686-linux, x86_64-darwin, x86_64-linux ] + HaskellNN: [ i686-linux, x86_64-darwin, x86_64-linux ] + Haskelloids: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskellscrabble: [ i686-linux, x86_64-darwin, x86_64-linux ] + HaskellTorrent: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskgame: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskheap: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskhol-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoin-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoin-crypto: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoin-node: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoin-protocol: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoin-script: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoin-util: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoin-wallet: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoin: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoon-httpspec: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoon-salvia: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoon: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskore-realtime: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskore-supercollider: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskore-synthesizer: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskore: [ i686-linux, x86_64-darwin, x86_64-linux ] + haslo: [ i686-linux, x86_64-darwin, x86_64-linux ] + hasloGUI: [ i686-linux, x86_64-darwin, x86_64-linux ] + hasparql-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + hasql-postgres-options: [ i686-linux, x86_64-darwin, x86_64-linux ] + hasql-postgres: [ i686-linux, x86_64-darwin, x86_64-linux ] + haste-perch: [ i686-linux, x86_64-darwin, x86_64-linux ] + hat: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hate: [ i686-linux, x86_64-darwin, x86_64-linux ] + hatex-guide: [ i686-linux, x86_64-darwin, x86_64-linux ] + HaTeX-meta: [ i686-linux, x86_64-darwin, x86_64-linux ] + haverer: [ i686-linux, x86_64-darwin, x86_64-linux ] + HaVSA: [ i686-linux, x86_64-darwin, x86_64-linux ] + hawitter: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hawk: [ i686-linux, x86_64-darwin, x86_64-linux ] + haxparse: [ i686-linux, x86_64-darwin, x86_64-linux ] + hayland: [ i686-linux, x86_64-linux, x86_64-darwin ] + hayoo-cli: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hayoo: [ i686-linux, x86_64-darwin, x86_64-linux ] + hback: [ i686-linux, x86_64-darwin, x86_64-linux ] + hbayes: [ i686-linux, x86_64-darwin, x86_64-linux ] + hbb: [ i686-linux, x86_64-darwin, x86_64-linux ] + hBDD-CMUBDD: [ i686-linux, x86_64-darwin, x86_64-linux ] + hBDD-CUDD: [ i686-linux, x86_64-linux, x86_64-darwin ] + hbeat: [ i686-linux, x86_64-linux, x86_64-darwin ] + hblas: [ i686-linux, x86_64-linux, x86_64-darwin ] + hblock: [ i686-linux, x86_64-darwin, x86_64-linux ] + hbro: [ i686-linux, x86_64-linux, x86_64-darwin ] + hburg: [ i686-linux, x86_64-darwin, x86_64-linux ] + HCard: [ i686-linux, x86_64-darwin, x86_64-linux ] + hcheat: [ i686-linux, x86_64-darwin, x86_64-linux ] + hchesslib: [ i686-linux, x86_64-darwin, x86_64-linux ] + HCL: [ i686-linux, x86_64-darwin, x86_64-linux ] + hcron: [ i686-linux, x86_64-darwin, x86_64-linux ] + hCsound: [ i686-linux, x86_64-darwin, x86_64-linux ] + hcube: [ i686-linux, x86_64-darwin, x86_64-linux ] + hcwiid: [ x86_64-darwin ] + hdaemonize-buildfix: [ i686-linux, x86_64-darwin, x86_64-linux ] + HDBC-mysql: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdbi-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdbi-postgresql: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdbi-sqlite: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdbi-tests: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdbi: [ i686-linux, x86_64-darwin, x86_64-linux ] + hDFA: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdigest: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdirect: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdis86: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdiscount: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdm: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdph-closure: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdph: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdr-histogram: [ i686-linux ] + HDRUtils: [ i686-linux, x86_64-darwin, x86_64-linux ] + hecc: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hedi: [ i686-linux, x86_64-darwin, x86_64-linux ] + hedn: [ i686-linux, x86_64-darwin, x86_64-linux ] + heist-aeson: [ i686-linux, x86_64-darwin, x86_64-linux ] + helics-wai: [ i686-linux, x86_64-linux ] + helics: [ i686-linux, x86_64-linux ] + helium: [ i686-linux, x86_64-darwin, x86_64-linux ] + hell: [ i686-linux, x86_64-darwin, x86_64-linux ] + hellage: [ i686-linux, x86_64-darwin, x86_64-linux ] + hellnet: [ i686-linux, x86_64-darwin, x86_64-linux ] + helm: [ i686-linux, x86_64-darwin, x86_64-linux ] + hemkay: [ i686-linux, x86_64-darwin, x86_64-linux ] + hemokit: [ x86_64-darwin ] + hen: [ i686-linux, x86_64-darwin, x86_64-linux ] + henet: [ i686-linux, x86_64-darwin, x86_64-linux ] + hepevt: [ i686-linux, x86_64-darwin, x86_64-linux ] + her-lexer-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + her-lexer: [ i686-linux, x86_64-darwin, x86_64-linux ] + HERA: [ i686-linux, x86_64-darwin, x86_64-linux ] + herbalizer: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hermes: [ i686-linux, x86_64-darwin, x86_64-linux ] + hermit-syb: [ i686-linux, x86_64-darwin, x86_64-linux ] + hermit: [ i686-linux, x86_64-darwin, x86_64-linux ] + herringbone-embed: [ i686-linux, x86_64-darwin, x86_64-linux ] + herringbone-wai: [ i686-linux, x86_64-darwin, x86_64-linux ] + herringbone: [ i686-linux, x86_64-darwin, x86_64-linux ] + hesh: [ i686-linux, x86_64-darwin, x86_64-linux ] + hesql: [ i686-linux, x86_64-darwin, x86_64-linux ] + hetris: [ i686-linux, x86_64-darwin, x86_64-linux ] + heukarya: [ i686-linux, x86_64-darwin, x86_64-linux ] + hevolisa-dph: [ i686-linux, x86_64-darwin, x86_64-linux ] + hevolisa: [ i686-linux, x86_64-darwin, x86_64-linux ] + hexpat-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] + hexpat-pickle-generic: [ i686-linux, x86_64-darwin, x86_64-linux ] + hexquote: [ i686-linux, x86_64-darwin, x86_64-linux ] + hF2: [ i686-linux, x86_64-darwin, x86_64-linux ] + hfann: [ i686-linux, x86_64-darwin, x86_64-linux ] + hfd: [ i686-linux, x86_64-darwin, x86_64-linux ] + hfiar: [ i686-linux, x86_64-darwin, x86_64-linux ] + hfmt: [ i686-linux, x86_64-darwin, x86_64-linux ] + hfoil: [ i686-linux, x86_64-darwin, x86_64-linux ] + hfractal: [ i686-linux, x86_64-darwin, x86_64-linux ] + HFrequencyQueue: [ i686-linux, x86_64-darwin, x86_64-linux ] + HFuse: [ x86_64-darwin ] + hfusion: [ i686-linux, x86_64-darwin, x86_64-linux ] + hg-buildpackage: [ i686-linux, x86_64-darwin, x86_64-linux ] + hgalib: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-API: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-Audio: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-Bullet-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-CAudio-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-CEGUI-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-Common: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-Data: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-Enet-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-Graphics3D: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-GUI: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-InputSystem: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-Network: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-Ogre-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-OIS-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-SDL2-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-SFML-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-WinEvent: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-Wire: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D: [ i686-linux, x86_64-darwin, x86_64-linux ] + hgen: [ i686-linux, x86_64-darwin, x86_64-linux ] + hgeometric: [ i686-linux, x86_64-darwin, x86_64-linux ] + hgeometry: [ i686-linux, x86_64-darwin, x86_64-linux ] + hgithub: [ i686-linux, x86_64-darwin, x86_64-linux ] + hgom: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGraphStorage: [ i686-linux, x86_64-darwin, x86_64-linux ] + hgrib: [ i686-linux, x86_64-darwin, x86_64-linux ] + hharp: [ i686-linux, x86_64-darwin, x86_64-linux ] + HHDL: [ i686-linux, x86_64-darwin, x86_64-linux ] + hiccup: [ i686-linux, x86_64-darwin, x86_64-linux ] + hichi: [ i686-linux, x86_64-darwin, x86_64-linux ] + hid: [ x86_64-darwin ] + hidapi: [ x86_64-darwin ] + hieraclus: [ i686-linux, x86_64-darwin, x86_64-linux ] + hierarchical-clustering-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] + hiernotify: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hieroglyph: [ i686-linux, x86_64-linux, x86_64-darwin ] + HiggsSet: [ i686-linux, x86_64-darwin, x86_64-linux ] + higher-leveldb: [ x86_64-darwin ] + higherorder: [ i686-linux, x86_64-darwin, x86_64-linux ] + highjson: [ i686-linux ] + highWaterMark: [ i686-linux, x86_64-darwin, x86_64-linux ] + himg: [ i686-linux, x86_64-darwin, x86_64-linux ] + himpy: [ i686-linux, x86_64-darwin, x86_64-linux ] + hinduce-classifier-decisiontree: [ i686-linux, x86_64-darwin, x86_64-linux ] + hinduce-classifier: [ i686-linux, x86_64-darwin, x86_64-linux ] + hinduce-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + hinvaders: [ i686-linux, x86_64-darwin, x86_64-linux ] + hinze-streams: [ i686-linux, x86_64-darwin, x86_64-linux ] + hip: [ i686-linux, x86_64-darwin, x86_64-linux ] + hipchat-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + hipe: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hipmunk: [ x86_64-darwin ] + HipmunkPlayground: [ x86_64-darwin ] + hircules: [ i686-linux, x86_64-darwin, x86_64-linux ] + hirt: [ i686-linux, x86_64-darwin, x86_64-linux ] + hissmetrics: [ i686-linux, x86_64-darwin, x86_64-linux ] + hist-pl-fusion: [ i686-linux, x86_64-darwin, x86_64-linux ] + hist-pl-lmf: [ i686-linux, x86_64-darwin, x86_64-linux ] + hist-pl: [ i686-linux, x86_64-darwin, x86_64-linux ] + historian: [ i686-linux, x86_64-darwin, x86_64-linux ] + hjs: [ i686-linux, x86_64-darwin, x86_64-linux ] + hjsonschema: [ i686-linux, x86_64-darwin, x86_64-linux ] + HJVM: [ i686-linux, x86_64-darwin, x86_64-linux ] + hlbfgsb: [ i686-linux, x86_64-darwin, x86_64-linux ] + hlcm: [ i686-linux, x86_64-darwin, x86_64-linux ] + HLearn-algebra: [ i686-linux, x86_64-darwin, x86_64-linux ] + HLearn-approximation: [ i686-linux, x86_64-darwin, x86_64-linux ] + HLearn-classification: [ i686-linux, x86_64-darwin, x86_64-linux ] + HLearn-datastructures: [ i686-linux, x86_64-darwin, x86_64-linux ] + HLearn-distributions: [ i686-linux, x86_64-darwin, x86_64-linux ] + hledger-chart: [ i686-linux, x86_64-darwin, x86_64-linux ] + hledger-vty: [ i686-linux, x86_64-darwin, x86_64-linux ] + hlibBladeRF: [ x86_64-darwin ] + hlibev: [ i686-linux, x86_64-darwin, x86_64-linux ] + hlibfam: [ i686-linux, x86_64-linux ] + HLogger: [ i686-linux, x86_64-darwin, x86_64-linux ] + hly: [ i686-linux, x86_64-darwin, x86_64-linux ] + HMap: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmark: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmarkup: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmatrix-banded: [ i686-linux, x86_64-linux, x86_64-darwin ] + hmatrix-mmap: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmatrix-nipals: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmatrix-quadprogpp: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmatrix-repa: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmatrix-special: [ i686-linux, x86_64-linux ] + hmatrix-static: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmatrix-svdlibc: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmatrix-syntax: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmeap-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmeap: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmenu: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmidi: [ x86_64-darwin ] + hmk: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmm-hmatrix: [ i686-linux, x86_64-darwin, x86_64-linux ] + HMM: [ i686-linux, x86_64-darwin, x86_64-linux ] + hMollom: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmp3: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hmpf: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmpfr: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmumps: [ i686-linux, x86_64-darwin, x86_64-linux ] + hnetcdf: [ i686-linux, x86_64-darwin, x86_64-linux ] + HNM: [ i686-linux, x86_64-darwin, x86_64-linux ] + hnn: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoauth: [ i686-linux, x86_64-darwin, x86_64-linux ] + hob: [ i686-linux, x86_64-linux, x86_64-darwin ] + hobbes: [ i686-linux, x86_64-darwin, x86_64-linux ] + hobbits: [ i686-linux, x86_64-darwin, x86_64-linux ] + HODE: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hoed: [ i686-linux, x86_64-darwin, x86_64-linux ] + hofix-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] + hog: [ i686-linux, x86_64-darwin, x86_64-linux ] + hogg: [ i686-linux, x86_64-darwin, x86_64-linux ] + hogre-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + hogre: [ i686-linux, x86_64-darwin, x86_64-linux ] + hois: [ i686-linux, x86_64-darwin, x86_64-linux ] + hole: [ i686-linux, x86_64-darwin, x86_64-linux ] + Holumbus-Distribution: [ i686-linux, x86_64-darwin, x86_64-linux ] + Holumbus-MapReduce: [ i686-linux, x86_64-darwin, x86_64-linux ] + Holumbus-Searchengine: [ i686-linux, x86_64-darwin, x86_64-linux ] + Holumbus-Storage: [ i686-linux, x86_64-darwin, x86_64-linux ] + homeomorphic: [ i686-linux, x86_64-darwin, x86_64-linux ] + hommage: [ i686-linux, x86_64-darwin, x86_64-linux ] + homplexity: [ i686-linux, x86_64-darwin, x86_64-linux ] + HongoDB: [ i686-linux, x86_64-darwin, x86_64-linux ] + honi: [ i686-linux, x86_64-linux, x86_64-darwin ] + honk: [ x86_64-darwin ] + hood-off: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoodie: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoodle-builder: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoodle-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoodle-extra: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoodle-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoodle-publish: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoodle-render: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoodle-types: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoodle: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoovie: [ i686-linux, x86_64-darwin, x86_64-linux ] + hopencc: [ i686-linux, x86_64-darwin, x86_64-linux ] + hopencl: [ i686-linux, x86_64-darwin, x86_64-linux ] + HOpenCV: [ x86_64-darwin ] + hopfield: [ i686-linux, x86_64-darwin, x86_64-linux ] + hops: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoq: [ i686-linux, x86_64-darwin, x86_64-linux ] + hosts-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + hothasktags: [ i686-linux, x86_64-darwin, x86_64-linux ] + hourglass-fuzzy-parsing: [ i686-linux, x86_64-darwin, x86_64-linux ] + hp2any-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + hp2any-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] + hp2any-manager: [ i686-linux, x86_64-linux, x86_64-darwin ] + hpage: [ i686-linux, x86_64-darwin, x86_64-linux ] + hpapi: [ i686-linux, x86_64-darwin, x86_64-linux ] + hpaste: [ i686-linux, x86_64-darwin, x86_64-linux ] + hpasteit: [ i686-linux, x86_64-darwin, x86_64-linux ] + HPath: [ i686-linux, x86_64-darwin, x86_64-linux ] + hpc-tracer: [ i686-linux, x86_64-darwin, x86_64-linux ] + hPDB-examples: [ x86_64-darwin ] + HPi: [ i686-linux, x86_64-darwin, x86_64-linux ] + hplayground: [ i686-linux, x86_64-darwin, x86_64-linux ] + hplaylist: [ i686-linux, x86_64-darwin, x86_64-linux ] + HPlot: [ i686-linux, x86_64-darwin, x86_64-linux ] + hpodder: [ i686-linux, x86_64-darwin, x86_64-linux ] + HPong: [ i686-linux, x86_64-darwin, x86_64-linux ] + hpqtypes: [ x86_64-darwin ] + hprotoc-fork: [ i686-linux, x86_64-darwin, x86_64-linux ] + hps-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] + hpylos: [ i686-linux, x86_64-darwin, x86_64-linux ] + hquantlib: [ i686-linux, x86_64-linux ] + hR: [ i686-linux, x86_64-darwin, x86_64-linux ] + hranker: [ i686-linux, x86_64-darwin, x86_64-linux ] + HRay: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hricket: [ i686-linux, x86_64-darwin, x86_64-linux ] + HROOT-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + HROOT-graf: [ i686-linux, x86_64-darwin, x86_64-linux ] + HROOT-hist: [ i686-linux, x86_64-darwin, x86_64-linux ] + HROOT-io: [ i686-linux, x86_64-darwin, x86_64-linux ] + HROOT-math: [ i686-linux, x86_64-darwin, x86_64-linux ] + HROOT: [ i686-linux, x86_64-darwin, x86_64-linux ] + hruby: [ i686-linux ] + hs-carbon-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-cdb: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-dotnet: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-duktape: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-ffmpeg: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-fltk: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-gchart: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-gen-iface: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-GeoIP: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-java: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-json-rpc: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-logo: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-mesos: [ i686-linux, x86_64-linux, x86_64-darwin ] + hs-nombre-generator: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-pgms: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-pkpass: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-twitter: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-twitterarchiver: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-vcard: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs2bf: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs2dot: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hs2lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsbackup: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsbencher-fusion: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc2hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc3-auditor: [ x86_64-darwin ] + hsc3-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc3-data: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc3-forth: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc3-graphs: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc3-lang: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc3-lisp: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc3-plot: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc3-rec: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc3-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc3-sf-hsndfile: [ x86_64-darwin ] + hsc3-unsafe: [ i686-linux, x86_64-darwin, x86_64-linux ] + hscamwire: [ i686-linux, x86_64-darwin, x86_64-linux ] + hscassandra: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsclock: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsdip: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsdns-cache: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hsed: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsfacter: [ i686-linux, x86_64-darwin, x86_64-linux ] + HSFFIG: [ i686-linux, x86_64-darwin, x86_64-linux ] + HSGEP: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsgnutls-yj: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsgnutls: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsgsom: [ i686-linux, x86_64-darwin, x86_64-linux ] + HsHaruPDF: [ i686-linux, x86_64-darwin, x86_64-linux ] + HSHHelpers: [ i686-linux, x86_64-darwin, x86_64-linux ] + HsHyperEstraier: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsignal: [ x86_64-darwin ] + hSimpleDB: [ i686-linux, x86_64-darwin, x86_64-linux ] + HsJudy: [ i686-linux, x86_64-darwin, x86_64-linux ] + hskeleton: [ i686-linux, x86_64-darwin, x86_64-linux ] + hslackbuilder: [ i686-linux, x86_64-darwin, x86_64-linux ] + hslibsvm: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsmagick: [ i686-linux, x86_64-darwin, x86_64-linux ] + HSmarty: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hsmtlib: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsmtpclient: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsndfile-storablevector: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsndfile-vector: [ x86_64-darwin ] + hsndfile: [ x86_64-darwin ] + hsnock: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsns: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsntp: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsoptions: [ i686-linux, x86_64-darwin, x86_64-linux ] + HSoundFile: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsp-cgi: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsparql: [ i686-linux, x86_64-darwin, x86_64-linux ] + hspear: [ i686-linux, x86_64-darwin, x86_64-linux ] + hspec-experimental: [ i686-linux, x86_64-darwin, x86_64-linux ] + hspec-shouldbe: [ i686-linux, x86_64-darwin, x86_64-linux ] + HsPerl5: [ i686-linux, x86_64-darwin, x86_64-linux ] + hspread: [ i686-linux, x86_64-darwin, x86_64-linux ] + hspresent: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsprocess: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsql-mysql: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsqml-datamodel-vinyl: [ i686-linux, x86_64-linux, x86_64-darwin ] + hsqml-datamodel: [ i686-linux, x86_64-linux, x86_64-darwin ] + hsqml-demo-morris: [ i686-linux, x86_64-darwin ] + hsqml-demo-notes: [ x86_64-darwin ] + hsqml-demo-samples: [ i686-linux, x86_64-linux, x86_64-darwin ] + hsqml-morris: [ i686-linux, x86_64-linux, x86_64-darwin ] + hsqml: [ x86_64-darwin ] + hsseccomp: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsshellscript: [ x86_64-darwin ] + hssourceinfo: [ x86_64-darwin ] + hsSqlite3: [ i686-linux, x86_64-darwin, x86_64-linux ] + HsSVN: [ i686-linux, x86_64-darwin, x86_64-linux ] + hstest: [ i686-linux, x86_64-darwin, x86_64-linux ] + hstidy: [ i686-linux, x86_64-darwin, x86_64-linux ] + hstorchat: [ i686-linux, x86_64-linux, x86_64-darwin ] + hstradeking: [ i686-linux, x86_64-darwin, x86_64-linux ] + HStringTemplateHelpers: [ i686-linux, x86_64-darwin, x86_64-linux ] + hstyle: [ i686-linux, x86_64-darwin, x86_64-linux ] + hstzaar: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsubconvert: [ i686-linux, x86_64-darwin, x86_64-linux ] + HSvm: [ i686-linux, x86_64-darwin, x86_64-linux ] + hswip: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsx-xhtml: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsx: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsXenCtrl: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsyscall: [ i686-linux, x86_64-darwin, x86_64-linux ] + hszephyr: [ i686-linux, x86_64-darwin, x86_64-linux ] + HTab: [ i686-linux, x86_64-darwin, x86_64-linux ] + hTalos: [ i686-linux, x86_64-darwin, x86_64-linux ] + HTicTacToe: [ i686-linux, x86_64-darwin, x86_64-linux ] + html-entities: [ i686-linux, x86_64-darwin, x86_64-linux ] + html-rules: [ i686-linux, x86_64-darwin, x86_64-linux ] + htoml: [ i686-linux, x86_64-darwin, x86_64-linux ] + htsn-import: [ i686-linux, x86_64-darwin, x86_64-linux ] + http-client-request-modifiers: [ i686-linux, x86_64-darwin, x86_64-linux ] + http-conduit-browser: [ i686-linux, x86_64-darwin, x86_64-linux ] + http-conduit-downloader: [ i686-linux, x86_64-darwin, x86_64-linux ] + http-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + http-monad: [ i686-linux, x86_64-darwin, x86_64-linux ] + http-proxy: [ i686-linux, x86_64-darwin, x86_64-linux ] + http-shed: [ i686-linux, x86_64-darwin, x86_64-linux ] + https-everywhere-rules: [ i686-linux, x86_64-darwin, x86_64-linux ] + httpspec: [ i686-linux, x86_64-darwin, x86_64-linux ] + htune: [ i686-linux, x86_64-linux, x86_64-darwin ] + htzaar: [ x86_64-darwin ] + hubris: [ i686-linux, x86_64-darwin, x86_64-linux ] + hugs2yc: [ i686-linux, x86_64-darwin, x86_64-linux ] + hulk: [ i686-linux, x86_64-darwin, x86_64-linux ] + HulkImport: [ i686-linux, x86_64-darwin, x86_64-linux ] + hums: [ i686-linux, x86_64-darwin, x86_64-linux ] + HUnit-Diff: [ i686-linux, x86_64-darwin, x86_64-linux ] + hunit-gui: [ i686-linux, x86_64-darwin, x86_64-linux ] + HUnit-Plus: [ i686-linux, x86_64-darwin, x86_64-linux ] + hunit-rematch: [ i686-linux, x86_64-darwin, x86_64-linux ] + hunt-searchengine: [ i686-linux, x86_64-darwin, x86_64-linux ] + hunt-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + hurdle: [ i686-linux, x86_64-darwin, x86_64-linux ] + husky: [ i686-linux, x86_64-darwin, x86_64-linux ] + hutton: [ i686-linux, x86_64-darwin, x86_64-linux ] + huzzy: [ i686-linux, x86_64-darwin, x86_64-linux ] + hVOIDP: [ i686-linux, x86_64-linux, x86_64-darwin ] + hws: [ i686-linux, x86_64-darwin, x86_64-linux ] + hXmixer: [ x86_64-darwin ] + HXMPP: [ i686-linux, x86_64-darwin, x86_64-linux ] + hxmppc: [ i686-linux, x86_64-darwin, x86_64-linux ] + hxournal: [ i686-linux, x86_64-darwin, x86_64-linux ] + hxt-binary: [ i686-linux, x86_64-darwin, x86_64-linux ] + hxt-filter: [ i686-linux, x86_64-darwin, x86_64-linux ] + hxthelper: [ i686-linux, x86_64-darwin, x86_64-linux ] + hxweb: [ i686-linux, x86_64-darwin, x86_64-linux ] + hybrid: [ i686-linux, x86_64-darwin, x86_64-linux ] + hydra-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + hydrogen-cli-args: [ i686-linux, x86_64-darwin, x86_64-linux ] + hydrogen-cli: [ i686-linux, x86_64-darwin, x86_64-linux ] + hydrogen-data: [ i686-linux, x86_64-darwin, x86_64-linux ] + hydrogen-parsing: [ i686-linux, x86_64-darwin, x86_64-linux ] + hydrogen-prelude-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + hydrogen-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] + hydrogen-syntax: [ i686-linux, x86_64-darwin, x86_64-linux ] + hydrogen-util: [ i686-linux, x86_64-darwin, x86_64-linux ] + hyena: [ i686-linux, x86_64-darwin, x86_64-linux ] + hylolib: [ i686-linux, x86_64-darwin, x86_64-linux ] + hylotab: [ i686-linux, x86_64-darwin, x86_64-linux ] + hyloutils: [ i686-linux, x86_64-darwin, x86_64-linux ] + hyperdrive: [ i686-linux, x86_64-darwin, x86_64-linux ] + hyperpublic: [ i686-linux, x86_64-darwin, x86_64-linux ] + hypher: [ i686-linux, x86_64-darwin, x86_64-linux ] + i18n: [ i686-linux, x86_64-darwin, x86_64-linux ] + ideas-math: [ i686-linux, x86_64-darwin, x86_64-linux ] + ideas: [ i686-linux, x86_64-darwin, x86_64-linux ] + idiii: [ i686-linux, x86_64-darwin, x86_64-linux ] + idna2008: [ i686-linux, x86_64-darwin, x86_64-linux ] + idris: [ i686-linux, x86_64-darwin, x86_64-linux ] + IDynamic: [ i686-linux, x86_64-darwin, x86_64-linux ] + ieee-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + iException: [ i686-linux, x86_64-darwin, x86_64-linux ] + IFS: [ i686-linux, x86_64-darwin, x86_64-linux ] + ige-mac-integration: [ i686-linux, x86_64-darwin, x86_64-linux ] + igraph: [ i686-linux, x86_64-darwin, x86_64-linux ] + ihaskell-diagrams: [ x86_64-darwin ] + ihaskell-inline-r: [ i686-linux, x86_64-darwin, x86_64-linux ] + ihaskell-plot: [ x86_64-darwin ] + ihaskell-widgets: [ i686-linux, x86_64-darwin, x86_64-linux ] + ihttp: [ i686-linux, x86_64-darwin, x86_64-linux ] + illuminate: [ i686-linux, x86_64-darwin, x86_64-linux ] + imagemagick: [ i686-linux, x86_64-darwin ] + imagepaste: [ i686-linux, x86_64-darwin, x86_64-linux ] + imap: [ i686-linux, x86_64-darwin, x86_64-linux ] + imbib: [ i686-linux, x86_64-linux, x86_64-darwin ] + imgurder: [ i686-linux, x86_64-darwin, x86_64-linux ] + imm: [ i686-linux, x86_64-darwin, x86_64-linux ] + imparse: [ i686-linux, x86_64-darwin, x86_64-linux ] + imperative-edsl-vhdl: [ i686-linux, x86_64-darwin, x86_64-linux ] + imperative-edsl: [ i686-linux, x86_64-darwin ] + ImperativeHaskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + improve: [ i686-linux, x86_64-darwin, x86_64-linux ] + INblobs: [ i686-linux, x86_64-darwin, x86_64-linux ] + inch: [ i686-linux, x86_64-darwin, x86_64-linux ] + incremental-computing: [ i686-linux, x86_64-darwin, x86_64-linux ] + incremental-sat-solver: [ i686-linux, x86_64-darwin, x86_64-linux ] + increments: [ i686-linux, x86_64-darwin, x86_64-linux ] + index-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + indian-language-font-converter: [ x86_64-darwin ] + indices: [ i686-linux, x86_64-darwin, x86_64-linux ] + indieweb-algorithms: [ i686-linux, x86_64-darwin, x86_64-linux ] + inf-interval: [ i686-linux, x86_64-darwin, x86_64-linux ] + infer-upstream: [ i686-linux, x86_64-darwin, x86_64-linux ] + infinity: [ i686-linux, x86_64-darwin, x86_64-linux ] + infix: [ i686-linux, x86_64-darwin, x86_64-linux ] + InfixApplicative: [ i686-linux, x86_64-darwin, x86_64-linux ] + inflist: [ i686-linux, x86_64-darwin, x86_64-linux ] + influxdb: [ i686-linux, x86_64-darwin, x86_64-linux ] + informative: [ i686-linux, x86_64-darwin, x86_64-linux ] + inilist: [ i686-linux, x86_64-darwin, x86_64-linux ] + inline-c-cpp: [ x86_64-darwin ] + inline-r: [ i686-linux, x86_64-darwin ] + instant-zipper: [ i686-linux, x86_64-darwin, x86_64-linux ] + integer-pure: [ i686-linux, x86_64-darwin, x86_64-linux ] + intel-aes: [ i686-linux, x86_64-darwin, x86_64-linux ] + interleavableGen: [ i686-linux, x86_64-darwin, x86_64-linux ] + interleavableIO: [ i686-linux, x86_64-darwin, x86_64-linux ] + internetmarke: [ i686-linux, x86_64-darwin, x86_64-linux ] + interpolatedstring-qq-mwotton: [ i686-linux, x86_64-darwin, x86_64-linux ] + interpolatedstring-qq: [ i686-linux, x86_64-darwin, x86_64-linux ] + intricacy: [ x86_64-darwin ] + intset: [ i686-linux, x86_64-darwin, x86_64-linux ] + io-reactive: [ i686-linux, x86_64-darwin, x86_64-linux ] + IOR: [ i686-linux, x86_64-darwin, x86_64-linux ] + IORefCAS: [ i686-linux, x86_64-darwin, x86_64-linux ] + iotransaction: [ i686-linux, x86_64-darwin, x86_64-linux ] + ipatch: [ i686-linux, x86_64-darwin, x86_64-linux ] + ipc: [ i686-linux, x86_64-darwin, x86_64-linux ] + ipopt-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + iptables-helpers: [ i686-linux, x86_64-darwin, x86_64-linux ] + iptadmin: [ i686-linux, x86_64-linux, x86_64-darwin ] + Irc: [ i686-linux, x86_64-darwin, x86_64-linux ] + isevaluated: [ i686-linux, x86_64-darwin, x86_64-linux ] + isiz: [ x86_64-darwin ] + ismtp: [ i686-linux, x86_64-darwin, x86_64-linux ] + iter-stats: [ i686-linux, x86_64-darwin, x86_64-linux ] + iteratee-compress: [ i686-linux, x86_64-darwin, x86_64-linux ] + iteratee-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + iteratee-stm: [ i686-linux, x86_64-darwin, x86_64-linux ] + iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] + iterio-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + iterIO: [ i686-linux, x86_64-darwin, x86_64-linux ] + ivor: [ i686-linux, x86_64-darwin, x86_64-linux ] + ivory-backend-c: [ i686-linux, x86_64-darwin, x86_64-linux ] + ivory-bitdata: [ i686-linux, x86_64-darwin, x86_64-linux ] + ivory-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + ivory-hw: [ i686-linux, x86_64-darwin, x86_64-linux ] + ivory-opts: [ i686-linux, x86_64-darwin, x86_64-linux ] + ivory-quickcheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + ivory-stdlib: [ i686-linux, x86_64-darwin, x86_64-linux ] + ivory: [ i686-linux, x86_64-darwin, x86_64-linux ] + ivy-web: [ i686-linux, x86_64-darwin, x86_64-linux ] + ixdopp: [ i686-linux, x86_64-darwin, x86_64-linux ] + iyql: [ i686-linux, x86_64-darwin, x86_64-linux ] + j2hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + jack-bindings: [ i686-linux, x86_64-darwin, x86_64-linux ] + jack: [ x86_64-darwin ] + JackMiniMix: [ i686-linux, x86_64-darwin, x86_64-linux ] + jacobi-roots: [ i686-linux, x86_64-darwin, x86_64-linux ] + jalla: [ i686-linux, x86_64-darwin, x86_64-linux ] + jarfind: [ i686-linux, x86_64-darwin, x86_64-linux ] + java-bridge-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + java-bridge: [ i686-linux, x86_64-darwin, x86_64-linux ] + java-reflect: [ i686-linux, x86_64-darwin, x86_64-linux ] + javasf: [ i686-linux, x86_64-darwin, x86_64-linux ] + javav: [ i686-linux, x86_64-darwin, x86_64-linux ] + jespresso: [ i686-linux, x86_64-linux ] + join: [ i686-linux, x86_64-darwin, x86_64-linux ] + joinlist: [ i686-linux, x86_64-darwin, x86_64-linux ] + jonathanscard: [ i686-linux, x86_64-darwin, x86_64-linux ] + jort: [ i686-linux, x86_64-darwin, x86_64-linux ] + js-good-parts: [ i686-linux, x86_64-darwin, x86_64-linux ] + jsaddle-hello: [ i686-linux, x86_64-linux, x86_64-darwin ] + jsaddle: [ i686-linux, x86_64-linux, x86_64-darwin ] + jsc: [ i686-linux, x86_64-linux, x86_64-darwin ] + JsContracts: [ i686-linux, x86_64-darwin, x86_64-linux ] + jsmw: [ i686-linux, x86_64-darwin, x86_64-linux ] + json-b: [ i686-linux, x86_64-darwin, x86_64-linux ] + JSON-Combinator-Examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + JSON-Combinator: [ i686-linux, x86_64-darwin, x86_64-linux ] + json-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + json-pointer-hasql: [ i686-linux, x86_64-darwin, x86_64-linux ] + json-qq: [ i686-linux, x86_64-darwin, x86_64-linux ] + json-stream: [ i686-linux ] + json-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + json2-hdbc: [ i686-linux, x86_64-darwin, x86_64-linux ] + json2: [ i686-linux, x86_64-darwin, x86_64-linux ] + JSONb: [ i686-linux, x86_64-darwin, x86_64-linux ] + JsonGrammar: [ i686-linux, x86_64-darwin, x86_64-linux ] + jsonresume: [ i686-linux, x86_64-darwin, x86_64-linux ] + jspath: [ i686-linux, x86_64-darwin, x86_64-linux ] + judy: [ i686-linux, x86_64-darwin, x86_64-linux ] + jukebox: [ x86_64-darwin ] + JunkDB-driver-gdbm: [ i686-linux, x86_64-darwin, x86_64-linux ] + JYU-Utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + kafka-client: [ x86_64-darwin ] + kangaroo: [ i686-linux, x86_64-darwin, x86_64-linux ] + kansas-lava-cores: [ i686-linux, x86_64-darwin, x86_64-linux ] + kansas-lava-papilio: [ i686-linux, x86_64-darwin, x86_64-linux ] + kansas-lava-shake: [ i686-linux, x86_64-darwin, x86_64-linux ] + kansas-lava: [ i686-linux, x86_64-darwin, x86_64-linux ] + karakuri: [ i686-linux, x86_64-darwin, x86_64-linux ] + katt: [ i686-linux, x86_64-darwin, x86_64-linux ] + kazura-queue: [ x86_64-linux ] + keera-hails-mvc-environment-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-mvc-model-lightmodel: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-mvc-model-protectedmodel: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-mvc-solutions-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-mvc-view-gtk: [ x86_64-darwin ] + keera-hails-reactive-fs: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-reactive-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-reactive-network: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-reactive-polling: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-reactive-wx: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-reactive-yampa: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-reactivelenses: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-reactivevalues: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-posture: [ i686-linux, x86_64-linux, x86_64-darwin ] + keiretsu: [ i686-linux, x86_64-darwin, x86_64-linux ] + Ketchup: [ i686-linux, x86_64-darwin, x86_64-linux ] + kevin: [ i686-linux, x86_64-darwin, x86_64-linux ] + keyring: [ i686-linux, x86_64-darwin, x86_64-linux ] + keystore: [ i686-linux, x86_64-darwin, x86_64-linux ] + kicad-data: [ i686-linux, x86_64-darwin, x86_64-linux ] + kickass-torrents-dump-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] + KiCS-debugger: [ i686-linux, x86_64-darwin, x86_64-linux ] + KiCS-prophecy: [ i686-linux, x86_64-darwin, x86_64-linux ] + KiCS: [ i686-linux, x86_64-darwin, x86_64-linux ] + kif-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] + kit: [ i686-linux, x86_64-darwin, x86_64-linux ] + kmeans-par: [ i686-linux, x86_64-darwin, x86_64-linux ] + koellner-phonetic: [ i686-linux, x86_64-darwin, x86_64-linux ] + Konf: [ i686-linux, x86_64-darwin, x86_64-linux ] + korfu: [ i686-linux, x86_64-darwin, x86_64-linux ] + kqueue: [ i686-linux, x86_64-darwin, x86_64-linux ] + ktx: [ x86_64-darwin ] + kure-your-boilerplate: [ i686-linux, x86_64-darwin, x86_64-linux ] + KyotoCabinet: [ i686-linux, x86_64-darwin, x86_64-linux ] + kyotocabinet: [ x86_64-darwin ] + l-bfgs-b: [ i686-linux, x86_64-darwin, x86_64-linux ] + L-seed: [ i686-linux, x86_64-darwin, x86_64-linux ] + labeled-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] + laborantin-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + labyrinth-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + labyrinth: [ i686-linux, x86_64-darwin, x86_64-linux ] + lagrangian: [ i686-linux, x86_64-darwin, x86_64-linux ] + laika: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambda-bridge: [ i686-linux, x86_64-linux ] + lambda-canvas: [ x86_64-darwin ] + lambda-devs: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambda-toolbox: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdaBase: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-haskell-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-irc-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-misc-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-novelty-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-reference-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-social-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot: [ i686-linux, x86_64-darwin, x86_64-linux ] + LambdaCalculator: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdacat: [ i686-linux, x86_64-linux, x86_64-darwin ] + lambdacube-bullet: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdacube-engine: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdacube-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdacube-gl: [ x86_64-darwin ] + lambdacube-samples: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdacube: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdaFeed: [ i686-linux, x86_64-darwin, x86_64-linux ] + LambdaHack: [ i686-linux, x86_64-darwin, x86_64-linux ] + LambdaINet: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdaLit: [ i686-linux, x86_64-darwin, x86_64-linux ] + LambdaNet: [ i686-linux, x86_64-darwin, x86_64-linux ] + LambdaPrettyQuote: [ i686-linux, x86_64-darwin, x86_64-linux ] + LambdaShell: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdatwit: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdiff: [ i686-linux, x86_64-darwin, x86_64-linux ] + lame-tester: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-bash: [ i686-linux, x86_64-linux ] + language-boogie: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-c-comments: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-c-inline: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-eiffel: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-go: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-java-classfile: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-mixal: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-objc: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-puppet: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-python-colour: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-qux: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-sh: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-spelling: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-sqlite: [ i686-linux, x86_64-darwin, x86_64-linux ] + Lastik: [ i686-linux, x86_64-darwin, x86_64-linux ] + lat: [ i686-linux, x86_64-darwin, x86_64-linux ] + latest-npm-version: [ i686-linux, x86_64-darwin, x86_64-linux ] + launchpad-control: [ i686-linux, x86_64-darwin, x86_64-linux ] + layers-game: [ i686-linux, x86_64-darwin, x86_64-linux ] + layers: [ i686-linux, x86_64-darwin, x86_64-linux ] + layout-bootstrap: [ i686-linux, x86_64-darwin, x86_64-linux ] + layout: [ i686-linux, x86_64-darwin, x86_64-linux ] + Lazy-Pbkdf2: [ i686-linux ] + lazyarray: [ i686-linux, x86_64-darwin, x86_64-linux ] + lazysplines: [ i686-linux, x86_64-darwin, x86_64-linux ] + lcs: [ i686-linux, x86_64-darwin, x86_64-linux ] + ldif: [ i686-linux, x86_64-darwin, x86_64-linux ] + leaf: [ i686-linux, x86_64-darwin, x86_64-linux ] + leaky: [ i686-linux, x86_64-darwin, x86_64-linux ] + learn-physics-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + learn-physics: [ i686-linux, x86_64-darwin, x86_64-linux ] + leksah-server: [ x86_64-darwin ] + leksah: [ i686-linux, x86_64-linux, x86_64-darwin ] + Level0: [ x86_64-darwin ] + leveldb-haskell-fork: [ i686-linux, x86_64-darwin, x86_64-linux ] + leveldb-haskell: [ x86_64-darwin ] + levmar-chart: [ i686-linux, x86_64-linux, x86_64-darwin ] + levmar: [ i686-linux, x86_64-linux, x86_64-darwin ] + lgtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + lha: [ i686-linux, x86_64-darwin, x86_64-linux ] + lhae: [ i686-linux, x86_64-darwin, x86_64-linux ] + lhe: [ i686-linux, x86_64-darwin, x86_64-linux ] + LibClang: [ i686-linux, x86_64-darwin, x86_64-linux ] + libconfig: [ i686-linux, x86_64-linux, x86_64-darwin ] + libcspm: [ i686-linux, x86_64-darwin, x86_64-linux ] + libexpect: [ i686-linux, x86_64-darwin, x86_64-linux ] + libGenI: [ i686-linux, x86_64-darwin, x86_64-linux ] + libgraph: [ i686-linux, x86_64-darwin, x86_64-linux ] + libhbb: [ i686-linux, x86_64-darwin, x86_64-linux ] + libjenkins: [ i686-linux, x86_64-linux ] + liblinear-enumerator: [ x86_64-darwin ] + libltdl: [ i686-linux, x86_64-darwin, x86_64-linux ] + libnotify: [ x86_64-darwin ] + liboleg: [ i686-linux, x86_64-darwin, x86_64-linux ] + libpafe: [ i686-linux, x86_64-darwin, x86_64-linux ] + libpq: [ i686-linux, x86_64-darwin, x86_64-linux ] + libssh2-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + libsystemd-daemon: [ i686-linux, x86_64-darwin, x86_64-linux ] + libsystemd-journal: [ x86_64-darwin ] + libvirt-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + libxls: [ i686-linux, x86_64-darwin, x86_64-linux ] + libxml: [ i686-linux, x86_64-darwin, x86_64-linux ] + libxslt: [ i686-linux, x86_64-darwin, x86_64-linux ] + LibZip: [ i686-linux, x86_64-darwin, x86_64-linux ] + life: [ x86_64-darwin ] + lifter: [ i686-linux, x86_64-darwin, x86_64-linux ] + lighttpd-conf-qq: [ i686-linux, x86_64-darwin, x86_64-linux ] + lighttpd-conf: [ i686-linux, x86_64-darwin, x86_64-linux ] + lilypond: [ i686-linux, x86_64-darwin, x86_64-linux ] + Limit: [ i686-linux, x86_64-darwin, x86_64-linux ] + limp-cbc: [ i686-linux, x86_64-darwin, x86_64-linux ] + lin-alg: [ i686-linux, x86_64-darwin, x86_64-linux ] + linda: [ i686-linux, x86_64-darwin, x86_64-linux ] + linear-algebra-cblas: [ i686-linux, x86_64-darwin, x86_64-linux ] + linear-circuit: [ i686-linux, x86_64-darwin, x86_64-linux ] + linear-maps: [ i686-linux, x86_64-darwin, x86_64-linux ] + linear-opengl: [ i686-linux, x86_64-darwin, x86_64-linux ] + linearscan-hoopl: [ i686-linux, x86_64-darwin, x86_64-linux ] + LinearSplit: [ i686-linux, x86_64-darwin, x86_64-linux ] + LinguisticsTypes: [ i686-linux, x86_64-darwin, x86_64-linux ] + LinkChecker: [ i686-linux, x86_64-darwin, x86_64-linux ] + linkchk: [ i686-linux, x86_64-darwin, x86_64-linux ] + linkcore: [ i686-linux, x86_64-darwin, x86_64-linux ] + linode: [ i686-linux, x86_64-darwin, x86_64-linux ] + linux-blkid: [ i686-linux, x86_64-darwin, x86_64-linux ] + linux-evdev: [ x86_64-darwin ] + linux-file-extents: [ x86_64-darwin ] + linux-inotify: [ x86_64-darwin ] + linux-kmod: [ i686-linux, x86_64-darwin, x86_64-linux ] + linux-mount: [ x86_64-darwin ] + linux-namespaces: [ x86_64-darwin ] + linux-perf: [ i686-linux, x86_64-darwin, x86_64-linux ] + linux-ptrace: [ i686-linux, x86_64-darwin, x86_64-linux ] + lio-eci11: [ i686-linux, x86_64-darwin, x86_64-linux ] + lio-fs: [ x86_64-darwin ] + lio-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + list-t-html-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] + listlike-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] + literals: [ i686-linux, x86_64-darwin, x86_64-linux ] + live-sequencer: [ i686-linux, x86_64-linux, x86_64-darwin ] + ll-picosat: [ i686-linux, x86_64-darwin, x86_64-linux ] + llsd: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-analysis: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-base-types: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-base-util: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-base: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-data-interop: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-extra: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-ffi: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-general-quote: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-general: [ x86_64-darwin ] + llvm-ht: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-tf: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm: [ i686-linux, x86_64-darwin, x86_64-linux ] + lmdb: [ x86_64-darwin ] + lmonad-yesod: [ i686-linux, x86_64-darwin, x86_64-linux ] + lmonad: [ i686-linux, x86_64-darwin, x86_64-linux ] + local-search: [ i686-linux, x86_64-darwin, x86_64-linux ] + loch: [ i686-linux, x86_64-darwin, x86_64-linux ] + locked-poll: [ i686-linux, x86_64-darwin, x86_64-linux ] + log-effect: [ i686-linux, x86_64-darwin, x86_64-linux ] + log2json: [ i686-linux, x86_64-darwin, x86_64-linux ] + log: [ x86_64-darwin ] + logging-facade-journald: [ x86_64-darwin ] + logic-classes: [ i686-linux, x86_64-darwin, x86_64-linux ] + LogicGrowsOnTrees-MPI: [ i686-linux, x86_64-darwin, x86_64-linux ] + LogicGrowsOnTrees-network: [ i686-linux, x86_64-darwin, x86_64-linux ] + LogicGrowsOnTrees-processes: [ i686-linux, x86_64-darwin, x86_64-linux ] + LogicGrowsOnTrees: [ i686-linux, x86_64-darwin, x86_64-linux ] + lojban: [ i686-linux, x86_64-darwin, x86_64-linux ] + lojbanParser: [ i686-linux, x86_64-darwin, x86_64-linux ] + lojbanXiragan: [ i686-linux, x86_64-darwin, x86_64-linux ] + lojysamban: [ i686-linux, x86_64-darwin, x86_64-linux ] + lol-apps: [ i686-linux, x86_64-darwin, x86_64-linux ] + lol: [ i686-linux, x86_64-darwin ] + loli: [ i686-linux, x86_64-darwin, x86_64-linux ] + loop-effin: [ i686-linux, x86_64-darwin, x86_64-linux ] + loopy: [ i686-linux, x86_64-darwin, x86_64-linux ] + lord: [ i686-linux, x86_64-darwin, x86_64-linux ] + loris: [ i686-linux, x86_64-darwin, x86_64-linux ] + lostcities: [ i686-linux, x86_64-darwin, x86_64-linux ] + lowgl: [ x86_64-darwin ] + ls-usb: [ i686-linux, x86_64-darwin, x86_64-linux ] + lscabal: [ i686-linux, x86_64-darwin, x86_64-linux ] + LslPlus: [ i686-linux, x86_64-darwin, x86_64-linux ] + lsystem: [ i686-linux, x86_64-darwin, x86_64-linux ] + ltk: [ x86_64-darwin ] + luachunk: [ i686-linux, x86_64-darwin, x86_64-linux ] + lucienne: [ i686-linux, x86_64-darwin, x86_64-linux ] + Lucu: [ i686-linux, x86_64-darwin, x86_64-linux ] + lui: [ i686-linux, x86_64-darwin, x86_64-linux ] + luka: [ i686-linux, x86_64-darwin, x86_64-linux ] + luminance-samples: [ x86_64-darwin ] + luminance: [ x86_64-darwin ] + lushtags: [ i686-linux, x86_64-darwin, x86_64-linux ] + luthor: [ i686-linux, x86_64-darwin, x86_64-linux ] + lvish: [ i686-linux, x86_64-darwin, x86_64-linux ] + lvmlib: [ i686-linux, x86_64-darwin, x86_64-linux ] + lxc: [ x86_64-darwin ] + lye: [ i686-linux, x86_64-darwin, x86_64-linux ] + lzma-streams: [ i686-linux ] + lzma: [ i686-linux ] + mage: [ i686-linux, x86_64-darwin, x86_64-linux ] + MagicHaskeller: [ i686-linux, x86_64-darwin, x86_64-linux ] + magico: [ i686-linux, x86_64-darwin, x86_64-linux ] + mahoro: [ i686-linux, x86_64-darwin, x86_64-linux ] + majordomo: [ i686-linux, x86_64-darwin, x86_64-linux ] + majority: [ i686-linux, x86_64-darwin, x86_64-linux ] + make-package: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-all: [ i686-linux, x86_64-linux, x86_64-darwin ] + manatee-anything: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-browser: [ i686-linux, x86_64-linux, x86_64-darwin ] + manatee-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-curl: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-editor: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-filemanager: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-imageviewer: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-ircclient: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-mplayer: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-pdfviewer: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-processmanager: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-reader: [ i686-linux, x86_64-linux, x86_64-darwin ] + manatee-template: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-terminal: [ i686-linux, x86_64-linux, x86_64-darwin ] + manatee-welcome: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee: [ i686-linux, x86_64-darwin, x86_64-linux ] + mandulia: [ i686-linux, x86_64-darwin, x86_64-linux ] + manifold-random: [ x86_64-darwin ] + manifolds: [ x86_64-darwin ] + mappy: [ i686-linux, x86_64-darwin, x86_64-linux ] + marionetta: [ i686-linux, x86_64-darwin, x86_64-linux ] + markdown-kate: [ i686-linux, x86_64-darwin, x86_64-linux ] + markdown-pap: [ i686-linux, x86_64-darwin, x86_64-linux ] + markdown2svg: [ i686-linux, x86_64-darwin, x86_64-linux ] + markov-processes: [ i686-linux, x86_64-darwin, x86_64-linux ] + markup-preview: [ i686-linux, x86_64-linux, x86_64-darwin ] + marmalade-upload: [ i686-linux, x86_64-darwin, x86_64-linux ] + marquise: [ i686-linux, x86_64-darwin, x86_64-linux ] + marxup: [ i686-linux, x86_64-darwin, x86_64-linux ] + masakazu-bot: [ i686-linux, x86_64-darwin, x86_64-linux ] + matchers: [ i686-linux, x86_64-darwin, x86_64-linux ] + mathblog: [ i686-linux, x86_64-darwin, x86_64-linux ] + mathlink: [ i686-linux, x86_64-darwin, x86_64-linux ] + matlab: [ i686-linux, x86_64-darwin, x86_64-linux ] + matsuri: [ i686-linux, x86_64-darwin, x86_64-linux ] + maude: [ i686-linux, x86_64-darwin, x86_64-linux ] + maxent: [ i686-linux, x86_64-darwin, x86_64-linux ] + maxsharing: [ i686-linux, x86_64-darwin, x86_64-linux ] + maybench: [ i686-linux, x86_64-darwin, x86_64-linux ] + MaybeT-monads-tf: [ i686-linux, x86_64-darwin, x86_64-linux ] + MaybeT-transformers: [ i686-linux, x86_64-darwin, x86_64-linux ] + MaybeT: [ i686-linux, x86_64-darwin, x86_64-linux ] + MazesOfMonad: [ i686-linux, x86_64-darwin, x86_64-linux ] + mbox-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + MC-Fold-DP: [ i686-linux, x86_64-darwin, x86_64-linux ] + mcmaster-gloss-examples: [ x86_64-darwin ] + mcmc-samplers: [ i686-linux, x86_64-darwin, x86_64-linux ] + mdcat: [ i686-linux, x86_64-darwin, x86_64-linux ] + Measure: [ i686-linux, x86_64-darwin, x86_64-linux ] + mecab: [ i686-linux, x86_64-darwin, x86_64-linux ] + mediawiki2latex: [ i686-linux, x86_64-darwin, x86_64-linux ] + mediawiki: [ i686-linux, x86_64-darwin, x86_64-linux ] + medium-sdk-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + meep: [ i686-linux, x86_64-darwin, x86_64-linux ] + mega-sdist: [ i686-linux, x86_64-darwin, x86_64-linux ] + melody: [ i686-linux, x86_64-darwin, x86_64-linux ] + memo-sqlite: [ i686-linux, x86_64-darwin, x86_64-linux ] + meta-par-accelerate: [ i686-linux, x86_64-darwin, x86_64-linux ] + metadata: [ x86_64-linux ] + metaplug: [ i686-linux, x86_64-darwin, x86_64-linux ] + metric: [ i686-linux, x86_64-darwin, x86_64-linux ] + Metrics: [ i686-linux, x86_64-darwin, x86_64-linux ] + metronome: [ i686-linux, x86_64-darwin, x86_64-linux ] + Mhailist: [ i686-linux, x86_64-darwin, x86_64-linux ] + MHask: [ i686-linux, x86_64-darwin, x86_64-linux ] + Michelangelo: [ i686-linux, x86_64-darwin, x86_64-linux ] + microlens-aeson: [ i686-linux ] + midi-alsa: [ x86_64-darwin ] + midimory: [ x86_64-darwin ] + midisurface: [ i686-linux, x86_64-linux, x86_64-darwin ] + mighttpd: [ i686-linux, x86_64-darwin, x86_64-linux ] + mikmod: [ x86_64-darwin ] + mime-string: [ i686-linux, x86_64-darwin, x86_64-linux ] + minesweeper: [ i686-linux, x86_64-darwin, x86_64-linux ] + MiniAgda: [ i686-linux, x86_64-darwin, x86_64-linux ] + miniball: [ x86_64-darwin ] + miniforth: [ i686-linux, x86_64-darwin, x86_64-linux ] + minimung: [ i686-linux, x86_64-darwin, x86_64-linux ] + minioperational: [ i686-linux, x86_64-darwin, x86_64-linux ] + miniplex: [ i686-linux, x86_64-darwin, x86_64-linux ] + minirotate: [ i686-linux, x86_64-darwin, x86_64-linux ] + minisat: [ x86_64-darwin ] + ministg: [ i686-linux, x86_64-darwin, x86_64-linux ] + mirror-tweet: [ i686-linux, x86_64-darwin, x86_64-linux ] + missing-py2: [ i686-linux, x86_64-darwin, x86_64-linux ] + MissingPy: [ i686-linux, x86_64-darwin, x86_64-linux ] + mix-arrows: [ i686-linux, x86_64-darwin, x86_64-linux ] + mkbndl: [ i686-linux, x86_64-darwin, x86_64-linux ] + ml-w: [ i686-linux, x86_64-darwin, x86_64-linux ] + mlist: [ i686-linux, x86_64-darwin, x86_64-linux ] + mmtl-base: [ i686-linux, x86_64-darwin, x86_64-linux ] + mmtl: [ i686-linux, x86_64-darwin, x86_64-linux ] + moan: [ i686-linux, x86_64-darwin, x86_64-linux ] + modelicaparser: [ i686-linux, x86_64-darwin, x86_64-linux ] + modsplit: [ i686-linux, x86_64-darwin, x86_64-linux ] + modular-prelude-classy: [ i686-linux, x86_64-darwin, x86_64-linux ] + modular-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] + module-management: [ i686-linux, x86_64-darwin, x86_64-linux ] + Moe: [ x86_64-darwin ] + mohws: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-abort-fd: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-atom-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-atom: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-exception: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-interleave: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-levels: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-lrs: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-memo: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-mersenne-random: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-ran: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-stlike-io: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-stlike-stm: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-tx: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-unify: [ i686-linux, x86_64-darwin, x86_64-linux ] + monadacme: [ i686-linux, x86_64-darwin, x86_64-linux ] + MonadCatchIO-mtl-foreign: [ i686-linux, x86_64-darwin, x86_64-linux ] + MonadCatchIO-transformers-foreign: [ i686-linux, x86_64-darwin, x86_64-linux ] + monadiccp-gecode: [ i686-linux, x86_64-darwin, x86_64-linux ] + monadiccp: [ i686-linux, x86_64-darwin, x86_64-linux ] + Monadius: [ i686-linux, x86_64-darwin, x86_64-linux ] + MonadLab: [ i686-linux, x86_64-darwin, x86_64-linux ] + monarch: [ i686-linux, x86_64-darwin, x86_64-linux ] + Monaris: [ i686-linux, x86_64-darwin, x86_64-linux ] + Monatron-IO: [ i686-linux, x86_64-darwin, x86_64-linux ] + Monatron: [ i686-linux, x86_64-darwin, x86_64-linux ] + mongodb-queue: [ i686-linux, x86_64-darwin, x86_64-linux ] + mongrel2-handler: [ i686-linux, x86_64-darwin, x86_64-linux ] + monitor: [ x86_64-darwin ] + mono-foldable: [ i686-linux, x86_64-darwin, x86_64-linux ] + Monocle: [ i686-linux, x86_64-darwin, x86_64-linux ] + monoid-owns: [ i686-linux, x86_64-darwin, x86_64-linux ] + monoidplus: [ i686-linux, x86_64-darwin, x86_64-linux ] + monoids: [ i686-linux, x86_64-darwin, x86_64-linux ] + monte-carlo: [ i686-linux, x86_64-darwin, x86_64-linux ] + moo: [ i686-linux, x86_64-darwin, x86_64-linux ] + morfette: [ i686-linux, x86_64-darwin, x86_64-linux ] + morfeusz: [ i686-linux, x86_64-darwin, x86_64-linux ] + mosaico-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + mount: [ i686-linux, x86_64-darwin, x86_64-linux ] + mp3decoder: [ i686-linux, x86_64-darwin, x86_64-linux ] + mp: [ i686-linux, x86_64-darwin, x86_64-linux ] + mpdmate: [ i686-linux, x86_64-darwin, x86_64-linux ] + mpppc: [ i686-linux, x86_64-darwin, x86_64-linux ] + mpretty: [ i686-linux, x86_64-darwin, x86_64-linux ] + mprover: [ i686-linux, x86_64-darwin, x86_64-linux ] + mps: [ i686-linux, x86_64-darwin, x86_64-linux ] + mpvguihs: [ i686-linux, x86_64-darwin, x86_64-linux ] + msgpack-idl: [ i686-linux, x86_64-darwin, x86_64-linux ] + msh: [ i686-linux, x86_64-darwin, x86_64-linux ] + msi-kb-backlit: [ x86_64-darwin ] + mtgoxapi: [ i686-linux, x86_64-darwin, x86_64-linux ] + mtl-tf: [ i686-linux, x86_64-darwin, x86_64-linux ] + mtlx: [ i686-linux, x86_64-darwin, x86_64-linux ] + mtp: [ i686-linux, x86_64-darwin, x86_64-linux ] + mudbath: [ i686-linux, x86_64-darwin, x86_64-linux ] + mulang: [ i686-linux, x86_64-darwin, x86_64-linux ] + multi-cabal: [ i686-linux, x86_64-darwin, x86_64-linux ] + multifocal: [ i686-linux, x86_64-darwin, x86_64-linux ] + multipass: [ i686-linux, x86_64-darwin, x86_64-linux ] + multiplate-simplified: [ i686-linux, x86_64-darwin, x86_64-linux ] + multirec-alt-deriver: [ i686-linux, x86_64-darwin, x86_64-linux ] + multirec-binary: [ i686-linux, x86_64-darwin, x86_64-linux ] + multisetrewrite: [ i686-linux, x86_64-darwin, x86_64-linux ] + murder: [ i686-linux, x86_64-darwin, x86_64-linux ] + murmurhash3: [ i686-linux, x86_64-darwin, x86_64-linux ] + music-graphics: [ i686-linux, x86_64-darwin, x86_64-linux ] + music-parts: [ i686-linux, x86_64-darwin, x86_64-linux ] + music-preludes: [ i686-linux, x86_64-darwin, x86_64-linux ] + music-score: [ i686-linux, x86_64-darwin, x86_64-linux ] + music-sibelius: [ i686-linux, x86_64-darwin, x86_64-linux ] + music-suite: [ i686-linux, x86_64-darwin, x86_64-linux ] + music-util: [ i686-linux, x86_64-darwin, x86_64-linux ] + musicbrainz-email: [ i686-linux, x86_64-darwin, x86_64-linux ] + musicxml: [ i686-linux, x86_64-darwin, x86_64-linux ] + mustache2hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + mutable-iter: [ i686-linux, x86_64-darwin, x86_64-linux ] + mvc-updates: [ i686-linux, x86_64-darwin, x86_64-linux ] + mvclient: [ i686-linux, x86_64-darwin, x86_64-linux ] + myo: [ i686-linux, x86_64-darwin, x86_64-linux ] + mysnapsession-example: [ i686-linux, x86_64-darwin, x86_64-linux ] + mysnapsession: [ i686-linux, x86_64-darwin, x86_64-linux ] + mysql-simple-quasi: [ i686-linux, x86_64-darwin, x86_64-linux ] + mysql-simple-typed: [ i686-linux, x86_64-darwin, x86_64-linux ] + myTestlll: [ i686-linux, x86_64-linux, x86_64-darwin ] + mzv: [ i686-linux, x86_64-darwin, x86_64-linux ] + nagios-plugin-ekg: [ i686-linux, x86_64-darwin, x86_64-linux ] + named-lock: [ i686-linux, x86_64-darwin, x86_64-linux ] + nano-cryptr: [ i686-linux, x86_64-darwin, x86_64-linux ] + nano-hmac: [ i686-linux, x86_64-darwin, x86_64-linux ] + nano-md5: [ i686-linux, x86_64-darwin, x86_64-linux ] + nanoAgda: [ i686-linux, x86_64-darwin, x86_64-linux ] + nanocurses: [ i686-linux, x86_64-darwin, x86_64-linux ] + nanq: [ i686-linux ] + narc: [ i686-linux, x86_64-darwin, x86_64-linux ] + nats-queue: [ i686-linux, x86_64-darwin, x86_64-linux ] + natural-number: [ i686-linux, x86_64-darwin, x86_64-linux ] + NaturalLanguageAlphabets: [ i686-linux, x86_64-darwin, x86_64-linux ] + nc-indicators: [ x86_64-darwin ] + neat: [ i686-linux, x86_64-darwin, x86_64-linux ] + needle: [ i686-linux, x86_64-darwin, x86_64-linux ] + nehe-tuts: [ i686-linux, x86_64-darwin, x86_64-linux ] + nerf: [ i686-linux, x86_64-darwin, x86_64-linux ] + nero-wai: [ i686-linux, x86_64-darwin, x86_64-linux ] + nero-warp: [ i686-linux, x86_64-darwin, x86_64-linux ] + nero: [ i686-linux, x86_64-darwin, x86_64-linux ] + netcore: [ i686-linux, x86_64-darwin, x86_64-linux ] + netlines: [ i686-linux, x86_64-darwin, x86_64-linux ] + netlink: [ x86_64-darwin ] + NetSNMP: [ i686-linux, x86_64-darwin, x86_64-linux ] + netspec: [ i686-linux, x86_64-darwin, x86_64-linux ] + nettle-frp: [ i686-linux, x86_64-darwin, x86_64-linux ] + nettle-netkit: [ i686-linux, x86_64-darwin, x86_64-linux ] + nettle-openflow: [ i686-linux, x86_64-darwin, x86_64-linux ] + netwire-input-glfw: [ x86_64-darwin ] + network-address: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-anonymous-i2p: [ i686-linux ] + network-anonymous-tor: [ i686-linux ] + network-attoparsec: [ i686-linux ] + network-builder: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-bytestring: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-connection: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-interfacerequest: [ x86_64-darwin ] + network-minihttp: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-netpacket: [ x86_64-darwin ] + network-rpca: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-simple-tls: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-topic-models: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-transport-amqp: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-websocket: [ i686-linux, x86_64-darwin, x86_64-linux ] + newports: [ i686-linux, x86_64-darwin, x86_64-linux ] + newsynth: [ i686-linux, x86_64-darwin, x86_64-linux ] + newt: [ i686-linux, x86_64-darwin, x86_64-linux ] + newtype-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + NGrams: [ i686-linux, x86_64-darwin, x86_64-linux ] + niagra: [ i686-linux, x86_64-darwin, x86_64-linux ] + nibblestring: [ i686-linux, x86_64-darwin, x86_64-linux ] + nikepub: [ i686-linux, x86_64-darwin, x86_64-linux ] + nimber: [ i686-linux ] + Ninjas: [ i686-linux, x86_64-darwin, x86_64-linux ] + nitro: [ i686-linux, x86_64-darwin, x86_64-linux ] + nixfromnpm: [ i686-linux, x86_64-darwin, x86_64-linux ] + nkjp: [ i686-linux, x86_64-darwin, x86_64-linux ] + nm: [ i686-linux, x86_64-darwin, x86_64-linux ] + nme: [ i686-linux, x86_64-darwin, x86_64-linux ] + nntp: [ i686-linux, x86_64-darwin, x86_64-linux ] + noise: [ i686-linux, x86_64-darwin, x86_64-linux ] + Nomyx-Core: [ i686-linux, x86_64-darwin, x86_64-linux ] + Nomyx-Language: [ i686-linux, x86_64-darwin, x86_64-linux ] + Nomyx-Rules: [ i686-linux, x86_64-darwin, x86_64-linux ] + Nomyx-Web: [ i686-linux, x86_64-darwin, x86_64-linux ] + Nomyx: [ i686-linux, x86_64-darwin, x86_64-linux ] + NonEmptyList: [ i686-linux, x86_64-darwin, x86_64-linux ] + noodle: [ i686-linux, x86_64-darwin, x86_64-linux ] + NoSlow: [ i686-linux, x86_64-darwin, x86_64-linux ] + not-gloss-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + not-gloss: [ i686-linux, x86_64-darwin, x86_64-linux ] + notmuch-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + notmuch-web: [ i686-linux, x86_64-darwin, x86_64-linux ] + np-linear: [ i686-linux, x86_64-darwin, x86_64-linux ] + nptools: [ i686-linux, x86_64-darwin, x86_64-linux ] + nthable: [ i686-linux, x86_64-darwin, x86_64-linux ] + NTRU: [ i686-linux ] + null-canvas: [ i686-linux, x86_64-darwin, x86_64-linux ] + NumberSieves: [ i686-linux, x86_64-darwin, x86_64-linux ] + numerals-base: [ i686-linux, x86_64-darwin, x86_64-linux ] + numerals: [ i686-linux, x86_64-darwin, x86_64-linux ] + Nussinov78: [ i686-linux, x86_64-darwin, x86_64-linux ] + nvim-hs-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] + nvim-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + NXT: [ i686-linux, x86_64-darwin, x86_64-linux ] + NXTDSL: [ i686-linux, x86_64-darwin, x86_64-linux ] + nymphaea: [ i686-linux, x86_64-darwin, x86_64-linux ] + oberon0: [ i686-linux, x86_64-darwin, x86_64-linux ] + obj: [ i686-linux, x86_64-darwin, x86_64-linux ] + Object: [ i686-linux, x86_64-darwin, x86_64-linux ] + ObjectIO: [ i686-linux, x86_64-darwin, x86_64-linux ] + octopus: [ i686-linux, x86_64-darwin, x86_64-linux ] + oculus: [ i686-linux, x86_64-linux, x86_64-darwin ] + OddWord: [ i686-linux ] + oden-go-packages: [ i686-linux, x86_64-darwin, x86_64-linux ] + OGL: [ i686-linux, x86_64-darwin, x86_64-linux ] + ohloh-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + oidc-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + ois-input-manager: [ i686-linux, x86_64-darwin, x86_64-linux ] + omaketex: [ i686-linux, x86_64-darwin, x86_64-linux ] + Omega: [ i686-linux, x86_64-darwin, x86_64-linux ] + omnicodec: [ i686-linux, x86_64-darwin, x86_64-linux ] + on-a-horse: [ i686-linux, x86_64-darwin, x86_64-linux ] + one-liner: [ i686-linux, x86_64-darwin, x86_64-linux ] + oneormore: [ i686-linux, x86_64-darwin, x86_64-linux ] + onu-course: [ i686-linux, x86_64-darwin, x86_64-linux ] + open-pandoc: [ i686-linux, x86_64-darwin, x86_64-linux ] + open-typerep: [ i686-linux, x86_64-darwin ] + open-union: [ x86_64-darwin, x86_64-linux ] + open-witness: [ i686-linux, x86_64-darwin, x86_64-linux ] + OpenAFP-Utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + OpenAFP: [ i686-linux, x86_64-darwin, x86_64-linux ] + OpenAL: [ x86_64-darwin ] + OpenCL: [ i686-linux, x86_64-darwin, x86_64-linux ] + OpenCLRaw: [ i686-linux, x86_64-darwin, x86_64-linux ] + opencog-atomspace: [ i686-linux, x86_64-darwin, x86_64-linux ] + opencv-raw: [ i686-linux, x86_64-linux, x86_64-darwin ] + openexchangerates: [ i686-linux, x86_64-darwin, x86_64-linux ] + openflow: [ i686-linux, x86_64-darwin, x86_64-linux ] + opengl-dlp-stereo: [ x86_64-darwin ] + opengl-spacenavigator: [ x86_64-darwin ] + OpenGL: [ x86_64-darwin ] + OpenGLCheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + opengles: [ i686-linux, x86_64-darwin, x86_64-linux ] + OpenGLRaw21: [ i686-linux, x86_64-darwin, x86_64-linux ] + OpenGLRaw: [ x86_64-darwin ] + openid: [ i686-linux, x86_64-darwin, x86_64-linux ] + openpgp-crypto-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + openpgp-Crypto: [ i686-linux, x86_64-darwin, x86_64-linux ] + OpenSCAD: [ i686-linux, x86_64-darwin, x86_64-linux ] + openssh-github-keys: [ i686-linux, x86_64-darwin, x86_64-linux ] + opentheory-char: [ i686-linux, x86_64-darwin, x86_64-linux ] + OpenVG: [ i686-linux, x86_64-darwin, x86_64-linux ] + OpenVGRaw: [ i686-linux, x86_64-darwin, x86_64-linux ] + Operads: [ i686-linux, x86_64-darwin, x86_64-linux ] + optimal-blocks: [ i686-linux, x86_64-darwin, x86_64-linux ] + optimusprime: [ i686-linux, x86_64-darwin, x86_64-linux ] + orchestrate: [ i686-linux, x86_64-darwin, x86_64-linux ] + OrchestrateDB: [ i686-linux, x86_64-darwin, x86_64-linux ] + orchid-demo: [ i686-linux, x86_64-darwin, x86_64-linux ] + orchid: [ i686-linux, x86_64-darwin, x86_64-linux ] + order-maintenance: [ i686-linux, x86_64-darwin, x86_64-linux ] + orgmode-parse: [ i686-linux, x86_64-darwin, x86_64-linux ] + origami: [ i686-linux, x86_64-darwin, x86_64-linux ] + osdkeys: [ x86_64-darwin ] + osm-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + osm-download: [ i686-linux, x86_64-darwin, x86_64-linux ] + OSM: [ i686-linux, x86_64-darwin, x86_64-linux ] + ot: [ i686-linux, x86_64-darwin, x86_64-linux ] + pack: [ x86_64-darwin ] + package-vt: [ i686-linux, x86_64-darwin, x86_64-linux ] + packedstring: [ i686-linux, x86_64-darwin, x86_64-linux ] + packman: [ i686-linux, x86_64-darwin, x86_64-linux ] + padKONTROL: [ i686-linux, x86_64-darwin, x86_64-linux ] + PageIO: [ i686-linux, x86_64-darwin, x86_64-linux ] + Paillier: [ x86_64-darwin ] + pam: [ x86_64-darwin ] + panda: [ i686-linux, x86_64-darwin, x86_64-linux ] + pandoc-japanese-filters: [ i686-linux, x86_64-darwin, x86_64-linux ] + pandoc-lens: [ i686-linux, x86_64-darwin, x86_64-linux ] + pandoc-plantuml-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] + pandoc-unlit: [ i686-linux, x86_64-darwin, x86_64-linux ] + PandocAgda: [ i686-linux, x86_64-darwin, x86_64-linux ] + pango: [ x86_64-darwin ] + papillon: [ i686-linux, x86_64-darwin, x86_64-linux ] + pappy: [ i686-linux, x86_64-darwin, x86_64-linux ] + paragon: [ i686-linux, x86_64-darwin, x86_64-linux ] + Paraiso: [ i686-linux, x86_64-darwin, x86_64-linux ] + parallel-tasks: [ i686-linux, x86_64-darwin, x86_64-linux ] + parameterized-data: [ i686-linux, x86_64-darwin, x86_64-linux ] + parco-attoparsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + parco-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + parco: [ i686-linux, x86_64-darwin, x86_64-linux ] + parconc-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + parport: [ x86_64-darwin ] + Parry: [ i686-linux, x86_64-darwin, x86_64-linux ] + parse-help: [ i686-linux, x86_64-darwin, x86_64-linux ] + parsely: [ i686-linux, x86_64-darwin, x86_64-linux ] + parser-helper: [ i686-linux, x86_64-darwin, x86_64-linux ] + parser241: [ i686-linux, x86_64-darwin, x86_64-linux ] + parsestar: [ i686-linux, x86_64-darwin, x86_64-linux ] + partial-lens: [ i686-linux, x86_64-darwin, x86_64-linux ] + partly: [ i686-linux, x86_64-darwin, x86_64-linux ] + passage: [ i686-linux, x86_64-darwin, x86_64-linux ] + pastis: [ i686-linux, x86_64-darwin, x86_64-linux ] + pasty: [ i686-linux, x86_64-darwin, x86_64-linux ] + Pathfinder: [ i686-linux, x86_64-darwin, x86_64-linux ] + pathfindingcore: [ i686-linux, x86_64-darwin, x86_64-linux ] + patterns: [ i686-linux, x86_64-darwin, x86_64-linux ] + paypal-adaptive-hoops: [ i686-linux, x86_64-darwin, x86_64-linux ] + paypal-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + pb: [ i686-linux, x86_64-darwin, x86_64-linux ] + PCLT-DB: [ i686-linux, x86_64-darwin, x86_64-linux ] + PCLT: [ i686-linux, x86_64-darwin, x86_64-linux ] + pdf-toolbox-viewer: [ x86_64-darwin ] + pdynload: [ i686-linux, x86_64-darwin, x86_64-linux ] + peakachu: [ i686-linux, x86_64-darwin, x86_64-linux ] + pec: [ i686-linux, x86_64-darwin, x86_64-linux ] + peg: [ i686-linux, x86_64-darwin, x86_64-linux ] + pell: [ i686-linux, x86_64-darwin, x86_64-linux ] + penny-bin: [ i686-linux, x86_64-darwin, x86_64-linux ] + penny-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + penny: [ i686-linux, x86_64-darwin, x86_64-linux ] + peparser: [ i686-linux, x86_64-darwin, x86_64-linux ] + perdure: [ i686-linux, x86_64-darwin, x86_64-linux ] + PerfectHash: [ i686-linux, x86_64-darwin, x86_64-linux ] + perm: [ i686-linux, x86_64-darwin, x86_64-linux ] + permute: [ i686-linux, x86_64-darwin, x86_64-linux ] + PermuteEffects: [ i686-linux, x86_64-darwin, x86_64-linux ] + persistent-hssqlppp: [ i686-linux, x86_64-darwin, x86_64-linux ] + persistent-map: [ i686-linux, x86_64-darwin, x86_64-linux ] + persistent-protobuf: [ i686-linux, x86_64-darwin, x86_64-linux ] + pesca: [ i686-linux, x86_64-darwin, x86_64-linux ] + peyotls-codec: [ i686-linux, x86_64-darwin, x86_64-linux ] + peyotls: [ i686-linux, x86_64-darwin, x86_64-linux ] + pez: [ i686-linux, x86_64-darwin, x86_64-linux ] + pg-harness-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + pg-harness: [ i686-linux, x86_64-darwin, x86_64-linux ] + pgsql-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + pgstream: [ i686-linux, x86_64-darwin, x86_64-linux ] + phasechange: [ i686-linux, x86_64-darwin, x86_64-linux ] + phoityne: [ x86_64-darwin ] + phone-numbers: [ i686-linux, x86_64-darwin, x86_64-linux ] + phone-push: [ i686-linux, x86_64-darwin, x86_64-linux ] + phooey: [ i686-linux, x86_64-darwin, x86_64-linux ] + photoname: [ i686-linux, x86_64-darwin, x86_64-linux ] + phraskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + Phsu: [ i686-linux, x86_64-darwin, x86_64-linux ] + phybin: [ i686-linux, x86_64-darwin, x86_64-linux ] + pi-calculus: [ i686-linux, x86_64-darwin, x86_64-linux ] + pianola: [ i686-linux, x86_64-darwin, x86_64-linux ] + piet: [ i686-linux, x86_64-darwin, x86_64-linux ] + piki: [ i686-linux, x86_64-darwin, x86_64-linux ] + pinch: [ i686-linux ] + Pipe: [ i686-linux, x86_64-darwin, x86_64-linux ] + pipes-cereal-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] + pipes-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + pipes-courier: [ i686-linux, x86_64-darwin, x86_64-linux ] + pipes-files: [ i686-linux ] + pipes-key-value-csv: [ i686-linux, x86_64-darwin, x86_64-linux ] + pipes-network-tls: [ i686-linux, x86_64-darwin, x86_64-linux ] + pipes-p2p-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + pisigma: [ i686-linux, x86_64-darwin, x86_64-linux ] + pit: [ i686-linux, x86_64-darwin, x86_64-linux ] + pkggraph: [ i686-linux, x86_64-darwin, x86_64-linux ] + planar-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] + plat: [ i686-linux, x86_64-darwin, x86_64-linux ] + plist-buddy: [ i686-linux, x86_64-linux ] + plivo: [ i686-linux, x86_64-darwin, x86_64-linux ] + plot-gtk-ui: [ x86_64-darwin ] + plot-gtk3: [ x86_64-darwin ] + plot-gtk: [ x86_64-darwin ] + Plot-ho-matic: [ x86_64-darwin ] + plot-lab: [ x86_64-darwin ] + plot: [ x86_64-darwin ] + PlslTools: [ i686-linux, x86_64-darwin, x86_64-linux ] + plugins-auto: [ i686-linux, x86_64-darwin, x86_64-linux ] + plugins-multistage: [ i686-linux, x86_64-darwin, x86_64-linux ] + plumbers: [ i686-linux, x86_64-darwin, x86_64-linux ] + ply-loader: [ i686-linux, x86_64-darwin, x86_64-linux ] + pngload-fixed: [ i686-linux, x86_64-darwin, x86_64-linux ] + pngload: [ i686-linux, x86_64-darwin, x86_64-linux ] + pocket-dns: [ i686-linux, x86_64-darwin, x86_64-linux ] + pointless-lenses: [ i686-linux, x86_64-darwin, x86_64-linux ] + pointless-rewrite: [ i686-linux, x86_64-darwin, x86_64-linux ] + polar-configfile: [ i686-linux, x86_64-darwin, x86_64-linux ] + polh-lexicon: [ i686-linux, x86_64-darwin, x86_64-linux ] + Pollutocracy: [ i686-linux, x86_64-darwin, x86_64-linux ] + polynom: [ i686-linux, x86_64-darwin, x86_64-linux ] + polyseq: [ i686-linux, x86_64-darwin, x86_64-linux ] + polytypeable-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + polytypeable: [ i686-linux, x86_64-darwin, x86_64-linux ] + pong-server: [ i686-linux, x86_64-linux ] + pontarius-mediaserver: [ i686-linux, x86_64-darwin, x86_64-linux ] + pontarius-xmpp: [ i686-linux, x86_64-darwin, x86_64-linux ] + pontarius-xpmn: [ i686-linux, x86_64-darwin, x86_64-linux ] + pool-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + pool: [ i686-linux, x86_64-darwin, x86_64-linux ] + popenhs: [ i686-linux, x86_64-darwin, x86_64-linux ] + poppler: [ i686-linux, x86_64-darwin, x86_64-linux ] + portaudio: [ x86_64-darwin ] + porte: [ i686-linux, x86_64-darwin, x86_64-linux ] + porter: [ i686-linux, x86_64-darwin, x86_64-linux ] + PortMidi: [ x86_64-darwin ] + ports: [ i686-linux, x86_64-darwin, x86_64-linux ] + posix-acl: [ i686-linux, x86_64-linux, x86_64-darwin ] + posix-realtime: [ x86_64-darwin ] + posix-timer: [ x86_64-darwin ] + posix-waitpid: [ i686-linux, x86_64-darwin, x86_64-linux ] + postgresql-simple-typed: [ i686-linux, x86_64-darwin, x86_64-linux ] + postgresql-typed: [ i686-linux, x86_64-darwin, x86_64-linux ] + PostgreSQL: [ i686-linux, x86_64-darwin, x86_64-linux ] + postgrest: [ i686-linux, x86_64-darwin, x86_64-linux ] + postie: [ i686-linux, x86_64-darwin, x86_64-linux ] + postmaster: [ i686-linux, x86_64-darwin, x86_64-linux ] + powermate: [ i686-linux, x86_64-darwin, x86_64-linux ] + powerpc: [ i686-linux, x86_64-darwin, x86_64-linux ] + pqc: [ i686-linux, x86_64-darwin, x86_64-linux ] + pqueue-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] + practice-room: [ i686-linux, x86_64-darwin, x86_64-linux ] + precis: [ i686-linux, x86_64-darwin, x86_64-linux ] + prednote-test: [ i686-linux, x86_64-darwin, x86_64-linux ] + prefork: [ i686-linux, x86_64-darwin, x86_64-linux ] + pregame: [ i686-linux, x86_64-darwin, x86_64-linux ] + prelude-generalize: [ i686-linux, x86_64-darwin, x86_64-linux ] + prelude-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] + preprocess-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + press: [ i686-linux, x86_64-darwin, x86_64-linux ] + primitive-simd: [ i686-linux, x86_64-darwin, x86_64-linux ] + PrimitiveArray: [ i686-linux, x86_64-darwin, x86_64-linux ] + primula-board: [ i686-linux, x86_64-darwin, x86_64-linux ] + primula-bot: [ i686-linux, x86_64-darwin, x86_64-linux ] + print-debugger: [ i686-linux, x86_64-darwin, x86_64-linux ] + printf-mauke: [ i686-linux, x86_64-darwin, x86_64-linux ] + Printf-TH: [ i686-linux, x86_64-darwin, x86_64-linux ] + printxosd: [ x86_64-darwin ] + priority-queue: [ i686-linux, x86_64-darwin, x86_64-linux ] + PriorityChansConverger: [ i686-linux, x86_64-darwin, x86_64-linux ] + ProbabilityMonads: [ i686-linux, x86_64-darwin, x86_64-linux ] + proc: [ i686-linux, x86_64-darwin, x86_64-linux ] + process-iterio: [ i686-linux, x86_64-darwin, x86_64-linux ] + process-leksah: [ i686-linux, x86_64-darwin, x86_64-linux ] + process-listlike: [ i686-linux, x86_64-darwin, x86_64-linux ] + process-progress: [ i686-linux, x86_64-darwin, x86_64-linux ] + process-qq: [ i686-linux, x86_64-darwin, x86_64-linux ] + processing: [ i686-linux, x86_64-darwin, x86_64-linux ] + procrastinating-structure: [ i686-linux, x86_64-darwin, x86_64-linux ] + procrastinating-variable: [ i686-linux, x86_64-darwin, x86_64-linux ] + procstat: [ i686-linux, x86_64-darwin, x86_64-linux ] + prof2dot: [ i686-linux, x86_64-darwin, x86_64-linux ] + progress: [ i686-linux, x86_64-darwin, x86_64-linux ] + progressbar: [ i686-linux, x86_64-darwin, x86_64-linux ] + progression: [ i686-linux, x86_64-darwin, x86_64-linux ] + progressive: [ i686-linux, x86_64-darwin, x86_64-linux ] + proj4-hs-bindings: [ i686-linux, x86_64-darwin, x86_64-linux ] + prolog-graph-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + prolog-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] + prolog: [ i686-linux, x86_64-darwin, x86_64-linux ] + prologue: [ i686-linux, x86_64-darwin, x86_64-linux ] + propane: [ i686-linux, x86_64-darwin, x86_64-linux ] + Proper: [ i686-linux, x86_64-darwin, x86_64-linux ] + proplang: [ i686-linux, x86_64-darwin, x86_64-linux ] + proteaaudio: [ x86_64-darwin ] + protobuf-native: [ i686-linux, x86_64-darwin, x86_64-linux ] + protocol-buffers-descriptor-fork: [ i686-linux, x86_64-darwin, x86_64-linux ] + protocol-buffers-fork: [ i686-linux, x86_64-darwin, x86_64-linux ] + prove-everywhere-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + proxy-kindness: [ i686-linux, x86_64-darwin, x86_64-linux ] + pub: [ i686-linux, x86_64-darwin, x86_64-linux ] + publicsuffixlistcreate: [ i686-linux, x86_64-darwin, x86_64-linux ] + pubnub: [ i686-linux, x86_64-darwin, x86_64-linux ] + pubsub: [ i686-linux, x86_64-darwin, x86_64-linux ] + puffytools: [ i686-linux, x86_64-darwin, x86_64-linux ] + pugixml: [ x86_64-darwin ] + pugs-hsregex: [ i686-linux, x86_64-darwin, x86_64-linux ] + pugs-HsSyck: [ i686-linux, x86_64-darwin, x86_64-linux ] + Pugs: [ i686-linux, x86_64-darwin, x86_64-linux ] + PUH-Project: [ i686-linux, x86_64-darwin, x86_64-linux ] + pulse-simple: [ x86_64-darwin ] + punkt: [ i686-linux, x86_64-darwin, x86_64-linux ] + Pup-Events-Demo: [ i686-linux, x86_64-darwin, x86_64-linux ] + puppetresources: [ i686-linux, x86_64-darwin, x86_64-linux ] + push-notify-ccs: [ i686-linux, x86_64-darwin, x86_64-linux ] + push-notify-general: [ i686-linux, x86_64-darwin, x86_64-linux ] + push-notify: [ i686-linux, x86_64-darwin, x86_64-linux ] + pushme: [ i686-linux, x86_64-darwin, x86_64-linux ] + putlenses: [ i686-linux, x86_64-darwin, x86_64-linux ] + puzzle-draw-cmdline: [ i686-linux, x86_64-darwin, x86_64-linux ] + puzzle-draw: [ i686-linux, x86_64-darwin, x86_64-linux ] + pvd: [ i686-linux, x86_64-darwin, x86_64-linux ] + python-pickle: [ i686-linux, x86_64-darwin, x86_64-linux ] + qd-vec: [ i686-linux, x86_64-darwin, x86_64-linux ] + qd: [ i686-linux, x86_64-darwin, x86_64-linux ] + qed: [ i686-linux, x86_64-darwin, x86_64-linux ] + qhull-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + QIO: [ i686-linux, x86_64-darwin, x86_64-linux ] + qt: [ i686-linux, x86_64-darwin, x86_64-linux ] + QuadEdge: [ i686-linux, x86_64-darwin, x86_64-linux ] + quadratic-irrational: [ i686-linux, x86_64-darwin, x86_64-linux ] + quantum-arrow: [ i686-linux, x86_64-darwin, x86_64-linux ] + qudb: [ i686-linux, x86_64-darwin, x86_64-linux ] + Quelea: [ x86_64-darwin ] + quenya-verb: [ i686-linux, x86_64-darwin, x86_64-linux ] + querystring-pickle: [ i686-linux, x86_64-darwin, x86_64-linux ] + queuelike: [ i686-linux, x86_64-darwin, x86_64-linux ] + QuickAnnotate: [ i686-linux, x86_64-darwin, x86_64-linux ] + QuickCheck-GenT: [ i686-linux, x86_64-darwin, x86_64-linux ] + quickcheck-poly: [ i686-linux, x86_64-darwin, x86_64-linux ] + quickcheck-rematch: [ i686-linux, x86_64-darwin, x86_64-linux ] + quickpull: [ i686-linux, x86_64-darwin, x86_64-linux ] + quickset: [ i686-linux, x86_64-darwin, x86_64-linux ] + Quickson: [ i686-linux, x86_64-darwin, x86_64-linux ] + quicktest: [ i686-linux, x86_64-darwin, x86_64-linux ] + quoridor-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + qux: [ i686-linux, x86_64-darwin, x86_64-linux ] + R-pandoc: [ i686-linux, x86_64-darwin, x86_64-linux ] + rabocsv2qif: [ i686-linux, x86_64-darwin, x86_64-linux ] + rad: [ i686-linux, x86_64-darwin, x86_64-linux ] + radium-formula-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] + radium: [ i686-linux, x86_64-darwin, x86_64-linux ] + rados-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + rail-compiler-editor: [ i686-linux, x86_64-darwin, x86_64-linux ] + rainbow-tests: [ i686-linux, x86_64-darwin, x86_64-linux ] + Raincat: [ x86_64-darwin ] + rakhana: [ i686-linux, x86_64-darwin, x86_64-linux ] + ralist: [ i686-linux, x86_64-darwin, x86_64-linux ] + rallod: [ i686-linux, x86_64-darwin, x86_64-linux ] + rand-vars: [ i686-linux, x86_64-darwin, x86_64-linux ] + randfile: [ i686-linux, x86_64-darwin, x86_64-linux ] + random-access-list: [ i686-linux, x86_64-darwin, x86_64-linux ] + random-eff: [ i686-linux, x86_64-darwin, x86_64-linux ] + random-effin: [ i686-linux, x86_64-darwin, x86_64-linux ] + random-hypergeometric: [ i686-linux, x86_64-darwin, x86_64-linux ] + random-stream: [ i686-linux, x86_64-darwin, x86_64-linux ] + random-variates: [ i686-linux ] + RandomDotOrg: [ i686-linux, x86_64-darwin, x86_64-linux ] + rangemin: [ i686-linux, x86_64-darwin, x86_64-linux ] + Ranka: [ i686-linux, x86_64-darwin, x86_64-linux ] + Rasenschach: [ i686-linux, x86_64-darwin, x86_64-linux ] + raven-haskell-scotty: [ i686-linux, x86_64-darwin, x86_64-linux ] + rbr: [ i686-linux, x86_64-darwin, x86_64-linux ] + rcu: [ i686-linux, x86_64-darwin, x86_64-linux ] + rdf4h: [ i686-linux, x86_64-darwin, x86_64-linux ] + rdioh: [ i686-linux, x86_64-darwin, x86_64-linux ] + re2: [ x86_64-darwin ] + reaction-logic: [ i686-linux, x86_64-darwin, x86_64-linux ] + reactive-bacon: [ i686-linux, x86_64-darwin, x86_64-linux ] + reactive-balsa: [ i686-linux, x86_64-linux, x86_64-darwin ] + reactive-banana-sdl2: [ x86_64-darwin ] + reactive-banana-sdl: [ i686-linux, x86_64-darwin, x86_64-linux ] + reactive-banana-threepenny: [ i686-linux, x86_64-darwin, x86_64-linux ] + reactive-banana-wx: [ x86_64-darwin ] + reactive-fieldtrip: [ i686-linux, x86_64-darwin, x86_64-linux ] + reactive-glut: [ i686-linux, x86_64-darwin, x86_64-linux ] + reactive-thread: [ i686-linux, x86_64-darwin, x86_64-linux ] + reactive: [ i686-linux, x86_64-darwin, x86_64-linux ] + reactor: [ i686-linux, x86_64-darwin, x86_64-linux ] + really-simple-xml-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] + reasonable-lens: [ i686-linux, x86_64-darwin, x86_64-linux ] + record-aeson: [ i686-linux, x86_64-darwin, x86_64-linux ] + record-gl: [ i686-linux, x86_64-darwin, x86_64-linux ] + record-preprocessor: [ i686-linux, x86_64-darwin, x86_64-linux ] + record-syntax: [ i686-linux, x86_64-darwin, x86_64-linux ] + records-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + records: [ i686-linux, x86_64-darwin, x86_64-linux ] + recursive-line-count: [ x86_64-darwin ] + redHandlers: [ i686-linux, x86_64-darwin, x86_64-linux ] + Redmine: [ i686-linux, x86_64-darwin, x86_64-linux ] + reedsolomon: [ i686-linux, x86_64-darwin, x86_64-linux ] + reenact: [ x86_64-darwin ] + ref: [ i686-linux, x86_64-darwin, x86_64-linux ] + Referees: [ i686-linux, x86_64-darwin, x86_64-linux ] + refh: [ i686-linux, x86_64-darwin, x86_64-linux ] + reflection-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + reflex-dom-contrib: [ i686-linux, x86_64-linux, x86_64-darwin ] + reflex-dom: [ x86_64-darwin ] + reflex-gloss-scene: [ x86_64-darwin ] + reflex-gloss: [ x86_64-darwin ] + reflex-orphans: [ i686-linux, x86_64-darwin, x86_64-linux ] + regex-deriv: [ i686-linux, x86_64-darwin, x86_64-linux ] + regex-dfa: [ i686-linux, x86_64-darwin, x86_64-linux ] + regex-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + regex-pderiv: [ i686-linux, x86_64-darwin, x86_64-linux ] + regex-tdfa-utf8: [ i686-linux, x86_64-darwin, x86_64-linux ] + regex-tre: [ i686-linux, x86_64-darwin, x86_64-linux ] + regex-xmlschema: [ i686-linux, x86_64-darwin, x86_64-linux ] + regexchar: [ i686-linux, x86_64-darwin, x86_64-linux ] + regexdot: [ i686-linux, x86_64-darwin, x86_64-linux ] + regexp-tries: [ i686-linux, x86_64-darwin, x86_64-linux ] + regexqq: [ i686-linux, x86_64-darwin, x86_64-linux ] + regional-pointers: [ i686-linux, x86_64-darwin, x86_64-linux ] + regions-monadsfd: [ i686-linux, x86_64-darwin, x86_64-linux ] + regions-monadstf: [ i686-linux, x86_64-darwin, x86_64-linux ] + regions-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] + regions: [ i686-linux, x86_64-darwin, x86_64-linux ] + regular-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + regular-web: [ i686-linux, x86_64-darwin, x86_64-linux ] + reheat: [ i686-linux, x86_64-darwin, x86_64-linux ] + rei: [ i686-linux, x86_64-darwin, x86_64-linux ] + reified-records: [ i686-linux, x86_64-darwin, x86_64-linux ] + reify: [ i686-linux, x86_64-darwin, x86_64-linux ] + reinterpret-cast: [ i686-linux ] + remote-json-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + remote-json-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + remote-json: [ i686-linux, x86_64-darwin, x86_64-linux ] + remote: [ i686-linux, x86_64-darwin, x86_64-linux ] + remotion: [ i686-linux, x86_64-darwin, x86_64-linux ] + reorderable: [ i686-linux, x86_64-darwin, x86_64-linux ] + repa-array: [ i686-linux, x86_64-darwin, x86_64-linux ] + repa-flow: [ i686-linux, x86_64-darwin, x86_64-linux ] + repa-plugin: [ i686-linux, x86_64-darwin, x86_64-linux ] + repa-series: [ i686-linux, x86_64-darwin, x86_64-linux ] + repa-sndfile: [ x86_64-darwin ] + repa-stream: [ i686-linux, x86_64-darwin, x86_64-linux ] + repa-v4l2: [ i686-linux, x86_64-darwin, x86_64-linux ] + repl: [ i686-linux, x86_64-darwin, x86_64-linux ] + repo-based-blog: [ i686-linux, x86_64-darwin, x86_64-linux ] + repr: [ i686-linux, x86_64-darwin, x86_64-linux ] + representable-functors: [ i686-linux, x86_64-darwin, x86_64-linux ] + representable-tries: [ i686-linux, x86_64-darwin, x86_64-linux ] + resistor-cube: [ i686-linux, x86_64-darwin, x86_64-linux ] + resource-embed: [ i686-linux, x86_64-darwin, x86_64-linux ] + resource-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + respond: [ i686-linux, x86_64-darwin, x86_64-linux ] + restful-snap: [ i686-linux, x86_64-darwin, x86_64-linux ] + RESTng: [ i686-linux, x86_64-darwin, x86_64-linux ] + restricted-workers: [ i686-linux, x86_64-darwin, x86_64-linux ] + restyle: [ i686-linux, x86_64-darwin, x86_64-linux ] + resumable-exceptions: [ i686-linux, x86_64-darwin, x86_64-linux ] + rethinkdb-model: [ i686-linux, x86_64-darwin, x86_64-linux ] + ReviewBoard: [ i686-linux, x86_64-darwin, x86_64-linux ] + rewrite: [ i686-linux, x86_64-darwin, x86_64-linux ] + rewriting: [ i686-linux, x86_64-darwin, x86_64-linux ] + rezoom: [ i686-linux, x86_64-darwin, x86_64-linux ] + rhythm-game-tutorial: [ i686-linux, x86_64-darwin, x86_64-linux ] + riot: [ i686-linux, x86_64-darwin, x86_64-linux ] + ripple-federation: [ i686-linux, x86_64-darwin, x86_64-linux ] + ripple: [ i686-linux, x86_64-darwin, x86_64-linux ] + risc386: [ i686-linux, x86_64-darwin, x86_64-linux ] + rivers: [ i686-linux, x86_64-darwin, x86_64-linux ] + RJson: [ i686-linux, x86_64-darwin, x86_64-linux ] + rmonad: [ i686-linux, x86_64-darwin, x86_64-linux ] + RMP: [ i686-linux, x86_64-linux, x86_64-darwin ] + RNAdesign: [ i686-linux, x86_64-darwin, x86_64-linux ] + RNAdraw: [ i686-linux, x86_64-darwin, x86_64-linux ] + RNAFold: [ i686-linux, x86_64-darwin, x86_64-linux ] + RNAFoldProgs: [ i686-linux, x86_64-darwin, x86_64-linux ] + RNAwolf: [ i686-linux, x86_64-darwin, x86_64-linux ] + roguestar-engine: [ i686-linux, x86_64-darwin, x86_64-linux ] + roguestar-gl: [ i686-linux, x86_64-darwin, x86_64-linux ] + roguestar-glut: [ i686-linux, x86_64-darwin, x86_64-linux ] + roguestar: [ i686-linux, x86_64-darwin, x86_64-linux ] + RollingDirectory: [ i686-linux, x86_64-darwin, x86_64-linux ] + rope: [ i686-linux, x86_64-darwin, x86_64-linux ] + rosa: [ i686-linux, x86_64-darwin, x86_64-linux ] + roshask: [ i686-linux, x86_64-darwin, x86_64-linux ] + rosso: [ i686-linux, x86_64-darwin, x86_64-linux ] + rounding: [ i686-linux, x86_64-darwin, x86_64-linux ] + roundtrip-aeson: [ i686-linux, x86_64-darwin, x86_64-linux ] + roundtrip-string: [ i686-linux, x86_64-darwin, x86_64-linux ] + roundtrip-xml: [ i686-linux, x86_64-darwin, x86_64-linux ] + roundtrip: [ i686-linux, x86_64-darwin, x86_64-linux ] + route-generator: [ i686-linux, x86_64-darwin, x86_64-linux ] + route-planning: [ i686-linux, x86_64-darwin, x86_64-linux ] + rowrecord: [ i686-linux, x86_64-darwin, x86_64-linux ] + rpc-framework: [ i686-linux, x86_64-darwin, x86_64-linux ] + rpc: [ i686-linux, x86_64-darwin, x86_64-linux ] + rpm: [ i686-linux, x86_64-darwin, x86_64-linux ] + rsagl-frp: [ i686-linux, x86_64-darwin, x86_64-linux ] + rsagl-math: [ i686-linux, x86_64-darwin, x86_64-linux ] + rsagl: [ i686-linux, x86_64-darwin, x86_64-linux ] + rss2irc: [ i686-linux, x86_64-darwin, x86_64-linux ] + rtcm: [ i686-linux, x86_64-darwin, x86_64-linux ] + rtlsdr: [ x86_64-darwin ] + rtorrent-rpc: [ i686-linux, x86_64-darwin, x86_64-linux ] + rubberband: [ x86_64-darwin ] + ruff: [ i686-linux, x86_64-darwin, x86_64-linux ] + ruler-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + rungekutta: [ i686-linux, x86_64-darwin, x86_64-linux ] + RxHaskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + safe-freeze: [ i686-linux, x86_64-darwin, x86_64-linux ] + safe-globals: [ i686-linux, x86_64-darwin, x86_64-linux ] + safe-lazy-io: [ i686-linux, x86_64-darwin, x86_64-linux ] + safe-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + safer-file-handles-bytestring: [ i686-linux, x86_64-darwin, x86_64-linux ] + safer-file-handles-text: [ i686-linux, x86_64-darwin, x86_64-linux ] + safer-file-handles: [ i686-linux, x86_64-darwin, x86_64-linux ] + sai-shape-syb: [ i686-linux, x86_64-darwin, x86_64-linux ] + Salsa: [ i686-linux, x86_64-darwin, x86_64-linux ] + salvia-demo: [ i686-linux, x86_64-darwin, x86_64-linux ] + salvia-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + salvia-protocol: [ i686-linux, x86_64-darwin, x86_64-linux ] + salvia-sessions: [ i686-linux, x86_64-darwin, x86_64-linux ] + salvia-websocket: [ i686-linux, x86_64-darwin, x86_64-linux ] + salvia: [ i686-linux, x86_64-darwin, x86_64-linux ] + samtools-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] + sarasvati: [ x86_64-darwin ] + sasl: [ i686-linux, x86_64-darwin, x86_64-linux ] + sat-micro-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + sat: [ i686-linux, x86_64-darwin, x86_64-linux ] + satchmo-backends: [ i686-linux, x86_64-darwin, x86_64-linux ] + satchmo-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + satchmo-funsat: [ i686-linux, x86_64-darwin, x86_64-linux ] + satchmo-minisat: [ i686-linux, x86_64-darwin, x86_64-linux ] + satchmo-toysat: [ i686-linux, x86_64-darwin, x86_64-linux ] + satchmo: [ x86_64-darwin ] + SBench: [ i686-linux, x86_64-darwin, x86_64-linux ] + sbp: [ i686-linux, x86_64-darwin, x86_64-linux ] + scaleimage: [ i686-linux, x86_64-darwin, x86_64-linux ] + scalp-webhooks: [ i686-linux, x86_64-darwin, x86_64-linux ] + scan-vector-machine: [ i686-linux, x86_64-darwin, x86_64-linux ] + scenegraph: [ i686-linux, x86_64-darwin, x86_64-linux ] + schedevr: [ i686-linux, x86_64-darwin, x86_64-linux ] + scholdoc-citeproc: [ i686-linux, x86_64-darwin, x86_64-linux ] + scholdoc: [ i686-linux, x86_64-darwin, x86_64-linux ] + science-constants-dimensional: [ i686-linux, x86_64-darwin, x86_64-linux ] + scion-browser: [ i686-linux, x86_64-darwin, x86_64-linux ] + scion: [ i686-linux, x86_64-darwin, x86_64-linux ] + scope-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] + scope: [ i686-linux, x86_64-darwin, x86_64-linux ] + scottish: [ i686-linux, x86_64-darwin, x86_64-linux ] + scotty-blaze: [ i686-linux, x86_64-darwin, x86_64-linux ] + scotty-fay: [ i686-linux, x86_64-darwin, x86_64-linux ] + scotty-hastache: [ i686-linux, x86_64-darwin, x86_64-linux ] + scotty-session: [ i686-linux, x86_64-darwin, x86_64-linux ] + scrabble-bot: [ i686-linux, x86_64-darwin, x86_64-linux ] + ScratchFs: [ i686-linux, x86_64-linux, x86_64-darwin ] + scrobble: [ i686-linux, x86_64-darwin, x86_64-linux ] + scrz: [ i686-linux, x86_64-darwin, x86_64-linux ] + Scurry: [ i686-linux, x86_64-darwin, x86_64-linux ] + SDL-gfx: [ x86_64-darwin ] + SDL-image: [ x86_64-darwin ] + SDL-mixer: [ x86_64-darwin ] + SDL-mpeg: [ x86_64-darwin ] + SDL-ttf: [ x86_64-darwin ] + sdl2-compositor: [ x86_64-darwin ] + sdl2-image: [ i686-linux, x86_64-darwin, x86_64-linux ] + sdl2-ttf: [ x86_64-darwin ] + sdr: [ x86_64-darwin ] + sdr: [ x86_64-linux ] + seacat: [ i686-linux, x86_64-darwin, x86_64-linux ] + search: [ i686-linux, x86_64-darwin, x86_64-linux ] + secdh: [ i686-linux, x86_64-darwin, x86_64-linux ] + second-transfer: [ i686-linux, x86_64-darwin, x86_64-linux ] + secp256k1: [ i686-linux, x86_64-darwin, x86_64-linux ] + secret-santa: [ i686-linux, x86_64-darwin, x86_64-linux ] + secret-sharing: [ i686-linux, x86_64-darwin, x86_64-linux ] + secrm: [ i686-linux, x86_64-darwin, x86_64-linux ] + sednaDBXML: [ i686-linux, x86_64-darwin, x86_64-linux ] + select: [ x86_64-darwin ] + selectors: [ i686-linux, x86_64-darwin, x86_64-linux ] + selenium-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + selenium: [ i686-linux, x86_64-darwin, x86_64-linux ] + selinux: [ i686-linux, x86_64-darwin, x86_64-linux ] + Semantique: [ i686-linux, x86_64-darwin, x86_64-linux ] + semi-iso: [ i686-linux, x86_64-darwin, x86_64-linux ] + semigroups-actions: [ i686-linux, x86_64-darwin, x86_64-linux ] + semiring: [ i686-linux, x86_64-darwin, x86_64-linux ] + semver-range: [ i686-linux, x86_64-darwin, x86_64-linux ] + sensenet: [ i686-linux, x86_64-darwin, x86_64-linux ] + sentry: [ i686-linux, x86_64-darwin, x86_64-linux ] + seqaid: [ i686-linux, x86_64-darwin, x86_64-linux ] + seqalign: [ i686-linux ] + SeqAlign: [ i686-linux, x86_64-darwin, x86_64-linux ] + seqloc-datafiles: [ i686-linux, x86_64-darwin, x86_64-linux ] + sequent-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + sequor: [ i686-linux, x86_64-darwin, x86_64-linux ] + servant-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + servant-pool: [ i686-linux, x86_64-darwin, x86_64-linux ] + servant-postgresql: [ i686-linux, x86_64-darwin, x86_64-linux ] + servant-scotty: [ i686-linux, x86_64-darwin, x86_64-linux ] + servant-swagger: [ i686-linux ] + serversession-backend-acid-state: [ x86_64-darwin ] + serversession-backend-persistent: [ x86_64-darwin ] + ses-html-snaplet: [ i686-linux, x86_64-darwin, x86_64-linux ] + SessionLogger: [ i686-linux, x86_64-darwin, x86_64-linux ] + sessions: [ i686-linux, x86_64-darwin, x86_64-linux ] + set-cover: [ i686-linux, x86_64-darwin, x86_64-linux ] + set-with: [ i686-linux, x86_64-darwin, x86_64-linux ] + sexp-grammar: [ i686-linux, x86_64-darwin, x86_64-linux ] + sexp: [ i686-linux, x86_64-darwin, x86_64-linux ] + sexpr: [ i686-linux, x86_64-darwin, x86_64-linux ] + sfml-audio: [ x86_64-darwin ] + SFML-control: [ i686-linux, x86_64-darwin, x86_64-linux ] + SFML: [ i686-linux, x86_64-darwin, x86_64-linux ] + SFont: [ i686-linux, x86_64-darwin, x86_64-linux ] + SG: [ i686-linux, x86_64-darwin, x86_64-linux ] + SGdemo: [ i686-linux, x86_64-darwin, x86_64-linux ] + sgrep: [ i686-linux, x86_64-darwin, x86_64-linux ] + shadower: [ i686-linux, x86_64-darwin, x86_64-linux ] + shady-gen: [ i686-linux, x86_64-darwin, x86_64-linux ] + shady-graphics: [ i686-linux, x86_64-darwin, x86_64-linux ] + shake-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + shaker: [ i686-linux, x86_64-darwin, x86_64-linux ] + shapely-data: [ i686-linux, x86_64-darwin, x86_64-linux ] + shared-buffer: [ i686-linux, x86_64-darwin, x86_64-linux ] + shared-memory: [ x86_64-darwin ] + she: [ i686-linux, x86_64-darwin, x86_64-linux ] + shelduck: [ x86_64-darwin ] + shell-pipe: [ i686-linux, x86_64-darwin, x86_64-linux ] + Shellac-compatline: [ i686-linux, x86_64-darwin, x86_64-linux ] + Shellac-editline: [ i686-linux, x86_64-darwin, x86_64-linux ] + Shellac-haskeline: [ i686-linux, x86_64-darwin, x86_64-linux ] + Shellac-readline: [ i686-linux, x86_64-darwin, x86_64-linux ] + Shellac: [ i686-linux, x86_64-darwin, x86_64-linux ] + shellish: [ i686-linux, x86_64-darwin, x86_64-linux ] + showdown: [ i686-linux, x86_64-darwin, x86_64-linux ] + shpider: [ i686-linux, x86_64-darwin, x86_64-linux ] + Shu-thing: [ i686-linux, x86_64-darwin, x86_64-linux ] + sifflet-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + sifflet: [ i686-linux, x86_64-darwin, x86_64-linux ] + signals: [ i686-linux, x86_64-darwin, x86_64-linux ] + simd: [ i686-linux, x86_64-darwin, x86_64-linux ] + simgi: [ i686-linux, x86_64-darwin, x86_64-linux ] + simple-bluetooth: [ i686-linux, x86_64-darwin, x86_64-linux ] + simple-c-value: [ i686-linux, x86_64-darwin, x86_64-linux ] + simple-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + simple-css: [ i686-linux, x86_64-darwin, x86_64-linux ] + simple-firewire: [ i686-linux, x86_64-darwin, x86_64-linux ] + simple-form: [ i686-linux, x86_64-darwin, x86_64-linux ] + simple-log-syslog: [ i686-linux, x86_64-darwin, x86_64-linux ] + simple-pascal: [ i686-linux, x86_64-darwin, x86_64-linux ] + simple-vec3: [ i686-linux, x86_64-darwin, x86_64-linux ] + SimpleGL: [ i686-linux, x86_64-darwin, x86_64-linux ] + SimpleH: [ i686-linux, x86_64-darwin, x86_64-linux ] + simpleirc-lens: [ i686-linux, x86_64-darwin, x86_64-linux ] + simpleirc: [ i686-linux, x86_64-darwin, x86_64-linux ] + SimpleLog: [ i686-linux, x86_64-darwin, x86_64-linux ] + simplenote: [ i686-linux, x86_64-darwin, x86_64-linux ] + simpleprelude: [ i686-linux, x86_64-darwin, x86_64-linux ] + simplessh: [ i686-linux, x86_64-darwin, x86_64-linux ] + simseq: [ i686-linux, x86_64-darwin, x86_64-linux ] + sindre: [ i686-linux, x86_64-darwin, x86_64-linux ] + sirkel: [ i686-linux, x86_64-darwin, x86_64-linux ] + sized: [ i686-linux, x86_64-darwin, x86_64-linux ] + skeleton: [ i686-linux, x86_64-darwin, x86_64-linux ] + skype4hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + slack: [ i686-linux, x86_64-darwin, x86_64-linux ] + slidemews: [ i686-linux, x86_64-darwin, x86_64-linux ] + sloth: [ i686-linux, x86_64-darwin, x86_64-linux ] + smallarray: [ i686-linux, x86_64-darwin, x86_64-linux ] + smallpt-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + smallstring: [ i686-linux, x86_64-darwin, x86_64-linux ] + smartGroup: [ i686-linux, x86_64-linux ] + smartword: [ i686-linux, x86_64-darwin, x86_64-linux ] + sme: [ i686-linux, x86_64-darwin, x86_64-linux ] + Smooth: [ i686-linux, x86_64-darwin, x86_64-linux ] + smt-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + smtp-mail-ng: [ i686-linux, x86_64-darwin, x86_64-linux ] + smtp2mta: [ i686-linux, x86_64-darwin, x86_64-linux ] + snake-game: [ i686-linux, x86_64-darwin, x86_64-linux ] + snap-accept: [ i686-linux, x86_64-darwin, x86_64-linux ] + snap-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + snap-predicates: [ i686-linux, x86_64-darwin, x86_64-linux ] + snap-testing: [ i686-linux, x86_64-darwin, x86_64-linux ] + snap-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-actionlog: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-css-min: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-environments: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-hasql: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-haxl: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-hdbc: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-i18n: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-influxdb: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-mongodb-minimalistic: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-mongoDB: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-mysql-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-oauth: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-redson: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-rest: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-sedna: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-tasks: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-typed-sessions: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-wordpress: [ i686-linux, x86_64-darwin, x86_64-linux ] + snappy-conduit: [ x86_64-darwin ] + snappy-framing: [ x86_64-darwin ] + snappy-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] + snappy: [ x86_64-darwin ] + sndfile-enumerators: [ i686-linux, x86_64-darwin, x86_64-linux ] + SNet: [ i686-linux, x86_64-darwin, x86_64-linux ] + snm: [ i686-linux, x86_64-darwin, x86_64-linux ] + snow-white: [ i686-linux, x86_64-darwin, x86_64-linux ] + snowglobe: [ i686-linux, x86_64-darwin, x86_64-linux ] + Snusmumrik: [ i686-linux, x86_64-linux, x86_64-darwin ] + SoccerFun: [ i686-linux, x86_64-darwin, x86_64-linux ] + SoccerFunGL: [ i686-linux, x86_64-darwin, x86_64-linux ] + sock2stream: [ i686-linux, x86_64-darwin, x86_64-linux ] + socket-sctp: [ i686-linux, x86_64-darwin, x86_64-linux ] + socketio: [ i686-linux, x86_64-darwin, x86_64-linux ] + socketson: [ i686-linux, x86_64-darwin, x86_64-linux ] + soegtk: [ x86_64-darwin ] + sonic-visualiser: [ i686-linux, x86_64-darwin, x86_64-linux ] + SoOSiM: [ i686-linux, x86_64-darwin, x86_64-linux ] + sorted: [ i686-linux, x86_64-darwin, x86_64-linux ] + sound-collage: [ i686-linux, x86_64-darwin, x86_64-linux ] + source-code-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + SourceGraph: [ i686-linux, x86_64-darwin, x86_64-linux ] + sousit: [ i686-linux, x86_64-darwin, x86_64-linux ] + soxlib: [ i686-linux, x86_64-darwin, x86_64-linux ] + soyuz: [ i686-linux, x86_64-darwin, x86_64-linux ] + SpaceInvaders: [ i686-linux ] + SpacePrivateers: [ i686-linux, x86_64-darwin, x86_64-linux ] + spanout: [ i686-linux, x86_64-darwin, x86_64-linux ] + sparse: [ i686-linux, x86_64-darwin, x86_64-linux ] + sparsebit: [ i686-linux, x86_64-darwin, x86_64-linux ] + sparsecheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + spata: [ i686-linux, x86_64-darwin, x86_64-linux ] + special-functors: [ i686-linux, x86_64-darwin, x86_64-linux ] + specialize-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + sphero: [ i686-linux, x86_64-darwin, x86_64-linux ] + sphinx-cli: [ i686-linux, x86_64-darwin, x86_64-linux ] + spice: [ x86_64-darwin ] + spike: [ i686-linux, x86_64-linux, x86_64-darwin ] + splaytree: [ i686-linux, x86_64-darwin, x86_64-linux ] + spline3: [ i686-linux ] + splines: [ i686-linux, x86_64-darwin, x86_64-linux ] + split-record: [ i686-linux, x86_64-darwin, x86_64-linux ] + Spock-auth: [ i686-linux, x86_64-darwin, x86_64-linux ] + Spock-digestive: [ x86_64-darwin ] + Spock-worker: [ x86_64-darwin ] + Spock: [ x86_64-darwin ] + spoonutil: [ i686-linux, x86_64-darwin, x86_64-linux ] + spoty: [ i686-linux, x86_64-darwin, x86_64-linux ] + Sprig: [ i686-linux, x86_64-darwin, x86_64-linux ] + spsa: [ i686-linux, x86_64-darwin, x86_64-linux ] + spy: [ i686-linux, x86_64-darwin, x86_64-linux ] + sql-simple-mysql: [ i686-linux, x86_64-darwin, x86_64-linux ] + sql-simple-pool: [ i686-linux, x86_64-darwin, x86_64-linux ] + sql-simple-postgresql: [ i686-linux, x86_64-darwin, x86_64-linux ] + sql-simple-sqlite: [ i686-linux, x86_64-darwin, x86_64-linux ] + sql-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + sqlite-simple-typed: [ i686-linux, x86_64-darwin, x86_64-linux ] + squeeze: [ i686-linux, x86_64-darwin, x86_64-linux ] + srcinst: [ i686-linux, x86_64-darwin, x86_64-linux ] + ssh: [ i686-linux, x86_64-linux ] + sssp: [ i686-linux, x86_64-darwin, x86_64-linux ] + sstable: [ i686-linux, x86_64-darwin, x86_64-linux ] + stable-tree: [ i686-linux, x86_64-darwin, x86_64-linux ] + stack-hpc-coveralls: [ i686-linux, x86_64-darwin, x86_64-linux ] + stack-prism: [ i686-linux, x86_64-darwin, x86_64-linux ] + starrover2: [ i686-linux, x86_64-linux, x86_64-darwin ] + stateful-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] + statgrab: [ i686-linux, x86_64-darwin, x86_64-linux ] + statistics-dirichlet: [ i686-linux, x86_64-darwin, x86_64-linux ] + statistics-fusion: [ i686-linux, x86_64-darwin, x86_64-linux ] + stb-truetype: [ i686-linux, x86_64-darwin, x86_64-linux ] + step-function: [ i686-linux, x86_64-darwin, x86_64-linux ] + stepwise: [ i686-linux, x86_64-darwin, x86_64-linux ] + stm-chunked-queues: [ i686-linux, x86_64-darwin, x86_64-linux ] + stmcontrol: [ i686-linux, x86_64-darwin, x86_64-linux ] + Stomp: [ i686-linux, x86_64-darwin, x86_64-linux ] + stopwatch: [ x86_64-darwin ] + storable-static-array: [ i686-linux, x86_64-darwin, x86_64-linux ] + storablevector-carray: [ i686-linux, x86_64-darwin, x86_64-linux ] + storablevector-streamfusion: [ i686-linux, x86_64-darwin, x86_64-linux ] + storablevector: [ i686-linux, x86_64-darwin, x86_64-linux ] + Strafunski-Sdf2Haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + stratum-tool: [ i686-linux, x86_64-darwin, x86_64-linux ] + stream-fusion: [ i686-linux, x86_64-darwin, x86_64-linux ] + streamed: [ i686-linux, x86_64-linux, x86_64-darwin ] + streaming-utils: [ i686-linux ] + strict-concurrency: [ i686-linux, x86_64-darwin, x86_64-linux ] + StrictBench: [ i686-linux, x86_64-darwin, x86_64-linux ] + stringlike: [ i686-linux, x86_64-darwin, x86_64-linux ] + structured-mongoDB: [ i686-linux, x86_64-darwin, x86_64-linux ] + structures: [ i686-linux, x86_64-darwin, x86_64-linux ] + stunts: [ i686-linux, x86_64-darwin, x86_64-linux ] + sub-state: [ i686-linux, x86_64-darwin, x86_64-linux ] + subhask: [ i686-linux, x86_64-darwin, x86_64-linux ] + subleq-toolchain: [ i686-linux, x86_64-darwin, x86_64-linux ] + SuffixStructures: [ i686-linux, x86_64-darwin, x86_64-linux ] + suitable: [ i686-linux, x86_64-darwin, x86_64-linux ] + sunlight: [ i686-linux, x86_64-darwin, x86_64-linux ] + sunroof-compiler: [ i686-linux, x86_64-darwin, x86_64-linux ] + sunroof-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + sunroof-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + super-user-spark: [ i686-linux, x86_64-darwin, x86_64-linux ] + supercollider-midi: [ i686-linux, x86_64-linux, x86_64-darwin ] + superdoc: [ i686-linux, x86_64-darwin, x86_64-linux ] + supero: [ i686-linux, x86_64-darwin, x86_64-linux ] + supervisor: [ i686-linux, x86_64-darwin, x86_64-linux ] + SVG2Q: [ i686-linux, x86_64-darwin, x86_64-linux ] + svgcairo: [ x86_64-darwin ] + svm-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + svndump: [ i686-linux, x86_64-darwin, x86_64-linux ] + swagger2: [ i686-linux ] + swapper: [ i686-linux, x86_64-darwin, x86_64-linux ] + swearjure: [ i686-linux, x86_64-darwin, x86_64-linux ] + swf: [ i686-linux, x86_64-darwin, x86_64-linux ] + swift-lda: [ i686-linux, x86_64-darwin, x86_64-linux ] + sws: [ i686-linux, x86_64-darwin, x86_64-linux ] + syb-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + sylvia: [ i686-linux, x86_64-darwin, x86_64-linux ] + sym-plot: [ i686-linux, x86_64-darwin, x86_64-linux ] + symengine-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + sync-mht: [ i686-linux ] + sync: [ i686-linux, x86_64-darwin, x86_64-linux ] + syncthing-hs: [ x86_64-darwin ] + syntactic: [ i686-linux, x86_64-darwin ] + syntax-attoparsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + syntax-example-json: [ i686-linux, x86_64-darwin, x86_64-linux ] + syntax-example: [ i686-linux, x86_64-darwin, x86_64-linux ] + syntax-pretty: [ i686-linux, x86_64-darwin, x86_64-linux ] + syntax-printer: [ i686-linux, x86_64-darwin, x86_64-linux ] + syntax-trees-fork-bairyn: [ i686-linux, x86_64-darwin, x86_64-linux ] + syntax-trees: [ i686-linux, x86_64-darwin, x86_64-linux ] + syntax: [ i686-linux, x86_64-darwin, x86_64-linux ] + SyntaxMacros: [ i686-linux, x86_64-darwin, x86_64-linux ] + synthesizer-alsa: [ i686-linux, x86_64-linux, x86_64-darwin ] + synthesizer-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + synthesizer-dimensional: [ i686-linux, x86_64-darwin, x86_64-linux ] + synthesizer-filter: [ i686-linux, x86_64-darwin, x86_64-linux ] + synthesizer-llvm: [ i686-linux, x86_64-darwin, x86_64-linux ] + synthesizer-midi: [ i686-linux, x86_64-darwin, x86_64-linux ] + synthesizer: [ i686-linux, x86_64-darwin, x86_64-linux ] + Sysmon: [ i686-linux, x86_64-darwin, x86_64-linux ] + system-canonicalpath: [ i686-linux, x86_64-darwin, x86_64-linux ] + system-inotify: [ x86_64-darwin ] + system-lifted: [ i686-linux, x86_64-darwin, x86_64-linux ] + system-random-effect: [ i686-linux, x86_64-darwin, x86_64-linux ] + system-time-monotonic: [ x86_64-darwin ] + ta: [ i686-linux, x86_64-darwin, x86_64-linux ] + tables: [ i686-linux, x86_64-darwin, x86_64-linux ] + tablestorage: [ i686-linux, x86_64-darwin, x86_64-linux ] + tabloid: [ i686-linux, x86_64-darwin, x86_64-linux ] + taffybar: [ x86_64-darwin ] + tagged-list: [ i686-linux, x86_64-darwin, x86_64-linux ] + tagged-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + tagsoup-ht: [ i686-linux, x86_64-darwin, x86_64-linux ] + tagsoup-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + takusen-oracle: [ i686-linux, x86_64-darwin, x86_64-linux ] + Takusen: [ i686-linux, x86_64-darwin, x86_64-linux ] + tamarin-prover-term: [ i686-linux, x86_64-darwin, x86_64-linux ] + tamarin-prover-theory: [ i686-linux, x86_64-darwin, x86_64-linux ] + tamarin-prover-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + tamarin-prover: [ i686-linux, x86_64-darwin, x86_64-linux ] + task-distribution: [ i686-linux, x86_64-darwin, x86_64-linux ] + task: [ i686-linux, x86_64-darwin, x86_64-linux ] + taskpool: [ x86_64-darwin ] + tasty-integrate: [ i686-linux, x86_64-darwin, x86_64-linux ] + TBC: [ i686-linux, x86_64-darwin, x86_64-linux ] + TBit: [ i686-linux, x86_64-darwin, x86_64-linux ] + tbox: [ i686-linux, x86_64-darwin, x86_64-linux ] + tccli: [ i686-linux, x86_64-darwin, x86_64-linux ] + tcp: [ i686-linux, x86_64-darwin, x86_64-linux ] + tdd-util: [ i686-linux, x86_64-darwin, x86_64-linux ] + TeaHS: [ i686-linux, x86_64-linux, x86_64-darwin ] + teams: [ i686-linux, x86_64-darwin, x86_64-linux ] + telegram: [ i686-linux, x86_64-darwin, x86_64-linux ] + template-default: [ i686-linux, x86_64-darwin, x86_64-linux ] + template-haskell-util: [ i686-linux, x86_64-darwin, x86_64-linux ] + template-hsml: [ i686-linux, x86_64-darwin, x86_64-linux ] + template-yj: [ i686-linux, x86_64-darwin, x86_64-linux ] + tempodb: [ i686-linux, x86_64-darwin, x86_64-linux ] + temporal-csound: [ i686-linux, x86_64-darwin, x86_64-linux ] + tempus: [ i686-linux, x86_64-darwin, x86_64-linux ] + tensor: [ i686-linux, x86_64-darwin, x86_64-linux ] + term-rewriting: [ i686-linux, x86_64-darwin, x86_64-linux ] + termbox-bindings: [ i686-linux, x86_64-darwin, x86_64-linux ] + terntup: [ i686-linux, x86_64-darwin, x86_64-linux ] + terrahs: [ i686-linux, x86_64-darwin, x86_64-linux ] + test-framework-doctest: [ i686-linux, x86_64-darwin, x86_64-linux ] + test-framework-quickcheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + testloop: [ i686-linux, x86_64-darwin, x86_64-linux ] + testpack: [ i686-linux, x86_64-darwin, x86_64-linux ] + testpattern: [ i686-linux, x86_64-darwin, x86_64-linux ] + testPkg: [ i686-linux, x86_64-darwin, x86_64-linux ] + testrunner: [ i686-linux, x86_64-darwin, x86_64-linux ] + tetris: [ x86_64-darwin ] + tex2txt: [ i686-linux, x86_64-darwin, x86_64-linux ] + texrunner: [ i686-linux, x86_64-darwin, x86_64-linux ] + text-json-qq: [ i686-linux, x86_64-darwin, x86_64-linux ] + text-normal: [ i686-linux, x86_64-darwin, x86_64-linux ] + text-register-machine: [ i686-linux, x86_64-darwin, x86_64-linux ] + text-show-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] + text-xml-generic: [ i686-linux, x86_64-darwin, x86_64-linux ] + text-xml-qq: [ i686-linux, x86_64-darwin, x86_64-linux ] + textmatetags: [ i686-linux, x86_64-darwin, x86_64-linux ] + tfp-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + tftp: [ x86_64-darwin ] + th-context: [ i686-linux, x86_64-darwin, x86_64-linux ] + th-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] + th-kinds: [ i686-linux, x86_64-darwin, x86_64-linux ] + Theora: [ i686-linux, x86_64-darwin, x86_64-linux ] + theoremquest-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + thih: [ i686-linux, x86_64-darwin, x86_64-linux ] + thimk: [ i686-linux, x86_64-darwin, x86_64-linux ] + Thingie: [ i686-linux, x86_64-darwin, x86_64-linux ] + threadscope: [ x86_64-darwin ] + thrift: [ i686-linux, x86_64-darwin, x86_64-linux ] + tianbar: [ x86_64-darwin ] + tic-tac-toe: [ i686-linux, x86_64-darwin, x86_64-linux ] + tickle: [ i686-linux ] + TicTacToe: [ i686-linux, x86_64-darwin, x86_64-linux ] + tidal-midi: [ i686-linux, x86_64-linux, x86_64-darwin ] + tidal-vis: [ x86_64-darwin ] + tidal: [ x86_64-darwin ] + tiger: [ i686-linux, x86_64-darwin, x86_64-linux ] + tighttp: [ i686-linux, x86_64-darwin, x86_64-linux ] + timberc: [ i686-linux, x86_64-darwin, x86_64-linux ] + time-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + time-exts: [ i686-linux ] + time-http: [ i686-linux, x86_64-darwin, x86_64-linux ] + time-qq: [ i686-linux ] + time-recurrence: [ i686-linux, x86_64-darwin, x86_64-linux ] + time-series: [ i686-linux, x86_64-darwin, x86_64-linux ] + time-w3c: [ i686-linux, x86_64-darwin, x86_64-linux ] + timecalc: [ i686-linux, x86_64-darwin, x86_64-linux ] + timeout: [ i686-linux, x86_64-darwin, x86_64-linux ] + timeparsers: [ i686-linux, x86_64-darwin, x86_64-linux ] + TimePiece: [ i686-linux, x86_64-darwin, x86_64-linux ] + timestamp-subprocess-lines: [ i686-linux, x86_64-darwin, x86_64-linux ] + TinyLaunchbury: [ i686-linux, x86_64-darwin, x86_64-linux ] + TinyURL: [ i686-linux, x86_64-darwin, x86_64-linux ] + tip-haskell-frontend: [ i686-linux, x86_64-darwin, x86_64-linux ] + Titim: [ i686-linux, x86_64-darwin, x86_64-linux ] + tkhs: [ i686-linux, x86_64-darwin, x86_64-linux ] + tkyprof: [ i686-linux, x86_64-darwin, x86_64-linux ] + tls-extra: [ i686-linux, x86_64-darwin, x86_64-linux ] + to-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + to-string-class: [ i686-linux, x86_64-darwin, x86_64-linux ] + to-string-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] + todos: [ i686-linux, x86_64-darwin, x86_64-linux ] + toilet: [ i686-linux, x86_64-darwin, x86_64-linux ] + toktok: [ i686-linux, x86_64-darwin, x86_64-linux ] + tokyocabinet-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + tokyotyrant-haskell: [ x86_64-darwin ] + tomato-rubato-openal: [ x86_64-darwin ] + toml: [ i686-linux, x86_64-darwin, x86_64-linux ] + toolshed: [ i686-linux, x86_64-darwin, x86_64-linux ] + Top: [ i686-linux, x86_64-darwin, x86_64-linux ] + topkata: [ i686-linux, x86_64-darwin, x86_64-linux ] + torch: [ i686-linux, x86_64-darwin, x86_64-linux ] + Tournament: [ i686-linux, x86_64-darwin, x86_64-linux ] + toysolver: [ i686-linux, x86_64-darwin, x86_64-linux ] + tracker: [ i686-linux, x86_64-darwin, x86_64-linux ] + trajectory: [ i686-linux, x86_64-darwin, x86_64-linux ] + transactional-events: [ i686-linux, x86_64-darwin, x86_64-linux ] + transformers-convert: [ i686-linux, x86_64-darwin, x86_64-linux ] + transformers-runnable: [ i686-linux, x86_64-darwin, x86_64-linux ] + transient: [ i686-linux, x86_64-darwin, x86_64-linux ] + translate: [ i686-linux, x86_64-darwin, x86_64-linux ] + traypoweroff: [ i686-linux, x86_64-darwin, x86_64-linux ] + tremulous-query: [ i686-linux, x86_64-darwin, x86_64-linux ] + TrendGraph: [ i686-linux, x86_64-darwin, x86_64-linux ] + trhsx: [ i686-linux, x86_64-darwin, x86_64-linux ] + triangulation: [ i686-linux, x86_64-darwin, x86_64-linux ] + TrieMap: [ i686-linux, x86_64-darwin, x86_64-linux ] + trimpolya: [ i686-linux, x86_64-darwin, x86_64-linux ] + tripLL: [ x86_64-darwin ] + tsession-happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] + tsession: [ i686-linux, x86_64-darwin, x86_64-linux ] + tskiplist: [ i686-linux, x86_64-darwin, x86_64-linux ] + tsp-viz: [ i686-linux, x86_64-darwin, x86_64-linux ] + tuntap: [ i686-linux, x86_64-darwin, x86_64-linux ] + tuple-gen: [ i686-linux, x86_64-darwin, x86_64-linux ] + tuple-morph: [ i686-linux, x86_64-darwin, x86_64-linux ] + tupleinstances: [ i686-linux, x86_64-darwin, x86_64-linux ] + turing-music: [ x86_64-darwin ] + twee: [ x86_64-darwin ] + twentefp-eventloop-trees: [ i686-linux, x86_64-darwin, x86_64-linux ] + twentefp-rosetree: [ i686-linux, x86_64-darwin, x86_64-linux ] + twentefp: [ x86_64-darwin ] + twhs: [ i686-linux, x86_64-darwin, x86_64-linux ] + twidge: [ i686-linux, x86_64-darwin, x86_64-linux ] + twilight-stm: [ i686-linux, x86_64-darwin, x86_64-linux ] + twilio: [ i686-linux, x86_64-darwin, x86_64-linux ] + twill: [ i686-linux, x86_64-darwin, x86_64-linux ] + twiml: [ i686-linux, x86_64-darwin, x86_64-linux ] + twine: [ i686-linux, x86_64-darwin, x86_64-linux ] + twisty: [ i686-linux, x86_64-darwin, x86_64-linux ] + twitter-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + twitter: [ i686-linux, x86_64-darwin, x86_64-linux ] + tx: [ i686-linux, x86_64-darwin, x86_64-linux ] + TYB: [ i686-linux, x86_64-darwin, x86_64-linux ] + typalyze: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-cereal: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-digits: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-equality-check: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-int: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-level-bst: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-level: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-ord-spine-cereal: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-ord: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-settheory: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-spine: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-structure: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-sub-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + typeable-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + TypeClass: [ i686-linux, x86_64-darwin, x86_64-linux ] + typed-spreadsheet: [ x86_64-darwin ] + typed-wire: [ i686-linux, x86_64-darwin, x86_64-linux ] + typedquery: [ i686-linux, x86_64-darwin, x86_64-linux ] + typehash: [ i686-linux, x86_64-darwin, x86_64-linux ] + TypeIlluminator: [ i686-linux, x86_64-darwin, x86_64-linux ] + typelevel-tensor: [ i686-linux, x86_64-darwin, x86_64-linux ] + typeparams: [ i686-linux, x86_64-darwin, x86_64-linux ] + typescript-docs: [ i686-linux, x86_64-darwin, x86_64-linux ] + tz: [ x86_64-darwin ] + uAgda: [ i686-linux, x86_64-darwin, x86_64-linux ] + uberlast: [ i686-linux, x86_64-darwin, x86_64-linux ] + uconv: [ i686-linux, x86_64-darwin, x86_64-linux ] + udbus-model: [ i686-linux, x86_64-darwin, x86_64-linux ] + udbus: [ i686-linux, x86_64-darwin, x86_64-linux ] + udev: [ i686-linux, x86_64-darwin, x86_64-linux ] + ui-command: [ i686-linux, x86_64-darwin, x86_64-linux ] + UISF: [ x86_64-darwin ] + UMM: [ i686-linux, x86_64-darwin, x86_64-linux ] + unamb-custom: [ i686-linux, x86_64-darwin, x86_64-linux ] + unbounded-delays-units: [ i686-linux, x86_64-darwin, x86_64-linux ] + unboxed-containers: [ i686-linux, x86_64-darwin, x86_64-linux ] + unbreak: [ x86_64-darwin ] + unicode-normalization: [ i686-linux, x86_64-darwin, x86_64-linux ] + unicoder: [ i686-linux, x86_64-darwin, x86_64-linux ] + uniform-io: [ i686-linux, x86_64-darwin, x86_64-linux ] + union-map: [ i686-linux, x86_64-darwin, x86_64-linux ] + uniqueid: [ i686-linux, x86_64-darwin, x86_64-linux ] + unittyped: [ i686-linux, x86_64-darwin, x86_64-linux ] + universe-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + unix-process-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + Unixutils-shadow: [ x86_64-darwin ] + unlit: [ i686-linux, x86_64-darwin, x86_64-linux ] + unordered-containers-rematch: [ i686-linux, x86_64-darwin, x86_64-linux ] + unpack-funcs: [ i686-linux, x86_64-darwin, x86_64-linux ] + unscramble: [ i686-linux, x86_64-darwin, x86_64-linux ] + up: [ i686-linux, x86_64-darwin, x86_64-linux ] + uploadcare: [ i686-linux, x86_64-darwin, x86_64-linux ] + upskirt: [ i686-linux, x86_64-darwin, x86_64-linux ] + ureader: [ i686-linux, x86_64-darwin, x86_64-linux ] + urembed: [ i686-linux, x86_64-darwin, x86_64-linux ] + uri-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + uri-enumerator-file: [ i686-linux, x86_64-darwin, x86_64-linux ] + uri-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + url-generic: [ i686-linux, x86_64-darwin, x86_64-linux ] + urlcheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + urldecode: [ i686-linux, x86_64-darwin, x86_64-linux ] + urldisp-happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] + UrlDisp: [ i686-linux, x86_64-darwin, x86_64-linux ] + URLT: [ i686-linux, x86_64-darwin, x86_64-linux ] + urxml: [ i686-linux, x86_64-darwin, x86_64-linux ] + usb-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + usb-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] + usb-safe: [ i686-linux, x86_64-darwin, x86_64-linux ] + utf8-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] + UTFTConverter: [ i686-linux, x86_64-darwin, x86_64-linux ] + uuagc-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] + uvector-algorithms: [ i686-linux, x86_64-darwin, x86_64-linux ] + uvector: [ i686-linux, x86_64-darwin, x86_64-linux ] + v4l2-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + v4l2: [ i686-linux, x86_64-darwin, x86_64-linux ] + vacuum-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] + vacuum-graphviz: [ i686-linux, x86_64-darwin, x86_64-linux ] + vacuum-opengl: [ i686-linux, x86_64-darwin, x86_64-linux ] + vacuum-ubigraph: [ i686-linux, x86_64-darwin, x86_64-linux ] + vacuum: [ i686-linux, x86_64-darwin, x86_64-linux ] + vampire: [ i686-linux, x86_64-darwin, x86_64-linux ] + var: [ i686-linux, x86_64-darwin, x86_64-linux ] + vaultaire-common: [ i686-linux, x86_64-darwin, x86_64-linux ] + vcache-trie: [ x86_64-darwin ] + vcache: [ x86_64-darwin ] + vcsgui: [ x86_64-darwin ] + Vec-Boolean: [ i686-linux, x86_64-darwin, x86_64-linux ] + Vec-OpenGLRaw: [ i686-linux, x86_64-darwin, x86_64-linux ] + Vec-Transform: [ i686-linux, x86_64-darwin, x86_64-linux ] + vect-opengl: [ i686-linux, x86_64-darwin, x86_64-linux ] + vector-bytestring: [ i686-linux, x86_64-darwin, x86_64-linux ] + vector-clock: [ i686-linux, x86_64-darwin, x86_64-linux ] + vector-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + vector-functorlazy: [ i686-linux, x86_64-darwin, x86_64-linux ] + vector-instances-collections: [ i686-linux, x86_64-darwin, x86_64-linux ] + vector-random: [ i686-linux, x86_64-darwin, x86_64-linux ] + vector-read-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] + vector-space-opengl: [ i686-linux, x86_64-darwin, x86_64-linux ] + vector-static: [ i686-linux, x86_64-darwin, x86_64-linux ] + verilog: [ i686-linux, x86_64-darwin, x86_64-linux ] + versions: [ i686-linux, x86_64-darwin, x86_64-linux ] + vigilance: [ i686-linux, x86_64-darwin, x86_64-linux ] + vimus: [ i686-linux ] + vintage-basic: [ i686-linux, x86_64-darwin, x86_64-linux ] + vinyl-gl: [ i686-linux, x86_64-darwin, x86_64-linux ] + vinyl-json: [ i686-linux, x86_64-darwin, x86_64-linux ] + vinyl-vectors: [ i686-linux, x86_64-darwin, x86_64-linux ] + virthualenv: [ i686-linux, x86_64-darwin, x86_64-linux ] + vision: [ i686-linux, x86_64-darwin, x86_64-linux ] + visual-graphrewrite: [ i686-linux, x86_64-darwin, x86_64-linux ] + visual-prof: [ i686-linux, x86_64-darwin, x86_64-linux ] + vivid: [ i686-linux, x86_64-darwin, x86_64-linux ] + vk-aws-route53: [ i686-linux, x86_64-darwin, x86_64-linux ] + vowpal-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + voyeur: [ i686-linux, x86_64-linux ] + vrpn: [ x86_64-darwin ] + vte: [ i686-linux, x86_64-linux, x86_64-darwin ] + vtegtk3: [ i686-linux, x86_64-linux, x86_64-darwin ] + vty-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + vty-menu: [ i686-linux, x86_64-darwin, x86_64-linux ] + vty-ui-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + vulkan: [ i686-linux, x86_64-darwin, x86_64-linux ] + wacom-daemon: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-graceful: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-handler-devel: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-handler-snap: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-handler-webkit: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-hastache: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-lite: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-logger-prefork: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-middleware-cache-redis: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-middleware-cache: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-middleware-catch: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-middleware-crowd: [ i686-linux ] + wai-middleware-headers: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-middleware-hmac-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-middleware-preprocessor: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-middleware-route: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-middleware-static-caching: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-session-tokyocabinet: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-static-cache: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-thrift: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-throttler: [ i686-linux, x86_64-darwin, x86_64-linux ] + warp-dynamic: [ i686-linux, x86_64-darwin, x86_64-linux ] + warp-static: [ i686-linux, x86_64-darwin, x86_64-linux ] + warp-tls-uid: [ i686-linux, x86_64-darwin, x86_64-linux ] + WashNGo: [ i686-linux, x86_64-darwin, x86_64-linux ] + watchdog: [ i686-linux, x86_64-darwin, x86_64-linux ] + watcher: [ i686-linux, x86_64-darwin, x86_64-linux ] + watchit: [ i686-linux, x86_64-darwin, x86_64-linux ] + WaveFront: [ i686-linux, x86_64-darwin, x86_64-linux ] + wavesurfer: [ i686-linux, x86_64-darwin, x86_64-linux ] + weather-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + web-browser-in-haskell: [ i686-linux, x86_64-linux, x86_64-darwin ] + web-encodings: [ i686-linux, x86_64-darwin, x86_64-linux ] + web-mongrel2: [ i686-linux, x86_64-darwin, x86_64-linux ] + web-routes-quasi: [ i686-linux, x86_64-darwin, x86_64-linux ] + web-routes-transformers: [ i686-linux, x86_64-darwin, x86_64-linux ] + webapi: [ i686-linux, x86_64-darwin, x86_64-linux ] + webapp: [ i686-linux, x86_64-darwin, x86_64-linux ] + WebBits-Html: [ i686-linux, x86_64-darwin, x86_64-linux ] + WebBits-multiplate: [ i686-linux, x86_64-darwin, x86_64-linux ] + WebCont: [ i686-linux, x86_64-darwin, x86_64-linux ] + webdriver-snoy: [ i686-linux, x86_64-darwin, x86_64-linux ] + webify: [ i686-linux, x86_64-darwin, x86_64-linux ] + webkit-javascriptcore: [ i686-linux, x86_64-linux, x86_64-darwin ] + webkit: [ x86_64-darwin ] + webkitgtk3-javascriptcore: [ x86_64-darwin ] + webkitgtk3: [ x86_64-darwin ] + Webrexp: [ i686-linux, x86_64-darwin, x86_64-linux ] + webserver: [ i686-linux, x86_64-darwin, x86_64-linux ] + websnap: [ i686-linux, x86_64-linux, x86_64-darwin ] + webwire: [ i686-linux, x86_64-darwin, x86_64-linux ] + wedged: [ i686-linux, x86_64-darwin, x86_64-linux ] + weighted-regexp: [ i686-linux, x86_64-darwin, x86_64-linux ] + welshy: [ i686-linux, x86_64-darwin, x86_64-linux ] + wheb-mongo: [ i686-linux, x86_64-darwin, x86_64-linux ] + wheb-redis: [ i686-linux, x86_64-darwin, x86_64-linux ] + wheb-strapped: [ i686-linux, x86_64-darwin, x86_64-linux ] + Wheb: [ i686-linux, x86_64-darwin, x86_64-linux ] + whim: [ i686-linux, x86_64-darwin, x86_64-linux ] + whitespace: [ i686-linux, x86_64-darwin, x86_64-linux ] + WikimediaParser: [ i686-linux, x86_64-darwin, x86_64-linux ] + wikipedia4epub: [ i686-linux, x86_64-darwin, x86_64-linux ] + windowslive: [ i686-linux, x86_64-darwin, x86_64-linux ] + winerror: [ i686-linux, x86_64-darwin, x86_64-linux ] + winio: [ i686-linux, x86_64-darwin, x86_64-linux ] + Wired: [ x86_64-darwin ] + WL500gPControl: [ i686-linux, x86_64-darwin, x86_64-linux ] + wlc-hs: [ i686-linux, x86_64-linux, x86_64-darwin ] + WMSigner: [ i686-linux ] + wobsurv: [ i686-linux, x86_64-darwin, x86_64-linux ] + woffex: [ i686-linux, x86_64-darwin, x86_64-linux ] + wolf: [ i686-linux, x86_64-darwin, x86_64-linux ] + word24: [ i686-linux, x86_64-darwin, x86_64-linux ] + WordAlignment: [ i686-linux, x86_64-darwin, x86_64-linux ] + Wordlint: [ i686-linux, x86_64-darwin, x86_64-linux ] + WordNet-ghc74: [ i686-linux, x86_64-darwin, x86_64-linux ] + WordNet: [ i686-linux, x86_64-darwin, x86_64-linux ] + wordsearch: [ i686-linux, x86_64-darwin, x86_64-linux ] + workflow-osx: [ i686-linux, x86_64-darwin, x86_64-linux ] + wp-archivebot: [ i686-linux, x86_64-darwin, x86_64-linux ] + wraxml: [ i686-linux, x86_64-darwin, x86_64-linux ] + wright: [ i686-linux, x86_64-darwin, x86_64-linux ] + wtk-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + wtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + wumpus-basic: [ i686-linux, x86_64-darwin, x86_64-linux ] + wumpus-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + wumpus-drawing: [ i686-linux, x86_64-darwin, x86_64-linux ] + wumpus-microprint: [ i686-linux, x86_64-darwin, x86_64-linux ] + wumpus-tree: [ i686-linux, x86_64-darwin, x86_64-linux ] + WURFL: [ i686-linux, x86_64-darwin, x86_64-linux ] + wx: [ x86_64-darwin ] + wxAsteroids: [ x86_64-darwin ] + wxc: [ x86_64-darwin ] + wxcore: [ x86_64-darwin ] + WXDiffCtrl: [ i686-linux, x86_64-darwin, x86_64-linux ] + wxFruit: [ i686-linux, x86_64-darwin, x86_64-linux ] + WxGeneric: [ x86_64-darwin ] + wxhnotepad: [ i686-linux, x86_64-darwin, x86_64-linux ] + wxturtle: [ i686-linux, x86_64-darwin, x86_64-linux ] + wyvern: [ i686-linux, x86_64-darwin, x86_64-linux ] + x-dsp: [ i686-linux, x86_64-darwin, x86_64-linux ] + X11-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + X11-rm: [ i686-linux, x86_64-darwin, x86_64-linux ] + X11-xdamage: [ i686-linux, x86_64-darwin, x86_64-linux ] + X11-xfixes: [ i686-linux, x86_64-darwin, x86_64-linux ] + x11-xinput: [ i686-linux, x86_64-darwin, x86_64-linux ] + xattr: [ x86_64-darwin ] + xbattbar: [ x86_64-darwin ] + xchat-plugin: [ x86_64-darwin, x86_64-linux ] + xdot: [ x86_64-darwin ] + Xec: [ i686-linux, x86_64-darwin, x86_64-linux ] + xfconf: [ i686-linux, x86_64-darwin, x86_64-linux ] + xhaskell-library: [ i686-linux, x86_64-darwin, x86_64-linux ] + xhb-ewmh: [ i686-linux, x86_64-darwin, x86_64-linux ] + xine: [ i686-linux, x86_64-darwin, x86_64-linux ] + xing-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + xkbcommon: [ i686-linux, x86_64-darwin, x86_64-linux ] + xkcd: [ i686-linux, x86_64-darwin, x86_64-linux ] + xlsx-templater: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml-catalog: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml-enumerator-combinators: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml-pipe: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml-prettify: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml-push: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml-query-xml-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml-query-xml-types: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml2json: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml2x: [ i686-linux, x86_64-darwin, x86_64-linux ] + XmlHtmlWriter: [ i686-linux, x86_64-darwin, x86_64-linux ] + xmltv: [ i686-linux, x86_64-darwin, x86_64-linux ] + xmms2-client-glib: [ i686-linux, x86_64-darwin, x86_64-linux ] + xmms2-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + XMMS: [ i686-linux, x86_64-darwin, x86_64-linux ] + xmobar: [ x86_64-darwin ] + xmonad-bluetilebranch: [ i686-linux, x86_64-darwin, x86_64-linux ] + xmonad-contrib-bluetilebranch: [ i686-linux, x86_64-darwin, x86_64-linux ] + xmonad-eval: [ i686-linux, x86_64-darwin, x86_64-linux ] + xmonad-screenshot: [ x86_64-darwin ] + xmonad-utils: [ x86_64-darwin ] + xmpipe: [ i686-linux, x86_64-darwin, x86_64-linux ] + XMPP: [ i686-linux, x86_64-darwin, x86_64-linux ] + xosd: [ x86_64-darwin ] + xournal-convert: [ i686-linux, x86_64-darwin, x86_64-linux ] + xournal-render: [ i686-linux, x86_64-darwin, x86_64-linux ] + xsact: [ i686-linux, x86_64-darwin, x86_64-linux ] + XSaiga: [ i686-linux, x86_64-darwin, x86_64-linux ] + xslt: [ i686-linux, x86_64-darwin, x86_64-linux ] + xtc: [ x86_64-darwin ] + y0l0bot: [ i686-linux, x86_64-darwin, x86_64-linux ] + Yablog: [ i686-linux, x86_64-darwin, x86_64-linux ] + YACPong: [ i686-linux, x86_64-linux, x86_64-darwin ] + yahoo-web-search: [ i686-linux, x86_64-darwin, x86_64-linux ] + yajl-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + yajl: [ i686-linux, x86_64-darwin, x86_64-linux ] + yaml-rpc-scotty: [ i686-linux, x86_64-darwin, x86_64-linux ] + yaml-rpc-snap: [ i686-linux, x86_64-darwin, x86_64-linux ] + yaml-rpc: [ i686-linux, x86_64-darwin, x86_64-linux ] + yaml-union: [ i686-linux, x86_64-darwin, x86_64-linux ] + yaml2owl: [ i686-linux, x86_64-darwin, x86_64-linux ] + YamlReference: [ x86_64-darwin ] + yampa-canvas: [ i686-linux ] + yampa-glfw: [ i686-linux, x86_64-darwin, x86_64-linux ] + yampa-glut: [ i686-linux, x86_64-darwin, x86_64-linux ] + yampa2048: [ i686-linux, x86_64-darwin ] + Yampa: [ i686-linux ] + YampaSynth: [ i686-linux ] + yaop: [ i686-linux, x86_64-darwin, x86_64-linux ] + yarr-image-io: [ i686-linux, x86_64-darwin, x86_64-linux ] + yarr: [ i686-linux, x86_64-darwin, x86_64-linux ] + yate: [ i686-linux, x86_64-darwin, x86_64-linux ] + yavie: [ i686-linux, x86_64-darwin, x86_64-linux ] + ycextra: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-angular-ui: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-auth-ldap: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-auth-pam: [ i686-linux, x86_64-linux, x86_64-darwin ] + yesod-auth-smbclient: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-comments: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-content-pdf: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-continuations: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-datatables: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-goodies: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-links: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-media-simple: [ x86_64-darwin ] + yesod-paginate: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-pagination: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-pure: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-purescript: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-raml-bin: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-raml-mock: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-routes-typescript: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-rst: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-s3: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-session-redis: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-tableview: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-test-json: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-tls: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-vend: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-worker: [ i686-linux, x86_64-darwin, x86_64-linux ] + yet-another-logger: [ i686-linux ] + YFrob: [ i686-linux, x86_64-darwin, x86_64-linux ] + yhccore: [ i686-linux, x86_64-darwin, x86_64-linux ] + yi-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] + yi-fuzzy-open: [ x86_64-darwin ] + yi-monokai: [ x86_64-darwin ] + yi-rope: [ x86_64-darwin ] + yi-snippet: [ x86_64-darwin ] + yi-solarized: [ x86_64-darwin ] + yi-spolsky: [ x86_64-darwin ] + yi: [ x86_64-darwin ] + yices: [ i686-linux, x86_64-darwin, x86_64-linux ] + yjftp: [ i686-linux, x86_64-darwin, x86_64-linux ] + Yogurt-Standalone: [ i686-linux, x86_64-darwin, x86_64-linux ] + Yogurt: [ i686-linux, x86_64-darwin, x86_64-linux ] + yoko: [ i686-linux, x86_64-darwin, x86_64-linux ] + york-lava: [ i686-linux, x86_64-darwin, x86_64-linux ] + yql: [ i686-linux, x86_64-darwin, x86_64-linux ] + yuiGrid: [ i686-linux, x86_64-darwin, x86_64-linux ] + yuuko: [ i686-linux, x86_64-darwin, x86_64-linux ] + yxdb-utils: [ i686-linux ] + z3: [ x86_64-darwin ] + zampolit: [ i686-linux, x86_64-darwin, x86_64-linux ] + zasni-gerna: [ i686-linux, x86_64-darwin, x86_64-linux ] + zendesk-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + zeno: [ i686-linux, x86_64-darwin, x86_64-linux ] + zerobin: [ i686-linux, x86_64-darwin, x86_64-linux ] + zeromq-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + zeromq3-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + zeromq3-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + zeroth: [ i686-linux, x86_64-darwin, x86_64-linux ] + ZFS: [ i686-linux, x86_64-darwin, x86_64-linux ] + zip: [ i686-linux, x86_64-darwin, x86_64-linux ] + zipedit: [ i686-linux, x86_64-darwin, x86_64-linux ] + ZMachine: [ i686-linux, x86_64-darwin, x86_64-linux ] + zmcat: [ i686-linux, x86_64-darwin, x86_64-linux ] + zmqat: [ i686-linux, x86_64-darwin, x86_64-linux ] + zoneinfo: [ i686-linux, x86_64-darwin, x86_64-linux ] + zoom-cache-pcm: [ i686-linux, x86_64-darwin, x86_64-linux ] + zoom-cache-sndfile: [ i686-linux, x86_64-darwin, x86_64-linux ] + zoom-cache: [ i686-linux, x86_64-darwin, x86_64-linux ] + zoom: [ i686-linux, x86_64-darwin, x86_64-linux ] + zot: [ i686-linux, x86_64-darwin, x86_64-linux ] + zsh-battery: [ i686-linux, x86_64-darwin, x86_64-linux ] + ztail: [ i686-linux, x86_64-darwin, x86_64-linux ] + Zwaluw: [ i686-linux, x86_64-darwin, x86_64-linux ] diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index a3a5bb413d0..35b1ee108f7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -1362,6 +1362,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1393,6 +1394,7 @@ self: super: { "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"; @@ -2056,6 +2058,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5860,6 +5864,7 @@ self: super: { "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-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6438,6 +6443,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6810,6 +6816,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8264,6 +8271,7 @@ self: super: { "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"; @@ -8425,6 +8433,7 @@ self: super: { "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"; @@ -9079,6 +9088,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_1"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index 0940c4dce5e..4252ff32382 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -1362,6 +1362,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1393,6 +1394,7 @@ self: super: { "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"; @@ -2056,6 +2058,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5860,6 +5864,7 @@ self: super: { "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-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6438,6 +6443,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6810,6 +6816,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8264,6 +8271,7 @@ self: super: { "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"; @@ -8425,6 +8433,7 @@ self: super: { "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"; @@ -9079,6 +9088,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_1"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index 4954fee9d40..55218e1b2d9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -1362,6 +1362,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1393,6 +1394,7 @@ self: super: { "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"; @@ -2056,6 +2058,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5860,6 +5864,7 @@ self: super: { "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-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6438,6 +6443,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6810,6 +6816,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8264,6 +8271,7 @@ self: super: { "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"; @@ -8425,6 +8433,7 @@ self: super: { "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"; @@ -9079,6 +9088,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_1"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index dcf8b9e6dc0..4c570616d25 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -1362,6 +1362,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1393,6 +1394,7 @@ self: super: { "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"; @@ -2056,6 +2058,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5860,6 +5864,7 @@ self: super: { "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-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6438,6 +6443,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6810,6 +6816,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8264,6 +8271,7 @@ self: super: { "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"; @@ -8425,6 +8433,7 @@ self: super: { "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"; @@ -9079,6 +9088,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_1"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index c4d4e960951..2c434b450dd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -1362,6 +1362,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1393,6 +1394,7 @@ self: super: { "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"; @@ -2056,6 +2058,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5857,6 +5861,7 @@ self: super: { "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-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6435,6 +6440,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6807,6 +6813,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8260,6 +8267,7 @@ self: super: { "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"; @@ -8421,6 +8429,7 @@ self: super: { "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"; @@ -9075,6 +9084,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 401a3ed03d7..11b41d8472f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -1362,6 +1362,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1393,6 +1394,7 @@ self: super: { "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"; @@ -2056,6 +2058,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5857,6 +5861,7 @@ self: super: { "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-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6435,6 +6440,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6807,6 +6813,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8260,6 +8267,7 @@ self: super: { "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"; @@ -8421,6 +8429,7 @@ self: super: { "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"; @@ -9075,6 +9084,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 3c5f8dd5cd1..7e0d257c4d4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -1361,6 +1361,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1392,6 +1393,7 @@ self: super: { "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"; @@ -2055,6 +2057,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5855,6 +5859,7 @@ self: super: { "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-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6433,6 +6438,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6805,6 +6811,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8257,6 +8264,7 @@ self: super: { "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"; @@ -8418,6 +8426,7 @@ self: super: { "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"; @@ -9071,6 +9080,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_3"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index 91051bcc499..c9201e629c4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -1361,6 +1361,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1392,6 +1393,7 @@ self: super: { "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"; @@ -2055,6 +2057,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5855,6 +5859,7 @@ self: super: { "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-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6433,6 +6438,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6805,6 +6811,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8257,6 +8264,7 @@ self: super: { "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"; @@ -8418,6 +8426,7 @@ self: super: { "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"; @@ -9071,6 +9080,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_3"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index bcf01cad486..9c2bd163209 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -1358,6 +1358,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1389,6 +1390,7 @@ self: super: { "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"; @@ -2049,6 +2051,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5846,6 +5850,7 @@ self: super: { "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-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6424,6 +6429,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6796,6 +6802,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8246,6 +8253,7 @@ self: super: { "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"; @@ -8407,6 +8415,7 @@ self: super: { "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"; @@ -9059,6 +9068,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_3"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index 10405fe0270..b1675c2cf27 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -1358,6 +1358,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1389,6 +1390,7 @@ self: super: { "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"; @@ -2048,6 +2050,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5839,6 +5843,7 @@ self: super: { "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-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6417,6 +6422,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6789,6 +6795,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8234,6 +8241,7 @@ self: super: { "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"; @@ -8395,6 +8403,7 @@ self: super: { "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"; @@ -9046,6 +9055,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_3"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 4f21f97cae1..7d3ffd0c9fa 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -1357,6 +1357,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1388,6 +1389,7 @@ self: super: { "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"; @@ -2046,6 +2048,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5822,6 +5826,7 @@ self: super: { "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-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6397,6 +6402,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6769,6 +6775,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8209,6 +8216,7 @@ self: super: { "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"; @@ -8368,6 +8376,7 @@ self: super: { "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"; @@ -9016,6 +9025,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_4"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index 56f40a1f551..5dc61da9898 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -1357,6 +1357,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1388,6 +1389,7 @@ self: super: { "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"; @@ -2046,6 +2048,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5818,6 +5822,7 @@ self: super: { "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-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6393,6 +6398,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6765,6 +6771,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8205,6 +8212,7 @@ self: super: { "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"; @@ -8364,6 +8372,7 @@ self: super: { "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"; @@ -9012,6 +9021,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_4"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index 142d080f038..e467b2afb76 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -1357,6 +1357,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1388,6 +1389,7 @@ self: super: { "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"; @@ -2046,6 +2048,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5817,6 +5821,7 @@ self: super: { "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-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6392,6 +6397,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6764,6 +6770,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8203,6 +8210,7 @@ self: super: { "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"; @@ -8362,6 +8370,7 @@ self: super: { "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"; @@ -9010,6 +9019,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_4"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 721eacb7a5a..ec319d93c38 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -1357,6 +1357,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1388,6 +1389,7 @@ self: super: { "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"; @@ -2046,6 +2048,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5816,6 +5820,7 @@ self: super: { "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-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6391,6 +6396,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6763,6 +6769,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8201,6 +8208,7 @@ self: super: { "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"; @@ -8360,6 +8368,7 @@ self: super: { "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"; @@ -9008,6 +9017,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_4"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 4803f7453a8..06ca863e7b7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -1356,6 +1356,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1387,6 +1388,7 @@ self: super: { "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"; @@ -2044,6 +2046,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5811,6 +5815,7 @@ self: super: { "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-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6386,6 +6391,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6758,6 +6764,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8195,6 +8202,7 @@ self: super: { "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"; @@ -8354,6 +8362,7 @@ self: super: { "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"; @@ -9002,6 +9011,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_4"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index 2ef8b12c9c2..fa9a56d00b5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -1355,6 +1355,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1386,6 +1387,7 @@ self: super: { "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"; @@ -2043,6 +2045,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5807,6 +5811,7 @@ self: super: { "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-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6380,6 +6385,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6752,6 +6758,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8186,6 +8193,7 @@ self: super: { "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"; @@ -8345,6 +8353,7 @@ self: super: { "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"; @@ -8992,6 +9001,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_4"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index 28af1ea36f5..1fb10c17d7a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -1358,6 +1358,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1389,6 +1390,7 @@ self: super: { "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"; @@ -2048,6 +2050,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5836,6 +5840,7 @@ self: super: { "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-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6413,6 +6418,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6785,6 +6791,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8228,6 +8235,7 @@ self: super: { "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"; @@ -8389,6 +8397,7 @@ self: super: { "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"; @@ -9040,6 +9049,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_3"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index c2a0f837c80..e0afb78214d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -1357,6 +1357,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1388,6 +1389,7 @@ self: super: { "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"; @@ -2047,6 +2049,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5833,6 +5837,7 @@ self: super: { "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-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6409,6 +6414,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6781,6 +6787,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8223,6 +8230,7 @@ self: super: { "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"; @@ -8384,6 +8392,7 @@ self: super: { "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"; @@ -9035,6 +9044,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_4"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index dee30960bd5..1d1f37bdcee 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -1357,6 +1357,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1388,6 +1389,7 @@ self: super: { "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"; @@ -2046,6 +2048,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5832,6 +5836,7 @@ self: super: { "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-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6408,6 +6413,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6780,6 +6786,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8222,6 +8229,7 @@ self: super: { "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"; @@ -8382,6 +8390,7 @@ self: super: { "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"; @@ -9032,6 +9041,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_4"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index 2b055efdde7..b666d3a9474 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -1357,6 +1357,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1388,6 +1389,7 @@ self: super: { "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"; @@ -2046,6 +2048,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5827,6 +5831,7 @@ self: super: { "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-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6403,6 +6408,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6775,6 +6781,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8217,6 +8224,7 @@ self: super: { "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"; @@ -8377,6 +8385,7 @@ self: super: { "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"; @@ -9027,6 +9036,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_4"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index 108f6583d66..f359a574336 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -1357,6 +1357,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1388,6 +1389,7 @@ self: super: { "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"; @@ -2046,6 +2048,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5823,6 +5827,7 @@ self: super: { "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-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6399,6 +6404,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6771,6 +6777,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8213,6 +8220,7 @@ self: super: { "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"; @@ -8372,6 +8380,7 @@ self: super: { "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"; @@ -9022,6 +9031,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_4"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index d4f8810cedf..53c4760d0f9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -1357,6 +1357,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1388,6 +1389,7 @@ self: super: { "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"; @@ -2046,6 +2048,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5822,6 +5826,7 @@ self: super: { "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-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6398,6 +6403,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6770,6 +6776,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8212,6 +8219,7 @@ self: super: { "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"; @@ -8371,6 +8379,7 @@ self: super: { "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"; @@ -9021,6 +9030,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_4"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index 963cfdccb51..841d0bb3771 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -1349,6 +1349,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1379,6 +1380,7 @@ self: super: { "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"; @@ -2033,6 +2035,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5773,6 +5777,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6337,6 +6342,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6707,6 +6713,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8134,6 +8141,7 @@ self: super: { "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"; @@ -8293,6 +8301,7 @@ self: super: { "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"; @@ -8933,6 +8942,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_4"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index 9ade4844422..43eab76cc9c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -1349,6 +1349,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1379,6 +1380,7 @@ self: super: { "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"; @@ -2032,6 +2034,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5772,6 +5776,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6336,6 +6341,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6706,6 +6712,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8133,6 +8140,7 @@ self: super: { "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"; @@ -8292,6 +8300,7 @@ self: super: { "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"; @@ -8931,6 +8940,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_4"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index 8a251c54f35..920b9749467 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -1344,6 +1344,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1374,6 +1375,7 @@ self: super: { "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"; @@ -2021,6 +2023,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5743,6 +5747,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6306,6 +6311,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6673,6 +6679,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8089,6 +8096,7 @@ self: super: { "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"; @@ -8246,6 +8254,7 @@ self: super: { "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"; @@ -8883,6 +8892,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 0c399ac6fac..10ba43e4f08 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -1343,6 +1343,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1373,6 +1374,7 @@ self: super: { "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"; @@ -2020,6 +2022,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5739,6 +5743,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6300,6 +6305,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6667,6 +6673,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8080,6 +8087,7 @@ self: super: { "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"; @@ -8237,6 +8245,7 @@ self: super: { "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"; @@ -8874,6 +8883,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index 000b50ac332..246b47db52c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -1343,6 +1343,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1373,6 +1374,7 @@ self: super: { "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"; @@ -2020,6 +2022,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5739,6 +5743,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6300,6 +6305,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6667,6 +6673,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8079,6 +8086,7 @@ self: super: { "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"; @@ -8236,6 +8244,7 @@ self: super: { "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"; @@ -8873,6 +8882,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 7e6d4fb0799..88e7a28ab09 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -1343,6 +1343,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1373,6 +1374,7 @@ self: super: { "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"; @@ -2020,6 +2022,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5737,6 +5741,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6298,6 +6303,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6665,6 +6671,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8077,6 +8084,7 @@ self: super: { "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"; @@ -8234,6 +8242,7 @@ self: super: { "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"; @@ -8871,6 +8880,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index e78d07486d3..7a8ca34527f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -1342,6 +1342,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1372,6 +1373,7 @@ self: super: { "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"; @@ -2019,6 +2021,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5734,6 +5738,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6295,6 +6300,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6662,6 +6668,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8073,6 +8080,7 @@ self: super: { "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"; @@ -8230,6 +8238,7 @@ self: super: { "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"; @@ -8866,6 +8875,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index 2e58fa92057..6e46648b510 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -1342,6 +1342,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1372,6 +1373,7 @@ self: super: { "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"; @@ -2019,6 +2021,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5733,6 +5737,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6293,6 +6298,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6660,6 +6666,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8070,6 +8077,7 @@ self: super: { "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"; @@ -8227,6 +8235,7 @@ self: super: { "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"; @@ -8863,6 +8872,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index df159fadb30..8bcf58fd8c1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -1342,6 +1342,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1372,6 +1373,7 @@ self: super: { "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"; @@ -2019,6 +2021,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5728,6 +5732,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6288,6 +6293,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6655,6 +6661,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8065,6 +8072,7 @@ self: super: { "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"; @@ -8222,6 +8230,7 @@ self: super: { "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"; @@ -8858,6 +8867,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index e4f5dcda404..24a1980ce8b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -1342,6 +1342,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1372,6 +1373,7 @@ self: super: { "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"; @@ -2017,6 +2019,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5724,6 +5728,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6283,6 +6288,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6650,6 +6656,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8060,6 +8067,7 @@ self: super: { "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"; @@ -8217,6 +8225,7 @@ self: super: { "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"; @@ -8853,6 +8862,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index 90852bb432f..853f561053c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -1342,6 +1342,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1372,6 +1373,7 @@ self: super: { "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"; @@ -2016,6 +2018,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5722,6 +5726,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6280,6 +6285,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6647,6 +6653,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8056,6 +8063,7 @@ self: super: { "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"; @@ -8213,6 +8221,7 @@ self: super: { "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"; @@ -8848,6 +8857,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index 86cdd24aff0..08866925e5f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -1342,6 +1342,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1372,6 +1373,7 @@ self: super: { "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"; @@ -2016,6 +2018,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5720,6 +5724,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6278,6 +6283,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6645,6 +6651,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -7453,6 +7460,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -8052,6 +8060,7 @@ self: super: { "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"; @@ -8209,6 +8218,7 @@ self: super: { "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"; @@ -8843,6 +8853,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index 2ab25604cf3..74a4ca63498 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -1348,6 +1348,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1378,6 +1379,7 @@ self: super: { "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"; @@ -2029,6 +2031,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5769,6 +5773,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6333,6 +6338,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6703,6 +6709,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8130,6 +8137,7 @@ self: super: { "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"; @@ -8289,6 +8297,7 @@ self: super: { "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"; @@ -8927,6 +8936,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_4"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index 309af43ca8e..404531216e8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -1342,6 +1342,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1372,6 +1373,7 @@ self: super: { "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"; @@ -2016,6 +2018,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5719,6 +5723,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6277,6 +6282,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6643,6 +6649,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -7450,6 +7457,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -8049,6 +8057,7 @@ self: super: { "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"; @@ -8206,6 +8215,7 @@ self: super: { "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"; @@ -8840,6 +8850,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index cdd08f1ebef..adfa0a08c19 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -1342,6 +1342,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1372,6 +1373,7 @@ self: super: { "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"; @@ -2016,6 +2018,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5202,6 +5206,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5718,6 +5723,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6276,6 +6282,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6641,6 +6648,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -7448,6 +7456,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -8047,6 +8056,7 @@ self: super: { "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"; @@ -8204,6 +8214,7 @@ self: super: { "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"; @@ -8835,6 +8846,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index fa0471894cf..ee68de1be61 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -1342,6 +1342,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1372,6 +1373,7 @@ self: super: { "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"; @@ -2016,6 +2018,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5201,6 +5205,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5716,6 +5721,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6274,6 +6280,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6639,6 +6646,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -7446,6 +7454,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -8045,6 +8054,7 @@ self: super: { "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"; @@ -8202,6 +8212,7 @@ self: super: { "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"; @@ -8833,6 +8844,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index 91bbfa37d9a..71802ab36c5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -1348,6 +1348,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1378,6 +1379,7 @@ self: super: { "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"; @@ -2029,6 +2031,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5767,6 +5771,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6331,6 +6336,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6701,6 +6707,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8128,6 +8135,7 @@ self: super: { "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"; @@ -8287,6 +8295,7 @@ self: super: { "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"; @@ -8925,6 +8934,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_4"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index 2de9244d173..7e5475f5b9c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -1348,6 +1348,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1378,6 +1379,7 @@ self: super: { "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"; @@ -2028,6 +2030,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5765,6 +5769,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6329,6 +6334,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6698,6 +6704,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8124,6 +8131,7 @@ self: super: { "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"; @@ -8283,6 +8291,7 @@ self: super: { "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"; @@ -8921,6 +8930,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index 159a5fffc07..12654549417 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -1348,6 +1348,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1378,6 +1379,7 @@ self: super: { "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"; @@ -2028,6 +2030,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5764,6 +5768,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6328,6 +6333,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6697,6 +6703,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8123,6 +8130,7 @@ self: super: { "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"; @@ -8282,6 +8290,7 @@ self: super: { "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"; @@ -8920,6 +8929,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index fbd038b45a3..c163e9bea04 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -1346,6 +1346,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1376,6 +1377,7 @@ self: super: { "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"; @@ -2025,6 +2027,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5759,6 +5763,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6322,6 +6327,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6691,6 +6697,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8117,6 +8124,7 @@ self: super: { "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"; @@ -8274,6 +8282,7 @@ self: super: { "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"; @@ -8912,6 +8921,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index e9b4bf7bb2f..431d88047a9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -1345,6 +1345,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1375,6 +1376,7 @@ self: super: { "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"; @@ -2024,6 +2026,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5758,6 +5762,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6321,6 +6326,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6690,6 +6696,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8116,6 +8123,7 @@ self: super: { "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"; @@ -8273,6 +8281,7 @@ self: super: { "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"; @@ -8911,6 +8920,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index 1a1c7533750..c5680910a76 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -1344,6 +1344,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1374,6 +1375,7 @@ self: super: { "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"; @@ -2023,6 +2025,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5756,6 +5760,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6319,6 +6324,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6688,6 +6694,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8110,6 +8117,7 @@ self: super: { "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"; @@ -8267,6 +8275,7 @@ self: super: { "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"; @@ -8905,6 +8914,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index 0b77b9d2bcb..9ccca5280dd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -1344,6 +1344,7 @@ self: super: { "apiary-cookie" = dontDistribute super."apiary-cookie"; "apiary-eventsource" = dontDistribute super."apiary-eventsource"; "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-logger" = dontDistribute super."apiary-logger"; "apiary-memcached" = dontDistribute super."apiary-memcached"; "apiary-mongoDB" = dontDistribute super."apiary-mongoDB"; @@ -1374,6 +1375,7 @@ self: super: { "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"; @@ -2021,6 +2023,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5748,6 +5752,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6311,6 +6316,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-handler" = doDistribute super."partial-handler_0_1_1"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; @@ -6679,6 +6685,7 @@ self: super: { "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -8097,6 +8104,7 @@ self: super: { "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"; @@ -8254,6 +8262,7 @@ self: super: { "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"; @@ -8891,6 +8900,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index cee44c1f392..e82f543aa64 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -1134,6 +1134,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1312,6 +1313,7 @@ self: super: { "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_3"; "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"; @@ -1336,6 +1338,7 @@ self: super: { "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"; @@ -1727,6 +1730,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1962,6 +1966,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5069,6 +5075,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5570,6 +5577,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6110,6 +6118,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6464,6 +6473,7 @@ self: super: { "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"; "prompt" = dontDistribute super."prompt"; @@ -7260,6 +7270,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7848,6 +7859,7 @@ self: super: { "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"; @@ -7997,6 +8009,7 @@ self: super: { "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"; @@ -8616,6 +8629,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index d8c5af88e37..f0067f630d7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -1134,6 +1134,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1311,6 +1312,7 @@ self: super: { "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_3"; "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"; @@ -1335,6 +1337,7 @@ self: super: { "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"; @@ -1726,6 +1729,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1961,6 +1965,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5066,6 +5072,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5566,6 +5573,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6105,6 +6113,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6458,6 +6467,7 @@ self: super: { "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"; "prompt" = dontDistribute super."prompt"; @@ -7253,6 +7263,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7841,6 +7852,7 @@ self: super: { "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"; @@ -7990,6 +8002,7 @@ self: super: { "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"; @@ -8608,6 +8621,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index 270cb16da41..a8a7ae70d2e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -1131,6 +1131,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1305,6 +1306,7 @@ self: super: { "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"; @@ -1329,6 +1331,7 @@ self: super: { "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"; @@ -1715,6 +1718,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1883,6 +1887,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; @@ -1949,6 +1954,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5030,6 +5037,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5526,6 +5534,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6059,6 +6068,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6406,6 +6416,7 @@ self: super: { "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"; "prompt" = dontDistribute super."prompt"; @@ -7197,6 +7208,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7776,6 +7788,7 @@ self: super: { "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"; @@ -7924,6 +7937,7 @@ self: super: { "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"; @@ -8533,6 +8547,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index cdab904c002..adcb017e5a2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -1131,6 +1131,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1305,6 +1306,7 @@ self: super: { "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"; @@ -1329,6 +1331,7 @@ self: super: { "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"; @@ -1715,6 +1718,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1882,6 +1886,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; @@ -1948,6 +1953,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5028,6 +5035,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5524,6 +5532,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6057,6 +6066,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6403,6 +6413,7 @@ self: super: { "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"; "prompt" = dontDistribute super."prompt"; @@ -7193,6 +7204,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7772,6 +7784,7 @@ self: super: { "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"; @@ -7920,6 +7933,7 @@ self: super: { "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"; @@ -8529,6 +8543,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index 585c031b223..476909ec28e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -1131,6 +1131,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1305,6 +1306,7 @@ self: super: { "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"; @@ -1329,6 +1331,7 @@ self: super: { "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"; @@ -1715,6 +1718,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1882,6 +1886,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; @@ -1948,6 +1953,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5026,6 +5033,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5522,6 +5530,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6055,6 +6064,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6400,6 +6410,7 @@ self: super: { "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"; "prompt" = dontDistribute super."prompt"; @@ -7190,6 +7201,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7767,6 +7779,7 @@ self: super: { "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"; @@ -7915,6 +7928,7 @@ self: super: { "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"; @@ -8524,6 +8538,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index 8d97aa0d603..61ca4d6b601 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -1131,6 +1131,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1305,6 +1306,7 @@ self: super: { "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"; @@ -1329,6 +1331,7 @@ self: super: { "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"; @@ -1715,6 +1718,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1882,6 +1886,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; @@ -1948,6 +1953,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5025,6 +5032,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5520,6 +5528,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6053,6 +6062,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6397,6 +6407,7 @@ self: super: { "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"; "prompt" = dontDistribute super."prompt"; @@ -7187,6 +7198,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7764,6 +7776,7 @@ self: super: { "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"; @@ -7912,6 +7925,7 @@ self: super: { "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"; @@ -8520,6 +8534,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index 766ffbd78fe..fd86cf3d876 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -1129,6 +1129,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1303,6 +1304,7 @@ self: super: { "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"; @@ -1327,6 +1329,7 @@ self: super: { "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"; @@ -1713,6 +1716,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1879,6 +1883,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; @@ -1945,6 +1950,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5018,6 +5025,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5513,6 +5521,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6046,6 +6055,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6390,6 +6400,7 @@ self: super: { "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"; "prompt" = dontDistribute super."prompt"; @@ -7180,6 +7191,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7757,6 +7769,7 @@ self: super: { "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"; @@ -7905,6 +7918,7 @@ self: super: { "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"; @@ -8512,6 +8526,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index 5458b91358a..7a9df502d1e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -1129,6 +1129,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1303,6 +1304,7 @@ self: super: { "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"; @@ -1327,6 +1329,7 @@ self: super: { "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"; @@ -1713,6 +1716,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1879,6 +1883,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; @@ -1945,6 +1950,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5015,6 +5022,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5510,6 +5518,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6043,6 +6052,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6387,6 +6397,7 @@ self: super: { "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"; "prompt" = dontDistribute super."prompt"; @@ -7176,6 +7187,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7753,6 +7765,7 @@ self: super: { "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"; @@ -7901,6 +7914,7 @@ self: super: { "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"; @@ -8508,6 +8522,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index 218b21f6feb..adcc4f9f19e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -1128,6 +1128,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1302,6 +1303,7 @@ self: super: { "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"; @@ -1326,6 +1328,7 @@ self: super: { "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"; @@ -1712,6 +1715,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1878,6 +1882,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; @@ -1944,6 +1949,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5011,6 +5018,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5505,6 +5513,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6038,6 +6047,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6381,6 +6391,7 @@ self: super: { "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"; "prompt" = dontDistribute super."prompt"; @@ -7169,6 +7180,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7744,6 +7756,7 @@ self: super: { "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"; @@ -7891,6 +7904,7 @@ self: super: { "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"; @@ -8498,6 +8512,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index 4b95c61e186..6ea1e8bcda9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -1128,6 +1128,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1302,6 +1303,7 @@ self: super: { "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"; @@ -1325,6 +1327,7 @@ self: super: { "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"; @@ -1711,6 +1714,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1877,6 +1881,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; @@ -1943,6 +1948,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5008,6 +5015,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5501,6 +5509,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6033,6 +6042,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6376,6 +6386,7 @@ self: super: { "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"; "prompt" = dontDistribute super."prompt"; @@ -7164,6 +7175,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7739,6 +7751,7 @@ self: super: { "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"; @@ -7886,6 +7899,7 @@ self: super: { "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"; @@ -8493,6 +8507,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index 0fb99ad9b6d..9043d9a63c4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -1128,6 +1128,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1302,6 +1303,7 @@ self: super: { "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"; @@ -1325,6 +1327,7 @@ self: super: { "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"; @@ -1711,6 +1714,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1876,6 +1880,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; @@ -1942,6 +1947,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5000,6 +5007,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5493,6 +5501,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6024,6 +6033,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6367,6 +6377,7 @@ self: super: { "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"; "prompt" = dontDistribute super."prompt"; @@ -7152,6 +7163,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7727,6 +7739,7 @@ self: super: { "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"; @@ -7874,6 +7887,7 @@ self: super: { "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"; @@ -8481,6 +8495,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix index b9b5fd08ab3..9c52e8217cb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -1127,6 +1127,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1301,6 +1302,7 @@ self: super: { "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"; @@ -1324,6 +1326,7 @@ self: super: { "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"; @@ -1707,6 +1710,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1871,6 +1875,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; @@ -1937,6 +1942,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -4990,6 +4997,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5482,6 +5490,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6012,6 +6021,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6355,6 +6365,7 @@ self: super: { "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"; "prompt" = dontDistribute super."prompt"; @@ -7140,6 +7151,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7714,6 +7726,7 @@ self: super: { "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"; @@ -7861,6 +7874,7 @@ self: super: { "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"; @@ -8467,6 +8481,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index d7389e30ea0..420fcce1636 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -1133,6 +1133,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1309,6 +1310,7 @@ self: super: { "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_3"; "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"; @@ -1333,6 +1335,7 @@ self: super: { "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"; @@ -1724,6 +1727,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1959,6 +1963,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5061,6 +5067,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5560,6 +5567,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6099,6 +6107,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6451,6 +6460,7 @@ self: super: { "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"; "prompt" = dontDistribute super."prompt"; @@ -7244,6 +7254,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7831,6 +7842,7 @@ self: super: { "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"; @@ -7980,6 +7992,7 @@ self: super: { "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"; @@ -8598,6 +8611,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod" = doDistribute super."yesod_1_4_1_5"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix index 49ffd98eaab..4bc6d555fc1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -1126,6 +1126,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = doDistribute super."aeson-compat_0_3_0_0"; @@ -1300,6 +1301,7 @@ self: super: { "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"; @@ -1323,6 +1325,7 @@ self: super: { "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"; @@ -1706,6 +1709,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1870,6 +1874,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; @@ -1936,6 +1941,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -4989,6 +4996,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5481,6 +5489,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6011,6 +6020,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6354,6 +6364,7 @@ self: super: { "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"; "prompt" = dontDistribute super."prompt"; @@ -7138,6 +7149,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7710,6 +7722,7 @@ self: super: { "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"; @@ -7857,6 +7870,7 @@ self: super: { "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"; @@ -8462,6 +8476,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix index f733cdf1996..d99ff20b98e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix @@ -1126,6 +1126,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = doDistribute super."aeson-compat_0_3_0_0"; @@ -1300,6 +1301,7 @@ self: super: { "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"; @@ -1323,6 +1325,7 @@ self: super: { "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"; @@ -1706,6 +1709,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1870,6 +1874,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; @@ -1936,6 +1941,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -4983,6 +4990,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5475,6 +5483,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6003,6 +6012,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6345,6 +6355,7 @@ self: super: { "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"; "prompt" = dontDistribute super."prompt"; @@ -7117,6 +7128,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7689,6 +7701,7 @@ self: super: { "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"; @@ -7835,6 +7848,7 @@ self: super: { "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"; @@ -8435,6 +8449,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix index 6bdb373e0f7..d8532ce1eb3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix @@ -1126,6 +1126,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = doDistribute super."aeson-compat_0_3_0_0"; @@ -1300,6 +1301,7 @@ self: super: { "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"; @@ -1323,6 +1325,7 @@ self: super: { "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"; @@ -1706,6 +1709,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1870,6 +1874,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; @@ -1936,6 +1941,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -4977,6 +4984,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5469,6 +5477,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5997,6 +6006,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6339,6 +6349,7 @@ self: super: { "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"; "prompt" = dontDistribute super."prompt"; @@ -7111,6 +7122,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7683,6 +7695,7 @@ self: super: { "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"; @@ -7829,6 +7842,7 @@ self: super: { "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"; @@ -8429,6 +8443,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index e67cf1579fa..4f8976e2e90 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -1133,6 +1133,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1308,6 +1309,7 @@ self: super: { "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"; @@ -1332,6 +1334,7 @@ self: super: { "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"; @@ -1723,6 +1726,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1958,6 +1962,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5058,6 +5064,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5557,6 +5564,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6096,6 +6104,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6448,6 +6457,7 @@ self: super: { "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"; "prompt" = dontDistribute super."prompt"; @@ -7240,6 +7250,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7825,6 +7836,7 @@ self: super: { "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"; @@ -7974,6 +7986,7 @@ self: super: { "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"; @@ -8591,6 +8604,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index 16e4b163d9f..74da947b96d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -1133,6 +1133,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1308,6 +1309,7 @@ self: super: { "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"; @@ -1332,6 +1334,7 @@ self: super: { "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"; @@ -1723,6 +1726,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1958,6 +1962,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5058,6 +5064,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5557,6 +5564,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6096,6 +6104,7 @@ self: super: { "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6448,6 +6457,7 @@ self: super: { "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"; "prompt" = dontDistribute super."prompt"; @@ -7240,6 +7250,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7824,6 +7835,7 @@ self: super: { "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"; @@ -7973,6 +7985,7 @@ self: super: { "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"; @@ -8589,6 +8602,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index 43a743159a3..e5b5b44ad0a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -1133,6 +1133,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1307,6 +1308,7 @@ self: super: { "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"; @@ -1331,6 +1333,7 @@ self: super: { "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"; @@ -1722,6 +1725,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1957,6 +1961,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5052,6 +5058,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5551,6 +5558,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6088,6 +6096,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6439,6 +6448,7 @@ self: super: { "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"; "prompt" = dontDistribute super."prompt"; @@ -7231,6 +7241,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7812,6 +7823,7 @@ self: super: { "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"; @@ -7961,6 +7973,7 @@ self: super: { "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"; @@ -8576,6 +8589,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index 9c0ca8de211..4f270ba903a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -1133,6 +1133,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1307,6 +1308,7 @@ self: super: { "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"; @@ -1331,6 +1333,7 @@ self: super: { "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"; @@ -1722,6 +1725,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1957,6 +1961,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5047,6 +5053,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5545,6 +5552,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6081,6 +6089,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6432,6 +6441,7 @@ self: super: { "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"; "prompt" = dontDistribute super."prompt"; @@ -7224,6 +7234,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7805,6 +7816,7 @@ self: super: { "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"; @@ -7953,6 +7965,7 @@ self: super: { "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"; @@ -8567,6 +8580,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index 384a5a2cb47..fe9cb8751ea 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -1133,6 +1133,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1307,6 +1308,7 @@ self: super: { "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"; @@ -1331,6 +1333,7 @@ self: super: { "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"; @@ -1720,6 +1723,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1955,6 +1959,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5043,6 +5049,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5541,6 +5548,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6077,6 +6085,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6426,6 +6435,7 @@ self: super: { "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"; "prompt" = dontDistribute super."prompt"; @@ -7218,6 +7228,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7798,6 +7809,7 @@ self: super: { "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"; @@ -7946,6 +7958,7 @@ self: super: { "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"; @@ -8558,6 +8571,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index 1c32d2afcd9..8b060098b12 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -1133,6 +1133,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1307,6 +1308,7 @@ self: super: { "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"; @@ -1331,6 +1333,7 @@ self: super: { "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"; @@ -1718,6 +1721,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1886,6 +1890,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; @@ -1952,6 +1957,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5036,6 +5043,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5532,6 +5540,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6068,6 +6077,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6416,6 +6426,7 @@ self: super: { "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"; "prompt" = dontDistribute super."prompt"; @@ -7208,6 +7219,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7787,6 +7799,7 @@ self: super: { "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"; @@ -7935,6 +7948,7 @@ self: super: { "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"; @@ -8547,6 +8561,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index 0643d3eea9c..569b4097fcc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -1131,6 +1131,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_8_0_2"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-compat" = dontDistribute super."aeson-compat"; @@ -1305,6 +1306,7 @@ self: super: { "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"; @@ -1329,6 +1331,7 @@ self: super: { "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"; @@ -1715,6 +1718,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1883,6 +1887,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; @@ -1949,6 +1954,8 @@ self: super: { "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; "cheapskate" = dontDistribute super."cheapskate"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -5031,6 +5038,7 @@ self: super: { "language-guess" = dontDistribute super."language-guess"; "language-java" = doDistribute super."language-java_0_2_7"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5527,6 +5535,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -6062,6 +6071,7 @@ self: super: { "parsergen" = dontDistribute super."parsergen"; "parsestar" = dontDistribute super."parsestar"; "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; @@ -6410,6 +6420,7 @@ self: super: { "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"; "prompt" = dontDistribute super."prompt"; @@ -7202,6 +7213,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7781,6 +7793,7 @@ self: super: { "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"; @@ -7929,6 +7942,7 @@ self: super: { "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"; @@ -8541,6 +8555,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_7"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix index 830a8d2baff..0c35e9a2793 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix @@ -1101,6 +1101,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_10_0_0"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-compat" = doDistribute super."aeson-compat_0_3_0_0"; "aeson-diff" = dontDistribute super."aeson-diff"; @@ -1210,6 +1211,7 @@ self: super: { "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"; @@ -1233,6 +1235,7 @@ self: super: { "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"; "argon2" = dontDistribute super."argon2"; @@ -1599,6 +1602,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1760,6 +1764,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -1823,6 +1828,8 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2137,6 +2144,7 @@ self: super: { "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_2"; "cron-compat" = dontDistribute super."cron-compat"; "cruncher-types" = dontDistribute super."cruncher-types"; "crunghc" = dontDistribute super."crunghc"; @@ -4767,6 +4775,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5168,6 +5177,7 @@ self: super: { "mgeneric" = dontDistribute super."mgeneric"; "mi" = dontDistribute super."mi"; "microbench" = dontDistribute super."microbench"; + "microformats2-parser" = doDistribute super."microformats2-parser_1_0_1_3"; "microformats2-types" = dontDistribute super."microformats2-types"; "microlens" = doDistribute super."microlens_0_3_5_1"; "microlens-aeson" = dontDistribute super."microlens-aeson"; @@ -5241,6 +5251,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5749,6 +5760,7 @@ self: super: { "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"; @@ -5778,6 +5790,7 @@ self: super: { "pcd-loader" = dontDistribute super."pcd-loader"; "pcf" = dontDistribute super."pcf"; "pcg-random" = dontDistribute super."pcg-random"; + "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; "pdf-toolbox-content" = doDistribute super."pdf-toolbox-content_0_0_5_0"; @@ -6071,6 +6084,7 @@ self: super: { "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"; "prompt" = dontDistribute super."prompt"; @@ -6810,6 +6824,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -7010,6 +7025,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -7355,6 +7371,7 @@ self: super: { "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"; @@ -7495,6 +7512,7 @@ self: super: { "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"; @@ -8054,6 +8072,7 @@ self: super: { "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" = doDistribute super."yesod-auth_1_4_11"; @@ -8156,6 +8175,7 @@ self: super: { "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix index 01b1869e81c..8914ab6dbd7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix @@ -1100,6 +1100,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_10_0_0"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-compat" = doDistribute super."aeson-compat_0_3_0_0"; "aeson-diff" = dontDistribute super."aeson-diff"; @@ -1208,6 +1209,7 @@ self: super: { "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"; @@ -1231,6 +1233,7 @@ self: super: { "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"; "argon2" = dontDistribute super."argon2"; @@ -1597,6 +1600,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1758,6 +1762,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -1821,6 +1826,8 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2135,6 +2142,7 @@ self: super: { "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_2"; "cron-compat" = dontDistribute super."cron-compat"; "cruncher-types" = dontDistribute super."cruncher-types"; "crunghc" = dontDistribute super."crunghc"; @@ -4755,6 +4763,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5153,6 +5162,7 @@ self: super: { "mgeneric" = dontDistribute super."mgeneric"; "mi" = dontDistribute super."mi"; "microbench" = dontDistribute super."microbench"; + "microformats2-parser" = doDistribute super."microformats2-parser_1_0_1_3"; "microformats2-types" = dontDistribute super."microformats2-types"; "microlens" = doDistribute super."microlens_0_3_5_1"; "microlens-aeson" = dontDistribute super."microlens-aeson"; @@ -5226,6 +5236,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5734,6 +5745,7 @@ self: super: { "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"; @@ -5762,6 +5774,7 @@ self: super: { "pcd-loader" = dontDistribute super."pcd-loader"; "pcf" = dontDistribute super."pcf"; "pcg-random" = dontDistribute super."pcg-random"; + "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; "pdf-toolbox-content" = doDistribute super."pdf-toolbox-content_0_0_5_0"; @@ -6054,6 +6067,7 @@ self: super: { "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"; "prompt" = dontDistribute super."prompt"; @@ -6793,6 +6807,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -6993,6 +7008,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -7338,6 +7354,7 @@ self: super: { "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"; @@ -7477,6 +7494,7 @@ self: super: { "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"; @@ -8035,6 +8053,7 @@ self: super: { "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" = doDistribute super."yesod-auth_1_4_11"; @@ -8137,6 +8156,7 @@ self: super: { "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix index a3235e0d523..0e572ec45e1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix @@ -1096,6 +1096,7 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson" = doDistribute super."aeson_0_10_0_0"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-compat" = doDistribute super."aeson-compat_0_3_0_0"; "aeson-diff" = dontDistribute super."aeson-diff"; @@ -1203,6 +1204,7 @@ self: super: { "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"; @@ -1226,6 +1228,7 @@ self: super: { "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"; "argon2" = dontDistribute super."argon2"; @@ -1592,6 +1595,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1750,6 +1754,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -1812,6 +1817,8 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2124,6 +2131,7 @@ self: super: { "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_2"; "cron-compat" = dontDistribute super."cron-compat"; "cruncher-types" = dontDistribute super."cruncher-types"; "crunghc" = dontDistribute super."crunghc"; @@ -4720,6 +4728,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5117,6 +5126,7 @@ self: super: { "mgeneric" = dontDistribute super."mgeneric"; "mi" = dontDistribute super."mi"; "microbench" = dontDistribute super."microbench"; + "microformats2-parser" = doDistribute super."microformats2-parser_1_0_1_3"; "microformats2-types" = dontDistribute super."microformats2-types"; "microlens" = doDistribute super."microlens_0_3_5_1"; "microlens-aeson" = dontDistribute super."microlens-aeson"; @@ -5190,6 +5200,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5695,6 +5706,7 @@ self: super: { "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"; @@ -5723,6 +5735,7 @@ self: super: { "pcd-loader" = dontDistribute super."pcd-loader"; "pcf" = dontDistribute super."pcf"; "pcg-random" = dontDistribute super."pcg-random"; + "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; "pdf-toolbox-content" = doDistribute super."pdf-toolbox-content_0_0_5_0"; @@ -6012,6 +6025,7 @@ self: super: { "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"; "prompt" = dontDistribute super."prompt"; @@ -6742,6 +6756,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -6940,6 +6955,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -7111,6 +7127,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7283,6 +7300,7 @@ self: super: { "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"; @@ -7422,6 +7440,7 @@ self: super: { "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"; @@ -7977,6 +7996,7 @@ self: super: { "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" = doDistribute super."yesod-auth_1_4_11"; @@ -8078,6 +8098,7 @@ self: super: { "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix index 5b235eaa52c..f4860ed4aae 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix @@ -1082,6 +1082,7 @@ self: super: { "adp-multi" = dontDistribute super."adp-multi"; "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-compat" = doDistribute super."aeson-compat_0_3_0_0"; "aeson-diff" = dontDistribute super."aeson-diff"; @@ -1189,6 +1190,7 @@ self: super: { "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"; @@ -1212,6 +1214,7 @@ self: super: { "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"; "argon2" = dontDistribute super."argon2"; @@ -1569,6 +1572,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1722,6 +1726,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -1782,6 +1787,8 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2089,6 +2096,7 @@ self: super: { "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_2"; "cron-compat" = dontDistribute super."cron-compat"; "cruncher-types" = dontDistribute super."cruncher-types"; "crunghc" = dontDistribute super."crunghc"; @@ -4650,6 +4658,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5041,6 +5050,7 @@ self: super: { "mgeneric" = dontDistribute super."mgeneric"; "mi" = dontDistribute super."mi"; "microbench" = dontDistribute super."microbench"; + "microformats2-parser" = doDistribute super."microformats2-parser_1_0_1_3"; "microformats2-types" = dontDistribute super."microformats2-types"; "microlens" = doDistribute super."microlens_0_4_1_0"; "microlens-aeson" = doDistribute super."microlens-aeson_2_1_0"; @@ -5112,6 +5122,7 @@ self: super: { "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-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; @@ -5610,6 +5621,7 @@ self: super: { "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"; @@ -5638,6 +5650,7 @@ self: super: { "pcd-loader" = dontDistribute super."pcd-loader"; "pcf" = dontDistribute super."pcf"; "pcg-random" = dontDistribute super."pcg-random"; + "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; "pdf-toolbox-content" = doDistribute super."pdf-toolbox-content_0_0_5_0"; @@ -5921,6 +5934,7 @@ self: super: { "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"; @@ -6639,6 +6653,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -6833,6 +6848,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -7004,6 +7020,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7168,6 +7185,7 @@ self: super: { "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"; @@ -7306,6 +7324,7 @@ self: super: { "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"; @@ -7856,6 +7875,7 @@ self: super: { "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"; @@ -7955,6 +7975,7 @@ self: super: { "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix index 0047d4d0d95..4349dbb43b5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix @@ -1080,6 +1080,7 @@ self: super: { "adp-multi" = dontDistribute super."adp-multi"; "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-compat" = doDistribute super."aeson-compat_0_3_0_0"; "aeson-diff" = dontDistribute super."aeson-diff"; @@ -1186,6 +1187,7 @@ self: super: { "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"; @@ -1209,6 +1211,7 @@ self: super: { "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"; "argon2" = dontDistribute super."argon2"; @@ -1562,6 +1565,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1714,6 +1718,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -1774,6 +1779,8 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2080,6 +2087,7 @@ self: super: { "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_2"; "cron-compat" = dontDistribute super."cron-compat"; "cruncher-types" = dontDistribute super."cruncher-types"; "crunghc" = dontDistribute super."crunghc"; @@ -4639,6 +4647,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5030,6 +5039,7 @@ self: super: { "mgeneric" = dontDistribute super."mgeneric"; "mi" = dontDistribute super."mi"; "microbench" = dontDistribute super."microbench"; + "microformats2-parser" = doDistribute super."microformats2-parser_1_0_1_3"; "microformats2-types" = dontDistribute super."microformats2-types"; "microlens" = doDistribute super."microlens_0_4_1_0"; "microlens-aeson" = doDistribute super."microlens-aeson_2_1_0"; @@ -5100,6 +5110,7 @@ self: super: { "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-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; @@ -5597,6 +5608,7 @@ self: super: { "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"; @@ -5625,6 +5637,7 @@ self: super: { "pcd-loader" = dontDistribute super."pcd-loader"; "pcf" = dontDistribute super."pcf"; "pcg-random" = dontDistribute super."pcg-random"; + "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; "pdf-toolbox-content" = doDistribute super."pdf-toolbox-content_0_0_5_0"; @@ -5908,6 +5921,7 @@ self: super: { "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"; @@ -6624,6 +6638,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -6818,6 +6833,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -6988,6 +7004,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7152,6 +7169,7 @@ self: super: { "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"; @@ -7290,6 +7308,7 @@ self: super: { "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"; @@ -7839,6 +7858,7 @@ self: super: { "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"; @@ -7937,6 +7957,7 @@ self: super: { "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix index 06ce7fc79ff..e78d23f7371 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix @@ -1079,6 +1079,7 @@ self: super: { "adp-multi" = dontDistribute super."adp-multi"; "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-compat" = doDistribute super."aeson-compat_0_3_0_0"; "aeson-diff" = dontDistribute super."aeson-diff"; @@ -1185,6 +1186,7 @@ self: super: { "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"; @@ -1208,6 +1210,7 @@ self: super: { "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"; "argon2" = dontDistribute super."argon2"; @@ -1561,6 +1564,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1713,6 +1717,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cases" = doDistribute super."cases_0_1_2_1"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -1773,6 +1778,8 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2079,6 +2086,7 @@ self: super: { "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_2"; "cron-compat" = dontDistribute super."cron-compat"; "cruncher-types" = dontDistribute super."cruncher-types"; "crunghc" = dontDistribute super."crunghc"; @@ -4630,6 +4638,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5021,6 +5030,7 @@ self: super: { "mgeneric" = dontDistribute super."mgeneric"; "mi" = dontDistribute super."mi"; "microbench" = dontDistribute super."microbench"; + "microformats2-parser" = doDistribute super."microformats2-parser_1_0_1_3"; "microformats2-types" = dontDistribute super."microformats2-types"; "microlens" = doDistribute super."microlens_0_4_1_0"; "microlens-aeson" = doDistribute super."microlens-aeson_2_1_0"; @@ -5089,6 +5099,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5582,6 +5593,7 @@ self: super: { "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"; @@ -5610,6 +5622,7 @@ self: super: { "pcd-loader" = dontDistribute super."pcd-loader"; "pcf" = dontDistribute super."pcf"; "pcg-random" = dontDistribute super."pcg-random"; + "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; @@ -5889,6 +5902,7 @@ self: super: { "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"; @@ -6602,6 +6616,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -6796,6 +6811,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; "stm-containers" = doDistribute super."stm-containers_0_2_9"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; @@ -6965,6 +6981,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7129,6 +7146,7 @@ self: super: { "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"; @@ -7267,6 +7285,7 @@ self: super: { "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"; @@ -7816,6 +7835,7 @@ self: super: { "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"; @@ -7914,6 +7934,7 @@ self: super: { "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix index 34f8dbc2a90..ff66f0d4b5b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix @@ -1075,6 +1075,7 @@ self: super: { "adp-multi" = dontDistribute super."adp-multi"; "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_3_1_0"; @@ -1180,6 +1181,7 @@ self: super: { "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"; @@ -1202,6 +1204,7 @@ self: super: { "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"; "argon2" = dontDistribute super."argon2"; @@ -1553,6 +1556,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1705,6 +1709,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "casr-logbook" = dontDistribute super."casr-logbook"; @@ -1764,6 +1769,8 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2067,6 +2074,7 @@ self: super: { "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_2"; "cron-compat" = dontDistribute super."cron-compat"; "cruncher-types" = dontDistribute super."cruncher-types"; "crunghc" = dontDistribute super."crunghc"; @@ -4606,6 +4614,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -4995,6 +5004,7 @@ self: super: { "mgeneric" = dontDistribute super."mgeneric"; "mi" = dontDistribute super."mi"; "microbench" = dontDistribute super."microbench"; + "microformats2-parser" = doDistribute super."microformats2-parser_1_0_1_3"; "microformats2-types" = dontDistribute super."microformats2-types"; "microlens" = doDistribute super."microlens_0_4_1_0"; "microlens-each" = dontDistribute super."microlens-each"; @@ -5061,6 +5071,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5552,6 +5563,7 @@ self: super: { "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"; @@ -5580,6 +5592,7 @@ self: super: { "pcd-loader" = dontDistribute super."pcd-loader"; "pcf" = dontDistribute super."pcf"; "pcg-random" = dontDistribute super."pcg-random"; + "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; @@ -5858,6 +5871,7 @@ self: super: { "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"; @@ -6565,6 +6579,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -6757,6 +6772,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -6925,6 +6941,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7088,6 +7105,7 @@ self: super: { "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"; @@ -7226,6 +7244,7 @@ self: super: { "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"; @@ -7771,6 +7790,7 @@ self: super: { "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"; @@ -7868,6 +7888,7 @@ self: super: { "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.4.nix b/pkgs/development/haskell-modules/configuration-lts-5.4.nix index feac73f4116..07b77810514 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.4.nix @@ -1074,6 +1074,7 @@ self: super: { "adp-multi" = dontDistribute super."adp-multi"; "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1178,6 +1179,7 @@ self: super: { "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"; @@ -1200,6 +1202,7 @@ self: super: { "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"; "argon2" = dontDistribute super."argon2"; @@ -1551,6 +1554,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1703,6 +1707,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "casr-logbook" = dontDistribute super."casr-logbook"; @@ -1762,6 +1767,8 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2063,6 +2070,7 @@ self: super: { "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_2"; "cron-compat" = dontDistribute super."cron-compat"; "cruncher-types" = dontDistribute super."cruncher-types"; "crunghc" = dontDistribute super."crunghc"; @@ -4588,6 +4596,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -4975,6 +4984,7 @@ self: super: { "mgeneric" = dontDistribute super."mgeneric"; "mi" = dontDistribute super."mi"; "microbench" = dontDistribute super."microbench"; + "microformats2-parser" = doDistribute super."microformats2-parser_1_0_1_3"; "microformats2-types" = dontDistribute super."microformats2-types"; "microlens-each" = dontDistribute super."microlens-each"; "microtimer" = dontDistribute super."microtimer"; @@ -5038,6 +5048,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5523,6 +5534,7 @@ self: super: { "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"; @@ -5551,6 +5563,7 @@ self: super: { "pcd-loader" = dontDistribute super."pcd-loader"; "pcf" = dontDistribute super."pcf"; "pcg-random" = dontDistribute super."pcg-random"; + "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; @@ -5828,6 +5841,7 @@ self: super: { "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"; @@ -6534,6 +6548,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -6726,6 +6741,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -6894,6 +6910,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7056,6 +7073,7 @@ self: super: { "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"; @@ -7194,6 +7212,7 @@ self: super: { "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"; @@ -7736,6 +7755,7 @@ self: super: { "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"; @@ -7833,6 +7853,7 @@ self: super: { "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.5.nix b/pkgs/development/haskell-modules/configuration-lts-5.5.nix index 1604318d7be..ffff1f44990 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.5.nix @@ -1074,6 +1074,7 @@ self: super: { "adp-multi" = dontDistribute super."adp-multi"; "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1178,6 +1179,7 @@ self: super: { "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"; @@ -1200,6 +1202,7 @@ self: super: { "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"; "argon2" = dontDistribute super."argon2"; @@ -1550,6 +1553,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1701,6 +1705,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "casr-logbook" = dontDistribute super."casr-logbook"; @@ -1760,6 +1765,8 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2059,6 +2066,7 @@ self: super: { "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_2"; "cron-compat" = dontDistribute super."cron-compat"; "cruncher-types" = dontDistribute super."cruncher-types"; "crunghc" = dontDistribute super."crunghc"; @@ -4581,6 +4589,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -4967,6 +4976,7 @@ self: super: { "mgeneric" = dontDistribute super."mgeneric"; "mi" = dontDistribute super."mi"; "microbench" = dontDistribute super."microbench"; + "microformats2-parser" = doDistribute super."microformats2-parser_1_0_1_3"; "microformats2-types" = dontDistribute super."microformats2-types"; "microlens-each" = dontDistribute super."microlens-each"; "microtimer" = dontDistribute super."microtimer"; @@ -5030,6 +5040,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5515,6 +5526,7 @@ self: super: { "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"; @@ -5543,6 +5555,7 @@ self: super: { "pcd-loader" = dontDistribute super."pcd-loader"; "pcf" = dontDistribute super."pcf"; "pcg-random" = dontDistribute super."pcg-random"; + "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; @@ -5820,6 +5833,7 @@ self: super: { "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"; @@ -6526,6 +6540,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -6718,6 +6733,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -6886,6 +6902,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7048,6 +7065,7 @@ self: super: { "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"; @@ -7186,6 +7204,7 @@ self: super: { "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"; @@ -7724,6 +7743,7 @@ self: super: { "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"; @@ -7821,6 +7841,7 @@ self: super: { "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.6.nix b/pkgs/development/haskell-modules/configuration-lts-5.6.nix index 61d69d6af55..0931e21c110 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.6.nix @@ -1073,6 +1073,7 @@ self: super: { "adp-multi" = dontDistribute super."adp-multi"; "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1177,6 +1178,7 @@ self: super: { "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"; @@ -1199,6 +1201,7 @@ self: super: { "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"; "argon2" = dontDistribute super."argon2"; @@ -1545,6 +1548,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1695,6 +1699,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "casr-logbook" = dontDistribute super."casr-logbook"; @@ -1754,6 +1759,8 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -2048,6 +2055,7 @@ self: super: { "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_2"; "cron-compat" = dontDistribute super."cron-compat"; "cruncher-types" = dontDistribute super."cruncher-types"; "crunghc" = dontDistribute super."crunghc"; @@ -4561,6 +4569,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -4946,6 +4955,7 @@ self: super: { "mgeneric" = dontDistribute super."mgeneric"; "mi" = dontDistribute super."mi"; "microbench" = dontDistribute super."microbench"; + "microformats2-parser" = doDistribute super."microformats2-parser_1_0_1_3"; "microformats2-types" = dontDistribute super."microformats2-types"; "microlens-each" = dontDistribute super."microlens-each"; "microtimer" = dontDistribute super."microtimer"; @@ -5009,6 +5019,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5493,6 +5504,7 @@ self: super: { "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"; @@ -5520,6 +5532,7 @@ self: super: { "pcd-loader" = dontDistribute super."pcd-loader"; "pcf" = dontDistribute super."pcf"; "pcg-random" = dontDistribute super."pcg-random"; + "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; @@ -5796,6 +5809,7 @@ self: super: { "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"; @@ -6501,6 +6515,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -6693,6 +6708,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -6859,6 +6875,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7021,6 +7038,7 @@ self: super: { "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"; @@ -7158,6 +7176,7 @@ self: super: { "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"; @@ -7442,6 +7461,7 @@ self: super: { "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-extra" = doDistribute super."wai-extra_3_0_14_1"; "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; @@ -7692,6 +7712,7 @@ self: super: { "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"; @@ -7789,6 +7810,7 @@ self: super: { "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.7.nix b/pkgs/development/haskell-modules/configuration-lts-5.7.nix index eb4b2013e21..f95b04f616c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.7.nix @@ -1073,6 +1073,7 @@ self: super: { "adp-multi" = dontDistribute super."adp-multi"; "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1177,6 +1178,7 @@ self: super: { "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"; @@ -1199,6 +1201,7 @@ self: super: { "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"; "argon2" = dontDistribute super."argon2"; @@ -1545,6 +1548,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1695,6 +1699,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "casr-logbook" = dontDistribute super."casr-logbook"; @@ -1753,6 +1758,8 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -1791,7 +1798,10 @@ self: super: { "clanki" = dontDistribute super."clanki"; "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_6_11"; + "clash-lib" = doDistribute super."clash-lib_0_6_11"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-vhdl" = doDistribute super."clash-vhdl_0_6_8"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; @@ -2041,6 +2051,7 @@ self: super: { "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_2"; "cron-compat" = dontDistribute super."cron-compat"; "cruncher-types" = dontDistribute super."cruncher-types"; "crunghc" = dontDistribute super."crunghc"; @@ -4551,6 +4562,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -4935,6 +4947,7 @@ self: super: { "mgeneric" = dontDistribute super."mgeneric"; "mi" = dontDistribute super."mi"; "microbench" = dontDistribute super."microbench"; + "microformats2-parser" = doDistribute super."microformats2-parser_1_0_1_3"; "microformats2-types" = dontDistribute super."microformats2-types"; "microlens-each" = dontDistribute super."microlens-each"; "microtimer" = dontDistribute super."microtimer"; @@ -4998,6 +5011,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5482,6 +5496,7 @@ self: super: { "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"; @@ -5509,6 +5524,7 @@ self: super: { "pcd-loader" = dontDistribute super."pcd-loader"; "pcf" = dontDistribute super."pcf"; "pcg-random" = dontDistribute super."pcg-random"; + "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; @@ -5782,6 +5798,7 @@ self: super: { "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"; @@ -6486,6 +6503,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -6678,6 +6696,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -6842,6 +6861,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7004,6 +7024,7 @@ self: super: { "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"; @@ -7141,6 +7162,7 @@ self: super: { "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"; @@ -7422,6 +7444,7 @@ self: super: { "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-extra" = doDistribute super."wai-extra_3_0_14_1"; "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; @@ -7672,6 +7695,7 @@ self: super: { "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"; @@ -7769,6 +7793,7 @@ self: super: { "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.8.nix b/pkgs/development/haskell-modules/configuration-lts-5.8.nix index 1b0650aebb8..be512f3da7f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.8.nix @@ -1073,6 +1073,7 @@ self: super: { "adp-multi" = dontDistribute super."adp-multi"; "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1177,6 +1178,7 @@ self: super: { "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"; @@ -1199,6 +1201,7 @@ self: super: { "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"; "argon2" = dontDistribute super."argon2"; @@ -1545,6 +1548,7 @@ self: super: { "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; @@ -1695,6 +1699,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "casr-logbook" = dontDistribute super."casr-logbook"; @@ -1753,6 +1758,8 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; @@ -1791,7 +1798,10 @@ self: super: { "clanki" = dontDistribute super."clanki"; "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_6_11"; + "clash-lib" = doDistribute super."clash-lib_0_6_11"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-vhdl" = doDistribute super."clash-vhdl_0_6_8"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; @@ -2040,6 +2050,7 @@ self: super: { "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_2"; "cron-compat" = dontDistribute super."cron-compat"; "cruncher-types" = dontDistribute super."cruncher-types"; "crunghc" = dontDistribute super."crunghc"; @@ -4032,6 +4043,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_5"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; "hspread" = dontDistribute super."hspread"; @@ -4548,6 +4560,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_2"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -4932,6 +4945,7 @@ self: super: { "mgeneric" = dontDistribute super."mgeneric"; "mi" = dontDistribute super."mi"; "microbench" = dontDistribute super."microbench"; + "microformats2-parser" = doDistribute super."microformats2-parser_1_0_1_3"; "microformats2-types" = dontDistribute super."microformats2-types"; "microlens-each" = dontDistribute super."microlens-each"; "microtimer" = dontDistribute super."microtimer"; @@ -4995,6 +5009,7 @@ self: super: { "monad-bool" = dontDistribute super."monad-bool"; "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5479,6 +5494,7 @@ self: super: { "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"; @@ -5506,6 +5522,7 @@ self: super: { "pcd-loader" = dontDistribute super."pcd-loader"; "pcf" = dontDistribute super."pcf"; "pcg-random" = dontDistribute super."pcg-random"; + "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; @@ -5779,6 +5796,7 @@ self: super: { "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"; @@ -6483,6 +6501,7 @@ self: super: { "smtp2mta" = dontDistribute super."smtp2mta"; "smtps-gmail" = dontDistribute super."smtps-gmail"; "snake-game" = dontDistribute super."snake-game"; + "snap" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; "snap-app" = dontDistribute super."snap-app"; "snap-auth-cli" = dontDistribute super."snap-auth-cli"; @@ -6675,6 +6694,7 @@ self: super: { "stitch" = dontDistribute super."stitch"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -6839,6 +6859,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7001,6 +7022,7 @@ self: super: { "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"; @@ -7138,6 +7160,7 @@ self: super: { "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"; @@ -7418,6 +7441,7 @@ self: super: { "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-extra" = doDistribute super."wai-extra_3_0_14_1"; "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; @@ -7517,6 +7541,7 @@ self: super: { "winerror" = dontDistribute super."winerror"; "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; + "with-location" = doDistribute super."with-location_0_0_0"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; "wkt" = dontDistribute super."wkt"; @@ -7666,6 +7691,7 @@ self: super: { "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"; @@ -7763,6 +7789,7 @@ self: super: { "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index e23b4c3a462..09f1548bf36 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -416,7 +416,7 @@ self: { homepage = "http://www-users.aston.ac.uk/~konecnym/DISCERN"; description = "GL plotting of polynomial function enclosures (PFEs)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AES" = callPackage @@ -3597,7 +3597,6 @@ self: { homepage = "https://github.com/klangner/Condor"; description = "Information retrieval library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ConfigFile" = callPackage @@ -5492,7 +5491,7 @@ self: { homepage = "http://www.kryozahiro.org/eternal10/"; description = "A 2-D shooting game"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Etherbunny" = callPackage @@ -5547,7 +5546,7 @@ self: { homepage = "http://haskell.cs.yale.edu/"; description = "Library for computer music research and education"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "EventSocket" = callPackage @@ -5664,6 +5663,7 @@ self: { librarySystemDepends = [ ftgl ]; description = "Portable TrueType font rendering for OpenGL using the Freetype2 library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) ftgl;}; "FTGL-bytestring" = callPackage @@ -5680,6 +5680,7 @@ self: { librarySystemDepends = [ ftgl ]; description = "Portable TrueType font rendering for OpenGL using the Freetype2 library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) ftgl;}; "FTPLine" = callPackage @@ -6303,7 +6304,7 @@ self: { ]; jailbreak = true; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Frames" = callPackage @@ -7607,7 +7608,7 @@ self: { ]; description = "OpenGL support for Gtk-based GUIs for Tangible Values"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GtkTV" = callPackage @@ -8026,6 +8027,7 @@ self: { homepage = "https://github.com/m15k/hfuse"; description = "HFuse is a binding for the Linux FUSE library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) fuse;}; "HGL" = callPackage @@ -8724,6 +8726,7 @@ self: { executablePkgconfigDepends = [ opencv ]; description = "A binding for the OpenCV computer vision library"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) opencv;}; "HPDF" = callPackage @@ -10712,7 +10715,7 @@ self: { homepage = "http://vis.renci.org/jeff/hieroglyph"; description = "Purely functional 2D graphics for visualization"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HiggsSet" = callPackage @@ -11699,7 +11702,6 @@ self: { ]; description = "A utility to print the SourceFile attribute of one or more Java class files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Javav" = callPackage @@ -11713,7 +11715,6 @@ self: { executableHaskellDepends = [ base ]; description = "A utility to print the target version of Java class files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JsContracts" = callPackage @@ -15934,6 +15935,7 @@ self: { homepage = "http://haskell.org/haskellwiki/PortMidi"; description = "A binding for PortMedia/PortMidi"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) alsaLib;}; "PostgreSQL" = callPackage @@ -16531,7 +16533,7 @@ self: { executableSystemDepends = [ canlib ftd2xx ]; description = "Binding to code that controls a Segway RMP"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {canlib = null; ftd2xx = null;}; "RNAFold" = callPackage @@ -16787,6 +16789,7 @@ self: { homepage = "http://raincat.bysusanlin.com/"; description = "A puzzle game written in Haskell with a cat in lead role"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Random123" = callPackage @@ -17075,7 +17078,6 @@ self: { homepage = "https://bitbucket.org/carter/ref"; description = "Generic Mutable Ref Abstraction Layer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RefSerialize_0_3_1_3" = callPackage @@ -17350,6 +17352,7 @@ self: { librarySystemDepends = [ SDL_mixer ]; description = "Binding to libSDL_mixer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) SDL_mixer;}; "SDL-mpeg" = callPackage @@ -17794,7 +17797,7 @@ self: { homepage = "http://github.com/hirschenberger/ScratchFS"; description = "Size limited temp filesystem based on fuse"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Scurry" = callPackage @@ -18198,7 +18201,7 @@ self: { homepage = "http://bitbucket.org/jetxee/snusmumrik/"; description = "E-library directory based on FUSE virtual file system"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) zip;}; "SoOSiM" = callPackage @@ -19180,7 +19183,6 @@ self: { jailbreak = true; description = "A client for Quill databases"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Tablify" = callPackage @@ -19287,7 +19289,7 @@ self: { homepage = "http://liamoc.net/tea"; description = "TeaHS Game Creation Library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Tensor" = callPackage @@ -19386,7 +19388,6 @@ self: { homepage = "http://thrift.apache.org"; description = "Haskell bindings for the Apache Thrift RPC system"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Tic-Tac-Toe" = callPackage @@ -20935,7 +20936,7 @@ self: { homepage = "http://github.com/snkkid/YACPong"; description = "Yet Another Pong Clone using SDL"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "YFrob" = callPackage @@ -23126,7 +23127,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "aeson-better-errors" = callPackage + "aeson-better-errors_0_9_0" = callPackage ({ mkDerivation, aeson, base, bytestring, dlist, mtl, scientific , text, transformers, transformers-compat, unordered-containers , vector, void @@ -23142,6 +23143,25 @@ self: { homepage = "https://github.com/hdgarrood/aeson-better-errors"; description = "Better error messages when decoding JSON values"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "aeson-better-errors" = callPackage + ({ mkDerivation, aeson, base, bytestring, dlist, mtl, scientific + , text, transformers, transformers-compat, unordered-containers + , vector, void + }: + mkDerivation { + pname = "aeson-better-errors"; + version = "0.9.0.1"; + sha256 = "125f4453f945b5b051fa596cd148b7db0414942cdfbe1d6fd0359989ab45d8e6"; + libraryHaskellDepends = [ + aeson base bytestring dlist mtl scientific text transformers + transformers-compat unordered-containers vector void + ]; + homepage = "https://github.com/hdgarrood/aeson-better-errors"; + description = "Better error messages when decoding JSON values"; + license = stdenv.lib.licenses.mit; }) {}; "aeson-bson" = callPackage @@ -24850,7 +24870,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/ALSA"; description = "Binding to the ALSA Library API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) alsaLib;}; "alsa-core" = callPackage @@ -24864,6 +24884,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/ALSA"; description = "Binding to the ALSA Library API (Exceptions)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) alsaLib;}; "alsa-gui" = callPackage @@ -24883,6 +24904,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/ALSA"; description = "Some simple interactive programs for sending MIDI control messages via ALSA"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "alsa-midi" = callPackage @@ -24904,7 +24926,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/ALSA"; description = "Bindings for the ALSA sequencer API (MIDI stuff)"; license = "GPL"; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) alsaLib;}; "alsa-mixer" = callPackage @@ -24919,6 +24941,7 @@ self: { homepage = "https://github.com/ttuegel/alsa-mixer"; description = "Bindings to the ALSA simple mixer API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) alsaLib;}; "alsa-pcm" = callPackage @@ -24939,6 +24962,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/ALSA"; description = "Binding to the ALSA Library API (PCM audio)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) alsaLib;}; "alsa-pcm-tests" = callPackage @@ -24952,7 +24976,7 @@ self: { executableHaskellDepends = [ alsa base ]; description = "Tests for the ALSA audio signal library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "alsa-seq" = callPackage @@ -24974,6 +24998,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/ALSA"; description = "Binding to the ALSA Library API (MIDI sequencer)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) alsaLib;}; "alsa-seq-tests" = callPackage @@ -24988,7 +25013,7 @@ self: { jailbreak = true; description = "Tests for the ALSA sequencer library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "altcomposition" = callPackage @@ -29408,6 +29433,23 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "apiary-http-client" = callPackage + ({ mkDerivation, apiary, base, bytestring, data-default-class + , http-client, http-types, text, transformers, types-compat, wai + }: + mkDerivation { + pname = "apiary-http-client"; + version = "0.1.1.0"; + sha256 = "4e7b6ba5741f0f194ee23679cceb87167a7bac44ad2bca7789e4488320e103bd"; + libraryHaskellDepends = [ + apiary base bytestring data-default-class http-client http-types + text transformers types-compat wai + ]; + homepage = "https://github.com/winterland1989/apiary-http-client"; + description = "A http client for Apiary"; + license = stdenv.lib.licenses.mit; + }) {}; + "apiary-logger" = callPackage ({ mkDerivation, apiary, base, data-default-class, fast-logger , lifted-base, monad-control, monad-logger, transformers @@ -30360,6 +30402,29 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "arena" = callPackage + ({ mkDerivation, base, bytes, bytestring, containers, digest + , directory, filepath, mtl, persistent-vector, safe, semigroups + , unix + }: + mkDerivation { + pname = "arena"; + version = "0.1"; + sha256 = "4b15bd66601e043b6c24ba74ac2e2123ef46832b9bf48eaef66770dfbba5e8e5"; + revision = "1"; + editedCabalFile = "fa9abdbd4a0df1eddd4c061f9e2b0d2ebe5ac7fae0a462d26024c2ba17c00139"; + libraryHaskellDepends = [ + base bytes bytestring containers digest directory filepath mtl + persistent-vector safe semigroups unix + ]; + testHaskellDepends = [ + base bytes containers directory mtl semigroups + ]; + jailbreak = true; + description = "A journaled data store"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "arff" = callPackage ({ mkDerivation, base, binary, bytestring, bytestring-lexing , bytestring-show, old-locale, time @@ -30758,12 +30823,17 @@ self: { }) {}; "array-primops" = callPackage - ({ mkDerivation, base, ghc-prim }: + ({ mkDerivation, base, ghc-prim, QuickCheck, tasty + , tasty-quickcheck + }: mkDerivation { pname = "array-primops"; - version = "0.1.0.0"; - sha256 = "dd181c8211dee3b4c13066fc7f58e599dd0d0d7990c1082583d2ed68807e1c87"; + version = "0.2.0.0"; + sha256 = "ea6b68b54d21f4f6810f7e6a26c4af9dc216bdef5f44b67ea021be097f2a960a"; libraryHaskellDepends = [ base ghc-prim ]; + testHaskellDepends = [ + base ghc-prim QuickCheck tasty tasty-quickcheck + ]; description = "Extra foreign primops for primitive arrays"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -31383,7 +31453,7 @@ self: { jailbreak = true; description = "an incomplete 2d space game"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "astview" = callPackage @@ -37072,6 +37142,7 @@ self: { libraryPkgconfigDepends = [ directfb ]; description = "Low level bindings to DirectFB"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) directfb;}; "bindings-eskit" = callPackage @@ -37236,6 +37307,7 @@ self: { homepage = "https://github.com/basvandijk/bindings-levmar"; description = "Low level bindings to the C levmar (Levenberg-Marquardt) library"; license = "unknown"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) blas; inherit (pkgs) liblapack;}; "bindings-libcddb" = callPackage @@ -37387,6 +37459,7 @@ self: { homepage = "https://github.com/fizruk/bindings-lxc"; description = "Direct Haskell bindings to LXC (Linux containers) C API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) lxc;}; "bindings-mmap" = callPackage @@ -40165,7 +40238,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "bower-json" = callPackage + "bower-json_0_7_0_0" = callPackage ({ mkDerivation, aeson, aeson-better-errors, base, bytestring, mtl , scientific, tasty, tasty-hunit, text, transformers , unordered-containers, vector @@ -40184,6 +40257,28 @@ self: { homepage = "https://github.com/hdgarrood/bower-json"; description = "Read bower.json from Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "bower-json" = callPackage + ({ mkDerivation, aeson, aeson-better-errors, base, bytestring, mtl + , scientific, tasty, tasty-hunit, text, transformers + , unordered-containers, vector + }: + mkDerivation { + pname = "bower-json"; + version = "0.8.0"; + sha256 = "ee8efa507020dc3f7439849a3662d6bbc72dfec8c1ae8d158e75546138dff3cf"; + libraryHaskellDepends = [ + aeson aeson-better-errors base bytestring mtl scientific text + transformers unordered-containers vector + ]; + testHaskellDepends = [ + aeson base bytestring tasty tasty-hunit text unordered-containers + ]; + homepage = "https://github.com/hdgarrood/bower-json"; + description = "Read bower.json from Haskell"; + license = stdenv.lib.licenses.mit; }) {}; "bowntz" = callPackage @@ -41022,7 +41117,6 @@ self: { homepage = "http://vis.renci.org/jeff/buster"; description = "Almost but not quite entirely unlike FRP"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "buster-gtk" = callPackage @@ -44510,7 +44604,7 @@ self: { homepage = "https://github.com/master-q/carettah"; description = "A presentation tool written with Haskell"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "carray_0_1_6_2" = callPackage @@ -44825,7 +44919,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "case-insensitive" = callPackage + "case-insensitive_1_2_0_5" = callPackage ({ mkDerivation, base, bytestring, deepseq, hashable, HUnit , test-framework, test-framework-hunit, text }: @@ -44842,6 +44936,26 @@ self: { homepage = "https://github.com/basvandijk/case-insensitive"; description = "Case insensitive string comparison"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "case-insensitive" = callPackage + ({ mkDerivation, base, bytestring, deepseq, hashable, HUnit + , semigroups, test-framework, test-framework-hunit, text + }: + mkDerivation { + pname = "case-insensitive"; + version = "1.2.0.6"; + sha256 = "bc7b53517fefc475311bfe6dbab8ade47ab8df11a59079653aa3271e9ffcb1c4"; + libraryHaskellDepends = [ + base bytestring deepseq hashable semigroups text + ]; + testHaskellDepends = [ + base bytestring HUnit test-framework test-framework-hunit text + ]; + homepage = "https://github.com/basvandijk/case-insensitive"; + description = "Case insensitive string comparison"; + license = stdenv.lib.licenses.bsd3; }) {}; "cased" = callPackage @@ -46475,6 +46589,34 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "cheapskate-highlight" = callPackage + ({ mkDerivation, base, blaze-html, cheapskate, highlighting-kate + , text + }: + mkDerivation { + pname = "cheapskate-highlight"; + version = "0.1.0.0"; + sha256 = "5af7afb26b4ea80952963b44db695cbf18da34d3e8a7d32382a7dbfa4832d370"; + libraryHaskellDepends = [ + base blaze-html cheapskate highlighting-kate text + ]; + homepage = "http://github.com/aelve/cheapskate-highlight"; + description = "Code highlighting for cheapskate"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "cheapskate-lucid" = callPackage + ({ mkDerivation, base, blaze-html, cheapskate, lucid }: + mkDerivation { + pname = "cheapskate-lucid"; + version = "0.1.0.0"; + sha256 = "f582e512befd2707a7056c1d15541967de2e0ce5702bc2197a3fced58a777245"; + libraryHaskellDepends = [ base blaze-html cheapskate lucid ]; + homepage = "http://github.com/aelve/cheapskate-lucid"; + description = "Use cheapskate with Lucid"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "cheapskate-terminal" = callPackage ({ mkDerivation, ansi-terminal, base, cheapskate, data-default , directory, hpygments, hscolour, terminal-size, text @@ -47753,7 +47895,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clash-ghc" = callPackage + "clash-ghc_0_6_11" = callPackage ({ mkDerivation, array, base, bifunctors, bytestring, clash-lib , clash-prelude, clash-systemverilog, clash-verilog, clash-vhdl , containers, directory, filepath, ghc, ghc-typelits-extra @@ -47777,9 +47919,10 @@ self: { homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clash-ghc_0_6_12" = callPackage + "clash-ghc" = callPackage ({ mkDerivation, array, base, bifunctors, bytestring, clash-lib , clash-prelude, clash-systemverilog, clash-verilog, clash-vhdl , containers, directory, filepath, ghc, ghc-typelits-extra @@ -47789,8 +47932,8 @@ self: { }: mkDerivation { pname = "clash-ghc"; - version = "0.6.12"; - sha256 = "d60cc11f954661be1289153804e00f0014d91945b68338026f3d0dac21e01f87"; + version = "0.6.15"; + sha256 = "6ad588803e4bd27d9415c35967e0510a5d8710aabcd061b1f2d0d7814984a0a2"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -47800,11 +47943,9 @@ self: { haskeline lens mtl process text transformers unbound-generics unix unordered-containers ]; - jailbreak = true; homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware"; license = stdenv.lib.licenses.bsd2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clash-lib_0_5_10" = callPackage @@ -47995,7 +48136,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clash-lib" = callPackage + "clash-lib_0_6_11" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, clash-prelude , concurrent-supply, containers, deepseq, directory, errors, fgl , filepath, hashable, lens, mtl, pretty, process, template-haskell @@ -48015,9 +48156,10 @@ self: { homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - As a Library"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clash-lib_0_6_12" = callPackage + "clash-lib" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, clash-prelude , concurrent-supply, containers, deepseq, directory, errors, fgl , filepath, hashable, lens, mtl, pretty, process, template-haskell @@ -48026,8 +48168,8 @@ self: { }: mkDerivation { pname = "clash-lib"; - version = "0.6.12"; - sha256 = "54a09d7727ab39541612058a54447533cdc5ddfde93432f4df7431d97b9cb747"; + version = "0.6.13"; + sha256 = "523f1797d11c477b1806022c0ab2a5d573401842a6fb392a2e7d1c3b22634180"; libraryHaskellDepends = [ aeson attoparsec base bytestring clash-prelude concurrent-supply containers deepseq directory errors fgl filepath hashable lens mtl @@ -48037,7 +48179,6 @@ self: { homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - As a Library"; license = stdenv.lib.licenses.bsd2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clash-prelude_0_9_2" = callPackage @@ -48589,7 +48730,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clash-vhdl" = callPackage + "clash-vhdl_0_6_8" = callPackage ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl , text, unordered-containers, wl-pprint-text }: @@ -48604,6 +48745,24 @@ self: { homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - VHDL backend"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "clash-vhdl" = callPackage + ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl + , text, unordered-containers, wl-pprint-text + }: + mkDerivation { + pname = "clash-vhdl"; + version = "0.6.10"; + sha256 = "49770e564988f3501ad57b9d0edbd662ca6574faeb67b1de28999a7dcf94bbde"; + libraryHaskellDepends = [ + base clash-lib clash-prelude fgl lens mtl text unordered-containers + wl-pprint-text + ]; + homepage = "http://www.clash-lang.org/"; + description = "CAES Language for Synchronous Hardware - VHDL backend"; + license = stdenv.lib.licenses.bsd2; }) {}; "classify" = callPackage @@ -50158,7 +50317,7 @@ self: { homepage = "https://github.com/bhickey/cloudyfs"; description = "A cloud in the file system"; license = "unknown"; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cltw" = callPackage @@ -53710,8 +53869,8 @@ self: { }: mkDerivation { pname = "configuration-tools"; - version = "0.2.13"; - sha256 = "e2d3fef26b93ef82ae484ca06730d09a5d5035a85134fae81f05cd15122b1966"; + version = "0.2.14"; + sha256 = "c54c40d72423207f63c7108ea6076612a179c0c35d7e10e540858ba92946f9fb"; libraryHaskellDepends = [ aeson ansi-wl-pprint attoparsec base base-unicode-symbols base64-bytestring bytestring Cabal case-insensitive connection @@ -55043,8 +55202,8 @@ self: { ({ mkDerivation, base, directory, strict }: mkDerivation { pname = "cookbook"; - version = "3.0.0.1"; - sha256 = "7142f3f1235e2ae5a7e6b040ad2d53f8ed332ca11cea8b3a0ff199b7ce2312d6"; + version = "3.0.1.1"; + sha256 = "63919cc80135e854317bc68a34d62ecf5bcd5a96e7bb66a01e706a520b6eba2d"; libraryHaskellDepends = [ base directory strict ]; description = "Tiered general-purpose libraries with domain-specific applications"; license = stdenv.lib.licenses.bsd3; @@ -55128,8 +55287,8 @@ self: { }: mkDerivation { pname = "coordinate"; - version = "0.0.19"; - sha256 = "596039a14f30eed5d732bc5b9d04f20f3f0fba675c196083fb1e4fd17d6dc605"; + version = "0.0.21"; + sha256 = "a126c5713e498514f8225af4942dfac5a2ccca501b20a1a2c1e7783f58f39a4f"; libraryHaskellDepends = [ base lens radian tagged transformers ]; testHaskellDepends = [ base directory doctest filepath QuickCheck template-haskell @@ -56760,7 +56919,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cron" = callPackage + "cron_0_3_2" = callPackage ({ mkDerivation, attoparsec, base, derive, mtl, mtl-compat , old-locale, tasty, tasty-hunit, tasty-quickcheck, text, time , transformers-compat @@ -56780,6 +56939,28 @@ self: { homepage = "http://github.com/michaelxavier/cron"; description = "Cron datatypes and Attoparsec parser"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "cron" = callPackage + ({ mkDerivation, attoparsec, base, derive, mtl, mtl-compat + , old-locale, quickcheck-instances, semigroups, tasty, tasty-hunit + , tasty-quickcheck, text, time, transformers-compat + }: + mkDerivation { + pname = "cron"; + version = "0.4.0"; + sha256 = "023916c844787d40466044d8ae9af9d77da18840f1f7531fb5f8508b01a1e7b5"; + libraryHaskellDepends = [ + attoparsec base mtl mtl-compat old-locale semigroups text time + ]; + testHaskellDepends = [ + attoparsec base derive quickcheck-instances semigroups tasty + tasty-hunit tasty-quickcheck text time transformers-compat + ]; + homepage = "http://github.com/michaelxavier/cron"; + description = "Cron datatypes and Attoparsec parser"; + license = stdenv.lib.licenses.mit; }) {}; "cron-compat" = callPackage @@ -58154,7 +58335,7 @@ self: { homepage = "https://github.com/adamwalker/haskell_cudd"; description = "Bindings to the CUDD binary decision diagrams library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {cudd = null; dddmp = null; epd = null; inherit (pkgs) mtr; inherit (pkgs) st; util = null;}; @@ -58359,6 +58540,7 @@ self: { ]; description = "Functional Combinators for Computer Vision"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "cyclotomic" = callPackage @@ -58536,7 +58718,6 @@ self: { ]; description = "Dao is meta programming language with its own built-in interpreted language, designed with artificial intelligence applications in mind"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dapi" = callPackage @@ -60193,7 +60374,6 @@ self: { libraryHaskellDepends = [ base bytestring bytestring-mmap unix ]; description = "Ropes, an alternative to (Byte)Strings"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-rtuple" = callPackage @@ -61863,7 +62043,7 @@ self: { homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "A definitive package to handle sound and play it back"; license = "unknown"; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "deiko-config" = callPackage @@ -63826,6 +64006,7 @@ self: { homepage = "https://github.com/marcinmrotek/diagrams-hsqml"; description = "HsQML (Qt5) backend for Diagrams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "diagrams-html5_1_3_0_2" = callPackage @@ -64396,7 +64577,7 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "reflex backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-rubiks-cube" = callPackage @@ -64681,6 +64862,7 @@ self: { homepage = "https://gitlab.com/lamefun/dialog"; description = "Simple dialog-based user interfaces"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "dice" = callPackage @@ -65252,14 +65434,16 @@ self: { }) {}; "digit" = callPackage - ({ mkDerivation, base, directory, doctest, filepath, lens, parsers - , QuickCheck, template-haskell + ({ mkDerivation, base, directory, doctest, filepath, lens, parsec + , parsers, QuickCheck, template-haskell }: mkDerivation { pname = "digit"; - version = "0.2.2"; - sha256 = "7f7ceba1e7a0da717de58bf754bc62215fd5e55e6572f919398f0366fddccb2f"; - libraryHaskellDepends = [ base lens parsers template-haskell ]; + version = "0.2.4"; + sha256 = "a85b1be440a007398adfbe8f7c03854e43354bec0dd907bbd0d1227e8848a7e2"; + libraryHaskellDepends = [ + base lens parsec parsers template-haskell + ]; testHaskellDepends = [ base directory doctest filepath QuickCheck template-haskell ]; @@ -67771,6 +67955,7 @@ self: { homepage = "http://github.com/toothbrush/dotfs"; description = "Filesystem to manage and parse dotfiles"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "dotgen" = callPackage @@ -68125,7 +68310,7 @@ self: { testPkgconfigDepends = [ libdpkg ]; description = "libdpkg bindings"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) dpkg; libdpkg = null;}; "drClickOn" = callPackage @@ -71595,8 +71780,8 @@ self: { ({ mkDerivation, base, containers, hspec }: mkDerivation { pname = "envparse"; - version = "0.3.0"; - sha256 = "7dfe65dd787b6975a738e6753682f65631f2bd7def489a1153dc2852d7a0b72f"; + version = "0.3.1"; + sha256 = "ea6dc6e6939e5f80d715ec084103c6b3ba55947ba75f22551ed52084830da736"; libraryHaskellDepends = [ base containers ]; testHaskellDepends = [ base containers hspec ]; homepage = "https://supki.github.io/envparse"; @@ -74402,7 +74587,7 @@ self: { homepage = "http://bencode.blogspot.com/2009/03/falling-blocks-tetris-clone-in-haskell.html"; description = "A fun falling blocks game"; license = "GPL"; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "family-tree" = callPackage @@ -78191,6 +78376,7 @@ self: { homepage = "http://github.com/deech/fltkhs-demos"; description = "FLTKHS demos. Please scroll to the bottom for more information."; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fltkhs-fluid-demos" = callPackage @@ -78233,6 +78419,7 @@ self: { homepage = "http://github.com/deech/fltkhs-hello-world"; description = "Fltkhs template project"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fluent-logger" = callPackage @@ -80049,7 +80236,7 @@ self: { homepage = "http://github.com/anttisalonen/freekick2"; description = "A soccer game"; license = "GPL"; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "freenect_1_2" = callPackage @@ -80083,6 +80270,7 @@ self: { homepage = "https://github.com/chrisdone/freenect"; description = "Interface to the Kinect device"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) freenect; freenect_sync = null; libfreenect = null;}; @@ -80957,7 +81145,7 @@ self: { homepage = "http://github.com/nathanwiegand/funion"; description = "A unioning file-system using HFuse"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "funpat" = callPackage @@ -81568,7 +81756,7 @@ self: { homepage = "http://corbinsimpson.com/"; description = "A simple library of helpers for SDL+GL games"; license = "GPL"; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gencheck" = callPackage @@ -83854,6 +84042,7 @@ self: { ]; description = "DOM library that supports both GHCJS and WebKitGTK"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "ghcjs-dom-hello" = callPackage @@ -83868,6 +84057,7 @@ self: { homepage = "https://github.com/ghcjs/ghcjs-dom-hello"; description = "GHCJS DOM Hello World, an example package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "ghcjs-websockets" = callPackage @@ -84237,7 +84427,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Vte bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) vte;}; "gi-webkit" = callPackage @@ -84260,7 +84450,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "WebKit bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) webkit;}; "gi-webkit2" = callPackage @@ -84651,6 +84841,7 @@ self: { homepage = "http://git-annex.branchable.com/"; description = "manage files with git, without checking their contents into git"; license = stdenv.lib.licenses.gpl3; + platforms = [ "i686-linux" "x86_64-linux" ]; hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ simons ]; }) {inherit (pkgs) bup; inherit (pkgs) curl; inherit (pkgs) git; @@ -84717,6 +84908,7 @@ self: { homepage = "http://git-annex.branchable.com/"; description = "manage files with git, without checking their contents into git"; license = stdenv.lib.licenses.gpl3; + platforms = [ "i686-linux" "x86_64-linux" ]; hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ simons ]; }) {inherit (pkgs) bup; inherit (pkgs) curl; inherit (pkgs) git; @@ -84783,6 +84975,7 @@ self: { homepage = "http://git-annex.branchable.com/"; description = "manage files with git, without checking their contents into git"; license = stdenv.lib.licenses.gpl3; + platforms = [ "i686-linux" "x86_64-linux" ]; hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ simons ]; }) {inherit (pkgs) bup; inherit (pkgs) curl; inherit (pkgs) git; @@ -84849,6 +85042,7 @@ self: { homepage = "http://git-annex.branchable.com/"; description = "manage files with git, without checking their contents into git"; license = stdenv.lib.licenses.gpl3; + platforms = [ "i686-linux" "x86_64-linux" ]; maintainers = with stdenv.lib.maintainers; [ simons ]; }) {inherit (pkgs) bup; inherit (pkgs) curl; inherit (pkgs) git; inherit (pkgs) gnupg; inherit (pkgs) lsof; inherit (pkgs) openssh; @@ -86701,7 +86895,7 @@ self: { jailbreak = true; description = "Mandelbrot Set explorer using GTK"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gnome-desktop" = callPackage @@ -86734,7 +86928,7 @@ self: { homepage = "https://john-millikin.com/software/haskell-gnome-keyring/"; description = "Bindings for libgnome-keyring"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) gnome_keyring;}; "gnomevfs" = callPackage @@ -86754,7 +86948,7 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "Binding to the GNOME Virtual File System library"; license = "GPL"; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) gnome_vfs; gnome_vfs_module = null;}; "gnss-converters" = callPackage @@ -86987,6 +87181,7 @@ self: { homepage = "http://khumba.net/projects/goatee"; description = "A monadic take on a 2,500-year-old board game - GTK+ UI"; license = stdenv.lib.licenses.agpl3; + platforms = [ "i686-linux" "x86_64-linux" ]; maintainers = with stdenv.lib.maintainers; [ khumba ]; }) {}; @@ -89109,6 +89304,7 @@ self: { homepage = "http://github.com/luqui/graphics-drawingcombinators"; description = "A functional interface to 2D drawing in OpenGL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "graphics-formats-collada" = callPackage @@ -89597,6 +89793,7 @@ self: { ]; description = "Grid-based multimedia engine"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "grm" = callPackage @@ -90043,7 +90240,7 @@ self: { jailbreak = true; description = "fractal explorer GUI using the ruff library"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gruff-examples" = callPackage @@ -90063,7 +90260,7 @@ self: { jailbreak = true; description = "Mandelbrot Set examples using ruff and gruff"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gsasl" = callPackage @@ -90571,7 +90768,7 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: gnomevfs package"; license = "unknown"; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk2hs-cast-gtk" = callPackage @@ -90603,7 +90800,7 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: gtkglext package"; license = "unknown"; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk2hs-cast-gtksourceview2" = callPackage @@ -90905,7 +91102,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GTK+ OpenGL Extension"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) gtkglext;}; "gtkimageview" = callPackage @@ -90983,6 +91180,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GtkSourceView library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs.gnome) gtksourceview;}; "guarded-rewriting" = callPackage @@ -91176,7 +91374,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "An FFI binding to the CUDD library"; license = "LGPL"; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {cudd = null; epd = null; inherit (pkgs) mtr; inherit (pkgs) st; util = null;}; @@ -91838,7 +92036,7 @@ self: { homepage = "http://dslsrv4.cs.missouri.edu/~qqbm9"; description = "Optimal variable selection in chain graphical model"; license = "GPL"; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) blas; inherit (pkgs) liblapack;}; "hXmixer" = callPackage @@ -93111,14 +93309,13 @@ self: { }: mkDerivation { pname = "hailgun"; - version = "0.4.0.3"; - sha256 = "2cdcc286430fe94c00ea2db6d5588f920bb30ff7ddbb6f27047cc26e42688eb0"; + version = "0.4.0.4"; + sha256 = "ccd6088dbd1d5a8562364ad643db49059f498db621b288f891d5197d338d1859"; libraryHaskellDepends = [ aeson base bytestring email-validate exceptions filepath http-client http-client-tls http-types tagsoup text time transformers ]; - jailbreak = true; description = "Mailgun REST api interface for Haskell"; license = stdenv.lib.licenses.mit; }) {}; @@ -94001,7 +94198,7 @@ self: { jailbreak = true; description = "The HAskelL File System (\"halfs\" -- intended for use on the HaLVM)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "halipeto" = callPackage @@ -96209,6 +96406,7 @@ self: { homepage = "http://github.com/cosbynator/haskakafka"; description = "Kafka bindings for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) rdkafka;}; "haskanoid" = callPackage @@ -96228,7 +96426,7 @@ self: { homepage = "http://github.com/ivanperez-keera/haskanoid"; description = "A breakout game written in Yampa using SDL"; license = "unknown"; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; + hydraPlatforms = [ "x86_64-linux" ]; }) {}; "haskarrow" = callPackage @@ -100228,7 +100426,7 @@ self: { jailbreak = true; description = "Haskell bindings for the C Wayland library"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) mesa; inherit (pkgs) wayland;}; "hayoo-cli" = callPackage @@ -100356,7 +100554,7 @@ self: { homepage = "http://www.dockerz.net/software/hbeat.html"; description = "A simple step sequencer GUI"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) SDL_mixer;}; "hblas" = callPackage @@ -100376,7 +100574,7 @@ self: { homepage = "http://github.com/wellposed/hblas/"; description = "Human friendly BLAS and Lapack bindings for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) blas; inherit (pkgs) liblapack;}; "hblock" = callPackage @@ -100427,7 +100625,7 @@ self: { homepage = "https://github.com/k0ral/hbro"; description = "Minimal extensible web-browser"; license = "unknown"; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hbro-contrib" = callPackage @@ -100638,6 +100836,7 @@ self: { homepage = "https://github.com/ivanperez-keera/hcwiid"; description = "Library to interface with the wiimote"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {bluetooth = null; inherit (pkgs) cwiid;}; "hdaemonize_0_5_0_0" = callPackage @@ -101413,15 +101612,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hedis_0_7_6" = callPackage + "hedis_0_7_7" = callPackage ({ mkDerivation, attoparsec, base, bytestring, bytestring-lexing , deepseq, HUnit, mtl, network, resource-pool, slave-thread , test-framework, test-framework-hunit, time, vector }: mkDerivation { pname = "hedis"; - version = "0.7.6"; - sha256 = "5108932156140465b41915fc043dc6e23491480576c48a4a81dd9bbb570f5cbe"; + version = "0.7.7"; + sha256 = "5a36b46ab3b6e24a094eb217961828857b5b34f28c2f9565def865a867956807"; libraryHaskellDepends = [ attoparsec base bytestring bytestring-lexing deepseq mtl network resource-pool time vector @@ -101990,6 +102189,7 @@ self: { homepage = "https://github.com/nh2/hemokit"; description = "Haskell port of the Emokit EEG project"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hen" = callPackage @@ -103233,6 +103433,7 @@ self: { homepage = "https://github.com/phaazon/hid"; description = "Interface to hidapi library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) hidapi;}; "hidapi" = callPackage @@ -103246,6 +103447,7 @@ self: { homepage = "https://github.com/vahokif/haskell-hidapi"; description = "Haskell bindings to HIDAPI"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) systemd;}; "hieraclus" = callPackage @@ -104135,17 +104337,17 @@ self: { }) {}; "hip" = callPackage - ({ mkDerivation, base, bytestring, deepseq, filepath, JuicyPixels - , netpbm, primitive, process, repa, temporary, vector - , vector-th-unbox + ({ mkDerivation, base, bytestring, Chart, Chart-cairo, colour + , deepseq, filepath, JuicyPixels, netpbm, primitive, process, repa + , temporary, vector }: mkDerivation { pname = "hip"; - version = "1.0.0.0"; - sha256 = "5da5f20c32dc907b1d5b918dcfe49662c43dbf004cead970571f912d91fba39a"; + version = "1.0.1"; + sha256 = "dc8fb010b0ae61cfb6b7949a3572f32ce9d470ad5818c4ac39d60f94c9b7e3ca"; libraryHaskellDepends = [ - base bytestring deepseq filepath JuicyPixels netpbm primitive - process repa temporary vector vector-th-unbox + base bytestring Chart Chart-cairo colour deepseq filepath + JuicyPixels netpbm primitive process repa temporary vector ]; jailbreak = true; homepage = "https://github.com/lehins/hip"; @@ -105549,6 +105751,7 @@ self: { homepage = "https://victoredwardocallaghan.github.io/hlibBladeRF"; description = "Haskell binding to libBladeRF SDR library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) libbladeRF;}; "hlibev" = callPackage @@ -105916,7 +106119,6 @@ self: { homepage = "http://www.pontarius.org/sub-projects/hlogger/"; description = "Simple, concurrent, extendable and easy-to-use logging library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hlongurl" = callPackage @@ -106175,7 +106377,7 @@ self: { homepage = "http://code.haskell.org/~thielema/hmatrix-banded/"; description = "HMatrix interface to LAPACK functions for banded matrices"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) liblapack;}; "hmatrix-csv" = callPackage @@ -106567,7 +106769,6 @@ self: { homepage = "https://github.com/mikeizbicki/hmm"; description = "A hidden markov model library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmm-hmatrix" = callPackage @@ -107020,7 +107221,7 @@ self: { homepage = "http://svalaskevicius.github.io/hob/"; description = "A source code editor aiming for the convenience of use"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hobbes" = callPackage @@ -107415,7 +107616,7 @@ self: { testSystemDepends = [ freenect OpenNI2 ]; description = "OpenNI 2 binding"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {OpenNI2 = null; inherit (pkgs) freenect;}; "honk" = callPackage @@ -108682,7 +108883,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Hp2any"; description = "A utility to visualise and compare heap profiles"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hp2html" = callPackage @@ -109892,7 +110093,7 @@ self: { tasty-quickcheck ]; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) mesos; inherit (pkgs) protobuf;}; "hs-nombre-generator" = callPackage @@ -110948,8 +111149,8 @@ self: { }: mkDerivation { pname = "hsdev"; - version = "0.1.6.6"; - sha256 = "9b4fa60291ad1e6f2d47ec2b90fd254a2df0224a346ad3099bf047d10526d523"; + version = "0.1.7.0"; + sha256 = "5593a3ecb9aeca84bf6b62e0ecb82e181b838802ec58bd30b8915444dc22ff5b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -111374,6 +111575,7 @@ self: { homepage = "http://code.haskell.org/hsignal"; description = "Signal processing and EEG data analysis"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) blas; inherit (pkgs) gsl; inherit (pkgs) liblapack;}; @@ -113180,7 +113382,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hspec-wai" = callPackage + "hspec-wai_0_6_5" = callPackage ({ mkDerivation, base, base-compat, bytestring, case-insensitive , hspec, hspec-core, hspec-expectations, http-types, QuickCheck , text, transformers, wai, wai-extra, with-location @@ -113189,6 +113391,34 @@ self: { pname = "hspec-wai"; version = "0.6.5"; sha256 = "186f8ca2b8412f7e3305fbe1054e27ca217fdbcca8478235f15ab7019f4f9525"; + revision = "1"; + editedCabalFile = "9311aeec0d3be1445b3c0e0f9b0bcad67df22b697c947afa6b93ecb213137956"; + libraryHaskellDepends = [ + base base-compat bytestring case-insensitive hspec-core + hspec-expectations http-types QuickCheck text transformers wai + wai-extra with-location + ]; + testHaskellDepends = [ + base base-compat bytestring case-insensitive hspec hspec-core + hspec-expectations http-types QuickCheck text transformers wai + wai-extra with-location + ]; + jailbreak = true; + homepage = "https://github.com/hspec/hspec-wai#readme"; + description = "Experimental Hspec support for testing WAI applications"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hspec-wai" = callPackage + ({ mkDerivation, base, base-compat, bytestring, case-insensitive + , hspec, hspec-core, hspec-expectations, http-types, QuickCheck + , text, transformers, wai, wai-extra, with-location + }: + mkDerivation { + pname = "hspec-wai"; + version = "0.6.6"; + sha256 = "89a1753cd56b6f312a0af11b7f312c744c73a97d8ab3facfd87f8e4e3080b0e0"; libraryHaskellDepends = [ base base-compat bytestring case-insensitive hspec-core hspec-expectations http-types QuickCheck text transformers wai @@ -113466,6 +113696,7 @@ self: { homepage = "http://www.gekkou.co.uk/software/hsqml/"; description = "Haskell binding for Qt Quick"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {qt5 = null;}; "hsqml-datamodel" = callPackage @@ -113479,7 +113710,7 @@ self: { homepage = "https://github.com/marcinmrotek/hsqml-datamodel"; description = "HsQML (Qt5) data model"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {qt5 = null;}; "hsqml-datamodel-vinyl" = callPackage @@ -113497,7 +113728,7 @@ self: { homepage = "https://github.com/marcinmrotek/hsqml-datamodel-vinyl"; description = "HsQML DataModel instances for Vinyl Rec"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsqml-demo-morris" = callPackage @@ -113516,7 +113747,7 @@ self: { homepage = "http://www.gekkou.co.uk/software/hsqml/"; description = "HsQML-based implementation of Nine Men's Morris"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; + hydraPlatforms = [ "x86_64-linux" ]; }) {}; "hsqml-demo-notes" = callPackage @@ -113535,6 +113766,7 @@ self: { homepage = "http://www.gekkou.co.uk/software/hsqml/"; description = "Sticky notes example program implemented in HsQML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hsqml-demo-samples" = callPackage @@ -113550,7 +113782,7 @@ self: { homepage = "http://www.gekkou.co.uk/software/hsqml/"; description = "HsQML sample programs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsqml-morris" = callPackage @@ -113570,7 +113802,7 @@ self: { homepage = "http://www.gekkou.co.uk/"; description = "HsQML-based implementation of Nine Men's Morris"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsreadability" = callPackage @@ -113783,7 +114015,7 @@ self: { jailbreak = true; description = "Distributed instant messaging over Tor"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hstradeking" = callPackage @@ -116490,8 +116722,8 @@ self: { }: mkDerivation { pname = "http2"; - version = "1.5.2"; - sha256 = "8517079c1418c93e33324612a7fa657af40dedef3c0d56a9a2031bfcf6900f70"; + version = "1.5.4"; + sha256 = "f3851948d57fd532f37b1f74d2d975272ff7da218720b5f519765f1c274f257e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -116507,7 +116739,6 @@ self: { containers directory doctest filepath Glob hex hspec psqueues stm text unordered-containers vector word8 ]; - doCheck = false; description = "HTTP/2.0 library including frames and HPACK"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -116596,7 +116827,7 @@ self: { jailbreak = true; description = "harmonic analyser and tuner for musical instruments"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "htzaar" = callPackage @@ -120315,7 +120546,7 @@ self: { jailbreak = true; description = "Minimalistic reference manager"; license = "GPL"; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "imgurder" = callPackage @@ -120388,6 +120619,26 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "immortal_0_2_2" = callPackage + ({ mkDerivation, base, lifted-base, monad-control, stm, tasty + , tasty-hunit, transformers, transformers-base + }: + mkDerivation { + pname = "immortal"; + version = "0.2.2"; + sha256 = "b3858f3830f5eacd7380184d57845ba6b1aee638193fbbf2b285cc31e2c3623a"; + libraryHaskellDepends = [ + base lifted-base monad-control stm transformers-base + ]; + testHaskellDepends = [ + base lifted-base stm tasty tasty-hunit transformers + ]; + homepage = "https://github.com/feuerbach/immortal"; + description = "Spawn threads that never die (unless told to do so)"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "imparse" = callPackage ({ mkDerivation, ascetic, base, compilation, containers, directory , indents, MissingH, parsec, richreports, split, staticanalysis @@ -121899,6 +122150,7 @@ self: { homepage = "http://mbays.freeshell.org/intricacy"; description = "A game of competitive puzzle-design"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "intset" = callPackage @@ -122549,7 +122801,7 @@ self: { homepage = "http://iptadmin.117.su"; description = "web-interface for iptables"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ipython-kernel_0_6_1_2" = callPackage @@ -122829,8 +123081,8 @@ self: { }: mkDerivation { pname = "irc-fun-color"; - version = "0.2.0.0"; - sha256 = "d08930a2d5b39411515cd1477804416a0d1882cb4af716cfdddffc0bf3e20780"; + version = "0.2.1.0"; + sha256 = "f8423b38b4309fa55af87cd6b3fabe277b47c77fe412cc660712d41663f0bc87"; libraryHaskellDepends = [ base dlist formatting irc-fun-types text text-show ]; @@ -123695,7 +123947,6 @@ self: { homepage = "http://www.renickbell.net/doku.php?id=jackminimix"; description = "control JackMiniMix"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jacobi-roots" = callPackage @@ -124521,7 +124772,7 @@ self: { ]; description = "High level interface for webkit-javascriptcore"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jsaddle-hello" = callPackage @@ -124537,7 +124788,7 @@ self: { homepage = "https://github.com/ghcjs/jsaddle-hello"; description = "JSaddle Hello World, an example package"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jsc" = callPackage @@ -124560,7 +124811,7 @@ self: { jailbreak = true; description = "High level interface for webkit-javascriptcore"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jsmw" = callPackage @@ -124881,38 +125132,6 @@ self: { }) {}; "json-autotype" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, directory - , filepath, GenericPretty, hashable, hflags, hint, lens, mmap, mtl - , pretty, process, QuickCheck, scientific, smallcheck, text - , uniplate, unordered-containers, vector - }: - mkDerivation { - pname = "json-autotype"; - version = "1.0.12"; - sha256 = "3ae9f925262fac423e33f7768ba7b9ce3c34a1d32ec7042d4db430084d5a1ed1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring containers filepath GenericPretty hashable - hflags hint lens mmap mtl pretty process scientific text uniplate - unordered-containers vector - ]; - executableHaskellDepends = [ - aeson base bytestring containers filepath GenericPretty hashable - hflags hint lens mtl pretty process scientific text uniplate - unordered-containers vector - ]; - testHaskellDepends = [ - aeson base bytestring containers directory filepath GenericPretty - hashable hflags lens mtl pretty process QuickCheck scientific - smallcheck text uniplate unordered-containers vector - ]; - homepage = "https://github.com/mgajda/json-autotype"; - description = "Automatic type declaration for JSON input data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "json-autotype_1_0_13" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, directory , filepath, GenericPretty, hashable, hflags, hint, lens, mmap, mtl , pretty, process, QuickCheck, scientific, smallcheck, text @@ -124942,7 +125161,6 @@ self: { homepage = "https://github.com/mgajda/json-autotype"; description = "Automatic type declaration for JSON input data"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json-b" = callPackage @@ -125864,6 +126082,34 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "jwt_0_7_0" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers, cryptonite + , data-default, doctest, http-types, HUnit, lens, lens-aeson + , memory, network-uri, QuickCheck, scientific, semigroups, tasty + , tasty-hunit, tasty-quickcheck, tasty-th, text, time + , unordered-containers, vector + }: + mkDerivation { + pname = "jwt"; + version = "0.7.0"; + sha256 = "a0eef3f59a4d115c47ffe75baa4f0347fc8fc714eac5fb258bdbeb42d501cff5"; + libraryHaskellDepends = [ + aeson base bytestring containers cryptonite data-default http-types + memory network-uri scientific semigroups text time + unordered-containers vector + ]; + testHaskellDepends = [ + aeson base bytestring containers cryptonite data-default doctest + http-types HUnit lens lens-aeson memory network-uri QuickCheck + scientific semigroups tasty tasty-hunit tasty-quickcheck tasty-th + text time unordered-containers vector + ]; + homepage = "https://bitbucket.org/ssaasen/haskell-jwt"; + description = "JSON Web Token (JWT) decoding and encoding"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "kademlia" = callPackage ({ mkDerivation, base, bytestring, containers, HUnit, mtl, network , QuickCheck, stm, tasty, tasty-hunit, tasty-quickcheck @@ -126707,7 +126953,7 @@ self: { homepage = "http://keera.co.uk/projects/keera-posture"; description = "Get notifications when your sitting posture is inappropriate"; license = "unknown"; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) SDL_mixer;}; "keiretsu" = callPackage @@ -128303,7 +128549,7 @@ self: { homepage = "http://github.com/baldo/lambdacat"; description = "Webkit Browser"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdacms-core" = callPackage @@ -128488,8 +128734,8 @@ self: { }: mkDerivation { pname = "lambdacube-gl"; - version = "0.5.0.1"; - sha256 = "7a54a39726b993d81fc8e9e0fa58595bd5f69ad317e4a26229d065a82432a9fd"; + version = "0.5.0.3"; + sha256 = "ecdf2c200238b635a1d52cf2cf3d9cf29874cee46dadc3b62d7e1da3525a1510"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -129495,7 +129741,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "language-javascript" = callPackage + "language-javascript_0_5_14_2" = callPackage ({ mkDerivation, alex, array, base, blaze-builder, bytestring , Cabal, containers, happy, HUnit, mtl, QuickCheck, test-framework , test-framework-hunit, utf8-light, utf8-string @@ -129516,6 +129762,56 @@ self: { homepage = "http://github.com/erikd/language-javascript"; description = "Parser for JavaScript"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "language-javascript" = callPackage + ({ mkDerivation, alex, array, base, blaze-builder, bytestring + , Cabal, containers, happy, HUnit, mtl, QuickCheck, test-framework + , test-framework-hunit, utf8-light, utf8-string + }: + mkDerivation { + pname = "language-javascript"; + version = "0.5.14.3"; + sha256 = "2d899f89aea6f6bd5a4dc1eddb7f58d58754e25655c515e2966ca75fb3d4cf22"; + libraryHaskellDepends = [ + array base blaze-builder bytestring containers mtl utf8-string + ]; + libraryToolDepends = [ alex happy ]; + testHaskellDepends = [ + array base blaze-builder bytestring Cabal containers HUnit mtl + QuickCheck test-framework test-framework-hunit utf8-light + utf8-string + ]; + jailbreak = true; + doCheck = false; + homepage = "http://github.com/erikd/language-javascript"; + description = "Parser for JavaScript"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "language-javascript_0_5_14_4" = callPackage + ({ mkDerivation, alex, array, base, blaze-builder, bytestring + , Cabal, containers, happy, HUnit, mtl, QuickCheck, test-framework + , test-framework-hunit, utf8-light, utf8-string + }: + mkDerivation { + pname = "language-javascript"; + version = "0.5.14.4"; + sha256 = "c439750a88b2ae1f7f8e42b7e81f17f294e05bdba4c97b909c4c75946d8295af"; + libraryHaskellDepends = [ + array base blaze-builder bytestring containers mtl utf8-string + ]; + libraryToolDepends = [ alex happy ]; + testHaskellDepends = [ + array base blaze-builder bytestring Cabal containers HUnit mtl + QuickCheck test-framework test-framework-hunit utf8-light + utf8-string + ]; + homepage = "http://github.com/erikd/language-javascript"; + description = "Parser for JavaScript"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-kort" = callPackage @@ -130762,7 +131058,7 @@ self: { homepage = "http://www.leksah.org"; description = "Haskell IDE written in Haskell"; license = "GPL"; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "leksah-server" = callPackage @@ -131539,7 +131835,7 @@ self: { homepage = "https://github.com/basvandijk/levmar"; description = "An implementation of the Levenberg-Marquardt algorithm"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "levmar-chart" = callPackage @@ -131558,7 +131854,7 @@ self: { jailbreak = true; description = "Plots the results of the Levenberg-Marquardt algorithm in a chart"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lexer-applicative" = callPackage @@ -131832,7 +132128,7 @@ self: { homepage = "https://github.com/peddie/libconfig-haskell"; description = "Haskell bindings to libconfig"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libconfig;}; "libcspm" = callPackage @@ -132294,6 +132590,7 @@ self: { homepage = "http://github.com/ocharles/libsystemd-journal"; description = "Haskell bindings to libsystemd-journal"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) systemd;}; "libtagc" = callPackage @@ -133597,6 +133894,7 @@ self: { ]; description = "Labeled File System interface for LIO"; license = "GPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "lio-simple" = callPackage @@ -134263,7 +134561,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Live-Sequencer"; description = "Live coding of MIDI music"; license = "GPL"; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ll-picosat" = callPackage @@ -135285,6 +135583,7 @@ self: { ]; description = "Journald back-end for logging-facade"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "logic-TPTP" = callPackage @@ -136477,6 +136776,7 @@ self: { homepage = "https://github.com/fizruk/lxc"; description = "High level Haskell bindings to LXC (Linux containers)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "lye" = callPackage @@ -137445,7 +137745,7 @@ self: { doHaddock = false; description = "Virtual package to install all Manatee packages"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-anything" = callPackage @@ -137487,7 +137787,7 @@ self: { jailbreak = true; description = "Browser extension for Manatee"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-core" = callPackage @@ -137707,7 +138007,7 @@ self: { jailbreak = true; description = "Feed reader extension for Manatee"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-template" = callPackage @@ -137748,7 +138048,7 @@ self: { jailbreak = true; description = "Terminal Emulator extension for Manatee"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-welcome" = callPackage @@ -138467,7 +138767,7 @@ self: { jailbreak = true; description = "A simple markup document preview (markdown, textile, reStructuredText)"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "marmalade-upload" = callPackage @@ -140084,7 +140384,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "microformats2-parser" = callPackage + "microformats2-parser_1_0_1_3" = callPackage ({ mkDerivation, aeson, aeson-pretty, aeson-qq, attoparsec, base , blaze-html, blaze-markup, bytestring, containers, data-default , either, errors, hspec, hspec-expectations-pretty-diff @@ -140119,6 +140419,44 @@ self: { homepage = "https://github.com/myfreeweb/microformats2-parser"; description = "A Microformats 2 parser"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "microformats2-parser" = callPackage + ({ mkDerivation, aeson, aeson-pretty, aeson-qq, attoparsec, base + , base-compat, blaze-html, blaze-markup, bytestring, containers + , data-default, either, errors, hspec + , hspec-expectations-pretty-diff, html-conduit, lens-aeson, mtl + , network, network-uri, options, pcre-heavy, raw-strings-qq, safe + , scotty, streaming-commons, template-haskell, text, time + , transformers, unordered-containers, vector, wai-extra, warp + , xml-lens, xss-sanitize + }: + mkDerivation { + pname = "microformats2-parser"; + version = "1.0.1.4"; + sha256 = "8863141a58cef161c04e39cccab1690263fdef009d69ba7e17e200956d7308d7"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson aeson-qq attoparsec base base-compat blaze-markup bytestring + containers data-default either errors html-conduit lens-aeson + network-uri pcre-heavy safe text time transformers + unordered-containers vector xml-lens xss-sanitize + ]; + executableHaskellDepends = [ + aeson aeson-pretty base base-compat blaze-html blaze-markup + data-default network network-uri options scotty streaming-commons + text wai-extra warp + ]; + testHaskellDepends = [ + aeson-qq base base-compat bytestring data-default hspec + hspec-expectations-pretty-diff html-conduit mtl network-uri + raw-strings-qq template-haskell text time xml-lens + ]; + homepage = "https://github.com/myfreeweb/microformats2-parser"; + description = "A Microformats 2 parser"; + license = stdenv.lib.licenses.publicDomain; }) {}; "microformats2-types" = callPackage @@ -140621,6 +140959,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/MIDI"; description = "Convert between datatypes of the midi and the alsa packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "midi-music-box" = callPackage @@ -140678,6 +141017,7 @@ self: { homepage = "http://www.youtube.com/watch?v=cOlR73h2uII"; description = "A Memory-like (Concentration, Pairs, ...) game for tones"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "midisurface" = callPackage @@ -140696,7 +141036,7 @@ self: { jailbreak = true; description = "A control midi surface"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mighttpd" = callPackage @@ -140782,19 +141122,19 @@ self: { }) {}; "miku" = callPackage - ({ mkDerivation, air, air-th, base, bytestring, containers - , data-default, hack2, hack2-contrib, mtl + ({ mkDerivation, base, blaze-builder, bytestring, case-insensitive + , containers, filepath, http-types, mtl, wai, wai-extra }: mkDerivation { pname = "miku"; - version = "2014.11.17"; - sha256 = "76682bc6d3db2fb07e9a749a40a752917afc2787bdf3dc1849b7b102f689dbfd"; + version = "2016.3.17"; + sha256 = "86487d52fa130e311c416e0822f0647ba9fd11868b0bcda2ab6e09d9ceb4cc9c"; libraryHaskellDepends = [ - air air-th base bytestring containers data-default hack2 - hack2-contrib mtl + base blaze-builder bytestring case-insensitive containers filepath + http-types mtl wai wai-extra ]; homepage = "https://github.com/nfjinjing/miku"; - description = "A minimum web dev DSL in Haskell"; + description = "A minimum web dev DSL"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -142108,6 +142448,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "monad-connect" = callPackage + ({ mkDerivation, base, bytestring, connection, exceptions + , transformers + }: + mkDerivation { + pname = "monad-connect"; + version = "0.1"; + sha256 = "21af008856fea5e10584152f4a3ac1e01cd50fe899e553fb3d3efb4f656c65f1"; + libraryHaskellDepends = [ + base bytestring connection exceptions transformers + ]; + homepage = "http://hub.darcs.net/fr33domlover/monad-connect"; + description = "Transformer for TCP connection with TLS and SOCKS support"; + license = stdenv.lib.licenses.publicDomain; + }) {}; + "monad-control_0_3_3_0" = callPackage ({ mkDerivation, base, transformers, transformers-base }: mkDerivation { @@ -144516,8 +144872,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "mountpoints"; - version = "1.0.1"; - sha256 = "744abbbda305c0765e15500f9ebf0ad2185fdea1733f43525488acb21b871c80"; + version = "1.0.2"; + sha256 = "67fcdf64fdb8111f58939c64b168a9dfa519d7068e0f439887d739866f18d5c2"; libraryHaskellDepends = [ base ]; description = "list mount points"; license = "LGPL"; @@ -144854,6 +145210,7 @@ self: { executableHaskellDepends = [ base bytestring hid split ]; description = "A command line tool to change backlit colors of your MSI keyboards"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "mstate" = callPackage @@ -146368,7 +146725,7 @@ self: { homepage = "http://haskell.cs.yale.edu/"; description = "None"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mybitcoin-sci" = callPackage @@ -150048,8 +150405,8 @@ self: { ({ mkDerivation, base, comonad, semigroups }: mkDerivation { pname = "nonempty-alternative"; - version = "0.3.0"; - sha256 = "74944677f44566988e4dc26c9e75f7e4778fcc855fb2a8a88277e582a87ce2a3"; + version = "0.4.0"; + sha256 = "311e733747116727d2374081774ea341a85aaa54eb25f936b0802bacc26cb6fa"; libraryHaskellDepends = [ base comonad semigroups ]; homepage = "http://github.com/guaraqe/nonempty-alternative#readme"; description = "NonEmpty for Alternative types"; @@ -151130,7 +151487,7 @@ self: { homepage = "http://github.com/cpdurham/oculus"; description = "Oculus Rift ffi providing head tracking data"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXinerama; inherit (pkgs) mesa; ovr = null; inherit (pkgs) systemd;}; @@ -151372,7 +151729,6 @@ self: { homepage = "http://code.google.com/p/omega/"; description = "A purely functional programming language and a proof system"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "omnicodec" = callPackage @@ -151950,7 +152306,7 @@ self: { homepage = "www.github.com/arjuncomar/opencv-raw.git"; description = "Raw Haskell bindings to OpenCV >= 2.0"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) opencv;}; "opendatatable" = callPackage @@ -152499,14 +152855,18 @@ self: { }) {}; "operational-extra" = callPackage - ({ mkDerivation, base, operational, time }: + ({ mkDerivation, base, bytestring, operational, text, time + , transformers + }: mkDerivation { pname = "operational-extra"; - version = "0.1.0.0"; - sha256 = "d0ab3fa58e55ff94f2e12d563410dfcc11c6ce6c1ab863602afd6b5522549c9b"; - libraryHaskellDepends = [ base operational time ]; - homepage = "http://github.com/andrewthad/vinyl-operational#readme"; - description = "Initial project template from stack"; + version = "0.3"; + sha256 = "12c01a37e59c5ec5696ce231b894399ee37fc9e6b0400e166b4e92457ced06db"; + libraryHaskellDepends = [ + base bytestring operational text time transformers + ]; + homepage = "http://github.com/andrewthad/vinyl-ecosystem"; + description = "Interpretation functions and simple instruction sets for operational"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -153892,6 +154252,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "Haskell binding for C PAM API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) pam;}; "panda" = callPackage @@ -155710,6 +156071,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "partage" = callPackage + ({ mkDerivation, base, containers, data-lens-light, data-partition + , dawg-ord, HUnit, mmorph, mtl, pipes, PSQueue, random, tasty + , tasty-hunit, transformers, vector + }: + mkDerivation { + pname = "partage"; + version = "0.1.0.1"; + sha256 = "f421fbb635ab5839a28155895237fd4e4ed5db7d6a4f73461c7a5a0893501f76"; + libraryHaskellDepends = [ + base containers data-lens-light data-partition dawg-ord mmorph mtl + pipes PSQueue random transformers vector + ]; + testHaskellDepends = [ base containers HUnit tasty tasty-hunit ]; + homepage = "https://github.com/kawu/partage"; + description = "Parsing factorized"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "partial" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -156490,7 +156870,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pcre-heavy" = callPackage + "pcre-heavy_1_0_0_1" = callPackage ({ mkDerivation, base, base-compat, bytestring, doctest, Glob , pcre-light, semigroups, string-conversions, template-haskell }: @@ -156506,6 +156886,25 @@ self: { homepage = "https://github.com/myfreeweb/pcre-heavy"; description = "A regexp library on top of pcre-light you can actually use"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pcre-heavy" = callPackage + ({ mkDerivation, base, base-compat, bytestring, doctest, Glob + , pcre-light, semigroups, string-conversions, template-haskell + }: + mkDerivation { + pname = "pcre-heavy"; + version = "1.0.0.2"; + sha256 = "8a5cf697b7683127812450cef57d0d74ac5c1117ec80618d10509642f793cbd1"; + libraryHaskellDepends = [ + base base-compat bytestring pcre-light semigroups + string-conversions template-haskell + ]; + testHaskellDepends = [ base doctest Glob ]; + homepage = "https://github.com/myfreeweb/pcre-heavy"; + description = "A regexp library on top of pcre-light you can actually use"; + license = stdenv.lib.licenses.publicDomain; }) {}; "pcre-less" = callPackage @@ -162687,7 +163086,7 @@ self: { homepage = "https://github.com/tensor5/posix-acl"; description = "Support for Posix ACL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) acl;}; "posix-escape" = callPackage @@ -164630,6 +165029,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/printxosd"; description = "Simple tool to display some text on an on-screen display"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "priority-queue" = callPackage @@ -165566,6 +165966,22 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "prometheus" = callPackage + ({ mkDerivation, atomic-primops, base, bytestring, containers, mtl + , text, transformers + }: + mkDerivation { + pname = "prometheus"; + version = "0.1.0.2"; + sha256 = "c8b651840fa76c328de96f37b4415edbe7379fca2a881ce823bfb35644d25519"; + libraryHaskellDepends = [ + atomic-primops base bytestring containers mtl text transformers + ]; + homepage = "http://github.com/LukeHoersten/prometheus#readme"; + description = "Prometheus Haskell Client"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "prometheus-client" = callPackage ({ mkDerivation, atomic-primops, base, bytestring, containers , doctest, hspec, mtl, QuickCheck, random-shuffle, stm, time @@ -165772,6 +166188,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "Simple audio library for Windows, Linux, OSX"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) alsaLib;}; "protobuf" = callPackage @@ -168960,16 +169377,20 @@ self: { }) {}; "random-variates" = callPackage - ({ mkDerivation, base, containers, directory, erf, HUnit, lens, mtl - , random, reinterpret-cast + ({ mkDerivation, base, binary, bytestring, containers, directory + , erf, HUnit, lens, mtl, random, reinterpret-cast }: mkDerivation { pname = "random-variates"; - version = "0.1.1.0"; - sha256 = "9f2107e834a7c66e1e2fe37097d0a8e839221a86b03d2eab355a6b7bfeb3573b"; + version = "0.1.3.0"; + sha256 = "a2a4a5b450c9d33a60565dfd34645e0af970bcc87e60985c7387eeab75e255c4"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ - base containers erf lens mtl random reinterpret-cast + base binary bytestring containers erf lens mtl random + reinterpret-cast ]; + executableHaskellDepends = [ base ]; testHaskellDepends = [ base directory HUnit ]; jailbreak = true; homepage = "https://bitbucket.org/kpratt/random-variate"; @@ -169721,7 +170142,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Reactive-balsa"; description = "Programmatically edit MIDI events via ALSA and reactive-banana"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-banana" = callPackage @@ -170950,6 +171371,7 @@ self: { ]; description = "Functional Reactive Web Apps with Reflex"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "reflex-dom-contrib" = callPackage @@ -170969,7 +171391,7 @@ self: { homepage = "https://github.com/reflex-frp/reflex-dom-contrib"; description = "A playground for experimenting with infrastructure and common code for reflex applications"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reflex-gloss" = callPackage @@ -175205,8 +175627,8 @@ self: { }: mkDerivation { pname = "riak"; - version = "1.0.0.0"; - sha256 = "efdcaf9812944e46214e50f6f2adc4b12ba23cb60a4a1c5357e971832b357af9"; + version = "1.0.0.1"; + sha256 = "9d8a75de0ca371cb842bafe49358ae6309ed484b976aa87e15ddf2d77e64cc87"; libraryHaskellDepends = [ aeson attoparsec base binary blaze-builder bytestring containers data-default-class deepseq enclosed-exceptions exceptions hashable @@ -176358,6 +176780,7 @@ self: { homepage = "https://github.com/adamwalker/hrtlsdr"; description = "Bindings to librtlsdr"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) rtl-sdr;}; "rtorrent-rpc" = callPackage @@ -176415,6 +176838,7 @@ self: { homepage = "https://github.com/mtolly/rubberband"; description = "Binding to the C++ audio stretching library Rubber Band"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) rubberband;}; "ruby-marshal" = callPackage @@ -186558,7 +186982,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "snap" = callPackage + "snap_0_14_0_6" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, cereal , clientsession, comonad, configurator, containers, directory , directory-tree, dlist, either, filepath, hashable, heist, lens @@ -186590,6 +187014,39 @@ self: { homepage = "http://snapframework.com/"; description = "Top-level package for the Snap Web Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "snap" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, cereal + , clientsession, comonad, configurator, containers, directory + , directory-tree, dlist, either, filepath, hashable, heist, lens + , logict, MonadCatchIO-transformers, mtl, mwc-random, old-time + , pwstore-fast, regex-posix, snap-core, snap-server, stm + , template-haskell, text, time, transformers, unordered-containers + , vector, vector-algorithms, xmlhtml + }: + mkDerivation { + pname = "snap"; + version = "0.14.0.7"; + sha256 = "98c853d2efa8104f89567a69ad271196e034b30ec13dd71051e6ce6119d15709"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson attoparsec base bytestring cereal clientsession comonad + configurator containers directory directory-tree dlist either + filepath hashable heist lens logict MonadCatchIO-transformers mtl + mwc-random pwstore-fast regex-posix snap-core snap-server stm text + time transformers unordered-containers vector vector-algorithms + xmlhtml + ]; + executableHaskellDepends = [ + base bytestring containers directory directory-tree filepath + hashable old-time snap-server template-haskell text + ]; + homepage = "http://snapframework.com/"; + description = "Top-level package for the Snap Web Framework"; + license = stdenv.lib.licenses.bsd3; }) {}; "snap-accept" = callPackage @@ -189329,7 +189786,7 @@ self: { homepage = "http://github.com/Tener/spike"; description = "Experimental web browser"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) libsoup;}; "spine" = callPackage @@ -191895,7 +192352,7 @@ self: { homepage = "http://github.com/anttisalonen/starrover2"; description = "Space simulation game"; license = "unknown"; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stash" = callPackage @@ -192683,7 +193140,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "stm-conduit" = callPackage + "stm-conduit_2_7_0" = callPackage ({ mkDerivation, async, base, cereal, cereal-conduit, conduit , conduit-combinators, conduit-extra, directory, doctest, ghc-prim , HUnit, lifted-async, lifted-base, monad-control, monad-loops @@ -192708,6 +193165,34 @@ self: { homepage = "https://github.com/wowus/stm-conduit"; description = "Introduces conduits to channels, and promotes using conduits concurrently"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "stm-conduit" = callPackage + ({ mkDerivation, async, base, cereal, cereal-conduit, conduit + , conduit-combinators, conduit-extra, directory, doctest, ghc-prim + , HUnit, lifted-async, lifted-base, monad-control, monad-loops + , QuickCheck, resourcet, stm, stm-chans, test-framework + , test-framework-hunit, test-framework-quickcheck2, transformers + , void + }: + mkDerivation { + pname = "stm-conduit"; + version = "2.8.0"; + sha256 = "0bad21541ac28765802468c71b61f464daf1fca4b2adf1c66bab006d0a7d3128"; + libraryHaskellDepends = [ + async base cereal cereal-conduit conduit conduit-combinators + conduit-extra directory ghc-prim lifted-async lifted-base + monad-control monad-loops resourcet stm stm-chans transformers void + ]; + testHaskellDepends = [ + base conduit conduit-combinators directory doctest HUnit QuickCheck + resourcet stm stm-chans test-framework test-framework-hunit + test-framework-quickcheck2 transformers + ]; + homepage = "https://github.com/cgaebel/stm-conduit"; + description = "Introduces conduits to channels, and promotes using conduits concurrently"; + license = stdenv.lib.licenses.bsd3; }) {}; "stm-containers_0_2_4" = callPackage @@ -193344,7 +193829,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/MIDI"; description = "Programmatically edit MIDI event streams via ALSA"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "streaming" = callPackage @@ -195264,7 +195749,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/SuperCollider"; description = "Demonstrate how to control SuperCollider via ALSA-MIDI"; license = "GPL"; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "superdoc" = callPackage @@ -195458,7 +195943,6 @@ self: { homepage = "http://www.informatik.uni-kiel.de/~jgr/svg2q"; description = "Code generation tool for Quartz code from a SVG"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "svgcairo" = callPackage @@ -196321,7 +196805,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Control synthesizer effects via ALSA/MIDI"; license = "GPL"; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "synthesizer-core" = callPackage @@ -197553,7 +198037,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "tagsoup" = callPackage + "tagsoup_0_13_8" = callPackage ({ mkDerivation, base, bytestring, containers, text }: mkDerivation { pname = "tagsoup"; @@ -197565,6 +198049,21 @@ self: { homepage = "https://github.com/ndmitchell/tagsoup#readme"; description = "Parsing and extracting information from (possibly malformed) HTML/XML documents"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tagsoup" = callPackage + ({ mkDerivation, base, bytestring, containers, text }: + mkDerivation { + pname = "tagsoup"; + version = "0.13.9"; + sha256 = "9369bacfa156a96985c7b06180b4aacf73635ae356e617eb9f72af9757569721"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base bytestring containers text ]; + homepage = "https://github.com/ndmitchell/tagsoup#readme"; + description = "Parsing and extracting information from (possibly malformed) HTML/XML documents"; + license = stdenv.lib.licenses.bsd3; }) {}; "tagsoup-ht" = callPackage @@ -197943,8 +198442,8 @@ self: { }: mkDerivation { pname = "task-distribution"; - version = "0.1.0.1"; - sha256 = "17cb058b1212c884b7a96036ca05f0c3fc68fada7ef734e38d9fd9621755af2d"; + version = "0.1.0.3"; + sha256 = "1d655f59987f61b4c2fd72b220187d106cda96b2b4c18a47a6d6386261afe3cf"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -197965,9 +198464,8 @@ self: { hadoop-rpc hint hslogger hspec packman process rank1dynamic split temporary text transformers vector ]; - jailbreak = true; homepage = "http://github.com/michaxm/task-distribution#readme"; - description = "Initial project template from stack"; + description = "Distributed processing of changing tasks"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -202403,6 +202901,7 @@ self: { homepage = "https://github.com/koterpillar/tianbar"; description = "A desktop bar based on WebKit"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {gtk2 = pkgs.gnome2.gtk;}; "tic-tac-toe" = callPackage @@ -202473,6 +202972,7 @@ self: { homepage = "http://tidal.lurk.org/"; description = "Pattern language for improvised music"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "tidal-midi" = callPackage @@ -202490,7 +202990,7 @@ self: { homepage = "http://tidal.lurk.org/"; description = "MIDI support for tidal"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tidal-vis" = callPackage @@ -202503,6 +203003,7 @@ self: { homepage = "http://yaxu.org/tidal/"; description = "Visual rendering for Tidal patterns"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "tie-knot" = callPackage @@ -202649,6 +203150,22 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "time-cache" = callPackage + ({ mkDerivation, auto-update, base, text, time, time-units + , transformers + }: + mkDerivation { + pname = "time-cache"; + version = "0.1"; + sha256 = "4c28fcd9bbe16e9e21ed235e1c5bb29bc4493901422773c06bdae61227d30e30"; + libraryHaskellDepends = [ + auto-update base text time time-units transformers + ]; + homepage = "http://rel4tion.org/projects/time-cache"; + description = "Cache current time and formatted time text"; + license = stdenv.lib.licenses.publicDomain; + }) {}; + "time-compat" = callPackage ({ mkDerivation, base, old-time, time }: mkDerivation { @@ -204028,6 +204545,7 @@ self: { homepage = "http://www.polarmobile.com/"; description = "FFI bindings to libtokyotyrant"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) tokyocabinet; inherit (pkgs) tokyotyrant;}; "tomato-rubato-openal" = callPackage @@ -205975,6 +206493,34 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "twentyseven" = callPackage + ({ mkDerivation, base, Cabal, cabal-test-quickcheck, containers + , deepseq, directory, filepath, heap, HUnit-Plus, monad-loops + , MonadRandom, mtl, newtype, optparse-applicative, primitive + , QuickCheck, ref-fd, split, template-haskell, time, transformers + , vector + }: + mkDerivation { + pname = "twentyseven"; + version = "0.0.0"; + sha256 = "471690467742286cc9e4eb744b06d2a298a9c770fdb8ac0c816774d4c0b70133"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers deepseq directory filepath heap monad-loops + MonadRandom mtl newtype primitive ref-fd template-haskell vector + ]; + executableHaskellDepends = [ + base optparse-applicative time transformers + ]; + testHaskellDepends = [ + base Cabal cabal-test-quickcheck HUnit-Plus QuickCheck split vector + ]; + homepage = "https://github.com/lysxia/twentyseven"; + description = "Rubik's cube solver"; + license = stdenv.lib.licenses.mit; + }) {}; + "twhs" = callPackage ({ mkDerivation, ansi-terminal, authenticate-oauth, base , bytestring, case-insensitive, conduit, containers, data-default @@ -208763,8 +209309,8 @@ self: { ({ mkDerivation, base, directory, text }: mkDerivation { pname = "unlit"; - version = "0.3.0.3"; - sha256 = "ce5ea584d4fef6ef89b2d6c5a105cf31827c5e14045766406f95453a2a238d5b"; + version = "0.3.2.1"; + sha256 = "b3cdceb5878989c323e0b45a1f08897d7e29e98a553ce59d694c3889aa5fa852"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base directory text ]; @@ -212180,6 +212726,7 @@ self: { ]; description = "An MPD client with vim-like key bindings"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {inherit (pkgs) ncurses;}; "vintage-basic" = callPackage @@ -212575,7 +213122,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the VTE library"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) vte;}; "vtegtk3" = callPackage @@ -212591,7 +213138,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the VTE library"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) vte;}; "vty" = callPackage @@ -214100,7 +214647,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-extra" = callPackage + "wai-extra_3_0_14_1" = callPackage ({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring , blaze-builder, bytestring, case-insensitive, containers, cookie , data-default-class, deepseq, directory, fast-logger, hspec @@ -214127,6 +214674,36 @@ self: { homepage = "http://github.com/yesodweb/wai"; description = "Provides some basic WAI handlers and middleware"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wai-extra" = callPackage + ({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring + , blaze-builder, bytestring, case-insensitive, containers, cookie + , data-default-class, deepseq, directory, fast-logger, hspec + , http-types, HUnit, iproute, lifted-base, network, old-locale + , resourcet, streaming-commons, stringsearch, text, time + , transformers, unix, unix-compat, vault, void, wai, wai-logger + , word8, zlib + }: + mkDerivation { + pname = "wai-extra"; + version = "3.0.14.3"; + sha256 = "563fc88bf2aab69fa11db2074fb36e03a9f39bf7f1676f321673bf2c6d0ce127"; + libraryHaskellDepends = [ + aeson ansi-terminal base base64-bytestring blaze-builder bytestring + case-insensitive containers cookie data-default-class deepseq + directory fast-logger http-types iproute lifted-base network + old-locale resourcet streaming-commons stringsearch text time + transformers unix unix-compat vault void wai wai-logger word8 zlib + ]; + testHaskellDepends = [ + base blaze-builder bytestring case-insensitive cookie fast-logger + hspec http-types HUnit resourcet text time transformers wai zlib + ]; + homepage = "http://github.com/yesodweb/wai"; + description = "Provides some basic WAI handlers and middleware"; + license = stdenv.lib.licenses.mit; }) {}; "wai-frontend-monadcgi" = callPackage @@ -217366,7 +217943,7 @@ self: { libraryHaskellDepends = [ base gtk webkit ]; description = "Web Browser In Haskell"; license = "GPL"; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "web-css" = callPackage @@ -218120,6 +218697,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Webkit library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) webkit;}; "webkit-javascriptcore" = callPackage @@ -218132,7 +218710,7 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "JavaScriptCore FFI from webkitgtk"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "webkitgtk3" = callPackage @@ -218151,6 +218729,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Webkit library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) webkit;}; "webkitgtk3-javascriptcore" = callPackage @@ -218166,6 +218745,7 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "JavaScriptCore FFI from webkitgtk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) webkit;}; "webpage_0_0_3_1" = callPackage @@ -218240,7 +218820,7 @@ self: { homepage = "https://github.com/jrb/websnap"; description = "Transforms URLs to PNGs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "websockets_0_9_2_1" = callPackage @@ -218608,8 +219188,8 @@ self: { }: mkDerivation { pname = "werewolf"; - version = "0.4.8.0"; - sha256 = "3885f02b70adbbf064894daf258ec2fd175535a1b16386d54a8139246b34cbe6"; + version = "0.4.10.0"; + sha256 = "b5bc8f8b2a52e41e175d9fb0683737d0a3b7f54c473e1227f7751ff56d065bb9"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -218879,7 +219459,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "with-location" = callPackage + "with-location_0_0_0" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "with-location"; @@ -218889,6 +219469,20 @@ self: { homepage = "https://github.com/sol/with-location#readme"; description = "Use ImplicitParams-based source locations in a backward compatible way"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "with-location" = callPackage + ({ mkDerivation, base, hspec }: + mkDerivation { + pname = "with-location"; + version = "0.1.0"; + sha256 = "2c91d70cb28d39d6d5fbb37800c7d984aed4254cdcbf03ffa0787404bddefde7"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base hspec ]; + homepage = "https://github.com/sol/with-location#readme"; + description = "Use ImplicitParams-based source locations in a backward compatible way"; + license = stdenv.lib.licenses.mit; }) {}; "withdependencies" = callPackage @@ -219207,7 +219801,7 @@ self: { jailbreak = true; description = "Haskell bindings for the wlc library"; license = stdenv.lib.licenses.isc; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) wlc;}; "wobsurv" = callPackage @@ -220580,6 +221174,7 @@ self: { ]; description = "Haskell extended file attributes interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) attr;}; "xbattbar" = callPackage @@ -222218,6 +222813,7 @@ self: { homepage = "http://xmobar.org"; description = "A Minimalistic Text Based Status Bar"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {Xrender = null; inherit (pkgs.xorg) libXpm; inherit (pkgs.xorg) libXrandr; inherit (pkgs) wirelesstools;}; @@ -222480,6 +223076,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/xosd"; description = "A binding to the X on-screen display"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) xosd;}; "xournal-builder" = callPackage @@ -223294,19 +223891,19 @@ self: { }) {inherit (pkgs) libyaml;}; "yaml-config" = callPackage - ({ mkDerivation, base, deepseq, failure, hashable, QuickCheck - , tasty, tasty-quickcheck, text, unordered-containers, yaml + ({ mkDerivation, base, deepseq, hashable, QuickCheck, tasty + , tasty-quickcheck, text, unordered-containers, yaml }: mkDerivation { pname = "yaml-config"; - version = "0.3.0"; - sha256 = "ac4bace7a31441c0b5dfeb6b6e2cf4078d19f000011d1f074106ee01fba11c9c"; + version = "0.4.0"; + sha256 = "7357560b3e36d663058478f2e13d371a0a057a84017ef80752316282484bf80e"; libraryHaskellDepends = [ - base deepseq failure text unordered-containers yaml + base deepseq text unordered-containers yaml ]; testHaskellDepends = [ - base deepseq failure hashable QuickCheck tasty tasty-quickcheck - text unordered-containers yaml + base deepseq hashable QuickCheck tasty tasty-quickcheck text + unordered-containers yaml ]; description = "Configuration management"; license = stdenv.lib.licenses.mit; @@ -223727,6 +224324,24 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "yeshql" = callPackage + ({ mkDerivation, base, containers, filepath, HDBC, parsec, stm + , tasty, tasty-hunit, tasty-quickcheck, template-haskell + }: + mkDerivation { + pname = "yeshql"; + version = "0.3.0.2"; + sha256 = "644a83935a015b792d879dfa301bbb18beeea8515c2acd8d516a2cf6697fcbb7"; + libraryHaskellDepends = [ + base containers filepath HDBC parsec template-haskell + ]; + testHaskellDepends = [ + base HDBC stm tasty tasty-hunit tasty-quickcheck + ]; + description = "YesQL-style SQL database abstraction"; + license = stdenv.lib.licenses.mit; + }) {}; + "yesod_1_4_1_1" = callPackage ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring , conduit-extra, data-default, directory, fast-logger @@ -224958,7 +225573,7 @@ self: { ]; description = "Provides PAM authentication module"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-auth-smbclient" = callPackage @@ -229947,7 +230562,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "zim-parser" = callPackage + "zim-parser_0_1_0_0" = callPackage ({ mkDerivation, array, base, binary, binary-conduit, bytestring , conduit, conduit-extra, hspec, lzma-conduit, resourcet }: @@ -229966,6 +230581,28 @@ self: { homepage = "https://github.com/robbinch/zim-parser#readme"; description = "Read and parse ZIM files"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "zim-parser" = callPackage + ({ mkDerivation, array, base, binary, binary-conduit, bytestring + , conduit, conduit-extra, hspec, lzma-conduit, resourcet + }: + mkDerivation { + pname = "zim-parser"; + version = "0.2.0.0"; + sha256 = "663e6604b20c67bfd3e0ba161c3f7c88f10230a28282990311133d8a9d962df6"; + libraryHaskellDepends = [ + array base binary binary-conduit bytestring conduit conduit-extra + lzma-conduit resourcet + ]; + testHaskellDepends = [ + array base binary binary-conduit bytestring conduit conduit-extra + hspec lzma-conduit resourcet + ]; + homepage = "https://github.com/robbinch/zim-parser#readme"; + description = "Read and parse ZIM files"; + license = stdenv.lib.licenses.gpl3; }) {}; "zip" = callPackage From e5bbf35b680cfebb5ef9a147985e702d75037912 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Thu, 17 Mar 2016 16:13:34 +0100 Subject: [PATCH 154/678] julia-git: pass march=pentium4 for i686 targets https://hydra.nixos.org/build/33235880/nixlog/1/raw --- pkgs/development/compilers/julia/git.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/julia/git.nix b/pkgs/development/compilers/julia/git.nix index 2f4ce2f4b9e..49c26592f2e 100644 --- a/pkgs/development/compilers/julia/git.nix +++ b/pkgs/development/compilers/julia/git.nix @@ -86,7 +86,7 @@ stdenv.mkDerivation rec { makeFlags = let arch = head (splitString "-" stdenv.system); - march = { "x86_64" = "x86-64"; "i686" = "i686"; }."${arch}" + march = { "x86_64" = "x86-64"; "i686" = "pentium4"; }."${arch}" or (throw "unsupported architecture: ${arch}"); # Julia requires Pentium 4 (SSE2) or better cpuTarget = { "x86_64" = "x86-64"; "i686" = "pentium4"; }."${arch}" From 24c96368981060001a6eb88832977ccc7f4d9680 Mon Sep 17 00:00:00 2001 From: Mathieu Boespflug Date: Thu, 17 Mar 2016 16:27:34 +0100 Subject: [PATCH 155/678] terraform: allow compiling with go-1.6 and above, not just go-1.6. --- pkgs/top-level/go-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 03c54d2ccc6..d1a65a8a152 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -3465,7 +3465,7 @@ let rev = "v0.6.13"; owner = "hashicorp"; repo = "terraform"; - disabled = !isGo16; + disabled = isGo14 || isGo15; sha256 = "1f1xm5pyz1hxqm2k74psanirpydf71pmxixplyc2x2w68hgjzi2l"; buildInputs = [ ]; From bb59ba117deed359ab50fd470efd051c554fcc42 Mon Sep 17 00:00:00 2001 From: Michael Fellinger Date: Thu, 17 Mar 2016 18:12:38 +0100 Subject: [PATCH 156/678] bundix: 2.0.6 -> 2.0.8 --- pkgs/development/interpreters/ruby/bundix/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/ruby/bundix/default.nix b/pkgs/development/interpreters/ruby/bundix/default.nix index 21b42ae020a..ac3abcdcdf7 100644 --- a/pkgs/development/interpreters/ruby/bundix/default.nix +++ b/pkgs/development/interpreters/ruby/bundix/default.nix @@ -5,9 +5,9 @@ buildRubyGem rec { name = "${gemName}-${version}"; gemName = "bundix"; - version = "2.0.6"; + version = "2.0.8"; - sha256 = "0yd960awd427mg29r2yzhccd0vjimn1ljr8d8hncj6m6wg84nvh5"; + sha256 = "0ikpf2g01izadjpdnc4k2rb9v4g11f1jk2y5alxc7n7rxjkwdc66"; buildInputs = [bundler]; From 0f2011c76c002ffadf31256dc2090b9bb4813fc1 Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Sun, 6 Mar 2016 18:13:26 +0100 Subject: [PATCH 157/678] b2: delete in favor of backblaze-b2 --- pkgs/tools/backup/b2/default.nix | 24 ------------------------ pkgs/top-level/all-packages.nix | 2 -- 2 files changed, 26 deletions(-) delete mode 100644 pkgs/tools/backup/b2/default.nix diff --git a/pkgs/tools/backup/b2/default.nix b/pkgs/tools/backup/b2/default.nix deleted file mode 100644 index 023b4af8398..00000000000 --- a/pkgs/tools/backup/b2/default.nix +++ /dev/null @@ -1,24 +0,0 @@ -{ fetchFromGitHub, pythonPackages, stdenv }: - -pythonPackages.buildPythonPackage rec { - name = "b2-${version}"; - namePrefix = ""; - version = "0.4.4"; - - src = fetchFromGitHub { - owner = "Backblaze"; - repo = "B2_Command_Line_Tool"; - rev = "v${version}"; - sha256 = "1g9j5s69w6n70nb18rvx3gm9f4gi1vis23ib8rn2v1khv6z2acqp"; - }; - - pythonPath = [ pythonPackages.six ]; - - meta = with stdenv.lib; { - homepage = https://github.com/Backblaze/B2_Command_Line_Tool; - description = "CLI for accessing Backblaze's B2 Cloud Storage"; - license = licenses.mit; - platforms = platforms.all; - maintainers = with maintainers; [ hrdinka ]; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cdf33826779..43c001919fe 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1009,8 +1009,6 @@ let asynk = callPackage ../tools/networking/asynk { }; - b2 = callPackage ../tools/backup/b2 { }; - bacula = callPackage ../tools/backup/bacula { }; bareos = callPackage ../tools/backup/bareos { }; From d8f2e6aa7129b0b487665fe73d0b593a762e485f Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Sun, 6 Mar 2016 18:14:25 +0100 Subject: [PATCH 158/678] backblaze-b2: 0.3.10 -> 0.4.4 --- .../tools/backblaze-b2/default.nix | 34 +++++++++++-------- 1 file changed, 20 insertions(+), 14 deletions(-) diff --git a/pkgs/development/tools/backblaze-b2/default.nix b/pkgs/development/tools/backblaze-b2/default.nix index 3c7d69bc1b4..0ba346ec110 100644 --- a/pkgs/development/tools/backblaze-b2/default.nix +++ b/pkgs/development/tools/backblaze-b2/default.nix @@ -1,31 +1,37 @@ -{ stdenv, lib, fetchFromGitHub, pkgs }: +{ fetchFromGitHub, makeWrapper, pythonPackages, stdenv }: -stdenv.mkDerivation rec { - name = "backblaze-b2-0.3.10"; +pythonPackages.buildPythonApplication rec { + name = "backblaze-b2-${version}"; + version = "0.4.4"; src = fetchFromGitHub { owner = "Backblaze"; repo = "B2_Command_Line_Tool"; - rev = "b097f0f04d3f88d7a372b50ee6db1f89a5249028"; - sha256 = "1rcy8180476cpmrbls4424qbq8nyq7mxkfikd52a8skz7rd5ljc6"; + rev = "74a5e567925899f1fc6204aa85d4c84c0d0e511a"; + sha256 = "1g9j5s69w6n70nb18rvx3gm9f4gi1vis23ib8rn2v1khv6z2acqp"; }; - - buildInputs = with pkgs; [ python2 ]; - doCheck = true; + propagatedBuildInputs = with pythonPackages; [ six ]; + checkPhase = '' python test_b2_command_line.py test ''; - installPhase = '' - install -Dm755 b2 "$out/bin/backblaze-b2" + postInstall = '' + mv "$out/bin/b2" "$out/bin/backblaze-b2" + + sed 's/^have b2 \&\&$/have backblaze-b2 \&\&/' -i contrib/bash_completion/b2 + sed 's/^\(complete -F _b2\) b2/\1 backblaze-b2/' -i contrib/bash_completion/b2 + + mkdir -p "$out/etc/bash_completion.d" + cp contrib/bash_completion/b2 "$out/etc/bash_completion.d/backblaze-b2" ''; meta = with stdenv.lib; { description = "Command-line tool for accessing the Backblaze B2 storage service"; - homepage = https://github.com/Backblaze/B2_Command_Line_Tool; - license = licenses.mit; - maintainers = with maintainers; [ kevincox ]; - platforms = platforms.unix; + homepage = https://github.com/Backblaze/B2_Command_Line_Tool; + license = licenses.mit; + maintainers = with maintainers; [ hrdinka kevincox ]; + platforms = platforms.unix; }; } From a0ab4587b7760c073ec9501775b9116fb0b1c70c Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 17 Mar 2016 19:38:02 +0100 Subject: [PATCH 159/678] Set networking.firewall.allowPing = true by default. This patch fixes https://github.com/NixOS/nixpkgs/issues/12927. It would be great to configure good rate-limiting defaults for this via /proc/sys/net/ipv4/icmp_ratelimit and /proc/sys/net/ipv6/icmp/ratelimit, too, but I didn't since I don't know what a "good default" would be. --- nixos/modules/services/networking/firewall.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/networking/firewall.nix b/nixos/modules/services/networking/firewall.nix index e11fe072be6..9221fe15577 100644 --- a/nixos/modules/services/networking/firewall.nix +++ b/nixos/modules/services/networking/firewall.nix @@ -338,7 +338,7 @@ in }; networking.firewall.allowPing = mkOption { - default = false; + default = true; type = types.bool; description = '' From ccaa568071ac347dfff1d0d00c7dd10093a55cb8 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Thu, 17 Mar 2016 21:45:26 +0100 Subject: [PATCH 160/678] intel-gpu-tools: 1.13 -> 1.14 --- .../tools/misc/intel-gpu-tools/default.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/pkgs/development/tools/misc/intel-gpu-tools/default.nix b/pkgs/development/tools/misc/intel-gpu-tools/default.nix index 28deca284ce..3d3e457781a 100644 --- a/pkgs/development/tools/misc/intel-gpu-tools/default.nix +++ b/pkgs/development/tools/misc/intel-gpu-tools/default.nix @@ -1,16 +1,20 @@ { stdenv, fetchurl, pkgconfig, libdrm, libpciaccess, cairo, dri2proto, udev -, libX11, libXext, libXv, libXrandr, glib, bison, libunwind }: +, libX11, libXext, libXv, libXrandr, glib, bison, libunwind, python3 }: stdenv.mkDerivation rec { - name = "intel-gpu-tools-1.13"; + name = "intel-gpu-tools-1.14"; src = fetchurl { url = "http://xorg.freedesktop.org/archive/individual/app/${name}.tar.bz2"; - sha256 = "0d5ff9l12zw9mdsjwbwn6y9k1gz6xlzsx5k87apz9vq6q625irn6"; + sha256 = "030g1akybk19y3jcxd8pp573ymrd4w7mmzxbspp064lwdv9y35im"; }; buildInputs = [ pkgconfig libdrm libpciaccess cairo dri2proto udev libX11 - libXext libXv libXrandr glib bison libunwind ]; + libXext libXv libXrandr glib bison libunwind python3 ]; + + preBuild = '' + patchShebangs debugger/system_routine/pre_cpp.py + ''; meta = with stdenv.lib; { homepage = https://01.org/linuxgraphics/; From b9f7bb15e578e418aa6794533dfd6c49b9a479ed Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Thu, 17 Mar 2016 21:51:57 +0100 Subject: [PATCH 161/678] perl-Hook-LexWrap: 0.24 -> 0.25 Also add meta section. --- pkgs/top-level/perl-packages.nix | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 47d8c2814ad..bc14b4ce605 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -5452,12 +5452,17 @@ let self = _self // overrides; _self = with self; { }; HookLexWrap = buildPerlPackage rec { - name = "Hook-LexWrap-0.24"; + name = "Hook-LexWrap-0.25"; src = fetchurl { - url = "mirror://cpan/authors/id/C/CH/CHORNY/${name}.tar.gz"; - sha256 = "0nyfirbdrgs2cknifqr1pf8xd5q9xnv91gy7jha4crp1hjqvihj4"; + url = "mirror://cpan/authors/id/E/ET/ETHER/${name}.tar.gz"; + sha256 = "08ab9af6bd9b4560702d9d994ad9d905af0c2fd24090d1480ff640f137c1430d"; + }; + buildInputs = [ ModuleBuildTiny pkgs.unzip ]; + meta = { + homepage = https://github.com/chorny/Hook-LexWrap; + description = "Lexically scoped subroutine wrappers"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; - buildInputs = [ pkgs.unzip ]; }; HTMLElementExtended = buildPerlPackage { From 411b4a1df1c5536c62ba7e8bfce7e32d3f0bec61 Mon Sep 17 00:00:00 2001 From: Brian McKenna Date: Thu, 17 Mar 2016 22:31:06 +1100 Subject: [PATCH 162/678] hipchat: 2.2.1388 -> 4.0.1631 --- .../instant-messengers/hipchat/default.nix | 71 ++++++++----------- 1 file changed, 31 insertions(+), 40 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/hipchat/default.nix b/pkgs/applications/networking/instant-messengers/hipchat/default.nix index 6dc0df03eef..3ff93c35dcd 100644 --- a/pkgs/applications/networking/instant-messengers/hipchat/default.nix +++ b/pkgs/applications/networking/instant-messengers/hipchat/default.nix @@ -1,58 +1,48 @@ -{ stdenv, fetchurl, libtool, xorg, freetype, fontconfig, openssl, glib -, mesa, gstreamer, gst_plugins_base, dbus, alsaLib, zlib, libuuid -, libxml2, libxslt, sqlite, libogg, libvorbis, xz, libcanberra -, makeWrapper, libredirect, xkeyboard_config, xcbutilkeysyms }: +{ stdenv, fetchurl, xorg, freetype, fontconfig, openssl, glib, nss, nspr, expat +, alsaLib, dbus, zlib, libxml2, libxslt, makeWrapper, xkeyboard_config, systemd +, mesa_noglu, xcbutilkeysyms }: let - version = "2.2.1388"; + version = "4.0.1631"; rpath = stdenv.lib.makeSearchPath "lib" [ - stdenv.glibc - libtool xorg.libXext xorg.libSM xorg.libICE xorg.libX11 - xorg.libXft - xorg.libXau - xorg.libXdmcp + xorg.libXrandr + xorg.libXdamage xorg.libXrender xorg.libXfixes xorg.libXcomposite + xorg.libXcursor xorg.libxcb xorg.libXi + xorg.libXScrnSaver + xorg.libXtst freetype fontconfig openssl glib - mesa - gstreamer - gst_plugins_base + nss + nspr dbus alsaLib zlib - libuuid libxml2 libxslt - sqlite - libogg - libvorbis - xz - libcanberra + expat xcbutilkeysyms - ] + ":${stdenv.cc.cc}/lib${stdenv.lib.optionalString stdenv.is64bit "64"}"; + systemd + mesa_noglu + ] + ":${stdenv.cc.cc}/lib64"; src = if stdenv.system == "x86_64-linux" then fetchurl { - url = "http://downloads.hipchat.com/linux/arch/x86_64/hipchat-${version}-x86_64.pkg.tar.xz"; - sha256 = "18vl0c7xgyzd2miwkfzc638z0wzszgsdlbnslkkvxmg95ykdrdnz"; - } - else if stdenv.system == "i686-linux" then - fetchurl { - url = "http://downloads.hipchat.com/linux/arch/i686/hipchat-${version}-i686.pkg.tar.xz"; - sha256 = "12q8hf3gmcgrqg6v9xqyknwsmwywpwm76jc54sfniiqv5ngq24hl"; + url = "https://atlassian.artifactoryonline.com/atlassian/hipchat-apt-client/pool/HipChat4-${version}-Linux.deb"; + sha256 = "1ip79zq7j7842sf254296wvvd236w7c764r8wgjdyxzqyvfjfd81"; } else throw "HipChat is not supported on ${stdenv.system}"; @@ -67,36 +57,37 @@ stdenv.mkDerivation { buildInputs = [ makeWrapper ]; buildCommand = '' - tar xf ${src} + ar x $src + tar xfvz data.tar.gz - mkdir -p $out/libexec/hipchat/bin + mkdir -p $out/libexec/hipchat d=$out/libexec/hipchat/lib - rm -rfv opt/HipChat/lib/{libstdc++*,libz*,libuuid*,libxml2*,libxslt*,libsqlite*,libogg*,libvorbis*,liblzma*,libcanberra.*,libcanberra-*} - mv opt/HipChat/lib/ $d + mv opt/HipChat4/* $out/libexec/hipchat/ mv usr/share $out for file in $(find $d -type f); do patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $file || true - patchelf --set-rpath ${rpath}:\$ORIGIN $file || true + patchelf --set-rpath ${rpath}:$out/libexec/hipchat/lib:\$ORIGIN $file || true done - substituteInPlace $out/share/applications/hipchat.desktop \ - --replace /opt/HipChat/bin $out/bin + substituteInPlace $out/share/applications/hipchat4.desktop \ + --replace /opt/HipChat4/bin/HipChat4 $out/bin/hipchat - makeWrapper $d/hipchat.bin $out/bin/hipchat \ + makeWrapper $d/HipChat.bin $out/bin/hipchat \ --set HIPCHAT_LD_LIBRARY_PATH '"$LD_LIBRARY_PATH"' \ --set HIPCHAT_QT_PLUGIN_PATH '"$QT_PLUGIN_PATH"' \ - --set LD_PRELOAD "${libredirect}/lib/libredirect.so" \ - --set NIX_REDIRECTS /usr/share/X11/xkb=${xkeyboard_config}/share/X11/xkb + --set QT_XKB_CONFIG_ROOT ${xkeyboard_config}/share/X11/xkb \ + --set QTWEBENGINEPROCESS_PATH $d/QtWebEngineProcess - mv opt/HipChat/bin/linuxbrowserlaunch $out/libexec/hipchat/bin/ + makeWrapper $d/QtWebEngineProcess.bin $d/QtWebEngineProcess \ + --set QT_PLUGIN_PATH "$d/plugins" ''; meta = with stdenv.lib; { description = "Desktop client for HipChat services"; homepage = http://www.hipchat.com; license = licenses.unfree; - platforms = [ "i686-linux" "x86_64-linux" ]; - maintainers = with maintainers; [ jgeerds ]; + platforms = [ "x86_64-linux" ]; + maintainers = with maintainers; [ jgeerds puffnfresh ]; }; } From eae059b0b607e4c5a0a201466e3dc2c97cecc85e Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Fri, 18 Mar 2016 02:06:22 +0100 Subject: [PATCH 163/678] bobcat: 4.00.00 -> 4.01.04 Appears to fix https://hydra.nixos.org/build/33157535/nixlog/1/raw --- pkgs/development/libraries/bobcat/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/bobcat/default.nix b/pkgs/development/libraries/bobcat/default.nix index b83fd0f7487..e0be473b176 100644 --- a/pkgs/development/libraries/bobcat/default.nix +++ b/pkgs/development/libraries/bobcat/default.nix @@ -3,10 +3,10 @@ stdenv.mkDerivation rec { name = "bobcat-${version}"; - version = "4.00.00"; + version = "4.01.04"; src = fetchFromGitHub { - sha256 = "0wdb25sgw7i3jk3lbja6b4ipqfg1sncam6adg2bn8l5fcinrpwgs"; + sha256 = "1qnyssvjvwc7ann5rw8spcfrfkxyh1lv3k12bq19d8db67znk4ms"; rev = version; repo = "bobcat"; owner = "fbb-git"; From dd177e62e36a2578d6f49db5644da472429cc8d6 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Fri, 18 Mar 2016 02:19:42 +0100 Subject: [PATCH 164/678] flexcpp: 2.03.00 -> 2.04.00 --- pkgs/development/tools/parsing/flexc++/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/parsing/flexc++/default.nix b/pkgs/development/tools/parsing/flexc++/default.nix index e1426b3a1d4..4fef3731962 100644 --- a/pkgs/development/tools/parsing/flexc++/default.nix +++ b/pkgs/development/tools/parsing/flexc++/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { name = "flexc++-${version}"; - version = "2.03.00"; + version = "2.04.00"; src = fetchFromGitHub { - sha256 = "1knb5h6l71n5zi9xzml5f6v7wspbk7vrcaiy2div8bnj7na3z717"; + sha256 = "0fz9gxpc491cngj9z9y059vbl65ng48c4nw9k3sl983zfnqfy26y"; rev = version; repo = "flexcpp"; owner = "fbb-git"; From 0bffa2f1a9c7681c14c5855e8ab6a03a7f462fbf Mon Sep 17 00:00:00 2001 From: Sheena Artrip Date: Thu, 17 Mar 2016 23:25:27 -0400 Subject: [PATCH 165/678] libcollectdclient: make client derive from collectd package collectd: split version and name libcollectdclient: make client derive from collectd package --- .../libraries/libcollectdclient/default.nix | 18 ++++++------------ pkgs/tools/system/collectd/default.nix | 4 ++-- 2 files changed, 8 insertions(+), 14 deletions(-) diff --git a/pkgs/development/libraries/libcollectdclient/default.nix b/pkgs/development/libraries/libcollectdclient/default.nix index f06fcec8412..f6d9d7ca69b 100644 --- a/pkgs/development/libraries/libcollectdclient/default.nix +++ b/pkgs/development/libraries/libcollectdclient/default.nix @@ -1,14 +1,9 @@ -{ stdenv, fetchurl }: +{ stdenv, fetchurl, collectd }: +with stdenv.lib; -stdenv.mkDerivation rec { - version = "5.5.0"; - name = "libcollectdclient-${version}"; - tarname = "collectd-${version}"; - - src = fetchurl { - url = "http://collectd.org/files/${tarname}.tar.bz2"; - sha256 = "847684cf5c10de1dc34145078af3fcf6e0d168ba98c14f1343b1062a4b569e88"; - }; +overrideDerivation collectd (oldAttrs: { + name = "libcollectdclient-${collectd.version}"; + buildInputs = [ ]; configureFlags = [ "--without-daemon" @@ -18,8 +13,7 @@ stdenv.mkDerivation rec { "-C src/libcollectdclient/" ]; - NIX_CFLAGS_COMPILE = "-Wno-error=cpp"; - +}) // { meta = with stdenv.lib; { description = "C Library for collectd, a daemon which collects system performance statistics periodically"; homepage = http://collectd.org; diff --git a/pkgs/tools/system/collectd/default.nix b/pkgs/tools/system/collectd/default.nix index a1d676d708d..5f42e39871a 100644 --- a/pkgs/tools/system/collectd/default.nix +++ b/pkgs/tools/system/collectd/default.nix @@ -30,9 +30,9 @@ , varnish ? null , yajl ? null }: - stdenv.mkDerivation rec { - name = "collectd-5.5.0"; + version = "5.5.0"; + name = "collectd-${version}"; src = fetchurl { url = "http://collectd.org/files/${name}.tar.bz2"; From 3704901dc89d32e03c6184fb716bd011f20b982a Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Fri, 18 Mar 2016 03:09:45 +0100 Subject: [PATCH 166/678] bobcat: patch all shebangs Hotfix for eae059b0b607e4c5a0a201466e3dc2c97cecc85e Not really a regression, but it turns out that the man page target requires shebang patching as well. --- pkgs/development/libraries/bobcat/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/bobcat/default.nix b/pkgs/development/libraries/bobcat/default.nix index e0be473b176..f6f96c816b2 100644 --- a/pkgs/development/libraries/bobcat/default.nix +++ b/pkgs/development/libraries/bobcat/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { postPatch = '' substituteInPlace INSTALL.im --replace /usr $out - patchShebangs ./build + patchShebangs . ''; buildPhase = '' From fe5d98d4c22b9b4b60419f3dfa6e8c427f60dd6c Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 17 Mar 2016 19:28:59 +0100 Subject: [PATCH 167/678] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20160308-3-g8057d11 using the following inputs: - Nixpkgs: https://github.com/NixOS/nixpkgs/commit/8b2661d933c62f1c1deaed74a88949838e81cc23 - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/c6f8f98e5780f93e5501be79cabdfaa9d5f95b52 - LTS Haskell: https://github.com/fpco/lts-haskell/commit/6bcb171af74b3bcce09d9ba8da3c2ef819232dcc - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/fbf2e48e585f4323b603c9e72e8b925cfe0f5724 --- .../haskell-modules/configuration-lts-0.0.nix | 1 + .../haskell-modules/configuration-lts-0.1.nix | 1 + .../haskell-modules/configuration-lts-0.2.nix | 1 + .../haskell-modules/configuration-lts-0.3.nix | 1 + .../haskell-modules/configuration-lts-0.4.nix | 1 + .../haskell-modules/configuration-lts-0.5.nix | 1 + .../haskell-modules/configuration-lts-0.6.nix | 1 + .../haskell-modules/configuration-lts-0.7.nix | 1 + .../haskell-modules/configuration-lts-1.0.nix | 1 + .../haskell-modules/configuration-lts-1.1.nix | 1 + .../configuration-lts-1.10.nix | 1 + .../configuration-lts-1.11.nix | 1 + .../configuration-lts-1.12.nix | 1 + .../configuration-lts-1.13.nix | 1 + .../configuration-lts-1.14.nix | 1 + .../configuration-lts-1.15.nix | 1 + .../haskell-modules/configuration-lts-1.2.nix | 1 + .../haskell-modules/configuration-lts-1.4.nix | 1 + .../haskell-modules/configuration-lts-1.5.nix | 1 + .../haskell-modules/configuration-lts-1.7.nix | 1 + .../haskell-modules/configuration-lts-1.8.nix | 1 + .../haskell-modules/configuration-lts-1.9.nix | 1 + .../haskell-modules/configuration-lts-2.0.nix | 1 + .../haskell-modules/configuration-lts-2.1.nix | 1 + .../configuration-lts-2.10.nix | 1 + .../configuration-lts-2.11.nix | 1 + .../configuration-lts-2.12.nix | 1 + .../configuration-lts-2.13.nix | 1 + .../configuration-lts-2.14.nix | 1 + .../configuration-lts-2.15.nix | 1 + .../configuration-lts-2.16.nix | 1 + .../configuration-lts-2.17.nix | 1 + .../configuration-lts-2.18.nix | 1 + .../configuration-lts-2.19.nix | 1 + .../haskell-modules/configuration-lts-2.2.nix | 1 + .../configuration-lts-2.20.nix | 1 + .../configuration-lts-2.21.nix | 1 + .../configuration-lts-2.22.nix | 1 + .../haskell-modules/configuration-lts-2.3.nix | 1 + .../haskell-modules/configuration-lts-2.4.nix | 1 + .../haskell-modules/configuration-lts-2.5.nix | 1 + .../haskell-modules/configuration-lts-2.6.nix | 1 + .../haskell-modules/configuration-lts-2.7.nix | 1 + .../haskell-modules/configuration-lts-2.8.nix | 1 + .../haskell-modules/configuration-lts-2.9.nix | 1 + .../haskell-modules/configuration-lts-3.0.nix | 1 + .../haskell-modules/configuration-lts-3.1.nix | 1 + .../configuration-lts-3.10.nix | 1 + .../configuration-lts-3.11.nix | 1 + .../configuration-lts-3.12.nix | 1 + .../configuration-lts-3.13.nix | 1 + .../configuration-lts-3.14.nix | 1 + .../configuration-lts-3.15.nix | 1 + .../configuration-lts-3.16.nix | 1 + .../configuration-lts-3.17.nix | 1 + .../configuration-lts-3.18.nix | 1 + .../configuration-lts-3.19.nix | 1 + .../haskell-modules/configuration-lts-3.2.nix | 1 + .../configuration-lts-3.20.nix | 1 + .../configuration-lts-3.21.nix | 1 + .../configuration-lts-3.22.nix | 1 + .../haskell-modules/configuration-lts-3.3.nix | 1 + .../haskell-modules/configuration-lts-3.4.nix | 1 + .../haskell-modules/configuration-lts-3.5.nix | 1 + .../haskell-modules/configuration-lts-3.6.nix | 1 + .../haskell-modules/configuration-lts-3.7.nix | 1 + .../haskell-modules/configuration-lts-3.8.nix | 1 + .../haskell-modules/configuration-lts-3.9.nix | 1 + .../haskell-modules/configuration-lts-4.0.nix | 1 + .../haskell-modules/configuration-lts-4.1.nix | 1 + .../haskell-modules/configuration-lts-4.2.nix | 1 + .../haskell-modules/configuration-lts-5.0.nix | 1 + .../haskell-modules/configuration-lts-5.1.nix | 1 + .../haskell-modules/configuration-lts-5.2.nix | 1 + .../haskell-modules/configuration-lts-5.3.nix | 1 + .../haskell-modules/configuration-lts-5.4.nix | 1 + .../haskell-modules/configuration-lts-5.5.nix | 1 + .../haskell-modules/configuration-lts-5.6.nix | 1 + .../haskell-modules/configuration-lts-5.7.nix | 1 + .../haskell-modules/configuration-lts-5.8.nix | 1 + .../haskell-modules/hackage-packages.nix | 322 ++++++++++++++++-- 81 files changed, 381 insertions(+), 21 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index 35b1ee108f7..ad4724a8891 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -8278,6 +8278,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index 4252ff32382..7e37f3034dc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -8278,6 +8278,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index 55218e1b2d9..9f4e76f48ff 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -8278,6 +8278,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index 4c570616d25..1d0bfb9c0f7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -8278,6 +8278,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index 2c434b450dd..e5e76b8859e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -8274,6 +8274,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 11b41d8472f..95ce9523223 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -8274,6 +8274,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 7e0d257c4d4..1509fbf341c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -8271,6 +8271,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index c9201e629c4..f0d02cb9a3c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -8271,6 +8271,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index 9c2bd163209..23e5c90c198 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -8260,6 +8260,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index b1675c2cf27..c43a3efa697 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -8248,6 +8248,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 7d3ffd0c9fa..3ecb05e4cf7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -8223,6 +8223,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index 5dc61da9898..f16ab10fb6f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -8219,6 +8219,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index e467b2afb76..a510a8d38f5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -8217,6 +8217,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index ec319d93c38..e8c1c534cd9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -8215,6 +8215,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 06ca863e7b7..93c497595ba 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -8209,6 +8209,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index fa9a56d00b5..4c8c8c4f6d0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -8200,6 +8200,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index 1fb10c17d7a..2c1871e66b6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -8242,6 +8242,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index e0afb78214d..f6514802129 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -8237,6 +8237,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index 1d1f37bdcee..e9779ceefb2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -8236,6 +8236,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index b666d3a9474..4d40baa9582 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -8231,6 +8231,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index f359a574336..20cbc9d2543 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -8227,6 +8227,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index 53c4760d0f9..3a32bb6b7e1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -8226,6 +8226,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index 841d0bb3771..a814f2e4ead 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -8148,6 +8148,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index 43eab76cc9c..d9ec4d126f1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -8147,6 +8147,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index 920b9749467..aea147afacb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -8103,6 +8103,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 10ba43e4f08..d7b322ecaa2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -8094,6 +8094,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index 246b47db52c..e35499f812b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -8093,6 +8093,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 88e7a28ab09..07d48adb7af 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -8091,6 +8091,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index 7a8ca34527f..6c14955ee36 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -8087,6 +8087,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index 6e46648b510..7b1d139eb87 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -8084,6 +8084,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index 8bcf58fd8c1..6a25bc52701 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -8079,6 +8079,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index 24a1980ce8b..dd161d7d54a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -8074,6 +8074,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index 853f561053c..db7601ca785 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -8070,6 +8070,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index 08866925e5f..19bf383a006 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -8067,6 +8067,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index 74a4ca63498..508a9b40dcd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -8144,6 +8144,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index 404531216e8..364ed466ed2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -8064,6 +8064,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index adfa0a08c19..2347165a201 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -8063,6 +8063,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index ee68de1be61..251129c0a04 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -8061,6 +8061,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index 71802ab36c5..bf0a2b34133 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -8142,6 +8142,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index 7e5475f5b9c..179bfa6277c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -8138,6 +8138,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index 12654549417..43d728e3a34 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -8137,6 +8137,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index c163e9bea04..093e6eed329 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -8131,6 +8131,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index 431d88047a9..6ab93d77fc8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -8130,6 +8130,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index c5680910a76..108aee81956 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -8124,6 +8124,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index 9ccca5280dd..de9e9a3a3ce 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -8111,6 +8111,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index e82f543aa64..9fb5eafd865 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -7866,6 +7866,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index f0067f630d7..5febee3c789 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -7859,6 +7859,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index a8a7ae70d2e..3f176157315 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -7795,6 +7795,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index adcb017e5a2..93ddfa1ba03 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -7791,6 +7791,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index 476909ec28e..2ec8febf122 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -7786,6 +7786,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index 61ca4d6b601..01061e53649 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -7783,6 +7783,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index fd86cf3d876..c872cd524ae 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -7776,6 +7776,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index 7a9df502d1e..f9c7ad344d9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -7772,6 +7772,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index adcc4f9f19e..12dbabfe056 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -7762,6 +7762,7 @@ self: super: { "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-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index 6ea1e8bcda9..1afbad2814f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -7757,6 +7757,7 @@ self: super: { "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-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index 9043d9a63c4..2148431d986 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -7745,6 +7745,7 @@ self: super: { "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-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix index 9c52e8217cb..c6d21a5d976 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -7732,6 +7732,7 @@ self: super: { "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-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 420fcce1636..a7d89a26946 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -7849,6 +7849,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix index 4bc6d555fc1..4d8e6d18247 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -7728,6 +7728,7 @@ self: super: { "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-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix index d99ff20b98e..59f60f4737a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix @@ -7707,6 +7707,7 @@ self: super: { "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-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix index d8532ce1eb3..4e35a202239 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix @@ -7701,6 +7701,7 @@ self: super: { "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-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index 4f8976e2e90..127cf3cb3ef 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -7843,6 +7843,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index 74da947b96d..abb668f6337 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -7842,6 +7842,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index e5b5b44ad0a..c30813ba542 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -7830,6 +7830,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index 4f270ba903a..3fd5dab3746 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -7823,6 +7823,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index fe9cb8751ea..a1db590cde9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -7816,6 +7816,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index 8b060098b12..04337ca7606 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -7806,6 +7806,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index 569b4097fcc..81b257b12a5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -7800,6 +7800,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-out" = dontDistribute super."time-out"; "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix index 0c35e9a2793..48692680149 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix @@ -7377,6 +7377,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix index 8914ab6dbd7..54df38ebbbe 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix @@ -7360,6 +7360,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix index 0e572ec45e1..8b7438640b5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix @@ -7306,6 +7306,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix index f4860ed4aae..fd424725953 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix @@ -7191,6 +7191,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix index 4349dbb43b5..2ab90032f53 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix @@ -7175,6 +7175,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix index e78d23f7371..0994f108107 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix @@ -7152,6 +7152,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix index ff66f0d4b5b..fc760b16369 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix @@ -7111,6 +7111,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.4.nix b/pkgs/development/haskell-modules/configuration-lts-5.4.nix index 07b77810514..6cd7f371a35 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.4.nix @@ -7079,6 +7079,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.5.nix b/pkgs/development/haskell-modules/configuration-lts-5.5.nix index ffff1f44990..321ce52588e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.5.nix @@ -7071,6 +7071,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.6.nix b/pkgs/development/haskell-modules/configuration-lts-5.6.nix index 0931e21c110..2f5c29f2324 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.6.nix @@ -7044,6 +7044,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.7.nix b/pkgs/development/haskell-modules/configuration-lts-5.7.nix index f95b04f616c..26f79b2885a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.7.nix @@ -7030,6 +7030,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.8.nix b/pkgs/development/haskell-modules/configuration-lts-5.8.nix index be512f3da7f..dbe6ed200fa 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.8.nix @@ -7028,6 +7028,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 09f1548bf36..b4559d5002f 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -797,7 +797,6 @@ self: { homepage = "http://wiki.portal.chalmers.se/agda/"; description = "A dependently typed functional programming language and proof assistant"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) emacs;}; "Agda-executable" = callPackage @@ -28822,6 +28821,8 @@ self: { pname = "ansi-pretty"; version = "0.1.2.0"; sha256 = "11079e97b7faaf3825d0ab2bb3e111b5d1b9085343e6505fc2b58240c4eaa424"; + revision = "1"; + editedCabalFile = "3f1fc699687e8f3b474da3666fc4c7e26626bba2329455a87655cc91ea62ee78"; libraryHaskellDepends = [ aeson ansi-wl-pprint array base bytestring containers generics-sop nats scientific semigroups tagged text time unordered-containers @@ -101343,6 +101344,34 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hdocs_0_4_4_1" = callPackage + ({ mkDerivation, aeson, aeson-pretty, base, bytestring, Cabal + , containers, filepath, ghc, ghc-paths, haddock-api + , haddock-library, MonadCatchIO-transformers, mtl, network, process + , text, transformers + }: + mkDerivation { + pname = "hdocs"; + version = "0.4.4.1"; + sha256 = "2a3bef807c3b56d0ca580db8cd5f3547dd9da906a815208f03786ce5a8313d3a"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring Cabal containers filepath ghc ghc-paths + haddock-api haddock-library MonadCatchIO-transformers mtl network + process text transformers + ]; + executableHaskellDepends = [ + aeson aeson-pretty base bytestring containers filepath mtl network + text + ]; + testHaskellDepends = [ base containers mtl ]; + homepage = "https://github.com/mvoidex/hdocs"; + description = "Haskell docs tool"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hdph" = callPackage ({ mkDerivation, base, bytestring, cereal, containers, deepseq , hdph-closure, mtl, network, network-info, network-multicast @@ -102496,8 +102525,8 @@ self: { }: mkDerivation { pname = "hesh"; - version = "1.4.0"; - sha256 = "d8848e58c13556159b11a8693029563fcfc91270da7115ea8ed5a86dd86f13ca"; + version = "1.5.0"; + sha256 = "1e79b396d448fd7e98c293c14efed69e65ece14a5fd77bb408b8e4d0a5a024f6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -109790,7 +109819,7 @@ self: { }) {}; "hs-blake2" = callPackage - ({ mkDerivation, b2, base, bytestring, bytestring-arbitrary + ({ mkDerivation, base, bytestring, bytestring-arbitrary, libb2 , QuickCheck, tasty, tasty-quickcheck }: mkDerivation { @@ -109798,17 +109827,17 @@ self: { version = "0.0.2"; sha256 = "043efd374194998f4ea54a3e43713fb6a2c6f233673eb0deadf8950f22c31e44"; libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ b2 ]; + librarySystemDepends = [ libb2 ]; testHaskellDepends = [ base bytestring bytestring-arbitrary QuickCheck tasty tasty-quickcheck ]; - testSystemDepends = [ b2 ]; + testSystemDepends = [ libb2 ]; jailbreak = true; homepage = "https://github.com/tsuraan/hs-blake2"; description = "A cryptohash-inspired library for blake2"; license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) b2;}; + }) {inherit (pkgs) libb2;}; "hs-captcha" = callPackage ({ mkDerivation, base, bytestring, gd, random }: @@ -124772,7 +124801,6 @@ self: { ]; description = "High level interface for webkit-javascriptcore"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jsaddle-hello" = callPackage @@ -128093,12 +128121,12 @@ self: { ({ mkDerivation, base, servant, tasty, tasty-hspec }: mkDerivation { pname = "lackey"; - version = "0.1.0"; - sha256 = "3d7c49e9598f14711518a2dc0c420c42246c64ea8ad92fe340845dcabf7b0bb9"; + version = "0.1.1"; + sha256 = "7c3efec91d44b93944e1c2814ae3345d577c347025837b81b54b143b0cb4bbe9"; libraryHaskellDepends = [ base servant ]; testHaskellDepends = [ base servant tasty tasty-hspec ]; - jailbreak = true; - description = "A library for generating Ruby consumers of Servant APIs"; + homepage = "https://github.com/tfausak/lackey#readme"; + description = "Generate Ruby consumers of Servant APIs"; license = stdenv.lib.licenses.mit; }) {}; @@ -129510,8 +129538,8 @@ self: { }: mkDerivation { pname = "language-fortran"; - version = "0.5"; - sha256 = "e95bb7a065c4ed8020410d18e633beb5c0e9617ea14176c72d031555432fdf65"; + version = "0.5.1"; + sha256 = "44cd3f3e76dc627cce8f442dbaf4f1d54b1db633c313868c8ad1d5dbe16e7f9a"; libraryHaskellDepends = [ array base haskell-src parsec syb ]; libraryToolDepends = [ alex happy ]; description = "Fortran lexer and parser, language support, and extensions"; @@ -131058,7 +131086,7 @@ self: { homepage = "http://www.leksah.org"; description = "Haskell IDE written in Haskell"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "leksah-server" = callPackage @@ -181090,6 +181118,33 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "servant_0_4_4_7" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring + , bytestring-conversion, case-insensitive, directory, doctest + , filemanip, filepath, hspec, http-media, http-types, network-uri + , parsec, QuickCheck, quickcheck-instances, string-conversions + , text, url + }: + mkDerivation { + pname = "servant"; + version = "0.4.4.7"; + sha256 = "4d2655e013e26edf6568bbcaa9bcf0cd4c96af4d9d4d862f9089cb6719073e2b"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring bytestring-conversion + case-insensitive http-media http-types network-uri + string-conversions text + ]; + testHaskellDepends = [ + aeson attoparsec base bytestring directory doctest filemanip + filepath hspec parsec QuickCheck quickcheck-instances + string-conversions text url + ]; + homepage = "http://haskell-servant.github.io/"; + description = "A family of combinators for defining webservices APIs"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "servant-JuicyPixels_0_1_0_0" = callPackage ({ mkDerivation, base, bytestring, http-media, JuicyPixels, servant , servant-server, wai, warp @@ -181145,12 +181200,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "servant-blaze_0_4_4_7" = callPackage + ({ mkDerivation, base, blaze-html, http-media, servant }: + mkDerivation { + pname = "servant-blaze"; + version = "0.4.4.7"; + sha256 = "5f3648d0831de475364c9570b527041d5a5a26ea6257b44f2e140509ba8c0b60"; + libraryHaskellDepends = [ base blaze-html http-media servant ]; + homepage = "http://haskell-servant.github.io/"; + description = "Blaze-html support for servant"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "servant-cassava" = callPackage ({ mkDerivation, base, cassava, http-media, servant, vector }: mkDerivation { pname = "servant-cassava"; - version = "0.4.4.6"; - sha256 = "2d5b3be61d67d89b95dd3156d4bf5201452f30031517276c4dd7cde4a7456769"; + version = "0.4.4.7"; + sha256 = "397b1074e274a2db974e8298eee6cfadb61541aa18e4821c4c44bbb88d27889c"; libraryHaskellDepends = [ base cassava http-media servant vector ]; homepage = "http://haskell-servant.github.io/"; description = "Servant CSV content-type for cassava"; @@ -181317,6 +181385,33 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "servant-client_0_4_4_7" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq + , either, exceptions, hspec, http-client, http-client-tls + , http-media, http-types, HUnit, network, network-uri, QuickCheck + , safe, servant, servant-server, string-conversions, text + , transformers, wai, warp + }: + mkDerivation { + pname = "servant-client"; + version = "0.4.4.7"; + sha256 = "01fcdbbca231b4f99c80f47b6fc025f7785394358bde37eddb744b5e8e7bcba8"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring either exceptions http-client + http-client-tls http-media http-types network-uri safe servant + string-conversions text transformers + ]; + testHaskellDepends = [ + aeson base bytestring deepseq either hspec http-client http-media + http-types HUnit network QuickCheck servant servant-server text wai + warp + ]; + homepage = "http://haskell-servant.github.io/"; + description = "automatical derivation of querying functions for servant webservices"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "servant-docs_0_3_1" = callPackage ({ mkDerivation, aeson, aeson-pretty, base, bytestring, hashable , lens, servant, string-conversions, system-filepath, text @@ -181484,6 +181579,35 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "servant-docs_0_4_4_7" = callPackage + ({ mkDerivation, aeson, base, bytestring, bytestring-conversion + , case-insensitive, hashable, hspec, http-media, http-types, lens + , servant, string-conversions, text, unordered-containers + }: + mkDerivation { + pname = "servant-docs"; + version = "0.4.4.7"; + sha256 = "ad3caf4b87d456d29e58a84e4d4ce0fd45a6ddf7b9d56f70800e8a682954af25"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring bytestring-conversion case-insensitive hashable + http-media http-types lens servant string-conversions text + unordered-containers + ]; + executableHaskellDepends = [ + aeson base bytestring-conversion lens servant string-conversions + text + ]; + testHaskellDepends = [ + aeson base hspec lens servant string-conversions + ]; + homepage = "http://haskell-servant.github.io/"; + description = "generate API docs for your servant webservice"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "servant-ede" = callPackage ({ mkDerivation, aeson, base, bytestring, ede, either, filepath , http-media, http-types, semigroups, servant, servant-server, text @@ -181538,8 +181662,8 @@ self: { }: mkDerivation { pname = "servant-examples"; - version = "0.4.4.6"; - sha256 = "8901e5d619234600d69341f314de044c6659f88e1fd1c6ceed71929565bac0ee"; + version = "0.4.4.7"; + sha256 = "1631cec84ab494f057df309b4bdd32a04066e1305d64bddfac24ceb2128e5516"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -181741,12 +181865,36 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "servant-jquery_0_4_4_7" = callPackage + ({ mkDerivation, aeson, base, charset, filepath, hspec + , hspec-expectations, language-ecmascript, lens, servant + , servant-server, stm, text, transformers, warp + }: + mkDerivation { + pname = "servant-jquery"; + version = "0.4.4.7"; + sha256 = "f3e7ba3e47ab318fc448f0539b4e58e8d82a5e9b32e3a6a6b5dea849dd7d11b1"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base charset lens servant text ]; + executableHaskellDepends = [ + aeson base filepath servant servant-server stm transformers warp + ]; + testHaskellDepends = [ + base hspec hspec-expectations language-ecmascript lens servant + ]; + homepage = "http://haskell-servant.github.io/"; + description = "Automatically derive (jquery) javascript functions to query servant webservices"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "servant-lucid" = callPackage ({ mkDerivation, base, http-media, lucid, servant }: mkDerivation { pname = "servant-lucid"; - version = "0.4.4.6"; - sha256 = "9dede15f6a6032a3e815bd949e2c83f243a6c15aaca8ee65ee97c163515fdf4b"; + version = "0.4.4.7"; + sha256 = "2458d8ebda8b76a23574cfa5074e439f4ed5d52fe0186355d07ae6a94b278f28"; libraryHaskellDepends = [ base http-media lucid servant ]; homepage = "http://haskell-servant.github.io/"; description = "Servant support for lucid"; @@ -181775,6 +181923,29 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "servant-mock_0_4_4_7" = callPackage + ({ mkDerivation, aeson, base, bytestring, http-types, QuickCheck + , servant, servant-server, transformers, wai, warp + }: + mkDerivation { + pname = "servant-mock"; + version = "0.4.4.7"; + sha256 = "d8fdc27bc4bc347d1fc31e125c29f0d786e44abc567a7187b757d0c6563d75c0"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring http-types QuickCheck servant servant-server + transformers wai + ]; + executableHaskellDepends = [ + aeson base QuickCheck servant-server warp + ]; + 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 @@ -182110,6 +182281,38 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "servant-server_0_4_4_7" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring + , bytestring-conversion, directory, doctest, either, exceptions + , filemanip, filepath, hspec, hspec-wai, http-types, mmorph, mtl + , network, network-uri, parsec, QuickCheck, safe, servant, split + , string-conversions, system-filepath, temporary, text + , transformers, wai, wai-app-static, wai-extra, warp + }: + mkDerivation { + pname = "servant-server"; + version = "0.4.4.7"; + sha256 = "88742ffcb41d5bb1eda91108345c4faf1a2f6fd90b1a6c52d4c1f23e08036414"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson attoparsec base bytestring either filepath http-types mmorph + mtl network-uri safe servant split string-conversions + system-filepath text transformers wai wai-app-static warp + ]; + executableHaskellDepends = [ aeson base servant text wai warp ]; + testHaskellDepends = [ + aeson base bytestring bytestring-conversion directory doctest + either exceptions filemanip filepath hspec hspec-wai http-types mtl + network parsec QuickCheck servant string-conversions temporary text + transformers wai wai-extra warp + ]; + homepage = "http://haskell-servant.github.io/"; + description = "A family of combinators for defining webservices APIs and serving them"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "servant-swagger_0_1_1" = callPackage ({ mkDerivation, aeson, aeson-qq, base, bytestring, hspec , http-media, lens, servant, swagger2, text, time @@ -184391,6 +184594,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "shortcut-links_0_4_2_0" = callPackage + ({ mkDerivation, base, text }: + mkDerivation { + pname = "shortcut-links"; + version = "0.4.2.0"; + sha256 = "1e6b75c5e94fddf9e2e665821ac70f5083e5d40d1fd55813e94943ce02335027"; + libraryHaskellDepends = [ base text ]; + homepage = "http://github.com/aelve/shortcut-links"; + description = "Link shortcuts for use in text markup"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "shorten-strings" = callPackage ({ mkDerivation, base, text }: mkDerivation { @@ -201009,6 +201225,31 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "text_1_2_2_1" = callPackage + ({ mkDerivation, array, base, binary, bytestring, deepseq + , directory, ghc-prim, HUnit, integer-gmp, QuickCheck + , quickcheck-unicode, random, test-framework, test-framework-hunit + , test-framework-quickcheck2 + }: + mkDerivation { + pname = "text"; + version = "1.2.2.1"; + sha256 = "1addb1bdf36293c996653c9a0a320b5491714495862d997a23fb1ecd41ff395b"; + libraryHaskellDepends = [ + array base binary bytestring deepseq ghc-prim integer-gmp + ]; + testHaskellDepends = [ + array base binary bytestring deepseq directory ghc-prim HUnit + integer-gmp QuickCheck quickcheck-unicode random test-framework + test-framework-hunit test-framework-quickcheck2 + ]; + doCheck = false; + homepage = "https://github.com/bos/text"; + description = "An efficient packed Unicode text type"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "text-and-plots" = callPackage ({ mkDerivation, base, blaze-html, bytestring, containers, markdown , text, unordered-containers @@ -203320,6 +203561,20 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "time-out" = callPackage + ({ mkDerivation, base, exceptions, time-units, transformers }: + mkDerivation { + pname = "time-out"; + version = "0.1"; + sha256 = "e9eec568ba0e78c8479836c637d053fe1eb8e7df3db3122b4234eae2920f8056"; + libraryHaskellDepends = [ + base exceptions time-units transformers + ]; + homepage = "http://hub.darcs.net/fr33domlover/time-out"; + description = "Execute a computation with a timeout"; + license = stdenv.lib.licenses.publicDomain; + }) {}; + "time-parsers" = callPackage ({ mkDerivation, attoparsec, base, bifunctors, parsec, parsers , tasty, tasty-hunit, template-haskell, text, time @@ -218541,6 +218796,31 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "webdriver_0_8_2" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base64-bytestring + , bytestring, data-default-class, directory, directory-tree + , exceptions, filepath, http-client, http-types, lifted-base + , monad-control, network, network-uri, scientific, temporary, text + , time, transformers, transformers-base, unordered-containers + , vector, zip-archive + }: + mkDerivation { + pname = "webdriver"; + version = "0.8.2"; + sha256 = "2e840b25f462f37f08d2a4b4a22c73a28b26318b861bce14a445b728a2fbbb54"; + libraryHaskellDepends = [ + aeson attoparsec base base64-bytestring bytestring + data-default-class directory directory-tree exceptions filepath + http-client http-types lifted-base monad-control network + network-uri scientific temporary text time transformers + transformers-base unordered-containers vector zip-archive + ]; + homepage = "https://github.com/kallisti-dev/hs-webdriver"; + description = "a Haskell client for the Selenium WebDriver protocol"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "webdriver-angular_0_1_7" = callPackage ({ mkDerivation, aeson, base, hspec, hspec-webdriver , language-javascript, template-haskell, text, transformers From a0f0a7191fa5eb20343d2b3ac8788592e029bb1f Mon Sep 17 00:00:00 2001 From: obadz Date: Sat, 10 Oct 2015 15:01:36 +0100 Subject: [PATCH 168/678] leksah: add the appropriate deps to enable running --- .../haskell-modules/configuration-common.nix | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 34ed3bb19db..b4bd2b6efa8 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -643,7 +643,19 @@ self: super: { spaceprobe = addBuildTool super.spaceprobe self.llvmPackages.llvm; # Tries to run GUI in tests - leksah = dontCheck super.leksah; + leksah = dontCheck (overrideCabal super.leksah (drv: { + executableSystemDepends = (drv.executableSystemDepends or []) ++ (with pkgs; [ + gnome3.defaultIconTheme # Fix error: Icon 'window-close' not present in theme ... + wrapGAppsHook # Fix error: GLib-GIO-ERROR **: No GSettings schemas are installed on the system + gtk3 # Fix error: GLib-GIO-ERROR **: Settings schema 'org.gtk.Settings.FileChooser' is not installed + ]); + postPatch = (drv.postPatch or "") + '' + for f in src/IDE/Leksah.hs src/IDE/Utils/ServerConnection.hs + do + substituteInPlace "$f" --replace "\"leksah-server\"" "\"${self.leksah-server}/bin/leksah-server\"" + done + ''; + })); # Patch to consider NIX_GHC just like xmonad does dyre = appendPatch super.dyre ./patches/dyre-nix.patch; From 73d1d84e546fb0c4bced542d4d981c1f19f499af Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 17 Mar 2016 20:55:38 +0100 Subject: [PATCH 169/678] haskell-Agda: add necessary overrides for older versions to fix the LTS builds --- pkgs/development/haskell-modules/configuration-common.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index b4bd2b6efa8..e155027ea9e 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -944,5 +944,7 @@ self: super: { language-c-quote = super.language-c-quote.override { alex = self.alex_3_1_4; }; # https://github.com/agda/agda/issues/1840 + Agda_2_4_2_3 = super.Agda_2_4_2_3.override { unordered-containers = self.unordered-containers_0_2_5_1; }; + Agda_2_4_2_4 = super.Agda_2_4_2_4.override { unordered-containers = self.unordered-containers_0_2_5_1; }; Agda = super.Agda.override { unordered-containers = self.unordered-containers_0_2_5_1; }; } From fb1f18b98c099716ea321b7bcbb103e640763ced Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 17 Mar 2016 20:56:32 +0100 Subject: [PATCH 170/678] haskell-jsaddle: fix build by disabling the test suite --- pkgs/development/haskell-modules/configuration-common.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index e155027ea9e..5aff7cbae39 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -947,4 +947,8 @@ self: super: { Agda_2_4_2_3 = super.Agda_2_4_2_3.override { unordered-containers = self.unordered-containers_0_2_5_1; }; Agda_2_4_2_4 = super.Agda_2_4_2_4.override { unordered-containers = self.unordered-containers_0_2_5_1; }; Agda = super.Agda.override { unordered-containers = self.unordered-containers_0_2_5_1; }; + + # We get lots of strange compiler errors during the test suite run. + jsaddle = dontCheck super.jsaddle; + } From af81505c00c7d9aee8346bd12db10861f506b3dd Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 17 Mar 2016 20:57:46 +0100 Subject: [PATCH 171/678] wrap-gapps-hook.sh: fix double inclusion guard The simple "return" would not override the non-zero error code set by the preceding test command, therefore aborting scripts running with "set -e". --- pkgs/build-support/setup-hooks/wrap-gapps-hook.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/build-support/setup-hooks/wrap-gapps-hook.sh b/pkgs/build-support/setup-hooks/wrap-gapps-hook.sh index 9e0cd22c119..3cad1838d26 100644 --- a/pkgs/build-support/setup-hooks/wrap-gapps-hook.sh +++ b/pkgs/build-support/setup-hooks/wrap-gapps-hook.sh @@ -11,7 +11,7 @@ envHooks+=(find_gio_modules) # Note: $gappsWrapperArgs still gets defined even if $dontWrapGApps is set. wrapGAppsHook() { # guard against running multiple times (e.g. due to propagation) - [ -z "$wrapGAppsHookHasRun" ] || return + [ -z "$wrapGAppsHookHasRun" ] || return 0 wrapGAppsHookHasRun=1 if [ -n "$GDK_PIXBUF_MODULE_FILE" ]; then From 57af6102f84728be567516b1ec44cd15f085d934 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 17 Mar 2016 20:59:47 +0100 Subject: [PATCH 172/678] configuration-hackage2nix.yaml: enable builds for jsaddle, Agda, and Leksah --- .../haskell-modules/configuration-hackage2nix.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index 01e59932f36..824d691ca3a 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -200,7 +200,6 @@ dont-distribute-packages: agda-server: [ i686-linux, x86_64-darwin, x86_64-linux ] agda-snippets-hakyll: [ i686-linux, x86_64-darwin, x86_64-linux ] agda-snippets: [ i686-linux, x86_64-darwin, x86_64-linux ] - Agda: [ i686-linux, x86_64-darwin, x86_64-linux ] AGI: [ i686-linux, x86_64-darwin, x86_64-linux ] AhoCorasick: [ i686-linux, x86_64-darwin, x86_64-linux ] airbrake: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -2180,7 +2179,6 @@ dont-distribute-packages: jort: [ i686-linux, x86_64-darwin, x86_64-linux ] js-good-parts: [ i686-linux, x86_64-darwin, x86_64-linux ] jsaddle-hello: [ i686-linux, x86_64-linux, x86_64-darwin ] - jsaddle: [ i686-linux, x86_64-linux, x86_64-darwin ] jsc: [ i686-linux, x86_64-linux, x86_64-darwin ] JsContracts: [ i686-linux, x86_64-darwin, x86_64-linux ] jsmw: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -2319,7 +2317,7 @@ dont-distribute-packages: learn-physics-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] learn-physics: [ i686-linux, x86_64-darwin, x86_64-linux ] leksah-server: [ x86_64-darwin ] - leksah: [ i686-linux, x86_64-linux, x86_64-darwin ] + leksah: [ x86_64-darwin ] Level0: [ x86_64-darwin ] leveldb-haskell-fork: [ i686-linux, x86_64-darwin, x86_64-linux ] leveldb-haskell: [ x86_64-darwin ] From 067f64469f7c7ce7252f9784c7217c2035362041 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 17 Mar 2016 19:27:34 +0100 Subject: [PATCH 173/678] configuration-common.nix: drop obsolete override --- pkgs/development/haskell-modules/configuration-common.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 5aff7cbae39..2e0a02c0f2d 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -46,9 +46,6 @@ self: super: { # The package doesn't compile with ruby 1.9, which is our default at the moment. hruby = super.hruby.override { ruby = pkgs.ruby_2_1; }; - # help blake finding its native library - hs-blake2 = super.hs-blake2.override { b2 = pkgs.libb2; }; - # Use the default version of mysql to build this package (which is actually mariadb). mysql = super.mysql.override { mysql = pkgs.mysql.lib; }; From 87ca9b962917a1c86b4ca73b791eba4745321e6c Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Fri, 18 Mar 2016 05:28:19 +0100 Subject: [PATCH 174/678] =?UTF-8?q?lynx:=20use=20full=20`version`,=20?= =?UTF-8?q?=E2=80=98official=E2=80=99=20URI=20&=20lib.optionals?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../networking/browsers/lynx/default.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/networking/browsers/lynx/default.nix b/pkgs/applications/networking/browsers/lynx/default.nix index 74c9574c7d6..e7b5ba89db6 100644 --- a/pkgs/applications/networking/browsers/lynx/default.nix +++ b/pkgs/applications/networking/browsers/lynx/default.nix @@ -4,22 +4,23 @@ assert sslSupport -> openssl != null; -stdenv.mkDerivation { - name = "lynx-2.8.8"; +stdenv.mkDerivation rec { + name = "lynx-${version}"; + version = "2.8.8rel.2"; src = fetchurl { - url = http://lynx.isc.org/lynx2.8.8/lynx2.8.8.tar.bz2; + url = "http://invisible-mirror.net/archives/lynx/tarballs/lynx${version}.tar.bz2"; sha256 = "1rxysl08acqll5b87368f04kckl8sggy1qhnq59gsxyny1ffg039"; }; - configureFlags = if sslSupport then "--with-ssl=${openssl}" else ""; + configureFlags = [] + ++ stdenv.lib.optionals sslSupport [ "--with-ssl=${openssl}" ]; buildInputs = [ ncurses gzip ]; nativeBuildInputs = [ ncurses ]; crossAttrs = { - configureFlags = "--enable-widec" + - (if sslSupport then " --with-ssl" else ""); + configureFlags = configureFlags ++ [ "--enable-widec" ]; }; meta = { From fb6786de36437402882dcc135433477c39ecde44 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Fri, 18 Mar 2016 06:02:18 +0100 Subject: [PATCH 175/678] zpaq: 705 -> 706 Changes: - Fixes handling of some corrupted archives. - Conforms to new spec zpaq205.pdf. - New man page. - Add Makefile [and adapt Nix expression to use it]. --- pkgs/tools/archivers/zpaq/default.nix | 43 ++++++++++++--------------- 1 file changed, 19 insertions(+), 24 deletions(-) diff --git a/pkgs/tools/archivers/zpaq/default.nix b/pkgs/tools/archivers/zpaq/default.nix index 2b761df3863..fe5dc54a27d 100644 --- a/pkgs/tools/archivers/zpaq/default.nix +++ b/pkgs/tools/archivers/zpaq/default.nix @@ -1,23 +1,14 @@ -{ stdenv, fetchurl, unzip }: +{ stdenv, fetchurl, perl, unzip }: let s = # Generated upstream information rec { baseName="zpaq"; - version="705"; + version="706"; name="${baseName}-${version}"; - hash="0d1knq4f6693nvbwjx4wznb45hm4zyn4k88xvhynyk0dcbiy7ayq"; - url="http://mattmahoney.net/dc/zpaq705.zip"; - sha256="0d1knq4f6693nvbwjx4wznb45hm4zyn4k88xvhynyk0dcbiy7ayq"; + hash="0wn5hs02aac61rjbba3s6wibyk73f1mfcbqnf34hcpyj2gl5i59k"; + url="http://mattmahoney.net/dc/zpaq706.zip"; + sha256="0wn5hs02aac61rjbba3s6wibyk73f1mfcbqnf34hcpyj2gl5i59k"; }; - isUnix = with stdenv; isLinux || isGNU || isDarwin || isFreeBSD || isOpenBSD; - isx86 = stdenv.isi686 || stdenv.isx86_64; - compileFlags = with stdenv; "" - + (lib.optionalString (isUnix) " -Dunix -pthread") - + (lib.optionalString (isi686) " -march=i686") - + (lib.optionalString (isx86_64) " -march=nocona") - + (lib.optionalString (!isx86) " -DNOJIT") - + " -O3 -mtune=generic -DNDEBUG" - ; in stdenv.mkDerivation { inherit (s) name version; @@ -28,20 +19,24 @@ stdenv.mkDerivation { sourceRoot = "."; + nativeBuildInputs = [ perl /* for pod2man */ ]; buildInputs = [ unzip ]; - buildPhase = '' - g++ ${compileFlags} -fPIC --shared libzpaq.cpp -o libzpaq.so - g++ ${compileFlags} -L. -L"$out/lib" -lzpaq zpaq.cpp -o zpaq + preBuild = let + CPPFLAGS = with stdenv; "" + + (lib.optionalString (!isi686 && !isx86_64) "-DNOJIT ") + + "-Dunix"; + CXXFLAGS = with stdenv; "" + + (lib.optionalString (isi686) "-march=i686 ") + + (lib.optionalString (isx86_64) "-march=nocona ") + + "-O3 -mtune=generic -DNDEBUG"; + in '' + buildFlagsArray=( "CPPFLAGS=${CPPFLAGS}" "CXXFLAGS=${CXXFLAGS}" ) ''; - installPhase = '' - mkdir -p "$out"/{bin,include,lib,share/doc/zpaq} - cp libzpaq.so "$out/lib" - cp zpaq "$out/bin" - cp libzpaq.h "$out/include" - cp readme.txt "$out/share/doc/zpaq" - ''; + enableParallelBuilding = true; + + installFlags = [ "PREFIX=$(out)" ]; meta = with stdenv.lib; { inherit (s) version; From 2d72bc1402299dacc5be17742a5cd8318cb95a36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 17 Mar 2016 18:02:53 +0100 Subject: [PATCH 176/678] sbcl: add `purgeNixReferences` option (close #13997) ... to support creating executables portable to non-NixOS. --- pkgs/development/compilers/sbcl/default.nix | 35 ++++++++++++++++++--- 1 file changed, 30 insertions(+), 5 deletions(-) diff --git a/pkgs/development/compilers/sbcl/default.nix b/pkgs/development/compilers/sbcl/default.nix index 82348f35e30..ab8e8e08b1a 100644 --- a/pkgs/development/compilers/sbcl/default.nix +++ b/pkgs/development/compilers/sbcl/default.nix @@ -1,4 +1,10 @@ -{ stdenv, fetchurl, sbclBootstrap, sbclBootstrapHost ? "${sbclBootstrap}/bin/sbcl --disable-debugger --no-userinit --no-sysinit" }: +{ stdenv, fetchurl, writeText, sbclBootstrap +, sbclBootstrapHost ? "${sbclBootstrap}/bin/sbcl --disable-debugger --no-userinit --no-sysinit" + # Meant for sbcl used for creating binaries portable to non-NixOS via save-lisp-and-die. + # Note that the created binaries still need `patchelf --set-interpreter ...` + # to get rid of ${glibc} dependency. +, purgeNixReferences ? false +}: stdenv.mkDerivation rec { name = "sbcl-${version}"; @@ -37,9 +43,6 @@ stdenv.mkDerivation rec { sed -i src/code/target-load.lisp -e \ '/date defaulted-source/i(or (and (= 2208988801 (file-write-date defaulted-source-truename)) (= 2208988801 (file-write-date defaulted-fasl-truename)))' - # Fix software version retrieval - sed -e "s@/bin/uname@$(command -v uname)@g" -i src/code/*-os.lisp - # Fix the tests sed -e '/deftest pwent/inil' -i contrib/sb-posix/posix-tests.lisp sed -e '/deftest grent/inil' -i contrib/sb-posix/posix-tests.lisp @@ -54,7 +57,21 @@ stdenv.mkDerivation rec { substituteInPlace src/runtime/Config.x86-64-darwin \ --replace mmacosx-version-min=10.4 mmacosx-version-min=10.5 - ''; + '' + + (if purgeNixReferences + then + # This is the default location to look for the core; by default in $out/lib/sbcl + '' + sed 's@^\(#define SBCL_HOME\) .*$@\1 "/no-such-path"@' \ + -i src/runtime/runtime.c + '' + else + # Fix software version retrieval + '' + sed -e "s@/bin/uname@$(command -v uname)@g" -i src/code/*-os.lisp + '' + ); + preBuild = '' export INSTALL_ROOT=$out @@ -70,6 +87,14 @@ stdenv.mkDerivation rec { INSTALL_ROOT=$out sh install.sh ''; + # Specifying $SBCL_HOME is only truly needed with `purgeNixReferences = true`. + setupHook = writeText "setupHook.sh" '' + envHooks+=(_setSbclHome) + _setSbclHome() { + export SBCL_HOME='@out@/lib/sbcl/' + } + ''; + meta = sbclBootstrap.meta // { inherit version; updateWalker = true; From d53d5048d8d50f3d69d029b3010626cf926fc3ad Mon Sep 17 00:00:00 2001 From: Charles Strahan Date: Fri, 18 Mar 2016 02:53:48 -0400 Subject: [PATCH 177/678] goPackages: add ide-like packages This adds the following packages: * errcheck * gotool * gometalinter * motion * shlex --- .../go-modules/generic/default.nix | 2 +- pkgs/top-level/go-packages.nix | 62 +++++++++++++++++++ 2 files changed, 63 insertions(+), 1 deletion(-) diff --git a/pkgs/development/go-modules/generic/default.nix b/pkgs/development/go-modules/generic/default.nix index 15b729173c6..93b09acbda1 100644 --- a/pkgs/development/go-modules/generic/default.nix +++ b/pkgs/development/go-modules/generic/default.nix @@ -163,7 +163,7 @@ go.stdenv.mkDerivation ( enableParallelBuilding = enableParallelBuilding; # I prefer to call this dev but propagatedBuildInputs expects $out to exist - outputs = [ "out" "bin" ]; + outputs = args.outputs or [ "out" "bin" ]; meta = { # Add default meta information diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index e8ab7550921..a8d89db54a1 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -240,6 +240,14 @@ let sha256 = "0k48k8815k433s25lh8my2swl89kczp0m2gbqzjlpy1xwmk06nxc"; }; + asmfmt = buildFromGitHub { + rev = "7971758b0c6584f67d745c62d006814ae7b44e9d"; + owner = "klauspost"; + repo = "asmfmt"; + sha256 = "07i3f8jzs4yvfpm16s2c2hd65r3q729m0agg8q1i3lwbs3fimyj5"; + buildInputs = [ tools goreturns ]; + }; + asn1-ber = buildGoPackage rec { rev = "f4b6f4a84f5cde443d1925b5ec185ee93c2bdc72"; name = "asn1-ber-${stdenv.lib.strings.substring 0 7 rev}"; @@ -758,6 +766,21 @@ let }; }; + errcheck = buildFromGitHub { + rev = "f76568f8d87e48ccbbd17a827c2eaf31805bf58c"; + owner = "kisielk"; + repo = "errcheck"; + sha256 = "1y1cqd0ibgr03zf96q6aagk65yhv6vcnq9xa8nqhjpnz7jhfndhs"; + postPatch = '' + for f in $(find -name "*.go"); do + substituteInPlace $f \ + --replace '"go/types"' '"golang.org/x/tools/go/types"' + done + ''; + excludedPackages = [ "testdata" ]; + buildInputs = [ gotool tools ]; + }; + errwrap = buildFromGitHub { rev = "7554cd9344cec97297fa6649b055a8c98c2a1e55"; owner = "hashicorp"; @@ -1074,6 +1097,13 @@ let sha256 = "0yg1jpr7lcaqh6i8n9wbs9r128kk541qjv06r9a6fp9vj56rqr3m"; }; + gotool = buildFromGitHub { + rev = "58a7a198f2ec6ea7af221fd216e7f559d663ce02"; + owner = "kisielk"; + repo = "gotool"; + sha256 = "1l1w4mczqmah0c154vb1daw5l3cc7vn5gmy5s67p3ad1lnz5l79x"; + }; + gotty = buildFromGitHub { rev = "v0.0.10"; owner = "yudai"; @@ -1152,6 +1182,14 @@ let sha256 = "1r8fpzwhakq8fsppc33n4iivq1pz47xhs0h6bv4x5qiip5mswwvg"; }; + gometalinter = buildFromGitHub { + rev = "be87b7414dc44dbea2fee33ccb8bd8a859ebcaf1"; + owner = "alecthomas"; + repo = "gometalinter"; + sha256 = "05n852kf11gq5k7b4h6kz85z99qfa46dy6b6fqkg9xfk2bmvdxms"; + buildInputs = [ shlex kingpin testify ]; + }; + google-api-go-client = buildFromGitHub { rev = "a5c3e2a4792aff40e59840d9ecdff0542a202a80"; date = "2015-08-19"; @@ -1163,6 +1201,15 @@ let buildInputs = [ net ]; }; + goreturns = buildFromGitHub { + rev = "b368f1f77f2950c753e05a6a29acfc487fa7a959"; + owner = "sqs"; + repo = "goreturns"; + sha256 = "0qllmcvg3xd43pymn24zrjn7vb39zj83ayq3sg7kzgxvba0ylb05"; + goPackagePath = "sourcegraph.com/sqs/goreturns"; + buildInputs = [ tools ]; + }; + odeke-em.google-api-go-client = buildGoPackage rec { rev = "30f4c144b02321ebbc712f35dc95c3e72a5a7fdc"; name = "odeke-em-google-api-go-client-${stdenv.lib.strings.substring 0 7 rev}"; @@ -2332,6 +2379,14 @@ let ''; }; + motion = buildFromGitHub { + rev = "e09baac69ad86bff1de868e8d6c4327eb0a918d7"; + owner = "fatih"; + repo = "motion"; + sha256 = "0yay4a1b5l9f4zmwkcsmr5plnp7a9b66bczy1xz4nzhl20bal6sx"; + excludedPackages = [ "testdata" ]; + }; + mousetrap = buildFromGitHub { rev = "9dbb96d2c3a964935b0870b5abaea13c98b483aa"; owner = "inconshreveable"; @@ -3312,6 +3367,13 @@ let propagatedBuildInputs = [ slices ]; }; + shlex = buildFromGitHub { + rev = "6f45313302b9c56850fc17f99e40caebce98c716"; + owner = "google"; + repo = "shlex"; + sha256 = "0ybz1w3hndma8myq3pxan36533hy9f4w598hsv4hnj21l4br8jpx"; + }; + skydns = buildFromGitHub { rev = "2.5.2b"; owner = "skynetservices"; From 3689c34b31722b083c65e64048b802568c3d518d Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 18 Mar 2016 07:55:09 +0100 Subject: [PATCH 178/678] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20160308-3-g8057d11 using the following inputs: - Nixpkgs: https://github.com/NixOS/nixpkgs/commit/3b6870536f4ba989ef2b3f6d919564d5a5d3faac - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/f6dcb81d2a28b1419ef4a4b6513276e52c75f6bb - LTS Haskell: https://github.com/fpco/lts-haskell/commit/6bcb171af74b3bcce09d9ba8da3c2ef819232dcc - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/fbf2e48e585f4323b603c9e72e8b925cfe0f5724 --- .../haskell-modules/hackage-packages.nix | 76 ++++++++++++++++--- 1 file changed, 65 insertions(+), 11 deletions(-) diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index b4559d5002f..1f5f52c8cdb 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -30424,6 +30424,7 @@ self: { jailbreak = true; description = "A journaled data store"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arff" = callPackage @@ -39620,6 +39621,7 @@ self: { homepage = "http://github.com/MichaelXavier/bloodhound-amazonka-auth#readme"; description = "Adds convenient Amazon ElasticSearch Service authentication to Bloodhound"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bloomfilter" = callPackage @@ -39869,6 +39871,7 @@ self: { homepage = "http://github.com/rblaze/bond-haskell#readme"; description = "Runtime support for BOND serialization"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bond-haskell-compiler" = callPackage @@ -46865,6 +46868,7 @@ self: { homepage = "https://github.com/mocnik-science/chorale"; description = "A module containing basic functions that the prelude does not offer"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chp" = callPackage @@ -55888,6 +55892,7 @@ self: { homepage = "https://github.com/stefan-j/cplex-haskell"; description = "high-level CPLEX interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {cplex = null;}; "cplusplus-th" = callPackage @@ -68701,6 +68706,7 @@ self: { jailbreak = true; description = "(Fast) Dynamic Time Warping"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dual-tree_0_2_0_5" = callPackage @@ -78392,6 +78398,7 @@ self: { homepage = "http://github.com/deech/fltkhs-fluid-demos"; description = "Fltkhs Fluid Demos"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fltkhs-fluid-examples" = callPackage @@ -81868,6 +81875,7 @@ self: { ]; description = "stringly-named getters for generic data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "generic-aeson_0_2_0_2" = callPackage @@ -88640,6 +88648,7 @@ self: { homepage = "https://github.com/Teaspot-Studio/gore-and-ash-network"; description = "Core module for Gore&Ash engine with low level network API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gore-and-ash-sdl" = callPackage @@ -88681,6 +88690,7 @@ self: { homepage = "https://github.com/Teaspot-Studio/gore-and-ash-sync"; description = "Gore&Ash module for high level network synchronization"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gpah" = callPackage @@ -97015,6 +97025,7 @@ self: { homepage = "http://github.com/bjpop/haskell-mpi"; description = "Distributed parallel programming in Haskell using MPI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {open-pal = null; open-rte = null; inherit (pkgs) openmpi;}; "haskell-names_0_4_1" = callPackage @@ -100181,6 +100192,8 @@ self: { pname = "haxl"; version = "0.3.1.0"; sha256 = "fba961b0f3a9a9b6f7cf6ac24689d48fb8404d79ec86a36c2784f3f45d06669a"; + revision = "1"; + editedCabalFile = "223c00b89badaca423837b8a831c90e59f2826d359dccf22500e1fbbb96d7f07"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -103837,6 +103850,32 @@ self: { license = "GPL"; }) {}; + "highlighting-kate_0_6_2" = callPackage + ({ mkDerivation, base, blaze-html, bytestring, containers, Diff + , directory, filepath, mtl, parsec, pcre-light, process + , utf8-string + }: + mkDerivation { + pname = "highlighting-kate"; + version = "0.6.2"; + sha256 = "728f10ccba6dfa1604398ae527520d2debeef870472fe104c2bf0714c513b411"; + configureFlags = [ "-fpcre-light" ]; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base blaze-html bytestring containers mtl parsec pcre-light + utf8-string + ]; + executableHaskellDepends = [ base blaze-html containers filepath ]; + testHaskellDepends = [ + base blaze-html containers Diff directory filepath process + ]; + homepage = "http://github.com/jgm/highlighting-kate"; + description = "Syntax highlighting"; + license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hills" = callPackage ({ mkDerivation, array, base, bytestring, directory, filepath , optparse-applicative, text, transformers @@ -124200,6 +124239,7 @@ self: { homepage = "https://github.com/NICTA/javaclass"; description = "Java class files"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "javasf" = callPackage @@ -126535,6 +126575,7 @@ self: { ]; description = "ElasticSearch scribe for the Katip logging framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "katt" = callPackage @@ -133998,7 +134039,7 @@ self: { homepage = "https://github.com/ucsd-progsys/liquid-fixpoint"; description = "Predicate Abstraction-based Horn-Clause/Implication Constraint Solver"; license = stdenv.lib.licenses.bsd3; - maintainers = with stdenv.lib.maintainers; [ gridaphobe ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ocaml; inherit (pkgs) z3;}; "liquidhaskell" = callPackage @@ -134041,7 +134082,7 @@ self: { homepage = "http://goto.ucsd.edu/liquidhaskell"; description = "Liquid Types for Haskell"; license = stdenv.lib.licenses.bsd3; - maintainers = with stdenv.lib.maintainers; [ gridaphobe ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) z3;}; "lispparser" = callPackage @@ -140939,6 +140980,7 @@ self: { homepage = "https://github.com/mrkkrp/mida"; description = "Language for algorithmic generation of MIDI files"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "midair" = callPackage @@ -145101,6 +145143,7 @@ self: { homepage = "https://github.com/scmu/mrm"; description = "Modular Refiable Matching, first-class matches"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ms" = callPackage @@ -164644,6 +164687,7 @@ self: { homepage = "https://github.com/chrisdone/present"; description = "Make presentations for data types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "press" = callPackage @@ -165995,15 +166039,18 @@ self: { }) {}; "prometheus" = callPackage - ({ mkDerivation, atomic-primops, base, bytestring, containers, mtl - , text, transformers + ({ mkDerivation, atomic-primops, base, bytestring, containers + , http-types, mtl, text, transformers, wai, warp }: mkDerivation { pname = "prometheus"; - version = "0.1.0.2"; - sha256 = "c8b651840fa76c328de96f37b4415edbe7379fca2a881ce823bfb35644d25519"; + version = "0.1.1"; + sha256 = "07454399e722968dfa89a0a450b47000158faf04e215ad0dd5617c4113e48a82"; + revision = "1"; + editedCabalFile = "68587df8835a894134e468240589efe668b14b60135f1333565769dba7effc15"; libraryHaskellDepends = [ - atomic-primops base bytestring containers mtl text transformers + atomic-primops base bytestring containers http-types mtl text + transformers wai warp ]; homepage = "http://github.com/LukeHoersten/prometheus#readme"; description = "Prometheus Haskell Client"; @@ -179400,6 +179447,7 @@ self: { homepage = "https://github.com/davnils/sde-solver"; description = "Distributed SDE solver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "sdf2p1-parser" = callPackage @@ -179585,7 +179633,7 @@ self: { description = "A software defined radio library"; license = stdenv.lib.licenses.bsd3; platforms = [ "x86_64-darwin" "x86_64-linux" ]; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "seacat" = callPackage @@ -180522,6 +180570,7 @@ self: { homepage = "https://github.com/hspec/sensei#readme"; description = "Automatically run Hspec tests on file modifications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sensenet" = callPackage @@ -182391,8 +182440,8 @@ self: { pname = "servant-yaml"; version = "0.1.0.0"; sha256 = "c917d9b046b06a9c4386f743a78142c27cf7f0ec1ad8562770ab9828f2ee3204"; - revision = "2"; - editedCabalFile = "3ef09bca6255336c4a1dfd58b27a0d24957ea31e42d51d3b9334790518818ed0"; + revision = "3"; + editedCabalFile = "719641bbee8e5176d08614687070c45058c8b5a3ac6fcb1037599f6a9b75df58"; libraryHaskellDepends = [ base bytestring http-media servant yaml ]; @@ -188495,6 +188544,7 @@ self: { homepage = "http://github.com/statusfailed/snaplet-riak"; description = "A Snaplet for the Riak database"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-sass" = callPackage @@ -189691,6 +189741,7 @@ self: { ]; description = "3d math including quaternions/euler angles/dcms and utility functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "spawn" = callPackage @@ -198624,7 +198675,7 @@ self: { testSystemDepends = [ z3 ]; description = "Generate test-suites from refinement types"; license = stdenv.lib.licenses.mit; - maintainers = with stdenv.lib.maintainers; [ gridaphobe ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) z3;}; "task" = callPackage @@ -203794,6 +203845,7 @@ self: { ]; description = "A mutable hashmap, implicitly indexed by UTCTime"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "timeout" = callPackage @@ -206774,6 +206826,7 @@ self: { homepage = "https://github.com/lysxia/twentyseven"; description = "Rubik's cube solver"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twhs" = callPackage @@ -224620,6 +224673,7 @@ self: { ]; description = "YesQL-style SQL database abstraction"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod_1_4_1_1" = callPackage From daa03b0229ea77c34530cbadf60b4126a979fae5 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 18 Mar 2016 08:00:36 +0100 Subject: [PATCH 179/678] configuration-hackage2nix.yaml: update list of broken Haskell builds @gridaphobe, this affects your packages 'liquid-fixpoint', 'liquidhaskell', and 'target'. --- .../configuration-hackage2nix.yaml | 35 ++++++++++++++++--- 1 file changed, 30 insertions(+), 5 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index 824d691ca3a..5044ff45308 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -79,10 +79,7 @@ package-maintainers: - hledger-diff gridaphobe: - ghc-srcspan-plugin - - liquid-fixpoint - - liquidhaskell - located-base - - target jb55: - skeletons - cased @@ -260,6 +257,7 @@ dont-distribute-packages: archiver: [ i686-linux, x86_64-darwin, x86_64-linux ] archlinux-web: [ i686-linux, x86_64-darwin, x86_64-linux ] archlinux: [ i686-linux, x86_64-darwin, x86_64-linux ] + arena: [ i686-linux, x86_64-darwin, x86_64-linux ] arff: [ i686-linux, x86_64-darwin, x86_64-linux ] arghwxhaskell: [ x86_64-darwin ] argon2: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -463,6 +461,7 @@ dont-distribute-packages: Blobs: [ i686-linux, x86_64-darwin, x86_64-linux ] blogination: [ i686-linux, x86_64-darwin, x86_64-linux ] BlogLiterately-diagrams: [ x86_64-darwin ] + bloodhound-amazonka-auth: [ i686-linux, x86_64-darwin, x86_64-linux ] bloodhound: [ i686-linux, x86_64-darwin, x86_64-linux ] bloxorz: [ x86_64-darwin ] blubber: [ x86_64-darwin ] @@ -472,6 +471,7 @@ dont-distribute-packages: board-games: [ i686-linux, x86_64-darwin, x86_64-linux ] bogre-banana: [ i686-linux, x86_64-darwin, x86_64-linux ] bond-haskell-compiler: [ i686-linux, x86_64-darwin, x86_64-linux ] + bond-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] bond: [ i686-linux, x86_64-darwin, x86_64-linux ] boolean-normal-forms: [ i686-linux, x86_64-darwin, x86_64-linux ] boolsimplifier: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -600,6 +600,7 @@ dont-distribute-packages: chell-hunit: [ i686-linux, x86_64-darwin, x86_64-linux ] chevalier-common: [ i686-linux, x86_64-darwin, x86_64-linux ] Chitra: [ i686-linux, x86_64-darwin, x86_64-linux ] + chorale: [ i686-linux, x86_64-darwin, x86_64-linux ] chp-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] chp-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] chp-spec: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -744,6 +745,7 @@ dont-distribute-packages: court: [ i686-linux, x86_64-darwin, x86_64-linux ] CPBrainfuck: [ i686-linux, x86_64-darwin, x86_64-linux ] cpio-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + cplex-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] cplusplus-th: [ i686-linux, x86_64-darwin, x86_64-linux ] cpuperf: [ i686-linux, x86_64-darwin, x86_64-linux ] cpython: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -965,6 +967,7 @@ dont-distribute-packages: dtd-text: [ i686-linux, x86_64-darwin, x86_64-linux ] dtd-types: [ i686-linux, x86_64-darwin, x86_64-linux ] dtd: [ i686-linux, x86_64-darwin, x86_64-linux ] + dtw: [ i686-linux, x86_64-darwin, x86_64-linux ] duplo: [ i686-linux, x86_64-darwin, x86_64-linux ] Dust-crypto: [ i686-linux, x86_64-darwin, x86_64-linux ] Dust-tools-pcap: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -1142,6 +1145,7 @@ dont-distribute-packages: flowlocks-framework: [ i686-linux, x86_64-darwin, x86_64-linux ] flowsim: [ i686-linux, x86_64-darwin, x86_64-linux ] fltkhs-demos: [ i686-linux, x86_64-darwin, x86_64-linux ] + fltkhs-fluid-demos: [ i686-linux, x86_64-darwin, x86_64-linux ] fltkhs-hello-world: [ i686-linux, x86_64-darwin, x86_64-linux ] fluidsynth: [ x86_64-darwin ] FM-SBLEX: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -1237,6 +1241,7 @@ dont-distribute-packages: general-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] GeneralTicTacToe: [ i686-linux, x86_64-darwin, x86_64-linux ] generators: [ i686-linux, x86_64-darwin, x86_64-linux ] + generic-accessors: [ i686-linux, x86_64-darwin, x86_64-linux ] generic-church: [ i686-linux, x86_64-darwin, x86_64-linux ] generic-storable: [ i686-linux, x86_64-darwin, x86_64-linux ] generic-xml: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -1358,6 +1363,8 @@ dont-distribute-packages: gopherbot: [ i686-linux, x86_64-darwin, x86_64-linux ] gore-and-ash-demo: [ i686-linux, x86_64-darwin, x86_64-linux ] gore-and-ash-glfw: [ x86_64-darwin ] + gore-and-ash-network: [ i686-linux, x86_64-darwin, x86_64-linux ] + gore-and-ash-sync: [ i686-linux, x86_64-darwin, x86_64-linux ] gpah: [ i686-linux, x86_64-darwin, x86_64-linux ] GPipe-Collada: [ i686-linux, x86_64-darwin, x86_64-linux ] GPipe-Examples: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -1572,6 +1579,7 @@ dont-distribute-packages: haskell-gi-base: [ i686-linux ] haskell-gi: [ i686-linux, x86_64-darwin ] haskell-mpfr: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-mpi: [ x86_64-darwin ] haskell-names: [ i686-linux, x86_64-darwin, x86_64-linux ] haskell-openflow: [ i686-linux, x86_64-darwin, x86_64-linux ] haskell-pdf-presenter: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -2170,6 +2178,7 @@ dont-distribute-packages: java-bridge-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] java-bridge: [ i686-linux, x86_64-darwin, x86_64-linux ] java-reflect: [ i686-linux, x86_64-darwin, x86_64-linux ] + javaclass: [ i686-linux, x86_64-darwin, x86_64-linux ] javasf: [ i686-linux, x86_64-darwin, x86_64-linux ] javav: [ i686-linux, x86_64-darwin, x86_64-linux ] jespresso: [ i686-linux, x86_64-linux ] @@ -2207,6 +2216,7 @@ dont-distribute-packages: kansas-lava-shake: [ i686-linux, x86_64-darwin, x86_64-linux ] kansas-lava: [ i686-linux, x86_64-darwin, x86_64-linux ] karakuri: [ i686-linux, x86_64-darwin, x86_64-linux ] + katip-elasticsearch: [ i686-linux, x86_64-darwin, x86_64-linux ] katt: [ i686-linux, x86_64-darwin, x86_64-linux ] kazura-queue: [ x86_64-linux ] keera-hails-mvc-environment-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -2381,6 +2391,8 @@ dont-distribute-packages: lio-eci11: [ i686-linux, x86_64-darwin, x86_64-linux ] lio-fs: [ x86_64-darwin ] lio-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + liquid-fixpoint: [ i686-linux, x86_64-darwin, x86_64-linux ] + liquidhaskell: [ i686-linux, x86_64-darwin, x86_64-linux ] list-t-html-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] listlike-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] literals: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -2523,6 +2535,7 @@ dont-distribute-packages: MHask: [ i686-linux, x86_64-darwin, x86_64-linux ] Michelangelo: [ i686-linux, x86_64-darwin, x86_64-linux ] microlens-aeson: [ i686-linux ] + mida: [ i686-linux, x86_64-darwin, x86_64-linux ] midi-alsa: [ x86_64-darwin ] midimory: [ x86_64-darwin ] midisurface: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -2603,6 +2616,7 @@ dont-distribute-packages: mprover: [ i686-linux, x86_64-darwin, x86_64-linux ] mps: [ i686-linux, x86_64-darwin, x86_64-linux ] mpvguihs: [ i686-linux, x86_64-darwin, x86_64-linux ] + mrm: [ i686-linux, x86_64-darwin, x86_64-linux ] msgpack-idl: [ i686-linux, x86_64-darwin, x86_64-linux ] msh: [ i686-linux, x86_64-darwin, x86_64-linux ] msi-kb-backlit: [ x86_64-darwin ] @@ -2894,6 +2908,7 @@ dont-distribute-packages: plot-gtk-ui: [ x86_64-darwin ] plot-gtk3: [ x86_64-darwin ] plot-gtk: [ x86_64-darwin ] + Plot-ho-matic: [ i686-linux, x86_64-darwin, x86_64-linux ] Plot-ho-matic: [ x86_64-darwin ] plot-lab: [ x86_64-darwin ] plot: [ x86_64-darwin ] @@ -2949,6 +2964,7 @@ dont-distribute-packages: prelude-generalize: [ i686-linux, x86_64-darwin, x86_64-linux ] prelude-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] preprocess-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + present: [ i686-linux, x86_64-darwin, x86_64-linux ] press: [ i686-linux, x86_64-darwin, x86_64-linux ] primitive-simd: [ i686-linux, x86_64-darwin, x86_64-linux ] PrimitiveArray: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -2984,6 +3000,7 @@ dont-distribute-packages: propane: [ i686-linux, x86_64-darwin, x86_64-linux ] Proper: [ i686-linux, x86_64-darwin, x86_64-linux ] proplang: [ i686-linux, x86_64-darwin, x86_64-linux ] + proteaaudio: [ i686-linux, x86_64-darwin, x86_64-linux ] proteaaudio: [ x86_64-darwin ] protobuf-native: [ i686-linux, x86_64-darwin, x86_64-linux ] protocol-buffers-descriptor-fork: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3252,16 +3269,17 @@ dont-distribute-packages: scrobble: [ i686-linux, x86_64-darwin, x86_64-linux ] scrz: [ i686-linux, x86_64-darwin, x86_64-linux ] Scurry: [ i686-linux, x86_64-darwin, x86_64-linux ] + sde-solver: [ x86_64-darwin ] SDL-gfx: [ x86_64-darwin ] SDL-image: [ x86_64-darwin ] SDL-mixer: [ x86_64-darwin ] SDL-mpeg: [ x86_64-darwin ] SDL-ttf: [ x86_64-darwin ] + sdl2-compositor: [ i686-linux, x86_64-darwin, x86_64-linux ] sdl2-compositor: [ x86_64-darwin ] sdl2-image: [ i686-linux, x86_64-darwin, x86_64-linux ] sdl2-ttf: [ x86_64-darwin ] - sdr: [ x86_64-darwin ] - sdr: [ x86_64-linux ] + sdr: [ x86_64-darwin, x86_64-linux ] seacat: [ i686-linux, x86_64-darwin, x86_64-linux ] search: [ i686-linux, x86_64-darwin, x86_64-linux ] secdh: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3281,6 +3299,7 @@ dont-distribute-packages: semigroups-actions: [ i686-linux, x86_64-darwin, x86_64-linux ] semiring: [ i686-linux, x86_64-darwin, x86_64-linux ] semver-range: [ i686-linux, x86_64-darwin, x86_64-linux ] + sensei: [ i686-linux, x86_64-darwin, x86_64-linux ] sensenet: [ i686-linux, x86_64-darwin, x86_64-linux ] sentry: [ i686-linux, x86_64-darwin, x86_64-linux ] seqaid: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3392,6 +3411,7 @@ dont-distribute-packages: snaplet-oauth: [ i686-linux, x86_64-darwin, x86_64-linux ] snaplet-redson: [ i686-linux, x86_64-darwin, x86_64-linux ] snaplet-rest: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-riak: [ i686-linux, x86_64-darwin, x86_64-linux ] snaplet-sedna: [ i686-linux, x86_64-darwin, x86_64-linux ] snaplet-tasks: [ i686-linux, x86_64-darwin, x86_64-linux ] snaplet-typed-sessions: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3429,6 +3449,7 @@ dont-distribute-packages: sparsebit: [ i686-linux, x86_64-darwin, x86_64-linux ] sparsecheck: [ i686-linux, x86_64-darwin, x86_64-linux ] spata: [ i686-linux, x86_64-darwin, x86_64-linux ] + spatial-math: [ i686-linux, x86_64-darwin, x86_64-linux ] special-functors: [ i686-linux, x86_64-darwin, x86_64-linux ] specialize-th: [ i686-linux, x86_64-darwin, x86_64-linux ] sphero: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3558,6 +3579,7 @@ dont-distribute-packages: tamarin-prover-theory: [ i686-linux, x86_64-darwin, x86_64-linux ] tamarin-prover-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] tamarin-prover: [ i686-linux, x86_64-darwin, x86_64-linux ] + target: [ i686-linux, x86_64-darwin, x86_64-linux ] task-distribution: [ i686-linux, x86_64-darwin, x86_64-linux ] task: [ i686-linux, x86_64-darwin, x86_64-linux ] taskpool: [ x86_64-darwin ] @@ -3630,6 +3652,7 @@ dont-distribute-packages: time-series: [ i686-linux, x86_64-darwin, x86_64-linux ] time-w3c: [ i686-linux, x86_64-darwin, x86_64-linux ] timecalc: [ i686-linux, x86_64-darwin, x86_64-linux ] + timemap: [ i686-linux, x86_64-darwin, x86_64-linux ] timeout: [ i686-linux, x86_64-darwin, x86_64-linux ] timeparsers: [ i686-linux, x86_64-darwin, x86_64-linux ] TimePiece: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3685,6 +3708,7 @@ dont-distribute-packages: twentefp-eventloop-trees: [ i686-linux, x86_64-darwin, x86_64-linux ] twentefp-rosetree: [ i686-linux, x86_64-darwin, x86_64-linux ] twentefp: [ x86_64-darwin ] + twentyseven: [ i686-linux, x86_64-darwin, x86_64-linux ] twhs: [ i686-linux, x86_64-darwin, x86_64-linux ] twidge: [ i686-linux, x86_64-darwin, x86_64-linux ] twilight-stm: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3994,6 +4018,7 @@ dont-distribute-packages: yate: [ i686-linux, x86_64-darwin, x86_64-linux ] yavie: [ i686-linux, x86_64-darwin, x86_64-linux ] ycextra: [ i686-linux, x86_64-darwin, x86_64-linux ] + yeshql: [ i686-linux, x86_64-darwin, x86_64-linux ] yesod-angular-ui: [ i686-linux, x86_64-darwin, x86_64-linux ] yesod-auth-ldap: [ i686-linux, x86_64-darwin, x86_64-linux ] yesod-auth-pam: [ i686-linux, x86_64-linux, x86_64-darwin ] From 23cdd8e940ae801394467bf63bd5b04094e47600 Mon Sep 17 00:00:00 2001 From: "Rommel M. Martinez" Date: Fri, 18 Mar 2016 15:17:45 +0800 Subject: [PATCH 180/678] emem: 0.2.13 -> 0.2.14 --- 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 5e40a329122..1077adb1fce 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.13"; + version = "0.2.14"; name = "${pname}-${version}"; inherit jdk; src = fetchurl { url = "https://github.com/ebzzry/${pname}/releases/download/v${version}/${pname}.jar"; - sha256 = "0c5c488jsh15ysdmqkq0qmdvz41y12phlgjpj8jf0dzh8jc35p80"; + sha256 = "15q2n4a9m8zqi0wb7dyf3xiw78qvvz5zhxyff38xak5n7bvs51jc"; }; buildInputs = [ ]; From d1e471dbaf6696762c50f9fa96ee99dfebe29119 Mon Sep 17 00:00:00 2001 From: Ryan Scheel Date: Fri, 18 Mar 2016 02:31:57 -0700 Subject: [PATCH 181/678] Remove dead link The link being pointed to belongs to a domain that no longer exists. Just a bunch of spam there now. --- pkgs/development/web/nodejs/v5.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/development/web/nodejs/v5.nix b/pkgs/development/web/nodejs/v5.nix index 6e9b0bbf49e..e857e93a09a 100644 --- a/pkgs/development/web/nodejs/v5.nix +++ b/pkgs/development/web/nodejs/v5.nix @@ -3,7 +3,6 @@ }: # nodejs 5.0.0 can't be built on armv5tel. Armv6 with FPU, minimum I think. -# Related post: http://zo0ok.com/techfindings/archives/1820 assert stdenv.system != "armv5tel-linux"; let From 75af59f8eb05aced566219bc2976304a87866ae0 Mon Sep 17 00:00:00 2001 From: "Bruno Bzeznik Bruno.Bzeznik@imag.fr" Date: Fri, 18 Mar 2016 10:16:31 +0100 Subject: [PATCH 182/678] scotch: init at 6.0.4 --- .../science/math/scotch/default.nix | 36 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/applications/science/math/scotch/default.nix diff --git a/pkgs/applications/science/math/scotch/default.nix b/pkgs/applications/science/math/scotch/default.nix new file mode 100644 index 00000000000..2e928bc8f34 --- /dev/null +++ b/pkgs/applications/science/math/scotch/default.nix @@ -0,0 +1,36 @@ +{ stdenv, fetchurl, bison, openmpi, flex, zlib}: + +stdenv.mkDerivation rec { + version = "6.0.4"; + name = "scotch-${version}"; + src_name = "scotch_${version}"; + + buildInputs = [ bison openmpi flex zlib ]; + + src = fetchurl { + url = "http://gforge.inria.fr/frs/download.php/file/34618/${src_name}.tar.gz"; + sha256 = "f53f4d71a8345ba15e2dd4e102a35fd83915abf50ea73e1bf6efe1bc2b4220c7"; + }; + + sourceRoot = "${src_name}/src"; + + preConfigure = '' + ln -s Make.inc/Makefile.inc.x86-64_pc_linux2 Makefile.inc + ''; + + buildFlags = [ "scotch ptscotch" ]; + installFlags = [ "prefix=\${out}" ]; + + meta = { + description = "Graph and mesh/hypergraph partitioning, graph clustering, and sparse matrix ordering"; + longDescription = '' + Scotch is a software package for graph and mesh/hypergraph partitioning, graph clustering, + and sparse matrix ordering. + ''; + homepage = "http://www.labri.fr/perso/pelegrin/scotch"; + license = stdenv.lib.licenses.cecill-c; + maintainers = [ stdenv.lib.maintainers.bzizou ]; + platforms = stdenv.lib.platforms.linux; + }; +} + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index df56303c774..4f4d6d35590 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15370,6 +15370,8 @@ let withX = true; }; + scotch = callPackage ../applications/science/math/scotch { }; + msieve = callPackage ../applications/science/math/msieve { }; weka = callPackage ../applications/science/math/weka { }; From de1138067938fa3f1bd4cd759ba9a3940bb4c9b6 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 18 Mar 2016 10:25:37 +0100 Subject: [PATCH 183/678] nixos/modules/services/x11/xserver.nix: fix minor typo --- nixos/modules/services/x11/xserver.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/x11/xserver.nix b/nixos/modules/services/x11/xserver.nix index cfe5e7f960c..abbe00cc888 100644 --- a/nixos/modules/services/x11/xserver.nix +++ b/nixos/modules/services/x11/xserver.nix @@ -160,7 +160,7 @@ in [ ''' Identifier "Trackpoint Wheel Emulation" MatchProduct "ThinkPad USB Keyboard with TrackPoint" - Option "EmulateWheel" "true + Option "EmulateWheel" "true" Option "EmulateWheelButton" "2" Option "Emulate3Buttons" "false" ''' From eadf39a16cf3f8c1fa7cf57976045456155b7e70 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 18 Mar 2016 10:10:28 +0100 Subject: [PATCH 184/678] gnupg-2.1: drop unnecessary autoreconf hook from build This change also prevents gnupg 2.1 from considering itself as an unstable development version, which it is not. --- pkgs/tools/security/gnupg/21.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/security/gnupg/21.nix b/pkgs/tools/security/gnupg/21.nix index dc86c6e420e..b7231454c45 100644 --- a/pkgs/tools/security/gnupg/21.nix +++ b/pkgs/tools/security/gnupg/21.nix @@ -1,5 +1,5 @@ { fetchurl, stdenv, pkgconfig, libgcrypt, libassuan, libksba, libiconv, npth -, autoreconfHook, gettext, texinfo, pcsclite +, gettext, texinfo, pcsclite # Each of the dependencies below are optional. # Gnupg can be built without them at the cost of reduced functionality. @@ -27,8 +27,7 @@ stdenv.mkDerivation rec { postConfigure = "substituteAllInPlace tools/gpgkey2ssh.c"; buildInputs = [ - pkgconfig libgcrypt libassuan libksba libiconv npth - autoreconfHook gettext texinfo + pkgconfig libgcrypt libassuan libksba libiconv npth gettext texinfo readline libusb gnutls adns openldap zlib bzip2 ]; From ab450f8477e30b211798de97e197c2e77799acd6 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 18 Mar 2016 10:12:15 +0100 Subject: [PATCH 185/678] gnupg-2.1: add myself as maintainer plus minor cosmetic --- pkgs/tools/security/gnupg/21.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/tools/security/gnupg/21.nix b/pkgs/tools/security/gnupg/21.nix index b7231454c45..0af041e63df 100644 --- a/pkgs/tools/security/gnupg/21.nix +++ b/pkgs/tools/security/gnupg/21.nix @@ -20,24 +20,24 @@ stdenv.mkDerivation rec { sha256 = "06mn2viiwsyq991arh5i5fhr9jyxq2bi0jkdj7ndfisxihngpc5p"; }; - postPatch = stdenv.lib.optionalString stdenv.isLinux '' - sed -i 's,"libpcsclite\.so[^"]*","${pcsclite}/lib/libpcsclite.so",g' scd/scdaemon.c - ''; #" fix Emacs syntax highlighting :-( - - postConfigure = "substituteAllInPlace tools/gpgkey2ssh.c"; - buildInputs = [ pkgconfig libgcrypt libassuan libksba libiconv npth gettext texinfo readline libusb gnutls adns openldap zlib bzip2 ]; + postPatch = stdenv.lib.optionalString stdenv.isLinux '' + sed -i 's,"libpcsclite\.so[^"]*","${pcsclite}/lib/libpcsclite.so",g' scd/scdaemon.c + ''; #" fix Emacs syntax highlighting :-( + configureFlags = optional x11Support "--with-pinentry-pgm=${pinentry}/bin/pinentry"; + postConfigure = "substituteAllInPlace tools/gpgkey2ssh.c"; + meta = with stdenv.lib; { homepage = http://gnupg.org; description = "a complete and free implementation of the OpenPGP standard"; license = licenses.gpl3Plus; - maintainers = with maintainers; [ wkennington ]; + maintainers = with maintainers; [ wkennington simons ]; platforms = platforms.all; }; } From 9c10ac957dd77e22e9c4f29cd54652d9547c624a Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 18 Mar 2016 10:12:58 +0100 Subject: [PATCH 186/678] Update our default version of GnuPG from 2.0.x to 2.1.x. This patch closes https://github.com/NixOS/nixpkgs/issues/4888. --- pkgs/top-level/all-packages.nix | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f8e5ecbd6a5..3bbcb5e826e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1780,17 +1780,11 @@ let gnupatch = callPackage ../tools/text/gnupatch { }; gnupg1orig = callPackage ../tools/security/gnupg/1.nix { }; - gnupg1compat = callPackage ../tools/security/gnupg/1compat.nix { }; - - # use config.packageOverrides if you prefer original gnupg1 - gnupg1 = gnupg1compat; - + gnupg1 = gnupg1compat; # use config.packageOverrides if you prefer original gnupg1 gnupg20 = callPackage ../tools/security/gnupg/20.nix { }; - - gnupg21 = lowPrio (callPackage ../tools/security/gnupg/21.nix { }); - - gnupg = gnupg20; + gnupg21 = callPackage ../tools/security/gnupg/21.nix { }; + gnupg = gnupg21; gnuplot = callPackage ../tools/graphics/gnuplot { qt = qt4; }; From 5391882ebd781149e213e8817fba6ac3c503740c Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 18 Mar 2016 10:31:40 +0100 Subject: [PATCH 187/678] services.xserver.startGnuPGAgent: remove obsolete NixOS option GnuPG 2.1.x changed the way the gpg-agent works, and that new approach no longer requires (or even supports) the "start everything as a child of the agent" scheme we've implemented in NixOS for older versions. To configure the gpg-agent for your X session, add the following code to ~/.xsession or some other appropriate place that's sourced at start-up: gpg-connect-agent /bye GPG_TTY=$(tty) export GPG_TTY If you want to use gpg-agent for SSH, too, also add the settings unset SSH_AGENT_PID export SSH_AUTH_SOCK="${HOME}/.gnupg/S.gpg-agent.ssh" and make sure that enable-ssh-support is included in your ~/.gnupg/gpg-agent.conf. The gpg-agent(1) man page has more details about this subject, i.e. in the "EXAMPLES" section. --- nixos/modules/config/gnu.nix | 1 - nixos/modules/rename.nix | 1 + .../services/x11/display-managers/default.nix | 11 ---------- nixos/modules/services/x11/xserver.nix | 20 +------------------ 4 files changed, 2 insertions(+), 31 deletions(-) diff --git a/nixos/modules/config/gnu.nix b/nixos/modules/config/gnu.nix index f8c35b440d1..ad0e35c8a63 100644 --- a/nixos/modules/config/gnu.nix +++ b/nixos/modules/config/gnu.nix @@ -37,7 +37,6 @@ with lib; services.openssh.enable = false; services.lshd.enable = true; programs.ssh.startAgent = false; - services.xserver.startGnuPGAgent = true; # TODO: GNU dico. # TODO: GNU Inetutils' inetd. diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix index 0de6ca758c1..c6a781b6f00 100644 --- a/nixos/modules/rename.nix +++ b/nixos/modules/rename.nix @@ -111,6 +111,7 @@ with lib; (mkRemovedOptionModule [ "services" "openvpn" "enable" ]) (mkRemovedOptionModule [ "services" "printing" "cupsFilesConf" ]) (mkRemovedOptionModule [ "services" "printing" "cupsdConf" ]) + (mkRemovedOptionModule [ "services" "xserver" "startGnuPGAgent" ]) ]; } diff --git a/nixos/modules/services/x11/display-managers/default.nix b/nixos/modules/services/x11/display-managers/default.nix index 533b03aff08..7dffdfc2b36 100644 --- a/nixos/modules/services/x11/display-managers/default.nix +++ b/nixos/modules/services/x11/display-managers/default.nix @@ -49,17 +49,6 @@ let fi ''} - ${optionalString cfg.startGnuPGAgent '' - if test -z "$SSH_AUTH_SOCK"; then - # Restart this script as a child of the GnuPG agent. - exec "${pkgs.gnupg}/bin/gpg-agent" \ - --enable-ssh-support --daemon \ - --pinentry-program "${pkgs.pinentry}/bin/pinentry-gtk-2" \ - --write-env-file "$HOME/.gpg-agent-info" \ - "$0" "$sessionType" - fi - ''} - # Handle being called by kdm. if test "''${1:0:1}" = /; then eval exec "$1"; fi diff --git a/nixos/modules/services/x11/xserver.nix b/nixos/modules/services/x11/xserver.nix index abbe00cc888..0fcea6ce5e4 100644 --- a/nixos/modules/services/x11/xserver.nix +++ b/nixos/modules/services/x11/xserver.nix @@ -219,17 +219,6 @@ in ''; }; - startGnuPGAgent = mkOption { - type = types.bool; - default = false; - description = '' - Whether to start the GnuPG agent when you log in. The GnuPG agent - remembers private keys for you so that you don't have to type in - passphrases every time you make an SSH connection or sign/encrypt - data. Use ssh-add to add a key to the agent. - ''; - }; - startDbusSession = mkOption { type = types.bool; default = true; @@ -444,14 +433,7 @@ in in optional (driver != null) ({ inherit name; driverName = name; } // driver)); assertions = - [ { assertion = !(config.programs.ssh.startAgent && cfg.startGnuPGAgent); - message = - '' - The OpenSSH agent and GnuPG agent cannot be started both. Please - choose between ‘programs.ssh.startAgent’ and ‘services.xserver.startGnuPGAgent’. - ''; - } - { assertion = config.security.polkit.enable; + [ { assertion = config.security.polkit.enable; message = "X11 requires Polkit to be enabled (‘security.polkit.enable = true’)."; } ]; From 6c935046a75016e9f1e6b142ce23fa53cb5e31d4 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 18 Mar 2016 11:30:29 +0100 Subject: [PATCH 188/678] splix: revert of revert of "2.0.0 -> svn-r315 version update" This reverts commit e338d6a0fc1293c1d5b63d9e38e690526fc7d1b1. I originally reverted the update because it broke my Samsung printer. Now, it turns out that this issue can be fixed by deleting and then re-creating the printer in CUPS to update the driver. It's possible that Gutenprints 'cups-genppdupdates' could remedy the situation as well, but I had no chance to verify that since I don't use Gutenprint. Closes https://github.com/NixOS/nixpkgs/issues/13734. --- pkgs/misc/cups/drivers/splix/default.nix | 20 +++++++++---------- .../drivers/splix/splix-2.0.0-gcc45.patch | 18 ----------------- 2 files changed, 10 insertions(+), 28 deletions(-) delete mode 100644 pkgs/misc/cups/drivers/splix/splix-2.0.0-gcc45.patch diff --git a/pkgs/misc/cups/drivers/splix/default.nix b/pkgs/misc/cups/drivers/splix/default.nix index 532ef2a45d5..9a924e044d7 100644 --- a/pkgs/misc/cups/drivers/splix/default.nix +++ b/pkgs/misc/cups/drivers/splix/default.nix @@ -1,16 +1,16 @@ -{stdenv, fetchurl, cups, zlib}: - +{ stdenv, fetchsvn, fetchurl, cups, zlib }: +let rev = "315"; in stdenv.mkDerivation rec { - name = "splix-2.0.0"; - - src = fetchurl { - url = "mirror://sourceforge/splix/${name}.tar.bz2"; - sha256 = "0bwivrwwvh6hzvnycpzqs7a0capgycahc4s3v9ihx552fgy07xwp"; + name = "splix-svn-${rev}"; + src = fetchsvn { + # We build this from svn, because splix hasn't been in released in several years + # although the community has been adding some new printer models. + url = "svn://svn.code.sf.net/p/splix/code/splix"; + rev = "r${rev}"; + sha256 = "16wbm4xnz35ca3mw2iggf5f4jaxpyna718ia190ka6y4ah932jxl"; }; - patches = [ ./splix-2.0.0-gcc45.patch ]; - - preBuild='' + preBuild = '' makeFlags="V=1 DISABLE_JBIG=1 CUPSFILTER=$out/lib/cups/filter CUPSPPD=$out/share/cups/model" ''; diff --git a/pkgs/misc/cups/drivers/splix/splix-2.0.0-gcc45.patch b/pkgs/misc/cups/drivers/splix/splix-2.0.0-gcc45.patch deleted file mode 100644 index 5ccdcb2514c..00000000000 --- a/pkgs/misc/cups/drivers/splix/splix-2.0.0-gcc45.patch +++ /dev/null @@ -1,18 +0,0 @@ -Fixing build with gcc 4.5 - -http://bugs.gentoo.org/show_bug.cgi?id=318581 - -downloaded from -http://gentoo-overlays.zugaina.org/gentoo/portage/net-print/splix/files/splix-2.0.0-gcc45.patch - ---- splix-old/src/ppdfile.cpp -+++ splix-new/src/ppdfile.cpp -@@ -282,7 +282,7 @@ - * Opérateur d'assignation - * Assignment operator - */ --void PPDFile::Value::operator = (const PPDFile::Value::Value &val) -+void PPDFile::Value::operator = (const PPDFile::Value &val) - { - if (_preformatted) - delete[] _preformatted; From c523aeffde74a1d7a085fdecf52250a96736051e Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 18 Mar 2016 11:43:30 +0100 Subject: [PATCH 189/678] nixos/tests/firewall.nix: ping now succeeds in the firewall's default configuration --- nixos/tests/firewall.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/tests/firewall.nix b/nixos/tests/firewall.nix index 9faf19f0359..8f2cb27b60f 100644 --- a/nixos/tests/firewall.nix +++ b/nixos/tests/firewall.nix @@ -35,9 +35,9 @@ import ./make-test.nix ( { pkgs, ... } : { # Local connections should still work. $walled->succeed("curl -v http://localhost/ >&2"); - # Connections to the firewalled machine should fail. + # Connections to the firewalled machine should fail, but ping should succeed. $attacker->fail("curl --fail --connect-timeout 2 http://walled/ >&2"); - $attacker->fail("ping -c 1 walled >&2"); + $attacker->succeed("ping -c 1 walled >&2"); # Outgoing connections/pings should still work. $walled->succeed("curl -v http://attacker/ >&2"); From 9a2ee42f52002b54ee568a94bbd64d43010a5f3b Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 18 Mar 2016 12:00:39 +0100 Subject: [PATCH 190/678] Document the fact that the firewall allows pings by default in rl-1603.xml. --- nixos/doc/manual/release-notes/rl-1603.xml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/nixos/doc/manual/release-notes/rl-1603.xml b/nixos/doc/manual/release-notes/rl-1603.xml index 83057a44d0a..350025da7b0 100644 --- a/nixos/doc/manual/release-notes/rl-1603.xml +++ b/nixos/doc/manual/release-notes/rl-1603.xml @@ -262,6 +262,18 @@ services.syncthing = { + + + networking.firewall.allowPing is now enabled by + default. Users are encourarged to configure an approiate rate limit for + their machines using the Kernel interface at + /proc/sys/net/ipv4/icmp_ratelimit and + /proc/sys/net/ipv6/icmp/ratelimit or using the + firewall itself, i.e. by setting the NixOS option + networking.firewall.pingLimit. + + + From 27e23486bbfb1093d6d7eb4d051988d1eb9c4163 Mon Sep 17 00:00:00 2001 From: Sander van der Burg Date: Fri, 18 Mar 2016 12:06:01 +0000 Subject: [PATCH 191/678] fetchbower: quote parameter to prevent ambigious redirects if version specifiers have wildcards --- pkgs/build-support/fetchbower/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/build-support/fetchbower/default.nix b/pkgs/build-support/fetchbower/default.nix index 7c6b1a8a098..057beb999b2 100644 --- a/pkgs/build-support/fetchbower/default.nix +++ b/pkgs/build-support/fetchbower/default.nix @@ -1,7 +1,7 @@ { stdenv, fetch-bower, git }: name: version: target: outputHash: stdenv.mkDerivation { name = "${name}-${version}"; buildCommand = '' - out=$PWD/out fetch-bower ${name} ${version} ${target} + out=$PWD/out fetch-bower "${name}" "${version}" "${target}" cp -R out $out ''; outputHashMode = "recursive"; From c0239360a4502b03b180aa71dd6cf4ae5cc8f13e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Fri, 18 Mar 2016 09:11:51 -0300 Subject: [PATCH 192/678] gstreamermm 1.0: init at 1.4.3 --- .../libraries/gstreamer/default.nix | 2 ++ .../gstreamer/gstreamermm/default.nix | 29 +++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 pkgs/development/libraries/gstreamer/gstreamermm/default.nix diff --git a/pkgs/development/libraries/gstreamer/default.nix b/pkgs/development/libraries/gstreamer/default.nix index efdaa37eba5..81e5726fa94 100644 --- a/pkgs/development/libraries/gstreamer/default.nix +++ b/pkgs/development/libraries/gstreamer/default.nix @@ -3,6 +3,8 @@ rec { gstreamer = callPackage ./core { }; + gstreamermm = callPackage ./gstreamermm { }; + gst-plugins-base = callPackage ./base { inherit gstreamer; }; gst-plugins-good = callPackage ./good { inherit gst-plugins-base; }; diff --git a/pkgs/development/libraries/gstreamer/gstreamermm/default.nix b/pkgs/development/libraries/gstreamer/gstreamermm/default.nix new file mode 100644 index 00000000000..692310be0ba --- /dev/null +++ b/pkgs/development/libraries/gstreamer/gstreamermm/default.nix @@ -0,0 +1,29 @@ +{ stdenv, fetchurl, pkgconfig, file, glibmm, gst_all_1 }: + +let + ver_maj = "1.4"; + ver_min = "3"; +in +stdenv.mkDerivation rec { + name = "gstreamermm-${ver_maj}.${ver_min}"; + + src = fetchurl { + url = "mirror://gnome/sources/gstreamermm/${ver_maj}/${name}.tar.xz"; + sha256 = "0bj6and9b26d32bq90l8nx5wqh2ikkh8dm7qwxyxfdvmrzhixhgi"; + }; + + nativeBuildInputs = [ pkgconfig file ]; + + propagatedBuildInputs = [ glibmm gst_all_1.gst-plugins-base ]; + + enableParallelBuilding = true; + + meta = with stdenv.lib; { + description = "C++ interface for GStreamer"; + homepage = http://gstreamer.freedesktop.org/bindings/cplusplus.html; + license = licenses.lgpl21Plus; + maintainers = with maintainers; [ romildo ]; + platforms = platforms.unix; + }; + +} From a1dfa5f913537f0c86d040418016d2c320e85899 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Fri, 18 Mar 2016 08:24:58 -0400 Subject: [PATCH 193/678] atom: 1.5.4 -> 1.6.0 --- pkgs/applications/editors/atom/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/atom/default.nix b/pkgs/applications/editors/atom/default.nix index 8dc1e2d0c01..de857b7a8c6 100644 --- a/pkgs/applications/editors/atom/default.nix +++ b/pkgs/applications/editors/atom/default.nix @@ -16,11 +16,11 @@ let }; in stdenv.mkDerivation rec { name = "atom-${version}"; - version = "1.5.4"; + version = "1.6.0"; src = fetchurl { url = "https://github.com/atom/atom/releases/download/v${version}/atom-amd64.deb"; - sha256 = "0jnszf1v7xqhm2sy5wzm3f8aw7j1dnapnbw4d46bvshv9hbbzrn8"; + sha256 = "1izp2fwxk4rrksdbhcaj8fn0aazi7brid72n1vp7f49adrkqqc1b"; name = "${name}.deb"; }; From 9929ddd1a9b1cdcc1db0be73d0af82f89f08bc9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Fri, 18 Mar 2016 09:14:46 -0300 Subject: [PATCH 194/678] subtitleeditor: 0.41.0 -> 0.52.1 --- .../video/subtitleeditor/default.nix | 63 ++++++++++++------- .../subtitleeditor-0.52.1-build-fix.patch | 55 ++++++++++++++++ 2 files changed, 97 insertions(+), 21 deletions(-) create mode 100644 pkgs/applications/video/subtitleeditor/subtitleeditor-0.52.1-build-fix.patch diff --git a/pkgs/applications/video/subtitleeditor/default.nix b/pkgs/applications/video/subtitleeditor/default.nix index 7c42aebf2bc..c9655e2a4f2 100644 --- a/pkgs/applications/video/subtitleeditor/default.nix +++ b/pkgs/applications/video/subtitleeditor/default.nix @@ -1,44 +1,65 @@ -{ stdenv, fetchurl, desktop_file_utils, enchant, gnome, gstreamer, gstreamermm, - gst_plugins_base, gst_plugins_good, intltool, hicolor_icon_theme, - libsigcxx, libxmlxx, makeWrapper, xdg_utils, pkgconfig } : +{ stdenv, fetchurl, pkgconfig, autoconf, automake114x, intltool, + desktop_file_utils, enchant, gnome3, gst_all_1, hicolor_icon_theme, + libsigcxx, libxmlxx, xdg_utils, isocodes, wrapGAppsHook } : let - ver_maj = "0.41"; - ver_min = "0"; + ver_maj = "0.52"; + ver_min = "1"; in stdenv.mkDerivation rec { name = "subtitle-editor-${ver_maj}.${ver_min}"; - buildInputs = [ - desktop_file_utils enchant gnome.gtk gnome.gtkmm gstreamer gstreamermm - gst_plugins_base gst_plugins_good intltool hicolor_icon_theme libsigcxx libxmlxx - makeWrapper xdg_utils pkgconfig - ]; - src = fetchurl { url = "http://download.gna.org/subtitleeditor/${ver_maj}/subtitleeditor-${ver_maj}.${ver_min}.tar.gz"; - md5 = "3c21ccd8296001dcb1a02c62396db1b6"; + sha256 = "1m8j2i27kjaycvp09b0knp9in61jd2dj852hrx5hvkrby70mygjv"; }; + nativeBuildInputs = [ + autoconf automake114x pkgconfig intltool wrapGAppsHook + ]; + + buildInputs = [ + desktop_file_utils + enchant + gnome3.gtk + gnome3.gtkmm + gst_all_1.gstreamer + gst_all_1.gstreamermm + gst_all_1.gst-plugins-base + gst_all_1.gst-plugins-good + hicolor_icon_theme + libsigcxx + libxmlxx + xdg_utils + isocodes + ]; + + NIX_CFLAGS_COMPILE = "-std=c++11 -DDEBUG"; + + enableParallelBuilding = true; + doCheck = true; - postInstall = '' - wrapProgram "$out/bin/subtitleeditor" --prefix \ - GST_PLUGIN_SYSTEM_PATH ":" "$GST_PLUGIN_SYSTEM_PATH" \ + patches = [ ./subtitleeditor-0.52.1-build-fix.patch ]; + + preConfigure = '' + # ansi overrides -std, see src_configure + sed 's/\(CXXFLAGS\) -ansi/\1/' -i configure.ac configure ''; + configureFlags = [ "--disable-debug" ]; meta = { - description = "GTK+2 application to edit video subtitles"; + description = "GTK+3 application to edit video subtitles"; longDescription = '' - Subtitle Editor is a GTK+2 tool to edit subtitles for GNU/Linux/*BSD. It can be - used for new subtitles or as a tool to transform, edit, correct and refine - existing subtitle. This program also shows sound waves, which makes it easier - to synchronise subtitles to voices. + Subtitle Editor is a GTK+3 tool to edit subtitles for GNU/Linux/*BSD. It + can be used for new subtitles or as a tool to transform, edit, correct + and refine existing subtitle. This program also shows sound waves, which + makes it easier to synchronise subtitles to voices. ''; homepage = http://home.gna.org/subtitleeditor; - license = stdenv.lib.licenses.gpl3; + license = stdenv.lib.licenses.gpl3Plus; maintainers = [ stdenv.lib.maintainers.plcplc ]; platforms = stdenv.lib.platforms.linux; }; diff --git a/pkgs/applications/video/subtitleeditor/subtitleeditor-0.52.1-build-fix.patch b/pkgs/applications/video/subtitleeditor/subtitleeditor-0.52.1-build-fix.patch new file mode 100644 index 00000000000..9cce5d2d98f --- /dev/null +++ b/pkgs/applications/video/subtitleeditor/subtitleeditor-0.52.1-build-fix.patch @@ -0,0 +1,55 @@ +Fix build errors with gcc-4.9.3 -std=c++11 (after disabling -ansi) + +https://gna.org/bugs/?23714 + +https://bugs.gentoo.org/show_bug.cgi?id=550764 +https://bugs.gentoo.org/show_bug.cgi?id=566328 + +--- a/src/subtitleview.cc 2015-12-24 01:52:29.322622155 +0100 ++++ b/src/subtitleview.cc 2015-12-24 01:52:44.210491213 +0100 +@@ -1363,7 +1363,7 @@ + { + int num; + std::istringstream ss(event->string); +- bool is_num = ss >> num != 0; ++ bool is_num = static_cast(ss >> num) != 0; + // Update only if it's different + if(is_num != get_enable_search()) + set_enable_search(is_num); +--- a/src/utility.h 2015-12-24 01:49:42.205104858 +0100 ++++ b/src/utility.h 2015-12-24 01:50:23.387737071 +0100 +@@ -91,7 +91,7 @@ + std::istringstream s(src); + // return s >> dest != 0; + +- bool state = s >> dest != 0; ++ bool state = static_cast(s >> dest) != 0; + + if(!state) + se_debug_message(SE_DEBUG_UTILITY, "string:'%s'failed.", src.c_str()); +--- a/plugins/actions/dialoguize/dialoguize.cc 2015-12-24 01:06:24.125428454 +0100 ++++ b/plugins/actions/dialoguize/dialoguize.cc 2015-12-24 01:06:42.630277006 +0100 +@@ -23,7 +23,7 @@ + * along with this program. If not, see . + */ + +-#include ++#include + #include "extension/action.h" + #include "i18n.h" + #include "debug.h" +--- a/plugins/actions/documentmanagement/documentmanagement.old 2015-12-24 01:17:13.914730337 +0100 ++++ b/plugins/actions/documentmanagement/documentmanagement.cc 2015-12-24 01:17:23.339640430 +0100 +@@ -178,9 +178,9 @@ + + ui_id = ui->new_merge_id(); + +- #define ADD_UI(name) ui->add_ui(ui_id, "/menubar/menu-file/"name, name, name); +- #define ADD_OPEN_UI(name) ui->add_ui(ui_id, "/menubar/menu-file/menu-open/"name, name, name); +- #define ADD_SAVE_UI(name) ui->add_ui(ui_id, "/menubar/menu-file/menu-save/"name, name, name); ++ #define ADD_UI(name) ui->add_ui(ui_id, "/menubar/menu-file/" name, name, name); ++ #define ADD_OPEN_UI(name) ui->add_ui(ui_id, "/menubar/menu-file/menu-open/" name, name, name); ++ #define ADD_SAVE_UI(name) ui->add_ui(ui_id, "/menubar/menu-file/menu-save/" name, name, name); + + ADD_UI("new-document"); + ADD_OPEN_UI("open-document"); From 67b1acd9891ac31a8011314ced66e304229b37d7 Mon Sep 17 00:00:00 2001 From: Johannes Bornhold Date: Fri, 18 Mar 2016 14:23:14 +0100 Subject: [PATCH 195/678] mysql55: Allow to build on darwin --- pkgs/servers/sql/mysql/5.5.x.nix | 5 +++-- pkgs/top-level/all-packages.nix | 5 ++++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/sql/mysql/5.5.x.nix b/pkgs/servers/sql/mysql/5.5.x.nix index 8c288e54cd4..163deda7ae0 100644 --- a/pkgs/servers/sql/mysql/5.5.x.nix +++ b/pkgs/servers/sql/mysql/5.5.x.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchurl, cmake, bison, ncurses, openssl, readline, zlib, perl }: +{ stdenv, fetchurl, cmake, bison, ncurses, openssl, readline, zlib, perl +, cctools, CoreServices }: # Note: zlib is not required; MySQL can use an internal zlib. @@ -22,7 +23,7 @@ stdenv.mkDerivation rec { ''; buildInputs = [ cmake bison ncurses openssl readline zlib ] - ++ stdenv.lib.optional stdenv.isDarwin perl; + ++ stdenv.lib.optionals stdenv.isDarwin [ perl cctools CoreServices ]; enableParallelBuilding = true; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f8e5ecbd6a5..812f55c792b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9812,7 +9812,10 @@ let ps = procps; /* !!! Linux only */ }; - mysql55 = callPackage ../servers/sql/mysql/5.5.x.nix { }; + mysql55 = callPackage ../servers/sql/mysql/5.5.x.nix { + inherit (darwin) cctools; + inherit (darwin.apple_sdk.frameworks) CoreServices; + }; mysql = mariadb; libmysql = mysql.lib; From ea30f868140c70fe4157d4d935efa1f3b84a93bb Mon Sep 17 00:00:00 2001 From: Moritz Ulrich Date: Fri, 18 Mar 2016 14:50:49 +0100 Subject: [PATCH 196/678] btrbk: Init at 0.22.2 --- ...-Prefix-PATH-instead-of-resetting-it.patch | 39 ++++++++++++++ ...trbk-instead-of-unbound-variable-btr.patch | 25 +++++++++ pkgs/tools/backup/btrbk/default.nix | 52 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 4 files changed, 118 insertions(+) create mode 100644 pkgs/tools/backup/btrbk/btrbk-Prefix-PATH-instead-of-resetting-it.patch create mode 100644 pkgs/tools/backup/btrbk/btrbk-mail-Use-btrbk-instead-of-unbound-variable-btr.patch create mode 100644 pkgs/tools/backup/btrbk/default.nix diff --git a/pkgs/tools/backup/btrbk/btrbk-Prefix-PATH-instead-of-resetting-it.patch b/pkgs/tools/backup/btrbk/btrbk-Prefix-PATH-instead-of-resetting-it.patch new file mode 100644 index 00000000000..1ebb34ded9e --- /dev/null +++ b/pkgs/tools/backup/btrbk/btrbk-Prefix-PATH-instead-of-resetting-it.patch @@ -0,0 +1,39 @@ +From d5978c207f2b266165140dd21e9746ace5792daf Mon Sep 17 00:00:00 2001 +From: Moritz Ulrich +Date: Fri, 18 Mar 2016 14:01:22 +0100 +Subject: [PATCH] btrbk: Prefix PATH instead of resetting it. + +Some distros don't even install use /usr/bin, /sbin, etc. (notably +NixOS). Instead, they use PATH to specify which programs are available +to a given executable. + +This patch changes the behavior or `btrbk` so it extends PATH with its +own search paths instead of resetting it. This allows users and distros +to specify their own custom location for `btrfs` via `PATH`. +--- + btrbk | 9 +++++---- + 1 file changed, 5 insertions(+), 4 deletions(-) + +diff --git a/btrbk b/btrbk +index ab15858..0b91cbe 100755 +--- a/btrbk ++++ b/btrbk +@@ -2464,10 +2464,11 @@ sub exit_status + + MAIN: + { +- # set PATH instead of using absolute "/sbin/btrfs" (for now), as +- # different distros (and even different versions of btrfs-progs) +- # install the "btrfs" executable to different locations. +- $ENV{PATH} = '/sbin:/bin:/usr/sbin:/usr/bin'; ++ # Prefix PATH with /sbin etc. instead of using absolute ++ # "/sbin/btrfs" (for now), as different distros (and even different ++ # versions of btrfs-progs) install the "btrfs" executable to ++ # different locations. ++ $ENV{PATH} .= '/sbin:/bin:/usr/sbin:/usr/bin'; + + Getopt::Long::Configure qw(gnu_getopt); + $Data::Dumper::Sortkeys = 1; +-- +2.7.3 + diff --git a/pkgs/tools/backup/btrbk/btrbk-mail-Use-btrbk-instead-of-unbound-variable-btr.patch b/pkgs/tools/backup/btrbk/btrbk-mail-Use-btrbk-instead-of-unbound-variable-btr.patch new file mode 100644 index 00000000000..050f1a6c430 --- /dev/null +++ b/pkgs/tools/backup/btrbk/btrbk-mail-Use-btrbk-instead-of-unbound-variable-btr.patch @@ -0,0 +1,25 @@ +From 8abe8a915aa2d0c79c4dbe00dc7d255c32b7b85d Mon Sep 17 00:00:00 2001 +From: Moritz Ulrich +Date: Fri, 18 Mar 2016 13:20:48 +0100 +Subject: [PATCH] btrbk-mail: Use `btrbk` instead of unbound variable `$btrbk` + +--- + contrib/cron/btrbk-mail | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/contrib/cron/btrbk-mail b/contrib/cron/btrbk-mail +index f7e4f12..9143f2d 100755 +--- a/contrib/cron/btrbk-mail ++++ b/contrib/cron/btrbk-mail +@@ -113,7 +113,7 @@ case $exitcode in + ;; + 10) status="ERROR: At least one backup task aborted!" + ;; +- *) status="ERROR: $btrbk failed with error code $exitcode" ++ *) status="ERROR: btrbk failed with error code $exitcode" + ;; + esac + +-- +2.7.3 + diff --git a/pkgs/tools/backup/btrbk/default.nix b/pkgs/tools/backup/btrbk/default.nix new file mode 100644 index 00000000000..d4e058d143f --- /dev/null +++ b/pkgs/tools/backup/btrbk/default.nix @@ -0,0 +1,52 @@ +{ stdenv, fetchurl, coreutils, bash, btrfs-progs, perl, perlPackages, makeWrapper }: + +stdenv.mkDerivation rec { + name = "btrbk-${version}"; + version = "0.22.2"; + + src = fetchurl { + url = "http://digint.ch/download/btrbk/releases/${name}.tar.xz"; + sha256 = "1gbgi0dp62wlw7y72pgxjs6byxkrk73g35kqxzw0gjf32r5i4sb8"; + }; + + patches = [ + # https://github.com/digint/btrbk/pull/74 + ./btrbk-Prefix-PATH-instead-of-resetting-it.patch + # https://github.com/digint/btrbk/pull/73 + ./btrbk-mail-Use-btrbk-instead-of-unbound-variable-btr.patch + ]; + + buildInputs = with perlPackages; [ makeWrapper perl DateCalc ]; + + preInstall = '' + substituteInPlace Makefile \ + --replace "/usr" "$out" \ + --replace "/etc" "$out/etc" + + # Tainted Mode disables PERL5LIB + substituteInPlace btrbk --replace "perl -T" "perl" + + # Fix btrbk-mail + substituteInPlace contrib/cron/btrbk-mail \ + --replace "/bin/date" "${coreutils}/bin/date" \ + --replace "/bin/echo" "${coreutils}/bin/echo" \ + --replace '$btrbk' 'btrbk' + ''; + + fixupPhase = '' + patchShebangs $out/ + + wrapProgram $out/sbin/btrbk \ + --set PERL5LIB $PERL5LIB \ + --prefix PATH ':' "${btrfs-progs}/bin:${bash}/bin/" + ''; + + meta = with stdenv.lib; { + description = "A backup tool for btrfs subvolumes"; + homepage = http://digint.ch/btrbk; + license = licenses.gpl3; + platforms = platforms.unix; + maintainers = with maintainers; [ the-kenny ]; + inherit version; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f8e5ecbd6a5..9610976ca2b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -769,6 +769,8 @@ let btrfs-progs = callPackage ../tools/filesystems/btrfs-progs { }; + btrbk = callPackage ../tools/backup/btrbk { }; + bwm_ng = callPackage ../tools/networking/bwm-ng { }; byobu = callPackage ../tools/misc/byobu { From 1941c806106c64ffe3b37734d23b8e3835b86c8f Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Fri, 18 Mar 2016 10:59:20 +0000 Subject: [PATCH 197/678] rr: 4.0.3 -> 4.2.0 --- pkgs/development/tools/analysis/rr/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/tools/analysis/rr/default.nix b/pkgs/development/tools/analysis/rr/default.nix index 039cb742463..ea733b5b461 100644 --- a/pkgs/development/tools/analysis/rr/default.nix +++ b/pkgs/development/tools/analysis/rr/default.nix @@ -1,14 +1,14 @@ -{ stdenv, fetchFromGitHub, cmake, libpfm, zlib, python, pkgconfig, pythonPackages, which, procps }: +{ stdenv, fetchFromGitHub, cmake, libpfm, zlib, python, pkgconfig, pythonPackages, which, procps, gdb }: stdenv.mkDerivation rec { - version = "4.0.3"; + version = "4.2.0"; name = "rr-${version}"; src = fetchFromGitHub { owner = "mozilla"; repo = "rr"; rev = version; - sha256 = "0k12r1hzkn5286kz5cg4mvii92m0prs58przchr495r9hfjcy276"; + sha256 = "03fl2wgbc1cilaw8hrhfqjsbpi05cid6k4cr3s2vmv5gx0dnrgy4"; }; patchPhase = '' @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { patchShebangs . ''; - buildInputs = [ cmake libpfm zlib python pkgconfig pythonPackages.pexpect which procps ]; + buildInputs = [ cmake libpfm zlib python pkgconfig pythonPackages.pexpect which procps gdb ]; cmakeFlags = "-DCMAKE_C_FLAGS_RELEASE:STRING= -DCMAKE_CXX_FLAGS_RELEASE:STRING="; enableParallelBuilding = true; From 259f9226e5f17014b87f0afe101350fddc9c9067 Mon Sep 17 00:00:00 2001 From: "Bruno Bzeznik Bruno.Bzeznik@imag.fr" Date: Thu, 17 Mar 2016 21:46:30 +0100 Subject: [PATCH 198/678] libmatheval: init at 1.1.11 --- .../libraries/libmatheval/default.nix | 46 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 48 insertions(+) create mode 100644 pkgs/development/libraries/libmatheval/default.nix diff --git a/pkgs/development/libraries/libmatheval/default.nix b/pkgs/development/libraries/libmatheval/default.nix new file mode 100644 index 00000000000..7336e7d757a --- /dev/null +++ b/pkgs/development/libraries/libmatheval/default.nix @@ -0,0 +1,46 @@ +{ stdenv, fetchurl, guile, autoconf, flex, fetchpatch }: + +stdenv.mkDerivation rec { + version = "1.1.11"; + name = "libmatheval-${version}"; + + nativeBuildInputs = [ autoconf flex ]; + buildInputs = [ guile ]; + + src = fetchurl { + url = "http://ftp.gnu.org/gnu/libmatheval/${name}.tar.gz"; + sha256 = "474852d6715ddc3b6969e28de5e1a5fbaff9e8ece6aebb9dc1cc63e9e88e89ab"; + }; + + # Patches coming from debian package + # https://packages.debian.org/source/sid/libs/libmatheval + patches = [ (fetchpatch { + url = "http://anonscm.debian.org/cgit/debian-science/packages/libmatheval.git/plain/debian/patches/002-skip-docs.patch"; + sha256 = "1nnkk9aw4jj6nql46zhwq6vx74zrmr1xq5ix0xyvpawhabhgjg62"; + } ) + (fetchpatch { + url = "http://anonscm.debian.org/cgit/debian-science/packages/libmatheval.git/plain/debian/patches/003-guile2.0.patch"; + sha256 = "1xgfw4finfvr20kjbpr4yl2djxmyr4lmvfa11pxirfvhrdi602qj"; + } ) + (fetchpatch { + url = "http://anonscm.debian.org/cgit/debian-science/packages/libmatheval.git/plain/debian/patches/disable_coth_test.patch"; + sha256 = "0bai8jrd5azfz5afmjixlvifk34liq58qb7p9kb45k6kc1fqqxzm"; + } ) + ]; + + meta = { + description = "A library to parse and evaluate symbolic expressions input as text"; + longDescription = '' + GNU libmatheval is a library (callable from C and Fortran) to parse and evaluate symbolic + expressions input as text. It supports expressions in any number of variables of arbitrary + names, decimal and symbolic constants, basic unary and binary operators, and elementary + mathematical functions. In addition to parsing and evaluation, libmatheval can also compute + symbolic derivatives and output expressions to strings. + ''; + homepage = "https://www.gnu.org/software/libmatheval/"; + license = stdenv.lib.licenses.gpl3; + maintainers = [ stdenv.lib.maintainers.bzizou ]; + platforms = stdenv.lib.platforms.linux; + }; +} + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index df56303c774..0cf7d9681a1 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7523,6 +7523,8 @@ let libmatchbox = callPackage ../development/libraries/libmatchbox { }; + libmatheval = callPackage ../development/libraries/libmatheval { }; + libmatthew_java = callPackage ../development/libraries/java/libmatthew-java { }; libmatroska = callPackage ../development/libraries/libmatroska { }; From 49dc7e2d61fab7f7b99939e7acdf3a27528b1165 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Fri, 18 Mar 2016 15:48:22 +0100 Subject: [PATCH 199/678] manual: fix meta.description in ruby example expression Noted by @namore on github --- doc/languages-frameworks/ruby.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/languages-frameworks/ruby.xml b/doc/languages-frameworks/ruby.xml index d81422b610e..6a0388d24c7 100644 --- a/doc/languages-frameworks/ruby.xml +++ b/doc/languages-frameworks/ruby.xml @@ -30,7 +30,7 @@ bundlerEnv { meta = with lib; { description = "A monitoring framework that aims to be simple, malleable, -and scalable."; +and scalable"; homepage = http://sensuapp.org/; license = with licenses; mit; maintainers = with maintainers; [ theuni ]; From 8e359b2e215c959222832a9f9b9edd8951182d34 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Fri, 18 Mar 2016 16:35:00 +0100 Subject: [PATCH 200/678] bobcat: fix installation Another hotfix for eae059b0b607e4c5a0a201466e3dc2c97cecc85e (I kind of jumped the gun on this one ...) The `build install` command takes a positional argument indicating which components to install; without it, nothing is installed and the build fails to create the store output. --- pkgs/development/libraries/bobcat/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/bobcat/default.nix b/pkgs/development/libraries/bobcat/default.nix index f6f96c816b2..7a8209d5046 100644 --- a/pkgs/development/libraries/bobcat/default.nix +++ b/pkgs/development/libraries/bobcat/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { ''; installPhase = '' - ./build install + ./build install x ''; meta = with stdenv.lib; { From 5bb0aa3bacb39ed910d6b8c7b86672d851662361 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edward=20Tj=C3=B6rnhammar?= Date: Fri, 18 Mar 2016 18:24:02 +0100 Subject: [PATCH 201/678] idea.idea-{community,ultimate}: 15.0.4 -> 2016.1 --- pkgs/applications/editors/idea/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/editors/idea/default.nix b/pkgs/applications/editors/idea/default.nix index e9d25720f34..7a9f409d128 100644 --- a/pkgs/applications/editors/idea/default.nix +++ b/pkgs/applications/editors/idea/default.nix @@ -185,25 +185,25 @@ in idea-community = buildIdea rec { name = "idea-community-${version}"; - version = "15.0.4"; - build = "IC-143.2287"; + version = "2016.1"; + build = "IC-145.258.11"; 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 = "05kah5cx7x3rlaaxkvbbm7g8jvy9hc38q4jv7j5r9rkxd38fslvn"; + sha256 = "1grgyaapsbf7xn0m18x6fgghjh9n1n2zblz9608g9qgx5p28kn6q"; }; }; idea-ultimate = buildIdea rec { name = "idea-ultimate-${version}"; - version = "15.0.4"; - build = "IU-143.2287"; + version = "2016.1"; + build = "IU-145.258.11"; 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 = "0416y7krrak1q5pb8axskdamy06nfxmn4hj7421j8jaz0nc50dn4"; + sha256 = "15ybqdy311wi3iqi7bzk798cd91jpl73ngl86kzwr68d24nyy3zb"; }; }; From f59b01847b027bc093db99020f462be94a7201c7 Mon Sep 17 00:00:00 2001 From: Mathias Schreck Date: Fri, 18 Mar 2016 18:30:10 +0100 Subject: [PATCH 202/678] sauce-connect: 4.3.13 -> 4.3.14 --- pkgs/development/tools/sauce-connect/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/tools/sauce-connect/default.nix b/pkgs/development/tools/sauce-connect/default.nix index 3818020d931..dbaef2c9ad7 100644 --- a/pkgs/development/tools/sauce-connect/default.nix +++ b/pkgs/development/tools/sauce-connect/default.nix @@ -4,18 +4,18 @@ with lib; stdenv.mkDerivation rec { name = "sauce-connect-${version}"; - version = "4.3.13"; + version = "4.3.14"; src = fetchurl ( if stdenv.system == "x86_64-linux" then { url = "https://saucelabs.com/downloads/sc-${version}-linux.tar.gz"; - sha256 = "1flhsssb7wvfbwyvhc9k2di3nd7dlq832xp6dg658xbqk7mr9rvw"; + sha256 = "0j900dijhq8rpjaf2hgqvz5gy3dgal6l1f7q6353m2v14jbwb786"; } else if stdenv.system == "i686-linux" then { url = "https://saucelabs.com/downloads/sc-${version}-linux32.tar.gz"; - sha256 = "1hy0riljgjf4sf4cg7kn0hd18w393bdwhp0ajyimzvscg05nx8fq"; + sha256 = "0nkgd1pyh21p0yg1zs0nzki0w4wsl1yy964lbz6mf6nrsjzqg54k"; } else { url = "https://saucelabs.com/downloads/sc-${version}-osx.zip"; - sha256 = "1fhclbc79rk6pmf5qzc2pkz1z3nsawr9pfi5bzqs8r1514ki4m4p"; + sha256 = "1mcvxvqvfikkn19mjwws55x2abjp09jvjjg6b15x8w075bd9ql8g"; } ); From bb6d3f0b593f7670075451f6e16c4f8da4ac94e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Thu, 17 Mar 2016 20:59:53 -0300 Subject: [PATCH 203/678] distutils_extra: 2.26 -> 2.39 --- pkgs/top-level/python-packages.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c2ef687d587..3149b819f4c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -7821,16 +7821,18 @@ in modules // { }); distutils_extra = buildPythonPackage rec { - name = "distutils-extra-2.26"; + name = "distutils-extra-${version}"; + version = "2.39"; src = pkgs.fetchurl { - url = "http://launchpad.net/python-distutils-extra/trunk/2.26/+download/python-${name}.tar.gz"; - sha256 = "11a3d16efffb00c2b50f40c48531dadaf553ed7a36c5621fde437a16ca40f7ea"; + url = "http://launchpad.net/python-distutils-extra/trunk/${version}/+download/python-${name}.tar.gz"; + sha256 = "1bv3h2p9ffbzyddhi5sccsfwrm3i6yxzn0m06fdxkj2zsvs28gvj"; }; meta = { homepage = https://launchpad.net/python-distutils-extra; description = "Enhancements to Python's distutils"; + license = licenses.gpl2; }; }; From 00b5bd3fb31c43078e0996f536bfbcaf49491651 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Thu, 17 Mar 2016 21:03:13 -0300 Subject: [PATCH 204/678] catfish: init at 1.4.1 --- pkgs/applications/search/catfish/default.nix | 60 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 ++ 2 files changed, 64 insertions(+) create mode 100644 pkgs/applications/search/catfish/default.nix diff --git a/pkgs/applications/search/catfish/default.nix b/pkgs/applications/search/catfish/default.nix new file mode 100644 index 00000000000..795d804038d --- /dev/null +++ b/pkgs/applications/search/catfish/default.nix @@ -0,0 +1,60 @@ +{ stdenv, fetchurl, file, which, intltool, findutils, xdg_utils, pycairo, + gnome3, pythonPackages, wrapGAppsHook }: + +pythonPackages.buildPythonApplication rec { + majorver = "1.4"; + minorver = "1"; + version = "${majorver}.${minorver}"; + name = "catfish-${version}"; + + src = fetchurl { + url = "https://launchpad.net/catfish-search/${majorver}/${version}/+download/${name}.tar.bz2"; + sha256 = "0dc9xq1l1w22xk1hg63mgwr0920jqxrwfzmkhif01yms1m7vfdv8"; + }; + + nativeBuildInputs = [ + pythonPackages.distutils_extra + file + which + intltool + wrapGAppsHook + ]; + + buildInputs = [ + gnome3.gtk + gnome3.dconf + pythonPackages.pyxdg + pythonPackages.ptyprocess + pycairo + ]; + + propagatedBuildInputs = [ + pythonPackages.pygobject3 + pythonPackages.pexpect + xdg_utils + findutils + ]; + + preFixup = '' + for f in \ + "$out/${pythonPackages.python.sitePackages}/catfish_lib/catfishconfig.py" \ + "$out/share/applications/catfish.desktop" + do + substituteInPlace $f --replace "${pythonPackages.python}" "$out" + done + ''; + + meta = with stdenv.lib; { + description = "A handy file search tool"; + longDescription = '' + Catfish is a handy file searching tool. The interface is + intentionally lightweight and simple, using only GTK+3. + You can configure it to your needs by using several command line + options. + ''; + homepage = https://launchpad.net/catfish-search; + license = licenses.gpl2Plus; + platforms = platforms.unix; + maintainers = [ maintainers.romildo ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cad952ea4a2..6615dce14b3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11741,6 +11741,10 @@ let carddav-util = callPackage ../tools/networking/carddav-util { }; + catfish = callPackage ../applications/search/catfish { + pythonPackages = python3Packages; + }; + cava = callPackage ../applications/audio/cava { }; cb2bib = callPackage ../applications/office/cb2bib { From 29668ba9206eb82a6446e819a19183b1bc168a8a Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Fri, 18 Mar 2016 18:47:04 +0100 Subject: [PATCH 205/678] mongodb: fix build against boost-1.60 Apply patch from Arch Linux. Suggested by @wkennington. --- pkgs/servers/nosql/mongodb/default.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/nosql/mongodb/default.nix b/pkgs/servers/nosql/mongodb/default.nix index 2ea255e4432..289607328d6 100644 --- a/pkgs/servers/nosql/mongodb/default.nix +++ b/pkgs/servers/nosql/mongodb/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, scons, boost, gperftools, pcre, snappy +{ stdenv, fetchurl, fetchpatch, scons, boost, gperftools, pcre, snappy , zlib, libyamlcpp, sasl, openssl, libpcap, wiredtiger }: @@ -53,7 +53,14 @@ in stdenv.mkDerivation rec { # vendored header file - regardless of whether or not we're using the system # tcmalloc - so we need to lift the include path manipulation out of the # conditional. - patches = [ ./valgrind-include.patch ]; + patches = + [ ./valgrind-include.patch + (fetchpatch { + url = https://projects.archlinux.org/svntogit/community.git/plain/trunk/boost160.patch?h=packages/mongodb; + name = "boost160.patch"; + sha256 = "0bvsf3499zj55pzamwjmsssr6x63w434944w76273fr5rxwzcmh8"; + }) + ]; postPatch = '' # fix environment variable reading From e6b85e6b787f8e253e54698d65fd8184e543bc32 Mon Sep 17 00:00:00 2001 From: Yochai Date: Fri, 18 Mar 2016 11:22:48 +0200 Subject: [PATCH 206/678] mfcj470dw: fix missing file error --- pkgs/misc/cups/drivers/mfcj470dw/default.nix | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/pkgs/misc/cups/drivers/mfcj470dw/default.nix b/pkgs/misc/cups/drivers/mfcj470dw/default.nix index d1a1b239371..d6ce3fbcdc6 100644 --- a/pkgs/misc/cups/drivers/mfcj470dw/default.nix +++ b/pkgs/misc/cups/drivers/mfcj470dw/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, cups, dpkg, ghostscript, patchelf, bash, file }: +{ stdenv, fetchurl, cups, dpkg, ghostscript, patchelf, a2ps, coreutils, gnused, gawk, file }: stdenv.mkDerivation rec { name = "mfcj470dw-cupswrapper-${version}"; @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { }) ]; - buildInputs = [ dpkg cups patchelf bash ]; + buildInputs = [ cups ghostscript dpkg a2ps ]; unpackPhase = "true"; @@ -29,9 +29,20 @@ stdenv.mkDerivation rec { substituteInPlace $out/opt/brother/Printers/mfcj470dw/lpd/filtermfcj470dw \ --replace /opt "$out/opt" \ - --replace file "/run/current-system/sw/bin/file" + --replace file "${file}/bin/file" \ + --replace sed "${gnused}/bin/sed" \ + --replace mktemp "${coreutils}/bin/mktemp" \ + --replace cat "${coreutils}/bin/cat" \ + --replace rm "${coreutils}/bin/rm" sed -i '/GHOST_SCRIPT=/c\GHOST_SCRIPT=gs' $out/opt/brother/Printers/mfcj470dw/lpd/psconvertij2 + substituteInPlace $out/opt/brother/Printers/mfcj470dw/lpd/psconvertij2 \ + --replace awk "${gawk}/bin/awk" \ + --replace cat "${coreutils}/bin/cat" \ + --replace mktemp "${coreutils}/bin/mktemp" \ + --replace sed "${gnused}/bin/sed" \ + --replace expr "${coreutils}/bin/expr" \ + --replace rm "${coreutils}/bin/rm" patchelf --set-interpreter ${stdenv.glibc}/lib/ld-linux.so.2 $out/opt/brother/Printers/mfcj470dw/lpd/brmfcj470dwfilter patchelf --set-interpreter ${stdenv.glibc}/lib/ld-linux.so.2 $out/opt/brother/Printers/mfcj470dw/cupswrapper/brcupsconfpt1 From b1179bdbcff0df8f3b8220589d8c8dd72dae8bd5 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Fri, 18 Mar 2016 23:05:04 +0300 Subject: [PATCH 207/678] haskellPackages.Agda: use older cpphs Package requires cpphs < 0.20.0. --- .../haskell-modules/configuration-common.nix | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 2e0a02c0f2d..b5b4db7e729 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -941,9 +941,18 @@ self: super: { language-c-quote = super.language-c-quote.override { alex = self.alex_3_1_4; }; # https://github.com/agda/agda/issues/1840 - Agda_2_4_2_3 = super.Agda_2_4_2_3.override { unordered-containers = self.unordered-containers_0_2_5_1; }; - Agda_2_4_2_4 = super.Agda_2_4_2_4.override { unordered-containers = self.unordered-containers_0_2_5_1; }; - Agda = super.Agda.override { unordered-containers = self.unordered-containers_0_2_5_1; }; + Agda_2_4_2_3 = super.Agda_2_4_2_3.override { + unordered-containers = self.unordered-containers_0_2_5_1; + cpphs = self.cpphs_1_19_3; + }; + Agda_2_4_2_4 = super.Agda_2_4_2_4.override { + unordered-containers = self.unordered-containers_0_2_5_1; + cpphs = self.cpphs_1_19_3; + }; + Agda = super.Agda.override { + unordered-containers = self.unordered-containers_0_2_5_1; + cpphs = self.cpphs_1_19_3; + }; # We get lots of strange compiler errors during the test suite run. jsaddle = dontCheck super.jsaddle; From a8556bd5d75fbe30d8a55b053de5a37f0285cfe2 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Fri, 18 Mar 2016 22:12:03 +0100 Subject: [PATCH 208/678] flexcpp: patch all shebangs & fix installation Using the original build recipe would result in an output without the actual flexcpp binary. --- pkgs/development/tools/parsing/flexc++/default.nix | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/pkgs/development/tools/parsing/flexc++/default.nix b/pkgs/development/tools/parsing/flexc++/default.nix index 4fef3731962..c01c374b5fd 100644 --- a/pkgs/development/tools/parsing/flexc++/default.nix +++ b/pkgs/development/tools/parsing/flexc++/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { postPatch = '' substituteInPlace INSTALL.im --replace /usr $out - patchShebangs ./build + patchShebangs . ''; buildPhase = '' @@ -28,11 +28,7 @@ stdenv.mkDerivation rec { ''; installPhase = '' - ./build install man - ./build install manual - ./build install program - ./build install skel - ./build install std + ./build install x ''; meta = with stdenv.lib; { From d97805ccd037525093d3f5c1575c4007e80c6927 Mon Sep 17 00:00:00 2001 From: Pierre Dal-Pra Date: Fri, 18 Mar 2016 22:12:42 +0100 Subject: [PATCH 209/678] docker: 1.10.0 -> 1.10.3 --- pkgs/applications/virtualization/docker/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/virtualization/docker/default.nix b/pkgs/applications/virtualization/docker/default.nix index c8a40277f7a..65bb6e61117 100644 --- a/pkgs/applications/virtualization/docker/default.nix +++ b/pkgs/applications/virtualization/docker/default.nix @@ -11,13 +11,13 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "docker-${version}"; - version = "1.10.0"; + version = "1.10.3"; src = fetchFromGitHub { owner = "docker"; repo = "docker"; rev = "v${version}"; - sha256 = "0c3a504gjdh4mxvifi0wcppqhd786d1gxncf04dqlq3l5wisfbbw"; + sha256 = "0bmrafi0p3fm681y165ps97jki0a8ihl9f0bmpvi22nmc1v0sv6l"; }; buildInputs = [ From da390a48db51444a2207e182b2674dc2591a2ce7 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 18 Mar 2016 22:13:08 +0100 Subject: [PATCH 210/678] pngquant: 2.0.1 -> 2.6.0 Also remove meta.broken. --- pkgs/tools/graphics/pngquant/default.nix | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/pkgs/tools/graphics/pngquant/default.nix b/pkgs/tools/graphics/pngquant/default.nix index 77cc898ef2a..985b8a1c59d 100644 --- a/pkgs/tools/graphics/pngquant/default.nix +++ b/pkgs/tools/graphics/pngquant/default.nix @@ -1,16 +1,19 @@ -{ stdenv, fetchgit, libpng }: +{ stdenv, fetchFromGitHub, pkgconfig, libpng, zlib, lcms2 }: stdenv.mkDerivation rec { name = "pngquant-${version}"; - version = "2.0.1"; + version = "2.6.0"; - src = fetchgit { - url = https://github.com/pornel/pngquant.git; - rev = "refs/tags/${version}"; - sha256 = "00mrv9wgxbwy517l8i4n7n3jpzirjdgi0zass3wj29i7xyipwlhf"; + src = fetchFromGitHub { + owner = "pornel"; + repo = "pngquant"; + rev = version; + sha256 = "0sdh9cz330rhj6xvqk3sdhy0393qwyl349klk9r55g88rjp774s5"; }; - buildInputs = [ libpng ]; + preConfigure = "patchShebangs ."; + + buildInputs = [ pkgconfig libpng zlib lcms2 ]; preInstall = '' mkdir -p $out/bin @@ -18,10 +21,9 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - homepage = https://github.com/pornel/pngquant; - description = "pngquant converts 24/32-bit RGBA PNGs to 8-bit palette with alpha channel preserved"; - platforms = platforms.all; + homepage = https://pngquant.org/; + description = "A tool to convert 24/32-bit RGBA PNGs to 8-bit palette with alpha channel preserved"; + platforms = platforms.linux; license = licenses.bsd2; # Not exactly bsd2, but alike - broken = true; }; } From 4d82228a63549c5896fe5e73b06178b37e349dde Mon Sep 17 00:00:00 2001 From: Arseniy Seroka Date: Sat, 19 Mar 2016 00:21:27 +0300 Subject: [PATCH 211/678] vim: 7.4.827 -> 7.4.1585 --- pkgs/applications/editors/vim/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vim/default.nix b/pkgs/applications/editors/vim/default.nix index 1249b0b9564..97a40e5c7e5 100644 --- a/pkgs/applications/editors/vim/default.nix +++ b/pkgs/applications/editors/vim/default.nix @@ -10,13 +10,13 @@ stdenv.mkDerivation rec { name = "vim-${version}"; - version = "7.4.827"; + version = "7.4.1585"; src = fetchFromGitHub { owner = "vim"; repo = "vim"; rev = "v${version}"; - sha256 = "1m34s2hsc5lcish6gmvn2iwaz0k7jc3kg9q4nf30fj9inl7gaybs"; + sha256 = "1kjdwpka269i4cyl0rmnmzg23dl26g65k26h32w8ayzfm3kbj123"; }; enableParallelBuilding = true; From 89f7dcaa217f8f4766c33cf63b3762dc3d2bd768 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Fri, 18 Mar 2016 19:35:10 +0000 Subject: [PATCH 212/678] Move all aliases into their own file. --- pkgs/top-level/aliases.nix | 90 +++++++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 87 +------------------------------ 2 files changed, 91 insertions(+), 86 deletions(-) create mode 100644 pkgs/top-level/aliases.nix diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix new file mode 100644 index 00000000000..c8f1ed3b7c3 --- /dev/null +++ b/pkgs/top-level/aliases.nix @@ -0,0 +1,90 @@ +self: + +with self; + + ### Deprecated aliases - for backward compatibility + +rec { + accounts-qt = qt5.accounts-qt; # added 2015-12-19 + adobeReader = adobe-reader; + aircrackng = aircrack-ng; # added 2016-01-14 + arduino_core = arduino-core; # added 2015-02-04 + asciidocFull = asciidoc-full; # added 2014-06-22 + bar = lemonbar; # added 2015-01-16 + bar-xft = lemonbar-xft; # added 2015-01-16 + bridge_utils = bridge-utils; # added 2015-02-20 + btrfsProgs = btrfs-progs; # added 2016-01-03 + buildbotSlave = buildbot-slave; # added 2014-12-09 + cheetahTemplate = pythonPackages.cheetah; # 2015-06-15 + clangAnalyzer = clang-analyzer; # added 2015-02-20 + conkerorWrapper = conkeror; # added 2015-01 + cool-old-term = cool-retro-term; # added 2015-01-31 + cupsBjnp = cups-bjnp; # added 2016-01-02 + cv = progress; # added 2015-09-06 + dwarf_fortress = dwarf-fortress; # added 2016-01-23 + dwbWrapper = dwb; # added 2015-01 + enblendenfuse = enblend-enfuse; # 2015-09-30 + exfat-utils = exfat; # 2015-09-11 + firefox-esr-wrapper = firefox-esr; # 2016-01 + firefox-wrapper = firefox; # 2016-01 + firefoxWrapper = firefox; # 2015-09 + fuse_exfat = exfat; # 2015-09-11 + gettextWithExpat = gettext; # 2016-02-19 + grantlee5 = qt5.grantlee; # added 2015-12-19 + gupnptools = gupnp-tools; # added 2015-12-19 + htmlTidy = html-tidy; # added 2014-12-06 + inherit (haskell.compiler) jhc uhc; # 2015-05-15 + inotifyTools = inotify-tools; + joseki = apache-jena-fuseki; # added 2016-02-28 + jquery_ui = jquery-ui; # added 2014-09-07 + libdbusmenu_qt5 = qt5.libdbusmenu; # added 2015-12-19 + libtidy = html-tidy; # added 2014-12-21 + links = links2; # added 2016-01-31 + lttngTools = lttng-tools; # added 2014-07-31 + lttngUst = lttng-ust; # added 2014-07-31 + manpages = man-pages; # added 2015-12-06 + midoriWrapper = midori; # added 2015-01 + mlt-qt5 = qt5.mlt; # added 2015-12-19 + mssys = ms-sys; # added 2015-12-13 + multipath_tools = multipath-tools; # added 2016-01-21 + mupen64plus1_5 = mupen64plus; # added 2016-02-12 + ncat = nmap; # added 2016-01-26 + nfsUtils = nfs-utils; # added 2014-12-06 + phonon_qt5 = qt5.phonon; # added 2015-12-19 + phonon_qt5_backend_gstreamer = qt5.phonon-backend-gstreamer; # added 2015-12-19 + pidginlatexSF = pidginlatex; # added 2014-11-02 + poppler_qt5 = qt5.poppler; # added 2015-12-19 + qca-qt5 = qt5.qca-qt5; # added 2015-12-19 + qtcreator = qt5.qtcreator; # added 2015-12-19 + quake3game = ioquake3; # added 2016-01-14 + quassel_kf5 = kde5.quassel; # added 2015-09-30 + quassel_qt5 = kde5.quassel_qt5; # added 2015-09-30 + quasselClient_kf5 = kde5.quasselClient; # added 2015-09-30 + quasselClient_qt5 = kde5.quasselClient_qt5; # added 2015-09-30 + quasselDaemon_qt5 = kde5.quasselDaemon; # added 2015-09-30 + qwt6 = qt5.qwt; # added 2015-12-19 + rdiff_backup = rdiff-backup; # added 2014-11-23 + rekonqWrapper = rekonq; # added 2015-01 + rssglx = rss-glx; #added 2015-03-25 + rubygems = throw "deprecated 2016-03-02: rubygems is now bundled with ruby"; + rxvt_unicode_with-plugins = rxvt_unicode-with-plugins; # added 2015-04-02 + samsungUnifiedLinuxDriver = samsung-unified-linux-driver; # added 2016-01-25 + saneBackends = sane-backends; # added 2016-01-02 + saneBackendsGit = sane-backends-git; # added 2016-01-02 + saneFrontends = sane-frontends; # added 2016-01-02 + scim = sc-im; # added 2016-01-22 + signon = qt5.signon; # added 2015-12-19 + speedtest_cli = speedtest-cli; # added 2015-02-17 + sqliteInteractive = sqlite-interactive; # added 2014-12-06 + system_config_printer = system-config-printer; # added 2016-01-03 + telepathy_qt5 = qt5.telepathy; # added 2015-12-19 + tftp_hpa = tftp-hpa; # added 2015-04-03 + vimbWrapper = vimb; # added 2015-01 + vimprobable2Wrapper = vimprobable2; # added 2015-01 + virtviewer = virt-viewer; # added 2015-12-24 + vorbisTools = vorbis-tools; # added 2016-01-26 + x11 = xlibsWrapper; # added 2015-09 + xf86_video_nouveau = xorg.xf86videonouveau; # added 2015-09 + xlibs = xorg; # added 2015-09 + youtubeDL = youtube-dl; # added 2014-10-26 +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0f0f9fd45ec..975e404c6bb 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16466,92 +16466,7 @@ let }; # self_ = - ### Deprecated aliases - for backward compatibility - -aliases = with self; rec { - accounts-qt = qt5.accounts-qt; # added 2015-12-19 - adobeReader = adobe-reader; - aircrackng = aircrack-ng; # added 2016-01-14 - arduino_core = arduino-core; # added 2015-02-04 - asciidocFull = asciidoc-full; # added 2014-06-22 - bar = lemonbar; # added 2015-01-16 - bar-xft = lemonbar-xft; # added 2015-01-16 - bridge_utils = bridge-utils; # added 2015-02-20 - btrfsProgs = btrfs-progs; # added 2016-01-03 - buildbotSlave = buildbot-slave; # added 2014-12-09 - cheetahTemplate = pythonPackages.cheetah; # 2015-06-15 - clangAnalyzer = clang-analyzer; # added 2015-02-20 - conkerorWrapper = conkeror; # added 2015-01 - cool-old-term = cool-retro-term; # added 2015-01-31 - cupsBjnp = cups-bjnp; # added 2016-01-02 - cv = progress; # added 2015-09-06 - dwarf_fortress = dwarf-fortress; # added 2016-01-23 - dwbWrapper = dwb; # added 2015-01 - enblendenfuse = enblend-enfuse; # 2015-09-30 - exfat-utils = exfat; # 2015-09-11 - firefox-esr-wrapper = firefox-esr; # 2016-01 - firefox-wrapper = firefox; # 2016-01 - firefoxWrapper = firefox; # 2015-09 - fuse_exfat = exfat; # 2015-09-11 - gettextWithExpat = gettext; # 2016-02-19 - grantlee5 = qt5.grantlee; # added 2015-12-19 - gupnptools = gupnp-tools; # added 2015-12-19 - htmlTidy = html-tidy; # added 2014-12-06 - inherit (haskell.compiler) jhc uhc; # 2015-05-15 - inotifyTools = inotify-tools; - joseki = apache-jena-fuseki; # added 2016-02-28 - jquery_ui = jquery-ui; # added 2014-09-07 - libdbusmenu_qt5 = qt5.libdbusmenu; # added 2015-12-19 - libtidy = html-tidy; # added 2014-12-21 - links = links2; # added 2016-01-31 - lttngTools = lttng-tools; # added 2014-07-31 - lttngUst = lttng-ust; # added 2014-07-31 - manpages = man-pages; # added 2015-12-06 - midoriWrapper = midori; # added 2015-01 - mlt-qt5 = qt5.mlt; # added 2015-12-19 - mssys = ms-sys; # added 2015-12-13 - multipath_tools = multipath-tools; # added 2016-01-21 - mupen64plus1_5 = mupen64plus; # added 2016-02-12 - ncat = nmap; # added 2016-01-26 - nfsUtils = nfs-utils; # added 2014-12-06 - phonon_qt5 = qt5.phonon; # added 2015-12-19 - phonon_qt5_backend_gstreamer = qt5.phonon-backend-gstreamer; # added 2015-12-19 - pidginlatexSF = pidginlatex; # added 2014-11-02 - poppler_qt5 = qt5.poppler; # added 2015-12-19 - qca-qt5 = qt5.qca-qt5; # added 2015-12-19 - qtcreator = qt5.qtcreator; # added 2015-12-19 - quake3game = ioquake3; # added 2016-01-14 - quassel_kf5 = kde5.quassel; # added 2015-09-30 - quassel_qt5 = kde5.quassel_qt5; # added 2015-09-30 - quasselClient_kf5 = kde5.quasselClient; # added 2015-09-30 - quasselClient_qt5 = kde5.quasselClient_qt5; # added 2015-09-30 - quasselDaemon_qt5 = kde5.quasselDaemon; # added 2015-09-30 - qwt6 = qt5.qwt; # added 2015-12-19 - rdiff_backup = rdiff-backup; # added 2014-11-23 - rekonqWrapper = rekonq; # added 2015-01 - rssglx = rss-glx; #added 2015-03-25 - rubygems = throw "deprecated 2016-03-02: rubygems is now bundled with ruby"; - rxvt_unicode_with-plugins = rxvt_unicode-with-plugins; # added 2015-04-02 - samsungUnifiedLinuxDriver = samsung-unified-linux-driver; # added 2016-01-25 - saneBackends = sane-backends; # added 2016-01-02 - saneBackendsGit = sane-backends-git; # added 2016-01-02 - saneFrontends = sane-frontends; # added 2016-01-02 - scim = sc-im; # added 2016-01-22 - signon = qt5.signon; # added 2015-12-19 - speedtest_cli = speedtest-cli; # added 2015-02-17 - sqliteInteractive = sqlite-interactive; # added 2014-12-06 - system_config_printer = system-config-printer; # added 2016-01-03 - telepathy_qt5 = qt5.telepathy; # added 2015-12-19 - tftp_hpa = tftp-hpa; # added 2015-04-03 - vimbWrapper = vimb; # added 2015-01 - vimprobable2Wrapper = vimprobable2; # added 2015-01 - virtviewer = virt-viewer; # added 2015-12-24 - vorbisTools = vorbis-tools; # added 2016-01-26 - x11 = xlibsWrapper; # added 2015-09 - xf86_video_nouveau = xorg.xf86videonouveau; # added 2015-09 - xlibs = xorg; # added 2015-09 - youtubeDL = youtube-dl; # added 2014-10-26 -}; +aliases = import ./aliases.nix self; tweakAlias = _n: alias: with lib; if alias.recurseForDerivations or false then From fba952024fabd02b7f92ec4302ee4ee67db8a482 Mon Sep 17 00:00:00 2001 From: Arseniy Seroka Date: Sat, 19 Mar 2016 00:23:11 +0300 Subject: [PATCH 213/678] tzdata: 2016a -> 2016b --- pkgs/data/misc/tzdata/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/data/misc/tzdata/default.nix b/pkgs/data/misc/tzdata/default.nix index 7e53b67e332..0c58ebe6046 100644 --- a/pkgs/data/misc/tzdata/default.nix +++ b/pkgs/data/misc/tzdata/default.nix @@ -2,16 +2,16 @@ stdenv.mkDerivation rec { name = "tzdata-${version}"; - version = "2016a"; + version = "2016b"; srcs = [ (fetchurl { url = "http://www.iana.org/time-zones/repository/releases/tzdata${version}.tar.gz"; - sha256 = "1lccd8f8fiwfyr1f6c2ad1rgd58qlmrk5b00ywg95vv49qr6pyjy"; + sha256 = "6392091d92556a32de488ea06a055c51bc46b7d8046c8a677f0ccfe286b3dbdc"; }) (fetchurl { url = "http://www.iana.org/time-zones/repository/releases/tzcode${version}.tar.gz"; - sha256 = "13f2412ywphrvslmp1cjfyyjfrk67gbrsk4ih5n8qkl4kgandbhi"; + sha256 = "e935c4fe78b5c5da3791f58f3ab7f07fb059a7c71d6b62b69ef345211ae5dfa7"; }) ]; From ae487615a635cc5cde0dc500a3c44b25a1dfdb40 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Fri, 18 Mar 2016 19:47:19 +0000 Subject: [PATCH 214/678] nix-prefetch-git: fix url_to_name heuristic The function wasn't checking that *all* of the characters where [a-z0-9]. Fixes #13921 --- pkgs/build-support/fetchgit/nix-prefetch-git | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/build-support/fetchgit/nix-prefetch-git b/pkgs/build-support/fetchgit/nix-prefetch-git index 2c9d61504ed..97c983dbe8d 100755 --- a/pkgs/build-support/fetchgit/nix-prefetch-git +++ b/pkgs/build-support/fetchgit/nix-prefetch-git @@ -118,7 +118,7 @@ url_to_name(){ # basename removes the / and .git suffixes local base=$(basename "$url" .git) - if [[ $ref =~ [a-z0-9]+ ]]; then + if [[ $ref =~ ^[a-z0-9]+$ ]]; then echo "$base-${ref:0:7}" else echo $base From f54d6fc6971b30b86def4aeccc8fbc3c0a35e613 Mon Sep 17 00:00:00 2001 From: Svein Ove Aas Date: Fri, 18 Mar 2016 16:57:12 +0100 Subject: [PATCH 215/678] dosage: Init at 2016.03.17 --- pkgs/top-level/all-packages.nix | 2 ++ pkgs/top-level/python-packages.nix | 22 ++++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9610976ca2b..452ebe7794b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -874,6 +874,8 @@ let dlx = callPackage ../misc/emulators/dlx { }; + dosage = pythonPackages.dosage; + dpic = callPackage ../tools/graphics/dpic { }; dragon-drop = callPackage ../tools/X11/dragon-drop { diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c2ef687d587..8326864e309 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1966,6 +1966,28 @@ in modules // { }; }; + dosage = buildPythonPackage rec { + name = "${pname}-${version}"; + pname = "dosage"; + version = "2016.03.17"; + PBR_VERSION = version; + src = pkgs.fetchFromGitHub { + owner = "webcomics"; + repo = "dosage"; + rev = "1af022895e5f86bc43da95754c4c4ed305790f5b"; + sha256 = "1bkqhlzigy656pam0znp2ddp1y5sqzyhw3c4fyy58spcafldq4j6"; + }; + buildInputs = with self; [ pytest ]; + propagatedBuildInputs = with self; [ requests2 lxml pbr ]; + # prompt_toolkit doesn't work on 3.5 on OSX. + doCheck = !isPy35; + + meta = { + description = "A comic strip downloader and archiver"; + homepage = http://dosage.rocks/; + }; + }; + dugong = buildPythonPackage rec { name = "${pname}-${version}"; pname = "dugong"; From 3e1ec2b6632fafd4cb97a750aa8a44a9f374fb06 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Fri, 18 Mar 2016 23:39:03 +0100 Subject: [PATCH 216/678] criu: fix build Would fail due to -Werror; see https://hydra.nixos.org/build/33217086/nixlog/2/raw --- pkgs/os-specific/linux/criu/default.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/os-specific/linux/criu/default.nix b/pkgs/os-specific/linux/criu/default.nix index 433cc2c81d7..6afaf36bd80 100644 --- a/pkgs/os-specific/linux/criu/default.nix +++ b/pkgs/os-specific/linux/criu/default.nix @@ -18,6 +18,7 @@ stdenv.mkDerivation rec { substituteInPlace ./scripts/gen-offsets.sh --replace hexdump ${utillinux}/bin/hexdump substituteInPlace ./Documentation/Makefile --replace "2>/dev/null" "" substituteInPlace ./Documentation/Makefile --replace "--skip-validation" "--skip-validation -x ${docbook_xsl}/xml/xsl/docbook/manpages/docbook.xsl" + substituteInPlace ./Makefile --replace "-Werror" "" ''; configurePhase = "make config PREFIX=$out"; @@ -28,11 +29,11 @@ stdenv.mkDerivation rec { make install PREFIX=$out LIBDIR=$out/lib ASCIIDOC=${asciidoc}/bin/asciidoc XMLTO=${xmlto}/bin/xmlto ''; - meta = { - description = "userspace checkpoint/restore for Linux"; - homepage = "http://criu.org"; - license = stdenv.lib.licenses.gpl2; + meta = with stdenv.lib; { + description = "Userspace checkpoint/restore for Linux"; + homepage = https://criu.org; + license = licenses.gpl2; platforms = [ "x86_64-linux" ]; - maintainers = [ stdenv.lib.maintainers.thoughtpolice ]; + maintainers = [ maintainers.thoughtpolice ]; }; } From 31c317e09e3be7612e904ba273d03de062c2cae5 Mon Sep 17 00:00:00 2001 From: Yann Hodique Date: Fri, 18 Mar 2016 18:07:33 -0700 Subject: [PATCH 217/678] git: 2.7.3 -> 2.7.4 --- .../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 d60b4065e47..5083c73fb14 100644 --- a/pkgs/applications/version-management/git-and-tools/git/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git/default.nix @@ -9,7 +9,7 @@ }: let - version = "2.7.3"; + version = "2.7.4"; svn = subversionClient.override { perlBindings = true; }; in @@ -18,7 +18,7 @@ stdenv.mkDerivation { src = fetchurl { url = "https://www.kernel.org/pub/software/scm/git/git-${version}.tar.xz"; - sha256 = "1di96q86fq3pdn5d5v4fw9vf58gha5i9b3r880mxlh275n8ngi49"; + sha256 = "0ys55v2xrhzj74jrrqx75xpr458klnyxshh8d8swfpp0zgg79rfy"; }; patches = [ From ece457c62ff81fa80dc366c208d3f4bd4b05f60f Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 19 Mar 2016 02:17:26 +0100 Subject: [PATCH 218/678] nixos/tests: fix docker test The docker service is socket activated by default; thus, `waitForUnit("docker.service")` before any docker command causes the unit test to time out. Instead, do `waitForUnit("sockets.target")` to ensure that sockets are setup before running docker commands. --- nixos/tests/docker.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/docker.nix b/nixos/tests/docker.nix index 635a97e2ce0..06e511d6e0b 100644 --- a/nixos/tests/docker.nix +++ b/nixos/tests/docker.nix @@ -20,7 +20,7 @@ import ./make-test.nix ({ pkgs, ...} : { testScript = '' startAll; - $docker->waitForUnit("docker.service"); + $docker->waitForUnit("sockets.target"); $docker->succeed("tar cv --files-from /dev/null | docker import - scratchimg"); $docker->succeed("docker run -d --name=sleeping -v /nix/store:/nix/store -v /run/current-system/sw/bin:/bin scratchimg /bin/sleep 10"); $docker->succeed("docker ps | grep sleeping"); From 9aa6ca99e4f5105f819584a013ac57f1f45398ad Mon Sep 17 00:00:00 2001 From: taku0 Date: Sat, 19 Mar 2016 14:28:10 +0900 Subject: [PATCH 219/678] firefox-bin: 45.0 -> 45.0.1 --- .../browsers/firefox-bin/sources.nix | 362 +++++++++--------- 1 file changed, 181 insertions(+), 181 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox-bin/sources.nix b/pkgs/applications/networking/browsers/firefox-bin/sources.nix index 6ae91e165a9..1ff70cb8ccf 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/sources.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/sources.nix @@ -4,187 +4,187 @@ # ruby generate_sources.rb > sources.nix { - version = "45.0"; + version = "45.0.1"; sources = [ - { locale = "ach"; arch = "linux-i686"; sha256 = "795f7db97ecbc58cf3b0f599375d5ce86eccdd1159aba8ea5523229efce84f0a"; } - { locale = "ach"; arch = "linux-x86_64"; sha256 = "b511f394a8f313fcb8993cc220698150cdf16e6ce962004cb1be768bd26042d8"; } - { locale = "af"; arch = "linux-i686"; sha256 = "dec09a59488c4e532b409be866560bd4b874fcd6400129a23ed7dc8b272949e3"; } - { locale = "af"; arch = "linux-x86_64"; sha256 = "b19f3bbcef86ea03dd99cd6f59cdb755c9d724a6c8d6c8d5480f333a73260ed2"; } - { locale = "an"; arch = "linux-i686"; sha256 = "c9ff3f690d42585f5dbaae7d62305efeebd093c4ffe751fe989cc9d237e0e761"; } - { locale = "an"; arch = "linux-x86_64"; sha256 = "0dc5385e1bf23e3fbd25c82d32742add279ea293311159d283c7e93eb6e73396"; } - { locale = "ar"; arch = "linux-i686"; sha256 = "fe690e7fb25d96b830fcd06a88c44118eb06644104c5ed74c69621c128f5dcd8"; } - { locale = "ar"; arch = "linux-x86_64"; sha256 = "06e7c7e4e37621d7d14e81e79da6a4d35025476f87ed95ed4bb11d6160ce8546"; } - { locale = "as"; arch = "linux-i686"; sha256 = "f1f1bde8406ecc4275425ef91579f82a49bb9bc33a4c1de95c770e89205dd001"; } - { locale = "as"; arch = "linux-x86_64"; sha256 = "e31171d2470713b8cc211e5a1193a89890588c7c537a4c0405aa8db4a41b8862"; } - { locale = "ast"; arch = "linux-i686"; sha256 = "9bdbbc47a1a31ac45cee3222b03b2fd9661e8e9685c672ca5b378abff1a60c76"; } - { locale = "ast"; arch = "linux-x86_64"; sha256 = "511d340af37b8909006a446de906503a7b0904379597df36f8072790de727fed"; } - { locale = "az"; arch = "linux-i686"; sha256 = "c9d43c61ef5677a70e19ea3ff7400a93b926aa72edddb793fcc4e502b7f77b91"; } - { locale = "az"; arch = "linux-x86_64"; sha256 = "6450e41e581f49a76fa4bb7e685b2010899608aaa5c58224eec679b56e9d9d32"; } - { locale = "be"; arch = "linux-i686"; sha256 = "eef6cb47db9c3909b813d01a78a7af439dccdd00c040e513c4e784ee537a2d38"; } - { locale = "be"; arch = "linux-x86_64"; sha256 = "f20a4da9edd845a43b7bf85b70e2a67f3a96a4db9c461d0b4b168f0a6f0a3a73"; } - { locale = "bg"; arch = "linux-i686"; sha256 = "3af1a3fb90685e819fad2c69daf11df29b01a97899045ba49a79588e9e5e2e01"; } - { locale = "bg"; arch = "linux-x86_64"; sha256 = "d3662db0b9417d68a423b31f9aac7d03c3eccba36bcc0ba9b84ccf194325e521"; } - { locale = "bn-BD"; arch = "linux-i686"; sha256 = "f867fbbf3dbfe06dc027592543700802270daf2956d45e921f968277e84e75bd"; } - { locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "08fdde0f76553ca018efeb0e0fd439b42d6e13715aee680ee77435bda20f684f"; } - { locale = "bn-IN"; arch = "linux-i686"; sha256 = "dc3251e661966174be97c99aa2d332e9c605e99ce6526a0b69daa56e2266f6da"; } - { locale = "bn-IN"; arch = "linux-x86_64"; sha256 = "9558f4bfb37dfaf3915345702c22fc14c19721c9f283c9824fa30151a8c2065e"; } - { locale = "br"; arch = "linux-i686"; sha256 = "b3f51cf697aba530f13ed7207b3fdb4416272d7d4324147722c7c9cf3b336485"; } - { locale = "br"; arch = "linux-x86_64"; sha256 = "c5c6804ae9d730c32c7b97219cbfef63be0ee28b8a3eacc3f21291f228aa0624"; } - { locale = "bs"; arch = "linux-i686"; sha256 = "099d3845b98baef27225f77b56663f2e290ec75ab0569cea10722c84a779c829"; } - { locale = "bs"; arch = "linux-x86_64"; sha256 = "d7688be752320867c31de94363f7c8b6321b1d6d11f57b6295e4e58db281fc0f"; } - { locale = "ca"; arch = "linux-i686"; sha256 = "ec55163d35d4b3e9f5c0a000b389e91aa4c6d8ea0df800f69feaa26840ac5f6e"; } - { locale = "ca"; arch = "linux-x86_64"; sha256 = "79c99f2dee213d7316060134562db67bbb377e6f44642869e25bd6b7533df464"; } - { locale = "cs"; arch = "linux-i686"; sha256 = "a2833f106cf999416eed734352873e99d4ac0dce6ebf541d9219e9eaee250604"; } - { locale = "cs"; arch = "linux-x86_64"; sha256 = "ccc6858d55578a0caa8edc3cd6b44e876266063a08b22c6aa82f6b975ba9265b"; } - { locale = "cy"; arch = "linux-i686"; sha256 = "0d3b8e10346653b658f31fffc806d3067e1215ce02ba737c38f5a90acf9ddce9"; } - { locale = "cy"; arch = "linux-x86_64"; sha256 = "0fe6206618a90d50927954dfff9de0653d0780de472c9be9eef7b679e8acbbde"; } - { locale = "da"; arch = "linux-i686"; sha256 = "c4998f1ac1b80621fc8172d300c473739bd1563fa9eda1560919d359bae0ba81"; } - { locale = "da"; arch = "linux-x86_64"; sha256 = "adc7129bb0992adc693577eb4846adad01bcf120f740b4fdc5f06f3dd5997a77"; } - { locale = "de"; arch = "linux-i686"; sha256 = "a19ce1edec32fc3f54444a52de13fbf5d5a9838782b288f39069a6aaa8c0bdc2"; } - { locale = "de"; arch = "linux-x86_64"; sha256 = "524c4aab74a14f97b42c830f1bca53d8dfcf53102873f47fbdfef21e6fe05170"; } - { locale = "dsb"; arch = "linux-i686"; sha256 = "965326f3f6fbdd3fe3aeb0d82113b86537db0b70e6eb93aeab154793660a84f4"; } - { locale = "dsb"; arch = "linux-x86_64"; sha256 = "a750854356b464d898a02ee82eeecfebca13b4217d3c0e427da8635210b3437e"; } - { locale = "el"; arch = "linux-i686"; sha256 = "fb72a501b2358fb803b0902d7a7c56f20a662d073451d22d85a0e75f9e62a5b4"; } - { locale = "el"; arch = "linux-x86_64"; sha256 = "cf72cc228f61bdcb94a5f7c508312e1b7c03f9e0828547ac18c08d1020ca9065"; } - { locale = "en-GB"; arch = "linux-i686"; sha256 = "bd4ad892ce6cc1be8d460bb1306a1f727abfaf4868155d9bab8508181c9f9796"; } - { locale = "en-GB"; arch = "linux-x86_64"; sha256 = "9f28b5f905b9a7118d7f50ea93c4ce75bf447f052a1ef9daad8a70cf9cd48e95"; } - { locale = "en-US"; arch = "linux-i686"; sha256 = "310e16225f31ffcda25a70eda0defe2d361946c2705f39f4694059208d9f5223"; } - { locale = "en-US"; arch = "linux-x86_64"; sha256 = "d86c67b5d12fe7a0e219f823a47644b952cb3ced105fbe428bc89e2a728a9988"; } - { locale = "en-ZA"; arch = "linux-i686"; sha256 = "55ee09437fe8c2492a5f55682ae18d326c71c13ef88e9444dbdb0b5fe5f7ebde"; } - { locale = "en-ZA"; arch = "linux-x86_64"; sha256 = "b96c05a0e32604672d2ae420e1e534f4b19a539386360e93caf607e3ea8f5620"; } - { locale = "eo"; arch = "linux-i686"; sha256 = "75071e72dfd0b6212f6e160cb985964302e689432d226a6c08a5aa9ccf10a43e"; } - { locale = "eo"; arch = "linux-x86_64"; sha256 = "7d23e926420a7c29af93957b641636d2c23382b23940109b337f17e073445401"; } - { locale = "es-AR"; arch = "linux-i686"; sha256 = "769f306e31b319dec281fe2afa03f586e83942403b4f1ec40ceef1f522fdaf0a"; } - { locale = "es-AR"; arch = "linux-x86_64"; sha256 = "d9146b07f48840ca7a33f3c20f99392ea1c10de8cbebd053a60b2ed8e03053bd"; } - { locale = "es-CL"; arch = "linux-i686"; sha256 = "c95df915aee57fb0e86368378025de462815dd15cf4fbfc1f4cc606f5dcf1fa2"; } - { locale = "es-CL"; arch = "linux-x86_64"; sha256 = "1b7244f8132135e1f965f59eba6688f40dc377f7b9f7be4df4dd74fd07708778"; } - { locale = "es-ES"; arch = "linux-i686"; sha256 = "5de57ca5bb98bdd8b6a51e6223800309ccdbb448ee8a0519aa15da03efa3587b"; } - { locale = "es-ES"; arch = "linux-x86_64"; sha256 = "1bea15feaab6bdb596cdf55e312609b637c79a185c11737939db20c45a130471"; } - { locale = "es-MX"; arch = "linux-i686"; sha256 = "5edbe5767f96cc197a7e546eef168c5b9543459ef0c6a2bbed1b99d032b3cb12"; } - { locale = "es-MX"; arch = "linux-x86_64"; sha256 = "4bf18487452db842f5bd5a5ee7658e19a57f1ee16af4773d9647252c9e6c1385"; } - { locale = "et"; arch = "linux-i686"; sha256 = "41d37a5d2a839c5a9f63fd86939df187ec9f77094071097d80a19d85969b5400"; } - { locale = "et"; arch = "linux-x86_64"; sha256 = "8a2e8b97563f62c63f55711f0cc54fb57d6927cb7aad89cc4ab2300bccab16b4"; } - { locale = "eu"; arch = "linux-i686"; sha256 = "40c6722ee1e01281fb2bdccb2cd2239f222174803edd2c7face78e3a1e3eeb17"; } - { locale = "eu"; arch = "linux-x86_64"; sha256 = "0fe4cd9d4c7eead144596868402e2feacef5f0140765db3f97ee2bb26445dd19"; } - { locale = "fa"; arch = "linux-i686"; sha256 = "094893d8e4fb045ce68d3342d6f542f33604aa9eb9dd308b16591eba68b0fae6"; } - { locale = "fa"; arch = "linux-x86_64"; sha256 = "5d4c570aeca30053b5530d4a77ac92a622e6808c073f03273d5f95ec47b61aed"; } - { locale = "ff"; arch = "linux-i686"; sha256 = "aa13e64b3700f0727798ce0584c1ca458be2d37b854316eb8db95a766a603fc9"; } - { locale = "ff"; arch = "linux-x86_64"; sha256 = "19bc6d3991835acce993a3ece7d16338c718a4208060a730d197f74e830affdf"; } - { locale = "fi"; arch = "linux-i686"; sha256 = "d30a56a801c2305ca47b416923f93f9e0f5238d5e2054ca86b2facee25884870"; } - { locale = "fi"; arch = "linux-x86_64"; sha256 = "9db94e8ca2ca1409b3e0989af4ba9d2aa0101c9c2d5b6f1ee321532327a9a74c"; } - { locale = "fr"; arch = "linux-i686"; sha256 = "467c744b88987ea094367228175ee1d6f2d1b1deda2db056d143dbd4d214fd80"; } - { locale = "fr"; arch = "linux-x86_64"; sha256 = "50e4a71de78d4fa1b11a0fb57185456a2cfd01cf755e655324332ec28657680d"; } - { locale = "fy-NL"; arch = "linux-i686"; sha256 = "b7aa53b6c83ec514f650c1af83cdbda731775c8caadc508e34101161df6757a4"; } - { locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "d71b1aae6c70176894abfcc3fed8c84b1d3c426ef2125241172259bf4205892e"; } - { locale = "ga-IE"; arch = "linux-i686"; sha256 = "70555105f42429e574e1df7f860fc1331c5d5c68e7b4fae6a6d1a00d14c2cf07"; } - { locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "207a0a310b8fbaad1e030e7a3904170b44b6a796bfe8216ea4cf9bac93a08b1f"; } - { locale = "gd"; arch = "linux-i686"; sha256 = "19884e9d9511156bacb54414e8722fdf5f6579eaa911f5cacf736200ba989e85"; } - { locale = "gd"; arch = "linux-x86_64"; sha256 = "5e5f343c9367b6c8b67f326269152c0582e4f03b3d5abfc4747d96a3f43c2674"; } - { locale = "gl"; arch = "linux-i686"; sha256 = "b0495e2078e7f0748bf285a667d46a518297a54dd081d3fd612060528696d736"; } - { locale = "gl"; arch = "linux-x86_64"; sha256 = "991ca23b93fd2e9306e3b1c3128633e5e147265b95dfa72cff5b00bc4f5faab4"; } - { locale = "gn"; arch = "linux-i686"; sha256 = "4750afd6310a9be2c8e5697076d436c7321aa6b883971979453fc7148be6cf88"; } - { locale = "gn"; arch = "linux-x86_64"; sha256 = "2b14b5b286e541bca2465c2d3472a3113946b205da5a0acefdd9db9849d1b921"; } - { locale = "gu-IN"; arch = "linux-i686"; sha256 = "1c1f03dd683889b4ce80d6fc10d0939c1172b9becf4305989a5a3896a2230043"; } - { locale = "gu-IN"; arch = "linux-x86_64"; sha256 = "0ddd8706942b4ba46ac126f9eae33945b90ba2e8fce5d85ed61307189c37701d"; } - { locale = "he"; arch = "linux-i686"; sha256 = "e9c35252df6dc6ffe6d028404ea9d4157042c0743aad8deba42cf5da32ca354f"; } - { locale = "he"; arch = "linux-x86_64"; sha256 = "ae6b86a28daf441f22ac50adb6205bbbb0ffac978f638fd0558a63b9704dccce"; } - { locale = "hi-IN"; arch = "linux-i686"; sha256 = "84c638031ea3ac329d683ea282f26c530327ede87a42345f9eae417fd8fd4211"; } - { locale = "hi-IN"; arch = "linux-x86_64"; sha256 = "62e161cd10cbf6d1cd91067ddff474b0a73e3be93d44255311e3d44b41cb1cd1"; } - { locale = "hr"; arch = "linux-i686"; sha256 = "7349f78a35747de2a9d7a49526ea555a96e7aba5832f0eeaca4f367db3429555"; } - { locale = "hr"; arch = "linux-x86_64"; sha256 = "7f269905b76bdf9fbeeaccf1de194a9ff27a6aa3a871636320d46db9a585b3a7"; } - { locale = "hsb"; arch = "linux-i686"; sha256 = "72a14ca50ed839a9cd448254edb88e8f71d7d0f1de226bd2ba8f558721f249db"; } - { locale = "hsb"; arch = "linux-x86_64"; sha256 = "b546ee12183aefb64071f503ddf1e11820d2782cbd0984979fa6f6b77c66ab9b"; } - { locale = "hu"; arch = "linux-i686"; sha256 = "7882259d133231976be807bb170f887830cf2827deb6b9605708a42fcb10caaf"; } - { locale = "hu"; arch = "linux-x86_64"; sha256 = "55a23b51b3c90fd1936878ee48db16e8ad328ee68cf97170276e84fb5658119e"; } - { locale = "hy-AM"; arch = "linux-i686"; sha256 = "4cf64098fb6ae55553f5c5c60126e0a9ebcd224eb67240fef013988c21fef165"; } - { locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "58ffcbfb60b63b06c520a5cf543e6ad8cdcda490fb2baf7c35ad0e7c17c8b255"; } - { locale = "id"; arch = "linux-i686"; sha256 = "3fad57b21f866534ce73d1a3702038a73aa64e9d28c96249cca890b886bc8817"; } - { locale = "id"; arch = "linux-x86_64"; sha256 = "eca4ec8568d02af755351db846ceed5bc58b401e2ac3eb6ac25eb235884912c1"; } - { locale = "is"; arch = "linux-i686"; sha256 = "c7a5b48d8055a46da40d650f18aab8f5aa7aefd59d165d5fdec0cf361b5360e3"; } - { locale = "is"; arch = "linux-x86_64"; sha256 = "7e0043f25378fafd3176a5b735ab35449c2febc83188d93bbcf12e47b729e0a8"; } - { locale = "it"; arch = "linux-i686"; sha256 = "e77950e24117e0e25e0a77f40819e9b10711725b2fe8e8772d8875120ae58751"; } - { locale = "it"; arch = "linux-x86_64"; sha256 = "347ec5d8bb5f61ef3003c2ed106ec7d70534816341c168acf46565571a76c0bf"; } - { locale = "ja"; arch = "linux-i686"; sha256 = "8ca089d2624572f38d9fe7911d9ab77dae2589b3022de9132215dafdc8f78ce8"; } - { locale = "ja"; arch = "linux-x86_64"; sha256 = "f5f5825ae34f819744c2a03c7af7ba38a2b2c3f65494f381a6561230c1bfc5a6"; } - { locale = "kk"; arch = "linux-i686"; sha256 = "58e863ff852874e797c6358bf5f7d52e29e504f03186b8b6c7a92cc44501ea13"; } - { locale = "kk"; arch = "linux-x86_64"; sha256 = "ece9759a53a5269be626d6f68c49da70f2c8e60b9d8ea2061328050d2c31b7eb"; } - { locale = "km"; arch = "linux-i686"; sha256 = "9ed22fef8e3d94b7a15fa557d86b05e883ad9d12755ba3420a263232dad7d5a0"; } - { locale = "km"; arch = "linux-x86_64"; sha256 = "fbba67f3ac60bc8d41e527e7bb7a82266efe47a9a09eb757433a52209c1b9754"; } - { locale = "kn"; arch = "linux-i686"; sha256 = "8cf7a3036d0221fa162683348ae047338b38e5755e6cf0cd6530a20e43eddc74"; } - { locale = "kn"; arch = "linux-x86_64"; sha256 = "cd99f17bfc77cb632c7c2d5627f43a98c1591c25a6175cbe88d0b8b5d6c7d4e8"; } - { locale = "ko"; arch = "linux-i686"; sha256 = "d1e27ad88e411d59448bc7d2aea0fac386d71a9579b246a151ecba7d10cb74eb"; } - { locale = "ko"; arch = "linux-x86_64"; sha256 = "82ece26a18be4db481a9bd9748bce59d14a2704e5e4c3873d2788e07efddfd67"; } - { locale = "lij"; arch = "linux-i686"; sha256 = "468085b58dfe815fb6a9b229d876ee6d14737edd7e34ffe7987bce1eec2e0079"; } - { locale = "lij"; arch = "linux-x86_64"; sha256 = "1e1a210f42e17de155b2f53a94d402be03f3a475e75db73e1aced157edafa9b0"; } - { locale = "lt"; arch = "linux-i686"; sha256 = "1350737560c2e5e69bc70152fc3ae246b3ab18e4dade066e6b9488ddadba29f5"; } - { locale = "lt"; arch = "linux-x86_64"; sha256 = "e96616deedc0c1967ca0d17dcd21d1b5f43838cb1c313fcf5394ee7a552ccf0c"; } - { locale = "lv"; arch = "linux-i686"; sha256 = "e7728d5d0e76df3750f1f5ed9e8585fc6210200f41d9b1a8f6b638582f623dd8"; } - { locale = "lv"; arch = "linux-x86_64"; sha256 = "5cab37509109146ae3ceb82df40152cf2de4b755c479248cfbc5ee9e7780399b"; } - { locale = "mai"; arch = "linux-i686"; sha256 = "3014cda0a3b95c7d5ce6e098e220bb107e2ff2974eb7d4b71ea9061cdc102955"; } - { locale = "mai"; arch = "linux-x86_64"; sha256 = "46b5b4f03bd32f5c84068326a78e5e744bfdc23b68ec067b6774574a6a952dc7"; } - { locale = "mk"; arch = "linux-i686"; sha256 = "55dcdaa2cf783171bf2e3f3244cb9f8165d7c873b62ee65d2392581585be7b99"; } - { locale = "mk"; arch = "linux-x86_64"; sha256 = "5002a14dbd07b29dc08f683d28c74429cfc1a924626e93f76f7568465cc550dc"; } - { locale = "ml"; arch = "linux-i686"; sha256 = "d1e4c7a26cfb2ea04abb1348e7bb57204fa355112537c26877d6e80bcbe3fd25"; } - { locale = "ml"; arch = "linux-x86_64"; sha256 = "d534c4a30eacff662fb387f1753be7e95fcfc1b0702ba3c98b88f121f1109859"; } - { locale = "mr"; arch = "linux-i686"; sha256 = "48d8cec7812fa7989a79f4560be33898c83525f383710d60f6dc8a2292851764"; } - { locale = "mr"; arch = "linux-x86_64"; sha256 = "5df095d48eedcfd1d102ced7b2928585ac1c7fc3e4fa84878b5a34914aec7c9a"; } - { locale = "ms"; arch = "linux-i686"; sha256 = "d377e167c3154143cceabc931dca1b031f45e9e8bb39dae923bca3842edb661e"; } - { locale = "ms"; arch = "linux-x86_64"; sha256 = "af023d2ccae69120958a0a5c4613e205972789603b43f11a32b24566fdee2d0c"; } - { locale = "nb-NO"; arch = "linux-i686"; sha256 = "8e50da27fc1ac9f2707afe7e964473e065de55ef726c03159029e89fa092b520"; } - { locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "38c214d32b85bf1a55a66605614c72eeab693d39df9e95ec6971b6ba46a0d854"; } - { locale = "nl"; arch = "linux-i686"; sha256 = "9732ac83b4636b84e9084c0bcefe2ad8e0399e67aa5e9e22aaa40a2bb43c3274"; } - { locale = "nl"; arch = "linux-x86_64"; sha256 = "d4e424f62748bd9f35a98fe6a01300b13615ff6dba914eb69f4f343ef7630515"; } - { locale = "nn-NO"; arch = "linux-i686"; sha256 = "a0acef371c32189f78d13e9a7f24601559a5292642330a609267cda8929291ed"; } - { locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "90fd2eeebebc9c2ca6413cd527697d1566312e099828035ce24204136b568466"; } - { locale = "or"; arch = "linux-i686"; sha256 = "bb628039e4d3e8e6cba0efb5754d4e61cae6b6a50f88aaf9b034570c5d25ba06"; } - { locale = "or"; arch = "linux-x86_64"; sha256 = "e1af53035829620db80c0e75ff28738a480ff0c946edd3f5c821dcb8683ef800"; } - { locale = "pa-IN"; arch = "linux-i686"; sha256 = "20665cc6f3d073530f459d8a14712e59cb5db82957042dc498e112db69957f5d"; } - { locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "8a912aa7900012512a93e740f078a47340d724a936f4949467e028e2d44adac5"; } - { locale = "pl"; arch = "linux-i686"; sha256 = "a51c8e58ba89dbf53411b1d61229c1a515c1af53a28b7d39d654d1dd46c3f7bb"; } - { locale = "pl"; arch = "linux-x86_64"; sha256 = "e060bd9b72ce6feb151ebcb8630598f53c0ab5069a2cbc88c80b369ef5b4e924"; } - { locale = "pt-BR"; arch = "linux-i686"; sha256 = "d9391656b4e5959dba3eeb3537fe06ec67e56248259af723d09f0dc0d451d5c2"; } - { locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "35cd35737abdf04ee714177a62b59bb2ecf819b508728ba5ce1ea4b85cbc9db6"; } - { locale = "pt-PT"; arch = "linux-i686"; sha256 = "22a90cc9e3da6abfc21d2ed039ab1877738b2f2d7aeb4fbfcbf1c3763b6516da"; } - { locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "b4bca72d7b866de19b18d60a7278c124af9d00f44ff3b635eb80b042077634c5"; } - { locale = "rm"; arch = "linux-i686"; sha256 = "7d94fe2c2abbe8f27c10e27540cb415f61a338a121f87f4c4e93b923e544c923"; } - { locale = "rm"; arch = "linux-x86_64"; sha256 = "b55153028773d452c696eab97aff90393caf19d9ed8977c0b0d147284040d075"; } - { locale = "ro"; arch = "linux-i686"; sha256 = "80ccb9bb187f3b9597f6112ccd13b7274f4a7d9eed82567180a7ac99e0748323"; } - { locale = "ro"; arch = "linux-x86_64"; sha256 = "3a393002af7c9d6a90f15707e0a6c960f01a4335d647e8dd2ee237d02271a74a"; } - { locale = "ru"; arch = "linux-i686"; sha256 = "5c4456bc1711203b68467122c1bec0b7a323cd944cd2a2daa7cea3fe9d8bf79d"; } - { locale = "ru"; arch = "linux-x86_64"; sha256 = "82fe5ab5ffccfa4ae600e084b20ea9d60fe5d1d2f22fb836c6d05eec398239af"; } - { locale = "si"; arch = "linux-i686"; sha256 = "5cef376fb82f8d952d467f5c5db88282c6a812065a2c64beaae663e2a8c8ff86"; } - { locale = "si"; arch = "linux-x86_64"; sha256 = "b905f7ece85de9b13e055b93811d3b21bc07b95279b2f89a6837863821db546f"; } - { locale = "sk"; arch = "linux-i686"; sha256 = "5b671c85ae04e379ee7426f1a7e92c2295edb04362addd612812f39d4d90cac8"; } - { locale = "sk"; arch = "linux-x86_64"; sha256 = "3bb734435111310df7b8e7e3e52c36378fcbfe388420b3e144c008ee3e142044"; } - { locale = "sl"; arch = "linux-i686"; sha256 = "8c6af8ab571d42492b8d2aeb6ccbb29a261c1401293cef76b2158ad6e7841eac"; } - { locale = "sl"; arch = "linux-x86_64"; sha256 = "3cc7b211f88458d1b261ea92ce20fd4f72ba39fe9ec86dd4f0410874c227874d"; } - { locale = "son"; arch = "linux-i686"; sha256 = "b38286ece3dae0f9998e37ba7494d394daa8ac390ba60f6f75960adc87d0f7a1"; } - { locale = "son"; arch = "linux-x86_64"; sha256 = "b99b4334c2ca7731db895972d55ecad7420c4a4da825a496aed2fccb81cd6ff4"; } - { locale = "sq"; arch = "linux-i686"; sha256 = "bdd66c3d22c66c908bf275ee1ad1b7827b4439cf3fb75a537625a39e7acca3c9"; } - { locale = "sq"; arch = "linux-x86_64"; sha256 = "d7ce54fb3cce04bad41ba5491834e6cbf8daa93e983b7f66d4bc2f6b52c4c41e"; } - { locale = "sr"; arch = "linux-i686"; sha256 = "20cba6a11d976c036243dd3e55c2a7ad586006b5355bb8b742db4fd71d0bb7eb"; } - { locale = "sr"; arch = "linux-x86_64"; sha256 = "a9c8be3942abe8d14b89316f32402fae1abadacf5ddb844d0e50a69c7173bf22"; } - { locale = "sv-SE"; arch = "linux-i686"; sha256 = "f692fbb6fd82d1fdac23cde63687490c1ccebac715003b6212238f6a78289fd6"; } - { locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "cdd7d6f9ea77f209c1ce3b2c405757ce44a0bdbe1803d32e8bf8e683b7f1894f"; } - { locale = "ta"; arch = "linux-i686"; sha256 = "064ecf6db5cc65f281e03763acb3512e0e2c54237c6a7a0be3c8828804e2b433"; } - { locale = "ta"; arch = "linux-x86_64"; sha256 = "33187d93b82edbfd01debc0956c1194539339b3949ef9f65a2aed7791b5a253a"; } - { locale = "te"; arch = "linux-i686"; sha256 = "ffa689f1111d373300785a5e62b501ac53300e02b520345d8a31de5122302e25"; } - { locale = "te"; arch = "linux-x86_64"; sha256 = "4d7504b72456d68aec2f73daeaf89112fb8372c00f117a436a5feb7ad5c255b7"; } - { locale = "th"; arch = "linux-i686"; sha256 = "d22c3e017c1897c6b4f4da0d43647289f35854d43b0dcc18d3e5898d70e163fd"; } - { locale = "th"; arch = "linux-x86_64"; sha256 = "4f3b91bef8c6d778e33ff17fe97535ddb7bc6d8ecf050d09ee722f065dada050"; } - { locale = "tr"; arch = "linux-i686"; sha256 = "d8effc19f4f9991c3e0cc8f34aef9040a1e36e0e0c7a4f541a8bc4c5e837a1ea"; } - { locale = "tr"; arch = "linux-x86_64"; sha256 = "9a6db03d21904d9b5e335137c866c61037d9a0074cdae77bb436ffd6fffe7595"; } - { locale = "uk"; arch = "linux-i686"; sha256 = "f5053f5d3237ab26971b678ce53d052fc3d87282127577b2590f3a911feef140"; } - { locale = "uk"; arch = "linux-x86_64"; sha256 = "2a9f26d892db02c97ebeb9486ab582a20b08b73ebd8cc71a4f4f3596bcf875af"; } - { locale = "uz"; arch = "linux-i686"; sha256 = "b2cca9b4e5a15d80cecee587c7b7738c22fe41f7ea106b3a336d15940cca1f39"; } - { locale = "uz"; arch = "linux-x86_64"; sha256 = "efd24f9c7ec712ba72b9305f30232b6129af8d75e9bbac7133c9dd3e056d6f0d"; } - { locale = "vi"; arch = "linux-i686"; sha256 = "3d1ba2ed2615a0543bf6484a130922e3176b07fd91f2c5294ecfb65978fe454c"; } - { locale = "vi"; arch = "linux-x86_64"; sha256 = "15807c890efbc934385766fa04ced69c9cf125da52a01ac685689a2873b689dd"; } - { locale = "xh"; arch = "linux-i686"; sha256 = "c9ed7d523d2fe5fe9b60972d48148ca95f56ea801c49dd962e832c7485d368d1"; } - { locale = "xh"; arch = "linux-x86_64"; sha256 = "f7d1314255490fae9ab31fe36adb7ea8a657a11539a7d2f95fb7d34d18a83322"; } - { locale = "zh-CN"; arch = "linux-i686"; sha256 = "6fe6f89f22cd9752ad5d91cb0cf7da8b362090aab9e0576483dd14df509732e8"; } - { locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "1443bc4a7b07d2393d5914df42d3fefe8736e927590d8373f9f7db8d6c903c43"; } - { locale = "zh-TW"; arch = "linux-i686"; sha256 = "12a793f7033926dcd760c428ae015983e1c5175adc1768609a8859c653ce2272"; } - { locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "eca47abc014870a7799aedb3f7e5603297dffd1ffd54ce2536c3399881127605"; } + { locale = "ach"; arch = "linux-i686"; sha256 = "6dff17afbbbb9ba8e064b431db1f6b6a1862ec56e11dfa8cb8ef5d89dd9f7705"; } + { locale = "ach"; arch = "linux-x86_64"; sha256 = "4f806511a1e7c2100d976a9753f0e7ecee483f19ca1176e1867021a55725aabf"; } + { locale = "af"; arch = "linux-i686"; sha256 = "0a2e0b55e43b41304895f624ae95372e4ab52b06c8892e0ef02a8e41c5ff28e5"; } + { locale = "af"; arch = "linux-x86_64"; sha256 = "c865d4a431c3b92347393b62c4589fe67f4323458faf1ee07367e1f432d0e839"; } + { locale = "an"; arch = "linux-i686"; sha256 = "d58dcdb222fad88650d65623005897de7a693d16c44d86f25694a00d7fa5111d"; } + { locale = "an"; arch = "linux-x86_64"; sha256 = "b00ac5cf76fe562cac8f72327cdf0e54b2c4384586fbb064deb72d2741e05268"; } + { locale = "ar"; arch = "linux-i686"; sha256 = "42851096189bc53d18ea26d9de1d0321b033a5601594c0515530263cf3155b12"; } + { locale = "ar"; arch = "linux-x86_64"; sha256 = "4d7e8760da3dac6cffa8eafeb22c759bfad3664bba7f690c0f1d1aa5284aed3c"; } + { locale = "as"; arch = "linux-i686"; sha256 = "706d584ea78172ec88c29d124abf2bd34881c9752231fdb3f491d0bf858fc5c5"; } + { locale = "as"; arch = "linux-x86_64"; sha256 = "13ed628c2ef29b8d3188274e6fc101ba622d4e1ca20880b381e62225c5f057d5"; } + { locale = "ast"; arch = "linux-i686"; sha256 = "9f8f5870245cf0016d4a9a540d29d31249188fa8f390c47cfd330874eb20e8dd"; } + { locale = "ast"; arch = "linux-x86_64"; sha256 = "9bd85381abe1335ca9208ad764477e6f2a926288058c91aee0af3a3967aa1e57"; } + { locale = "az"; arch = "linux-i686"; sha256 = "9e117f5aabdb8f71bcaf8073c76c4b795c957e6739471fed0f484d0ed39b5a98"; } + { locale = "az"; arch = "linux-x86_64"; sha256 = "06ee5bd4f1096e6728120fbed4ed6cbc88cb1003c484a15dd624254ae93ed849"; } + { locale = "be"; arch = "linux-i686"; sha256 = "c6091272b395905e746271176d354ff59eccc9d96c5e1ecc2e8e5c3ac65ed2f0"; } + { locale = "be"; arch = "linux-x86_64"; sha256 = "090ba5d28858b2c58a6a29ce0f435797a938cd788ebd3413db4ced224329d2e4"; } + { locale = "bg"; arch = "linux-i686"; sha256 = "1b8b5bbe6473b13fb80ca31514f7386015f5920c7a3d8391aa5549eedcfd09ce"; } + { locale = "bg"; arch = "linux-x86_64"; sha256 = "b49fa01d8749c1b4d327dca2379e4940d5d85d310e998cad66efecc2f485cf9c"; } + { locale = "bn-BD"; arch = "linux-i686"; sha256 = "3372a82af514706d8eacc5e4d35584379408db964c3cfd35ea75597ddefad7e8"; } + { locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "798a2a405e175f8347dfd933300eba728cde6dbe47fa831552e40b87455bd921"; } + { locale = "bn-IN"; arch = "linux-i686"; sha256 = "3895feec666feb59a554310efc70b248d63906ca6bde59c03d9a29fa2d4cd7c2"; } + { locale = "bn-IN"; arch = "linux-x86_64"; sha256 = "58725666980beeb5a651683a76be2084ba9d40530a063f1f1ebf160fb4db8e0b"; } + { locale = "br"; arch = "linux-i686"; sha256 = "21d56c17d225a6a35711bb8354724a05ad15ec565cc70ec128384f9b8762edba"; } + { locale = "br"; arch = "linux-x86_64"; sha256 = "c0cc5568b2fac5ba35ef742fd1f87fbb73e1bca47240e888848ac804f4bd7714"; } + { locale = "bs"; arch = "linux-i686"; sha256 = "4b2d818c81bc15dad48c47847c14a00cec5b93615a23cb5d2068f4a2ef98b810"; } + { locale = "bs"; arch = "linux-x86_64"; sha256 = "a35a4cd723c446ac5593989f7fc4a56aace5cbf6bce757f3a92986e795ab07ba"; } + { locale = "ca"; arch = "linux-i686"; sha256 = "66497de3bf6069c1af68f6a50988919b8ff37afb9da7ce327a5beb014b75aa0f"; } + { locale = "ca"; arch = "linux-x86_64"; sha256 = "188b43172959c2ef064ef558d0b6518409eb19bb33add98d77a8bf260def55e6"; } + { locale = "cs"; arch = "linux-i686"; sha256 = "2ccd96ef1b831580dcfe84f62501fcebae7fdf8a803786913bd24a9cc9904ff7"; } + { locale = "cs"; arch = "linux-x86_64"; sha256 = "c9e1665399f055c561ec6d8df90235c3bfb3570d7ec613b959e80c5080e7c614"; } + { locale = "cy"; arch = "linux-i686"; sha256 = "789aadc04e83af8cc08cb9dd67bc61aef337a31d2ac17239c194de2d12608b6e"; } + { locale = "cy"; arch = "linux-x86_64"; sha256 = "6d695037d9000911422a6b50d09ef250044d629368900ec569a06ac245c1eb2a"; } + { locale = "da"; arch = "linux-i686"; sha256 = "b63788d28be0cbc37499e5ad41b8a904413c537a5786b1c2934c304f2adf4ded"; } + { locale = "da"; arch = "linux-x86_64"; sha256 = "a5d4cf1dec637ce5c09ee9f8be82ad32756a56ff0e8c529c945b40adb3b928e0"; } + { locale = "de"; arch = "linux-i686"; sha256 = "ae3b299a514423faf79bd21952f90e37a4d8e7be2cadca9a1befff4160f103e7"; } + { locale = "de"; arch = "linux-x86_64"; sha256 = "971b80131db7e1facd480546d9bd780bf69d2a99338d9e50415eb6583e550cdd"; } + { locale = "dsb"; arch = "linux-i686"; sha256 = "87c439cfbd139477055e5a8bd421aa65cb75cdb93090a54899d25411ab3d5dde"; } + { locale = "dsb"; arch = "linux-x86_64"; sha256 = "2a04b723d1ed3f9bab3dc9f11fc315fbce2543bfff37532e7cd7a4b9a33d7936"; } + { locale = "el"; arch = "linux-i686"; sha256 = "37e02fb347d8cb1f3b5079c3be055c0e37cdb3a6ab97b2928237beeb446e800e"; } + { locale = "el"; arch = "linux-x86_64"; sha256 = "9a439341ff9c39cfe8dcb6681221d0d78690ad063ac99a201001f5787b5ec270"; } + { locale = "en-GB"; arch = "linux-i686"; sha256 = "a3cc4951a826e483ddb7832333e032e9197418cacdb4250e5072de1ad2fef5d2"; } + { locale = "en-GB"; arch = "linux-x86_64"; sha256 = "433ecbabc4d1fabb2ebad958c4e7a0bb9cff9a657b1a641f820d5f0a7ba8c1f1"; } + { locale = "en-US"; arch = "linux-i686"; sha256 = "a78498b51059f46d42cf2fcb2232d57d97f2ab4e8a789151d3a26e013132dbb8"; } + { locale = "en-US"; arch = "linux-x86_64"; sha256 = "251e8d67abe989ddbf7cf9e78bba58eee43e3b1eb0c461a9c6c376bda6c71a87"; } + { locale = "en-ZA"; arch = "linux-i686"; sha256 = "d6195b72e56ca9ea366ab47885ee22b0f7bf4811b3cc937c36af53fe4e6f5d89"; } + { locale = "en-ZA"; arch = "linux-x86_64"; sha256 = "f82eba9a593fd6ad8a9b5b8b61d2ccf986080a1cff2af598afe930cd96423a5d"; } + { locale = "eo"; arch = "linux-i686"; sha256 = "b6bcfea89be5883e1e5d2899bab371b7d972d4be5717d21d522bc56679463dd9"; } + { locale = "eo"; arch = "linux-x86_64"; sha256 = "4908438cf56646665f91bf12e46c611818c5323979048d01bbdc4d5cf945832d"; } + { locale = "es-AR"; arch = "linux-i686"; sha256 = "ace48b5a36bccf1d21e17611e9ef7c21786f207da111473479473e5bc5817fe9"; } + { locale = "es-AR"; arch = "linux-x86_64"; sha256 = "277ec48d9b45bd41dcaa141d67f5f814845d5e0faeca97c6f5d507f8c9ce5312"; } + { locale = "es-CL"; arch = "linux-i686"; sha256 = "78cb60452201df5cff7ed7da54f3f876596de0a895887f8016b3d642d727e96c"; } + { locale = "es-CL"; arch = "linux-x86_64"; sha256 = "3be79c28ea7f7ea075fc92e418ff980176dc9707329f1043c54161e703b43028"; } + { locale = "es-ES"; arch = "linux-i686"; sha256 = "4bb8d2732754c1112bc8d32a26b0cfee79449447a4cb8ca368f1d41e9ba43d37"; } + { locale = "es-ES"; arch = "linux-x86_64"; sha256 = "f512f8f1b163c72234173944c5781550810b90c2b6a1a6f8d070b87a8f85192e"; } + { locale = "es-MX"; arch = "linux-i686"; sha256 = "01f2b5e09792714b6315933ec714c5d1baa77bbab5b4e4d06ecf670c47c75d40"; } + { locale = "es-MX"; arch = "linux-x86_64"; sha256 = "c7af08a37c116a5cb805cf0b60ef1b1a8f956fec3381ceb0288c62355b05c91b"; } + { locale = "et"; arch = "linux-i686"; sha256 = "0aac86a5cd520a806aedc2f8111798eebcb08919099973f7d7fc7addfbaa0584"; } + { locale = "et"; arch = "linux-x86_64"; sha256 = "fa0ad1bfd65d231cc58c9d79fb07cd4a98d5976e870af017642a77ebd7a4b260"; } + { locale = "eu"; arch = "linux-i686"; sha256 = "4bad5d7e4e2d917606f63efa079092516ff1435013adb8aedbe95a53aa2c594a"; } + { locale = "eu"; arch = "linux-x86_64"; sha256 = "9e390ebf06c5abc46f80ec8c77bd7572de827ee5d368de34c1252ee386687372"; } + { locale = "fa"; arch = "linux-i686"; sha256 = "9738ddfbaaf3e34c5546c584d9dbdeca68086e66f06b438760befb23e07593cd"; } + { locale = "fa"; arch = "linux-x86_64"; sha256 = "55e8f1f2547a9c7c3bb3cf7029e166ae42a3745f51b58c87d7eeaf6ecdb81952"; } + { locale = "ff"; arch = "linux-i686"; sha256 = "dfb266913e27299469de2a5ffedd5fa47f344d6d7e092ddf630cde726b94934d"; } + { locale = "ff"; arch = "linux-x86_64"; sha256 = "370e310c39f0a87cc8e3ecc5bd6c8f3bbd863b1a8d7e613a0c2fa9be7b8b988c"; } + { locale = "fi"; arch = "linux-i686"; sha256 = "2d10c5e21f414cc83a5413e8a2fc53124c2dadb718861410fa45e57c8ba4fd7c"; } + { locale = "fi"; arch = "linux-x86_64"; sha256 = "d791eda3135572d0735393ee1101383b4d20142a4279dfe615a9e20c341ea4ea"; } + { locale = "fr"; arch = "linux-i686"; sha256 = "94118a53c25a0fb243b63d51a64c077672c4c93d7ca964f6384e3bb8234891a1"; } + { locale = "fr"; arch = "linux-x86_64"; sha256 = "6ccd8216017b2593430a812ea167a97012060d41fbf610bf518b8d997ac59c53"; } + { locale = "fy-NL"; arch = "linux-i686"; sha256 = "bd5cfd3565353ae8d01d8c9089a364394aa0ebc4547a41dba11ced14a494ed9d"; } + { locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "0db0aa59c0df881f901d794fdf99f5abd27db88e0c3ab2d364b22eb7326152db"; } + { locale = "ga-IE"; arch = "linux-i686"; sha256 = "59486516e8aa13ca113e1f2998b05509dba0546aa7b11d99ff6da55a6f069f64"; } + { locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "1cda950ea6cc6d8957d580fd2c59784bf6cd339083f0fc3cd3a084e0326b0041"; } + { locale = "gd"; arch = "linux-i686"; sha256 = "602047e1669e9551f7a3501082e81e3e79287082b981d59f515887c5e892fb70"; } + { locale = "gd"; arch = "linux-x86_64"; sha256 = "d5b901d78e06a75d2534214bb849e31696ec44349c18b9b511e68951d29fde90"; } + { locale = "gl"; arch = "linux-i686"; sha256 = "d55a556321c600024ea2fc38d9671f34c490046da88a89e4ae46d9217bf64677"; } + { locale = "gl"; arch = "linux-x86_64"; sha256 = "3deb86b766f51a218266cf4d97e1b3332c8ca7d75cc86491d940a8b9f37c0bb5"; } + { locale = "gn"; arch = "linux-i686"; sha256 = "f38099f998e5bc396360856fe2543152feed086b64a85b7ac3bd2b9e3e0ad609"; } + { locale = "gn"; arch = "linux-x86_64"; sha256 = "af4055322dc0524a00fc3ac08a4b2eb40a305dd574b92cc591fee6a00482c4b6"; } + { locale = "gu-IN"; arch = "linux-i686"; sha256 = "3210857982a6628f8c2632995c248eed1bd1c719ddcbacb663839990e67b88c8"; } + { locale = "gu-IN"; arch = "linux-x86_64"; sha256 = "bb2154aba760896180ae747648530880127c8c46481b04a1ea0cb3b47c2a6f41"; } + { locale = "he"; arch = "linux-i686"; sha256 = "18b5217fee9e30bd4bb7f1ea27445ff4aede149a286c07b7c8e9740330b7e6eb"; } + { locale = "he"; arch = "linux-x86_64"; sha256 = "2f51ccc6e5c64976c2f81818d0a4381e508aa5f70ec2108f0e6f512a51574709"; } + { locale = "hi-IN"; arch = "linux-i686"; sha256 = "555318d41795c988f41655bcf4653aef259c2e3dc80fdcf95670c6ada7fe687c"; } + { locale = "hi-IN"; arch = "linux-x86_64"; sha256 = "683e0437ff9168e159e933bf72f6db2d95ae94bb06bc48a1d1fafd30b7028fe1"; } + { locale = "hr"; arch = "linux-i686"; sha256 = "c7a2cfb5f4594a3690797ee5559949154b3dd8c9e6a4dbd774e312f914e0b268"; } + { locale = "hr"; arch = "linux-x86_64"; sha256 = "94098ca5f069445a6514d4b7500ae10b018b4e1dba2eb7052a200c5eb707ba41"; } + { locale = "hsb"; arch = "linux-i686"; sha256 = "c81cde05298660186d2760e977e43e554a896105765c043caac74b09326358fb"; } + { locale = "hsb"; arch = "linux-x86_64"; sha256 = "4cdd381d2eb94f163637a328e5ee9369eddc0559f17861377566853e2a7ec571"; } + { locale = "hu"; arch = "linux-i686"; sha256 = "0af518a42e35174f838b958823ad1aa24a14ff75a6058c2171594e16d5670d77"; } + { locale = "hu"; arch = "linux-x86_64"; sha256 = "b4c0212fe6a8df9689d5dfcaa9ebb2a1cf07e1e9817727581411542ea9bf26b5"; } + { locale = "hy-AM"; arch = "linux-i686"; sha256 = "0d62e6627e3ea838089a6b8b8692d034a64b47c66af80561a23bcdd74fcc777b"; } + { locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "0e07e77cfac6588f8b1c3579b7dfc62feafcb72e7f9f57e2618364e3c02c0527"; } + { locale = "id"; arch = "linux-i686"; sha256 = "9361b3c83f4b3fe84d2918810b4651bc2878eeb3cdc849c513aa3faa17bb9a72"; } + { locale = "id"; arch = "linux-x86_64"; sha256 = "baaa11970fb695434fc2c7829d99578f7f48debb5e11729f94b58df330608c36"; } + { locale = "is"; arch = "linux-i686"; sha256 = "3f1fc35dc18a684a22c05a2ce468b5a164b6c83457694f9de4e6f9a72c28c6df"; } + { locale = "is"; arch = "linux-x86_64"; sha256 = "046fa860343ea079db768d94c5dbc563d6564df5a177f2a5cb7fdfa965576019"; } + { locale = "it"; arch = "linux-i686"; sha256 = "ce736af6240e803a3c1fabb58bdae2e27e44ff593e56172b3d6d174c89f606e5"; } + { locale = "it"; arch = "linux-x86_64"; sha256 = "e2a8fb6e3f18b2be4b7736e3c8adf77968bc13dea7f981e20ae47430b137695c"; } + { locale = "ja"; arch = "linux-i686"; sha256 = "2153c10104c62a5814a4f72fab7be6ffa2e03e5c5cc5f7172820d0a139134fe6"; } + { locale = "ja"; arch = "linux-x86_64"; sha256 = "446a20d4ca5c7086045f8750eb0bcc850118d2f020a77f8fa4d116064b443953"; } + { locale = "kk"; arch = "linux-i686"; sha256 = "3ddda0311feee7c247fd309a7721f4be8458fa528e63a2e8f58c005f70007144"; } + { locale = "kk"; arch = "linux-x86_64"; sha256 = "4dd8f3ea040fb2d6056f0c0f615ed38f09c980cee660fba1f8aaf0fd506745eb"; } + { locale = "km"; arch = "linux-i686"; sha256 = "a295d9d466aef89c95989866a38080d3d1b110e4efb52b1a01479817dd1c866c"; } + { locale = "km"; arch = "linux-x86_64"; sha256 = "dbb249a1398c335a155ea2b2f6ac4656f8ff00b999035dce9f5a59532043f9c3"; } + { locale = "kn"; arch = "linux-i686"; sha256 = "357077be38c6869602a13abf1f494ec8a124a9eb2c03a395a1b30276110b6913"; } + { locale = "kn"; arch = "linux-x86_64"; sha256 = "11658a25f30558a6f11f28c80a98800095ef4c5879d456dc3503737a8d9cb465"; } + { locale = "ko"; arch = "linux-i686"; sha256 = "a653f4030480ab17d77c48b144296e78faba7ad48fdce812afbe8243299575c5"; } + { locale = "ko"; arch = "linux-x86_64"; sha256 = "182858b0c4bd6ece47aff2b406da7442eb3fbe148c3bc20975f6bafd2acd37ac"; } + { locale = "lij"; arch = "linux-i686"; sha256 = "449088107c0077318d95176a90a65219a76c851c98dd5b929452bfde2a87773f"; } + { locale = "lij"; arch = "linux-x86_64"; sha256 = "8b45df098143a01f915b8eee0f8b7d56b4ec73fc9cfd0fba8c5f4b8582992f80"; } + { locale = "lt"; arch = "linux-i686"; sha256 = "085e9873154fab87c909cef005a82f0d5ab81a8ece9adfe46766ae69418084f6"; } + { locale = "lt"; arch = "linux-x86_64"; sha256 = "dde643769a14714cb9990fa489389fd5cabcfb26b23c31bb32dbaa17a38f5150"; } + { locale = "lv"; arch = "linux-i686"; sha256 = "f6363da3c7ebd5f9d80454ad126ac1cf03ef2c9fd2eebf5cb174f0d7a9cf1e36"; } + { locale = "lv"; arch = "linux-x86_64"; sha256 = "41fb793c10d5eb52dd3847f9dee30c3f67c8ad5061897d9f13135b7d1666a84b"; } + { locale = "mai"; arch = "linux-i686"; sha256 = "96af787075b06d96a2e8a261b900f6eb590f4997354dcd9f57a8714af3432a12"; } + { locale = "mai"; arch = "linux-x86_64"; sha256 = "514e75157308cd6fc96c54592dd1c1f5b556c15c5b211543644f324eee09b1a2"; } + { locale = "mk"; arch = "linux-i686"; sha256 = "1f809ef4d0afcb13bb40459a63be49ab6e074641e8f4ce54e9d2bd89c4b0b141"; } + { locale = "mk"; arch = "linux-x86_64"; sha256 = "4931d99ddd6851e4e4596a808e6b6e5fe45012711723c6748b752217c70be9d6"; } + { locale = "ml"; arch = "linux-i686"; sha256 = "5081b42676c174226c357c798d64cade2acecf6e935bbfabdaab548d364dd1ff"; } + { locale = "ml"; arch = "linux-x86_64"; sha256 = "1cbaa2c64d8fc098b67f77660e18a3df3e051396a3d5e0f984294b0823324365"; } + { locale = "mr"; arch = "linux-i686"; sha256 = "d1cc4ef0d9938c85a21e64e4a71539d46a78c709edd1ac1dc331da8ae6af57e1"; } + { locale = "mr"; arch = "linux-x86_64"; sha256 = "8fc0abfe8e834c0894187fab63becd1e3d4e071609676c1d0a8fd35a4265ec60"; } + { locale = "ms"; arch = "linux-i686"; sha256 = "7f471e30f28f0ccf6bc285d24923be2b53415891f4f0909c31160bd09d8e2c21"; } + { locale = "ms"; arch = "linux-x86_64"; sha256 = "150101c5a3556664a9e3827edf36c412c64037871a5af5f66c47bed448c8931d"; } + { locale = "nb-NO"; arch = "linux-i686"; sha256 = "67b888c5b666e1428c182dfa79aa1a9a471c785d4dac85e6cf1f618dee9c796a"; } + { locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "57c1aee6f309536788a9a9bd2be3046d65c9b174583de7e0b72cf45f28156f67"; } + { locale = "nl"; arch = "linux-i686"; sha256 = "43feb0205631ff5caa6e7d71fa37a6643b3b3fd92fc06b77cef9e9a0113bb1ce"; } + { locale = "nl"; arch = "linux-x86_64"; sha256 = "182481c49deb71d9344a8789db40e233326719dbe19973fedeaaa504ba771fcb"; } + { locale = "nn-NO"; arch = "linux-i686"; sha256 = "995abcace6138d11252b60958a8d5a13a1abf94c8017e567053468f811549b24"; } + { locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "d449fa5534d9a7f5e772678388770f14fa32226b0366e9a2adf7cd245b911139"; } + { locale = "or"; arch = "linux-i686"; sha256 = "a7abea23a03ed38048e724e2f7fa234e24f0f74d8681e39bca5ef183178df923"; } + { locale = "or"; arch = "linux-x86_64"; sha256 = "b05963dc6e13757b4afd1a1fa72c3128cbdfc9db3ba16adc20d2fd2eb101f165"; } + { locale = "pa-IN"; arch = "linux-i686"; sha256 = "4a30beb8ca9feca58487264abbed2a403336835140767ebac31be24bcf4b9386"; } + { locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "77b77274a7eac09f4d1a7163ba5555ced722369717d98ba1dab014140a4ac235"; } + { locale = "pl"; arch = "linux-i686"; sha256 = "699b72fd6bdda12d71521bc0e32fb1a95d933dc45f62595e6b02f5441ff6d016"; } + { locale = "pl"; arch = "linux-x86_64"; sha256 = "d748461e3e45a3d07aa36bde8fd265a51888e34ce0a8e23fdf893e540cc90e16"; } + { locale = "pt-BR"; arch = "linux-i686"; sha256 = "0b7062f911ce1d70e5300cd85328aa507c9a39ad14110a0241e23280af0f6db5"; } + { locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "b2de3df121d0ca4b4c322533040ae5187cff9fad8e8b83997425867c051b636c"; } + { locale = "pt-PT"; arch = "linux-i686"; sha256 = "801a04cd65d7253c95bfb9b680abba87b45e3f0cff18f94b81945ed47154b9e7"; } + { locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "5e6a28463b388fb2a242af899e521a7c2a4bcc48959d0f6813335fd11e3b5861"; } + { locale = "rm"; arch = "linux-i686"; sha256 = "57d8127547da954a6fdecaaab0006d570125ad577ad7d66e53c97e1c2194258e"; } + { locale = "rm"; arch = "linux-x86_64"; sha256 = "f6158506cbf3c96a5f6a551969338a65369f2be52bfa80359da3941d2f3277bb"; } + { locale = "ro"; arch = "linux-i686"; sha256 = "980701a87255b999c4df5d82a53b653bb513675ba93e5138bc47e91174d03c3f"; } + { locale = "ro"; arch = "linux-x86_64"; sha256 = "95e80b8bbd38510719463ca1b67e574f0a1d62daa8fbd09f4bba277749c57517"; } + { locale = "ru"; arch = "linux-i686"; sha256 = "16e6775a26756b445e5c72220297062b3e4e1ab66efd0324eb161a4d5b353874"; } + { locale = "ru"; arch = "linux-x86_64"; sha256 = "9bc067f5c158f33fdafd8b7ea1ab3492002ceca579a177a292a835d52c430c27"; } + { locale = "si"; arch = "linux-i686"; sha256 = "2fdc744bc85488514b9bcf93b017e6f6fcfd4cf7c249c1e7d307956cb62baf43"; } + { locale = "si"; arch = "linux-x86_64"; sha256 = "366893e7b7337ff6bdfe0def0ac88615e9cadb460fbcb17dd047f18172782208"; } + { locale = "sk"; arch = "linux-i686"; sha256 = "3efabb4f04376688f51df5c70fb4cfc0b382e9b6160eb625969945a8e3272a18"; } + { locale = "sk"; arch = "linux-x86_64"; sha256 = "dd97fc87382cca475b4b8ef8ab137b8f436e4a4792bfc06bcf0e7736e1f5e452"; } + { locale = "sl"; arch = "linux-i686"; sha256 = "3ba940deb5b1db31aaf07c005e62ddbd6acf44d3d0e775aab51c2eb0dc2da936"; } + { locale = "sl"; arch = "linux-x86_64"; sha256 = "dae438abc4cdd552bc7750ecebe958cbb7ef0edbb745d19e9b670db1e5c9fa8f"; } + { locale = "son"; arch = "linux-i686"; sha256 = "ef1baa4e6b333cd19df938dd13b91e091c9ed838b72767def2c0eec7a473532f"; } + { locale = "son"; arch = "linux-x86_64"; sha256 = "c2e45137b18717889977e0203951ddd078e1379f05875915f295b14677b6e75a"; } + { locale = "sq"; arch = "linux-i686"; sha256 = "d4f48c90a2bd4f8751b66653e0aed0de3f4ff9b40bba306377577ef8cbf94541"; } + { locale = "sq"; arch = "linux-x86_64"; sha256 = "85cf583913978c109dcaf07b22442505554813b6129862668ef78f491588a153"; } + { locale = "sr"; arch = "linux-i686"; sha256 = "08725f28304608e029e9e4ccf0fb478eda4b6cde138ad65a53e2f88af97e8a6c"; } + { locale = "sr"; arch = "linux-x86_64"; sha256 = "bfdca6d30f044bed181d45396c81f0a1d0e9b9026607e0700cc1bf225408ac20"; } + { locale = "sv-SE"; arch = "linux-i686"; sha256 = "01f98e4954e1a1df5b0aaf711696b6f7e7237ea3df57071479e8749c621fbbf1"; } + { locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "b1c292410edaa4d6595b21b803287030d21ddd64e7a6a941d7627bb4cbff2435"; } + { locale = "ta"; arch = "linux-i686"; sha256 = "d6d62857ccfe54ab870bcbe0ea98e41d59524b3958c28ddffcfb009d6305fde0"; } + { locale = "ta"; arch = "linux-x86_64"; sha256 = "253080f66f47850222c676d98626c5a879ee708d1f03b3598d4ac205998676c4"; } + { locale = "te"; arch = "linux-i686"; sha256 = "ffa9371d8960707a0062bc6cb5ed5aa84c9e5b9b898ddc403b346b519bf6f814"; } + { locale = "te"; arch = "linux-x86_64"; sha256 = "69c3776bfd41bae4067da4f5f350c5f0a906c2b8d1edffe5d3907bc7ca2ee863"; } + { locale = "th"; arch = "linux-i686"; sha256 = "3dbead624ae46c14208a61ed8c6b515117d472a8f8bebf14478bc467da23eeee"; } + { locale = "th"; arch = "linux-x86_64"; sha256 = "4c0db90021ad46d67f68b3d2d928a279cdff14b7d62f8fa4e07a33135ab925b7"; } + { locale = "tr"; arch = "linux-i686"; sha256 = "744327c6a3c514ff7b0bc5940f1744c95c6ac47165d5b316bbea11412a2d8550"; } + { locale = "tr"; arch = "linux-x86_64"; sha256 = "321f096a89898ed027b95efa4f02fdaa9118eb414e35088ce259b76048bf77fd"; } + { locale = "uk"; arch = "linux-i686"; sha256 = "f3d0a5a328b686cf18339e50a59920fe002166b35c5b5b29c04156bc5b5c6d4b"; } + { locale = "uk"; arch = "linux-x86_64"; sha256 = "b15e82737c69703bcdd97f5699280338e4c2029b5eea7df98fb218a5e2a579f3"; } + { locale = "uz"; arch = "linux-i686"; sha256 = "dfdf28670cacfd43f71d81c609fc2961682ec2c7a64ea540e49a571195e68852"; } + { locale = "uz"; arch = "linux-x86_64"; sha256 = "eaacd1534711def0ab30eb9a53db2553c4cc202ec07c40bc5b2ded7e729347ac"; } + { locale = "vi"; arch = "linux-i686"; sha256 = "4b4753038753d814d1e5a1ff995445abec80fd74d9443cac38495193bf039762"; } + { locale = "vi"; arch = "linux-x86_64"; sha256 = "3051a5f8b0d47860f98839c4496298d71aeb6ef98f099937b8da9d87d7a1986c"; } + { locale = "xh"; arch = "linux-i686"; sha256 = "2798bca7d894a0ba223694fe585e1b9fcf60cc96d881d7570c06a4d77afc4b20"; } + { locale = "xh"; arch = "linux-x86_64"; sha256 = "acb1084e32bc467cd3374e6930c8f51deea38e94ddde09bf5a257d473d2579e8"; } + { locale = "zh-CN"; arch = "linux-i686"; sha256 = "93a3f1b92aeb7a3e7659ebe0ad7c7df966279926fe3fdc7b0047bd858482234f"; } + { locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "047d74546e4767d728e7522d908056c8aaad9cd8152517425443b59ff580bebe"; } + { locale = "zh-TW"; arch = "linux-i686"; sha256 = "b710126e2d7cd6f55b0dd54811de64c30eb69f97ea8a71905b3ea49e59abdfe2"; } + { locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "d3b52404ab397385fcbb617f6cd8cda821d3927852e0a617dd60443c2cad6b65"; } ]; } From b8c26d9e73d204204891430b39b817a3c393be0f Mon Sep 17 00:00:00 2001 From: Tim Cuthbertson Date: Sat, 19 Mar 2016 12:29:20 +1100 Subject: [PATCH 220/678] pythonPackages.piep: init at 0.8.0 --- pkgs/top-level/python-packages.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 12cf8a71a43..d7c2892fd8e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -15487,6 +15487,26 @@ in modules // { }; }; + piep = buildPythonPackage rec { + version = "0.8.0"; + name = "piep-${version}"; + disabled = isPy3k; + + src = pkgs.fetchurl { + url = "http://pypi.python.org/packages/source/p/piep/piep-${version}.tar.gz"; + sha256 = "1wgkg1kc28jpya5k4zvbc9jmpa60b3d5c3gwxfbp15hw6smyqirj"; + }; + + propagatedBuildInputs = with self; [pygments]; + + meta = { + description = "Bringing the power of python to stream editing"; + homepage = https://github.com/timbertson/piep; + maintainers = with maintainers; [ gfxmonk ]; + license = licenses.gpl3; + }; + }; + pip = buildPythonPackage rec { version = "8.0.2"; name = "pip-${version}"; From de8cc270c1e93c9fdb46e4e91a847aaa2ae3b17c Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sat, 19 Mar 2016 11:19:43 +0100 Subject: [PATCH 221/678] filezilla: 3.16.0 -> 3.16.1 --- pkgs/applications/networking/ftp/filezilla/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/ftp/filezilla/default.nix b/pkgs/applications/networking/ftp/filezilla/default.nix index 57b93bfd656..698f379c09c 100644 --- a/pkgs/applications/networking/ftp/filezilla/default.nix +++ b/pkgs/applications/networking/ftp/filezilla/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, dbus, gnutls, wxGTK30, libidn, tinyxml, gettext , pkgconfig, xdg_utils, gtk2, sqlite, pugixml, libfilezilla }: -let version = "3.16.0"; in +let version = "3.16.1"; in stdenv.mkDerivation { name = "filezilla-${version}"; src = fetchurl { url = "mirror://sourceforge/project/filezilla/FileZilla_Client/${version}/FileZilla_${version}_src.tar.bz2"; - sha256 = "0ilv4xhgav4srx6iqn0v0kv8rifgkysyx1hb9bnm45dc0skmbgbx"; + sha256 = "1a6xvpnsjpgdrxla0i2zag30hy825rfsl4ka9p0zj5za9j2ny11v"; }; configureFlags = [ From 8d128f046d5a9f12083dcce58973503b2f022761 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sat, 19 Mar 2016 11:56:01 +0100 Subject: [PATCH 222/678] xylib: 1.3 -> 1.4 --- pkgs/development/libraries/xylib/default.nix | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/pkgs/development/libraries/xylib/default.nix b/pkgs/development/libraries/xylib/default.nix index fe9b6c5c3ca..030e2f0857b 100644 --- a/pkgs/development/libraries/xylib/default.nix +++ b/pkgs/development/libraries/xylib/default.nix @@ -1,23 +1,21 @@ { stdenv, fetchurl, boost, zlib, bzip2 }: -let - name = "xylib"; - version = "1.3"; -in -stdenv.mkDerivation { - name = "${name}-${version}"; +stdenv.mkDerivation rec { + name = "xylib-${version}"; + version = "1.4"; src = fetchurl { url = "https://github.com/wojdyr/xylib/releases/download/v${version}/${name}-${version}.tar.bz2"; sha256 = "09j426qjbg3damch1hfw16j992kn2hj8gs4lpvqgfqdw61kvqivh"; }; - buildInputs = [boost zlib bzip2 ]; + buildInputs = [ boost zlib bzip2 ]; - meta = { + meta = with stdenv.lib; { description = "Portable library for reading files that contain x-y data from powder diffraction, spectroscopy and other experimental methods"; - license = "LGPL"; + license = licenses.lgpl21; homepage = http://xylib.sourceforge.net/; - platforms = stdenv.lib.platforms.linux; + platforms = platforms.linux; + maintainers = with maintainers; [ pSub ]; }; } From 07601a08f283c259162d2ce1abe749241e7fbafe Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sat, 19 Mar 2016 12:01:22 +0100 Subject: [PATCH 223/678] unibilium: 1.1.2 -> 1.2.0 --- pkgs/development/libraries/unibilium/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/unibilium/default.nix b/pkgs/development/libraries/unibilium/default.nix index 369e271191f..63bd86ca991 100644 --- a/pkgs/development/libraries/unibilium/default.nix +++ b/pkgs/development/libraries/unibilium/default.nix @@ -3,13 +3,13 @@ stdenv.mkDerivation rec { name = "unibilium-${version}"; - version = "1.1.2"; + version = "1.2.0"; src = fetchFromGitHub { owner = "mauke"; repo = "unibilium"; rev = "v${version}"; - sha256 = "143j7qrqjxxmdf3yzhn6av2qwiyjjk4cnskkgz6ir2scjfd5gvja"; + sha256 = "1qsw19irg70l29j7qv403f32l4rrzn53w7881a6h874j9gisl51s"; }; makeFlags = [ "PREFIX=$(out)" ] @@ -20,5 +20,7 @@ stdenv.mkDerivation rec { meta = with lib; { description = "A very basic terminfo library"; license = licenses.lgpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ pSub ]; }; } From 9506f4de76108210ba8c1847dbde0f9244412fe7 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sat, 19 Mar 2016 12:08:58 +0100 Subject: [PATCH 224/678] udunits: 2.1.14 -> 2.2.20 --- pkgs/development/libraries/udunits/default.nix | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/pkgs/development/libraries/udunits/default.nix b/pkgs/development/libraries/udunits/default.nix index 608900c85ad..a48f4487dd5 100644 --- a/pkgs/development/libraries/udunits/default.nix +++ b/pkgs/development/libraries/udunits/default.nix @@ -3,17 +3,19 @@ }: stdenv.mkDerivation rec { - name = "udunits-2.1.24"; + name = "udunits-2.2.20"; src = fetchurl { url = "ftp://ftp.unidata.ucar.edu/pub/udunits/${name}.tar.gz"; - sha256 = "1l0fdsl55374w7fjyd1wdx474f3p265b6rw1lq269cii61ca8prf"; + sha256 = "15fiv66ni6fmyz96k138vrjd7cx6ndxrj6c71pah18n69c0h42pi"; }; - buildInputs = [ - bison flex expat file - ]; + buildInputs = [ bison flex expat file ]; - patches = [ ./configure.patch ]; - - MAGIC_CMD="${file}/bin/file"; + meta = with stdenv.lib; { + homepage = http://www.unidata.ucar.edu/software/udunits/; + description = "A C-based package for the programatic handling of units of physical quantities"; + license = licenses.bsdOriginal; + platforms = platforms.linux; + maintainers = with maintainers; [ pSub ]; + }; } From e4817b7d99cc08febe85b8078f4758f80e99b91a Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sat, 19 Mar 2016 11:15:48 +0000 Subject: [PATCH 225/678] php: 5.6.18 -> 5.6.19 (security update) --- pkgs/development/interpreters/php/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix index 5503ee9c887..4c4fd41bf5f 100644 --- a/pkgs/development/interpreters/php/default.nix +++ b/pkgs/development/interpreters/php/default.nix @@ -293,8 +293,8 @@ in { }; php56 = generic { - version = "5.6.18"; - sha256 = "1vgl2zjq6ws5cjjb3llhwpfwg9gasq3q84ibdv9hj8snm4llmkf3"; + version = "5.6.19"; + sha256 = "0s61fncsdgr1mqgh8jma6pi6xxz4gl350467lk00ls3i97wa691a"; }; php70 = generic { From 9f54f755a940343d7bb197409c6b9b840b84f080 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sat, 19 Mar 2016 11:18:12 +0000 Subject: [PATCH 226/678] php: 5.5.32 -> 5.5.33 (security update) --- pkgs/development/interpreters/php/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix index 4c4fd41bf5f..f15aed48451 100644 --- a/pkgs/development/interpreters/php/default.nix +++ b/pkgs/development/interpreters/php/default.nix @@ -288,8 +288,8 @@ let in { php55 = generic { - version = "5.5.32"; - sha256 = "1vljdvyqsq0vas4yhvpqycqyxl2gfndbmak6cfgxn1cfvc4c3wmh"; + version = "5.5.33"; + sha256 = "1a8ac1zcq68irvdffh08cpi4aaaira4hsqwgns7b95pm9pnv3464"; }; php56 = generic { From 41c05b47a05b1f8be8c40bd39a9ea819fac0930c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sat, 19 Mar 2016 12:23:34 +0100 Subject: [PATCH 227/678] Updating ts to 0.7.6. --- pkgs/tools/system/ts/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/system/ts/default.nix b/pkgs/tools/system/ts/default.nix index ff2fdfefb05..8e65eda8f54 100644 --- a/pkgs/tools/system/ts/default.nix +++ b/pkgs/tools/system/ts/default.nix @@ -3,7 +3,7 @@ sendmailPath ? "/var/setuid-wrappers/sendmail" }: stdenv.mkDerivation rec { - name = "ts-0.7.4"; + name = "ts-0.7.6"; installPhase=''make install "PREFIX=$out"''; @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://viric.name/~viric/soft/ts/${name}.tar.gz"; - sha256 = "042r9a09300v4fdrw4r60g5xi25v5m6g12kvvr6pcsm9qnfqyqqs"; + sha256 = "07b61sx3hqpdxlg5a1xrz9sxww9yqdix3bmr0sm917r3rzk87lwk"; }; meta = with stdenv.lib; { From 649c2cd027f5c9be5102839cb9b4988e0b28e33b Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 19 Mar 2016 01:32:25 +0100 Subject: [PATCH 228/678] lp_solve: mark as broken See https://hydra.nixos.org/build/32393768/log/raw --- pkgs/applications/science/math/lp_solve/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/science/math/lp_solve/default.nix b/pkgs/applications/science/math/lp_solve/default.nix index 7726793fcaf..b92691cb611 100644 --- a/pkgs/applications/science/math/lp_solve/default.nix +++ b/pkgs/applications/science/math/lp_solve/default.nix @@ -37,6 +37,7 @@ stdenv.mkDerivation rec { license = licenses.gpl2Plus; maintainers = with maintainers; [ smironov ]; platforms = platforms.unix; + broken = true; }; } From def056d7708da000c7bb90ee0eed5ea4c505af28 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sat, 19 Mar 2016 12:50:46 +0100 Subject: [PATCH 229/678] perl-AppSqitch: 0.9993 -> 0.9994 --- 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 bc14b4ce605..942295f1478 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -274,11 +274,11 @@ let self = _self // overrides; _self = with self; { }; AppSqitch = buildPerlModule rec { - version = "0.9993"; + version = "0.9994"; name = "App-Sqitch-${version}"; src = fetchurl { url = "mirror://cpan/authors/id/D/DW/DWHEELER/${name}.tar.gz"; - sha256 = "0pf7gvssldhify9dn3sxyi6av5gld4h27d3krdpcql3hbv886gcc"; + sha256 = "0in602z40s50fdlmws4g0a1pb8p7yn0wx8jgsacz26a4i1q7gpi4"; }; buildInputs = [ CaptureTiny PathClass TestDeep TestDir TestException From 135ef9cc32aae5da805dae8dd578eb6d7c35cf06 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sat, 19 Mar 2016 13:27:31 +0100 Subject: [PATCH 230/678] perl-POSIX-strftime-Compiler: init at 0.41 --- pkgs/top-level/perl-packages.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 942295f1478..c48aaba6de5 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -9905,6 +9905,21 @@ let self = _self // overrides; _self = with self; { }; }; + POSIXstrftimeCompiler = buildPerlModule rec { + name = "POSIX-strftime-Compiler-0.41"; + src = fetchurl { + url = "mirror://cpan/authors/id/K/KA/KAZEBURO/${name}.tar.gz"; + sha256 = "670b89e11500f3808c9e21b1c300089622f68906ff12b1cbfba8e30d3a1c3739"; + }; + # We cannot change timezones on the fly. + prePatch = "rm t/04_tzset.t"; + meta = { + homepage = https://github.com/kazeburo/POSIX-strftime-Compiler; + description = "GNU C library compatible strftime for loggers and servers"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + }; + }; + Readonly = buildPerlModule rec { name = "Readonly-2.01"; src = fetchurl { From 15029ff44a138e4d157000fe36de9cf8881f35ce Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sat, 19 Mar 2016 13:27:54 +0100 Subject: [PATCH 231/678] perl-Apache-LogFormat-Compiler: 0.13 -> 0.33 --- pkgs/top-level/perl-packages.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index c48aaba6de5..258b6a4909b 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -166,13 +166,16 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [ Mouse ]; }; - ApacheLogFormatCompiler = buildPerlModule { - name = "Apache-LogFormat-Compiler-0.13"; + ApacheLogFormatCompiler = buildPerlModule rec { + name = "Apache-LogFormat-Compiler-0.33"; src = fetchurl { - url = mirror://cpan/authors/id/K/KA/KAZEBURO/Apache-LogFormat-Compiler-0.13.tar.gz; - sha256 = "b4185125501e288efbc664da8b723ff86f0b69eb57d3c7c69c7d2069aab0efb0"; + url = "mirror://cpan/authors/id/K/KA/KAZEBURO/${name}.tar.gz"; + sha256 = "17blk3zhp05azgypn25ydxf3d7fyfgr9bxyiv7xkchhqma96vwqv"; }; - buildInputs = [ HTTPMessage TestRequires TryTiny URI ]; + buildInputs = [ HTTPMessage TestRequires TryTiny URI TestMockTime + POSIXstrftimeCompiler ]; + # We cannot change the timezone on the fly. + prePatch = "rm t/04_tz.t"; meta = { homepage = https://github.com/kazeburo/Apache-LogFormat-Compiler; description = "Compile a log format string to perl-code"; From dd30fcd30af958023ddf87a791d2619eb9ecfc0f Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sat, 19 Mar 2016 13:51:21 +0100 Subject: [PATCH 232/678] sparsehash: 2.0.2 -> 2.0.3 --- .../libraries/sparsehash/default.nix | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/pkgs/development/libraries/sparsehash/default.nix b/pkgs/development/libraries/sparsehash/default.nix index 1f9bbcbd18d..15b84363e02 100644 --- a/pkgs/development/libraries/sparsehash/default.nix +++ b/pkgs/development/libraries/sparsehash/default.nix @@ -1,17 +1,20 @@ -{ stdenv, fetchurl }: +{ stdenv, fetchFromGitHub }: -stdenv.mkDerivation { - name = "sparsehash-2.0.2"; +stdenv.mkDerivation rec { + name = "sparsehash-2.0.3"; - src = fetchurl { - url = http://sparsehash.googlecode.com/files/sparsehash-2.0.2.tar.gz; - sha256 = "0z5qa1sbp6xx5qpdvrdjh185k5kj53sgb6h2qabw01sn2nkkkmif"; + src = fetchFromGitHub { + owner = "sparsehash"; + repo = "sparsehash"; + rev = name; + sha256 = "0m3f0cnpnpf6aak52wn8xbrrdw8p0yhq8csgc8nlvf9zp8c402na"; }; meta = with stdenv.lib; { - homepage = "http://code.google.com/p/sparsehash/"; + homepage = http://code.google.com/p/sparsehash/; description = "An extremely memory-efficient hash_map implementation"; platforms = platforms.all; license = licenses.bsd3; + maintainers = with maintainers; [ pSub ]; }; } From 9ae0e6633edb0ac53edaa6d3970b7cacc1db7834 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Fri, 18 Mar 2016 22:16:19 +0100 Subject: [PATCH 233/678] clfswm: mark as broken This package has been broken for quite a long time. I attempted to fix it, to no avail. See also: https://hydra.nixos.org/build/33498133/nixlog/2/raw --- pkgs/applications/window-managers/clfswm/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/window-managers/clfswm/default.nix b/pkgs/applications/window-managers/clfswm/default.nix index 3b07bc5a654..5761d94526d 100644 --- a/pkgs/applications/window-managers/clfswm/default.nix +++ b/pkgs/applications/window-managers/clfswm/default.nix @@ -46,5 +46,6 @@ stdenv.mkDerivation rec { license = licenses.gpl3; maintainers = with maintainers; [ robgssp ]; platforms = platforms.linux; + broken = true; }; } From e891e509466fb83f860c4c51199c9617e9b1ddc1 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Fri, 18 Mar 2016 22:18:01 +0100 Subject: [PATCH 234/678] nixos: disable the clfswm window manager module --- nixos/modules/services/x11/window-managers/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/nixos/modules/services/x11/window-managers/default.nix b/nixos/modules/services/x11/window-managers/default.nix index 63136beac71..fce71bbda7e 100644 --- a/nixos/modules/services/x11/window-managers/default.nix +++ b/nixos/modules/services/x11/window-managers/default.nix @@ -10,7 +10,6 @@ in imports = [ ./afterstep.nix ./bspwm.nix - ./clfswm.nix ./compiz.nix ./dwm.nix ./exwm.nix From ff0cfc160f9c53ee6718ce571a06048443bbded6 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sat, 19 Mar 2016 15:22:04 +0100 Subject: [PATCH 235/678] libvirt: 1.3.0 -> 1.3.2 --- 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 256d09b0edd..f3ce3b9dc19 100644 --- a/pkgs/development/libraries/libvirt/default.nix +++ b/pkgs/development/libraries/libvirt/default.nix @@ -9,11 +9,11 @@ stdenv.mkDerivation rec { name = "libvirt-${version}"; - version = "1.3.0"; + version = "1.3.2"; src = fetchurl { url = "http://libvirt.org/sources/${name}.tar.gz"; - sha256 = "ebcf5645fa565e3fe2fe94a86e841db9b768cf0e0a7e6cf395c6327f9a23bd64"; + sha256 = "01fg9jbifndwc3jzzizsisvz98q325xarczgf6rn11hphckgrip3"; }; patches = [ ./build-on-bsd.patch ]; From e312a347751cb1d4bf53d0c659f5e1d81824688f Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sat, 19 Mar 2016 16:33:49 +0100 Subject: [PATCH 236/678] libvirt: Add fpletz as maintainer --- pkgs/development/libraries/libvirt/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/libraries/libvirt/default.nix b/pkgs/development/libraries/libvirt/default.nix index f3ce3b9dc19..343f3b757e3 100644 --- a/pkgs/development/libraries/libvirt/default.nix +++ b/pkgs/development/libraries/libvirt/default.nix @@ -83,5 +83,6 @@ stdenv.mkDerivation rec { ''; license = licenses.lgpl2Plus; platforms = platforms.unix; + maintainers = with maintainers; [ fpletz ]; }; } From 87012e73212ae52e525ff4a6df80fff6e12d0595 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sat, 19 Mar 2016 16:30:08 +0100 Subject: [PATCH 237/678] pythonPackages.searx: 0.7.0 -> 0.8.1 The old version was broken. --- pkgs/top-level/python-packages.nix | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d7c2892fd8e..f4007d8d66a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -24261,21 +24261,24 @@ in modules // { }; searx = buildPythonPackage rec { - name = "searx-0.7.0"; + name = "searx-0.8.1"; src = pkgs.fetchurl { - url = "https://github.com/asciimoo/searx/archive/v0.7.0.tar.gz"; - sha256 = "0vq2zjdr1c8mr3zkycqq3732zf4pybbbrs3kzplqgf851k9zfpbw"; + url = "https://github.com/asciimoo/searx/archive/v0.8.1.tar.gz"; + sha256 = "0z0s9n8iblrw7y5xrh2apzsazkgm4vzmxn0ckw4yfiya9am8zk32"; }; - propagatedBuildInputs = with self; [ pyyaml lxml grequests flaskbabel flask requests - gevent speaklater Babel pytz dateutil pygments ]; + propagatedBuildInputs = with self; [ + pyyaml lxml grequests flaskbabel flask requests2 + gevent speaklater Babel pytz dateutil pygments + pyasn1 pyasn1-modules ndg-httpsclient certifi + ]; meta = { homepage = https://github.com/asciimoo/searx; description = "A privacy-respecting, hackable metasearch engine"; license = licenses.agpl3Plus; - maintainers = with maintainers; [ matejc ]; + maintainers = with maintainers; [ matejc fpletz ]; }; }; From 3c060b93b6486e3e40b0709f507291135b9776a6 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sat, 19 Mar 2016 13:35:05 +0100 Subject: [PATCH 238/678] lxd: 0.17 -> 2.0.0.rc4 --- pkgs/top-level/go-packages.nix | 64 ++++++++++++++++++++++++---------- 1 file changed, 45 insertions(+), 19 deletions(-) diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index e8ab7550921..60e3c5cbcb3 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -878,6 +878,15 @@ let sha256 = "1iz4wjxc3zkj0xkfs88ig670gb08p1sd922l0ig2cxpjcfjp1y99"; }; + gosexy.gettext = buildFromGitHub { + rev = "4a979356fe964fec12e18326a32a89661f93dea7"; + date = "2016-02-20"; + owner = "gosexy"; + repo = "gettext"; + sha256 = "07f3dmq4qsdykbn3fkha3v1w61hic6xw82dvdmvzhf0m41jxsgy6"; + buildInputs = [ pkgs.gettext go-flags ]; + }; + ginkgo = buildGoPackage rec { rev = "5ed93e443a4b7dfe9f5e95ca87e6082e503021d2"; name = "ginkgo-${stdenv.lib.strings.substring 0 7 rev}"; @@ -991,6 +1000,14 @@ let sha256 = "1nyg6sckwd0iafs9vcmgbga2k3hid2q0avhwj29qbdhj3l78xi47"; }; + gocapability = buildFromGitHub { + rev = "2c00daeb6c3b45114c80ac44119e7b8801fdd852"; + date = "2015-07-16"; + owner = "syndtr"; + repo = "gocapability"; + sha256 = "1x7jdcg2r5pakjf20q7bdiidfmv7vcjiyg682186rkp2wz0yws0l"; + }; + gocryptfs = buildFromGitHub { rev = "v0.5"; owner = "rfjakob"; @@ -1522,10 +1539,11 @@ let }; go-lxc = buildFromGitHub { - rev = "a0fa4019e64b385dfa2fb8abcabcdd2f66871639"; + rev = "d89df0ad9dc13a7ce491eedaa771b076cf32db16"; + date = "2016-02-12"; owner = "lxc"; repo = "go-lxc"; - sha256 = "0fkkmn7ynmzpr7j0ha1qsmh3k86ncxcbajmcb90hs0k0iaaiaahz"; + sha256 = "051kqvvclfcinqcbi4zch694llvnxa5vvbw6cbdxbkzhr5zxm36q"; goPackagePath = "gopkg.in/lxc/go-lxc.v2"; nativeBuildInputs = [ pkgs.pkgconfig ]; buildInputs = [ pkgs.lxc ]; @@ -1637,6 +1655,14 @@ let }; }; + mattn.go-runewidth = buildFromGitHub { + rev = "d6bea18f789704b5f83375793155289da36a3c7f"; + date = "2016-03-15"; + owner = "mattn"; + repo = "go-runewidth"; + sha256 = "1hnigpn7rjbwd1ircxkyx9hvi0xmxr32b2jdy2jzw6b3jmcnz1fs"; + }; + go-shellwords = buildGoPackage rec { rev = "35d512af75e283aae4ca1fc3d44b159ed66189a4"; name = "go-shellwords-${rev}"; @@ -1746,15 +1772,6 @@ let buildInputs = [ dbus ]; }; - lxd-go-systemd = buildFromGitHub { - rev = "a3dcd1d0480ee0ae9ec354f1632202bfba715e03"; - date = "2015-07-01"; - owner = "stgraber"; - repo = "lxd-go-systemd"; - sha256 = "006dhy3j8ld0kycm8hrjxvakd7xdn1b6z2dsjp1l4sqrxdmm188w"; - buildInputs = [ dbus-old-2015-05-19 ]; - }; - go-update-v0 = buildFromGitHub { rev = "d8b0b1d421aa1cbf392c05869f8abbc669bb7066"; owner = "inconshreveable"; @@ -2179,19 +2196,27 @@ let }; lxd = buildFromGitHub { - rev = "lxd-0.17"; + rev = "lxd-2.0.0.rc4"; owner = "lxc"; repo = "lxd"; - sha256 = "1yi3dr1bgdplc6nya10k5jsj3psbf3077vqad8x8cjza2z9i48fp"; + sha256 = "1rpyyj6d38d9kmb47dcmy1x41fiacj384yx01yslsrj2l6qxcdjn"; excludedPackages = "test"; # Don't build the binary called test which causes conflicts buildInputs = [ - gettext-go websocket crypto log15 go-lxc yaml-v2 tomb protobuf pongo2 - lxd-go-systemd go-uuid tablewriter golang-petname mux go-sqlite3 goproxy - pkgs.python3 + gosexy.gettext websocket crypto log15 go-lxc yaml-v2 tomb protobuf pongo2 + go-uuid tablewriter golang-petname mux go-sqlite3 goproxy + pkgs.python3 go-systemd uuid gocapability ]; postInstall = '' cp go/src/$goPackagePath/scripts/lxd-images $bin/bin ''; + + meta = with stdenv.lib; { + description = "Daemon based on liblxc offering a REST API to manage containers"; + homepage = https://github.com/lxc/lxd; + license = licenses.asl20; + maintainers = with maintainers; [ globin fpletz ]; + platforms = platforms.linux; + }; }; manners = buildFromGitHub { @@ -3462,11 +3487,12 @@ let }; tablewriter = buildFromGitHub { - rev = "bc39950e081b457853031334b3c8b95cdfe428ba"; - date = "2015-06-03"; + rev = "cca8bbc0798408af109aaaa239cbd2634846b340"; + date = "2016-01-15"; owner = "olekukonko"; repo = "tablewriter"; - sha256 = "0n4gqjc2dqmnbpqgi9i8vrwdk4mkgyssc7l2n4r5bqx0n3nxpbps"; + sha256 = "0f9ph3z7lh6p6gihbl1461j9yq5qiaqxr9mzdkp512n18v89ml48"; + propagatedBuildInputs = [ mattn.go-runewidth ]; }; termbox-go = buildGoPackage rec { From 8ddfab0cf2c52037c01dc0dec2c667bc1b512f52 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sat, 19 Mar 2016 17:16:59 +0100 Subject: [PATCH 239/678] nixos/manpages: enable linebreaking after slashes Allow linbreaks after slashes in long URLs. The option used is documented at http://docbook.sourceforge.net/release/xsl/current/doc/manpages/man.break.after.slash.html This commit fixes #4538. --- nixos/doc/manual/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/doc/manual/default.nix b/nixos/doc/manual/default.nix index 4ce6ea1c111..746ddc071b6 100644 --- a/nixos/doc/manual/default.nix +++ b/nixos/doc/manual/default.nix @@ -187,6 +187,7 @@ in rec { --param man.output.in.separate.dir 1 \ --param man.output.base.dir "'$out/share/man/'" \ --param man.endnotes.are.numbered 0 \ + --param man.break.after.slash 1 \ ${docbook5_xsl}/xml/xsl/docbook/manpages/docbook.xsl \ ./man-pages.xml ''; From 0f0805b51ad651f9f75e858edb77cf3a078f402d Mon Sep 17 00:00:00 2001 From: aszlig Date: Sat, 19 Mar 2016 17:22:39 +0100 Subject: [PATCH 240/678] lib/types: Handle submodules for type "either" So far the "either" type only handled "flat" types, so you couldn't do something like: type = either int (submodule { options = ...; }); Not only caused this the submodule's options not being checked but also not show up in the documentation. This was something we stumbled on with #13916. Signed-off-by: aszlig Cc: @edolstra --- lib/types.nix | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/lib/types.nix b/lib/types.nix index b4d29ac84d2..3495f34804c 100644 --- a/lib/types.nix +++ b/lib/types.nix @@ -246,7 +246,25 @@ rec { either = t1: t2: mkOptionType { name = "${t1.name} or ${t2.name}"; check = x: t1.check x || t2.check x; - merge = mergeOneOption; + merge = loc: defs: + if all t1.check (getValues defs) then t1.merge loc defs + else if all t2.check (getValues defs) then t2.merge loc defs + else throw ( "The option `${showOption loc}' has conflicting" + + " definitions for type either, in" + + " ${showFiles (getFiles defs)}."); + + getSubOptions = prefix: t1.getSubOptions prefix + // t2.getSubOptions prefix; + + getSubModules = concatLists (remove null [ + t1.getSubModules + t2.getSubModules + ]); + + substSubModules = m: let + maybeDef = def: r: if r == null then def else r; + in either (maybeDef t1 (t1.substSubModules m)) + (maybeDef t2 (t2.substSubModules m)); }; # Obsolete alternative to configOf. It takes its option From b887b16a2cccc0f72eae4ce049aa820875a8038a Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sat, 19 Mar 2016 17:35:06 +0100 Subject: [PATCH 241/678] pythonPackages.libvirt: 1.3.0 -> 1.3.2 --- pkgs/top-level/python-packages.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f4007d8d66a..dd8f93d00f0 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -24238,13 +24238,13 @@ in modules // { }; libvirt = let - version = "1.3.0"; + version = "1.3.2"; in assert version == pkgs.libvirt.version; pkgs.stdenv.mkDerivation rec { name = "libvirt-python-${version}"; src = pkgs.fetchurl { url = "http://libvirt.org/sources/python/${name}.tar.gz"; - sha256 = "0z7w79mkx7w322d2mf9d4bz56mmfic3nx0q4bc6fa063aay42z89"; + sha256 = "1y0b2sglc6q43pw1sr0by5wx8037kvrp2969p69k6mq1g2gawdbd"; }; buildInputs = with self; [ python pkgs.pkgconfig pkgs.libvirt lxml ]; @@ -24257,6 +24257,7 @@ in modules // { homepage = http://www.libvirt.org/; description = "libvirt Python bindings"; license = licenses.lgpl2; + maintainers = [ maintainers.fpletz ]; }; }; From c2dc5a3e9848d13e83572bcf5be76ea7216a4c9f Mon Sep 17 00:00:00 2001 From: Sven Keidel Date: Sat, 19 Mar 2016 11:45:04 +0100 Subject: [PATCH 242/678] eclipse: add eclipse platform 4.5.2 --- pkgs/applications/editors/eclipse/default.nix | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/editors/eclipse/default.nix b/pkgs/applications/editors/eclipse/default.nix index 62271998060..f4804c75ca3 100644 --- a/pkgs/applications/editors/eclipse/default.nix +++ b/pkgs/applications/editors/eclipse/default.nix @@ -312,7 +312,7 @@ rec { }; eclipse_sdk_451 = eclipse-sdk-451; # backward compatibility, added 2016-01-30 - eclipse-platform = eclipse-platform-451; + eclipse-platform = eclipse-platform-452; eclipse-platform-45 = buildEclipse { name = "eclipse-platform-4.5"; @@ -344,6 +344,21 @@ rec { }; }; + eclipse-platform-452 = buildEclipse { + name = "eclipse-platform-4.5.2"; + description = "Eclipse platform"; + sources = { + "x86_64-linux" = fetchurl { + url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/eclipse/downloads/drops4/R-4.5.2-201602121500/eclipse-SDK-4.5.2-linux-gtk-x86_64.tar.gz; + sha256 = "13dsd5f5i39wd0sr2bgp57hd2msn8g2dnmw5j8hfwif22c62py47"; + }; + "i686-linux" = fetchurl { + url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/eclipse/downloads/drops4/R-4.5.2-201602121500/eclipse-SDK-4.5.2-linux-gtk.tar.gz; + sha256 = "00jsmbrl4xhpbgd8hyxijgzqdic700kd3yw2qwgl0cs3ncvybxvq"; + }; + }; + }; + eclipseWithPlugins = { eclipse, plugins ? [], jvmArgs ? [] }: let # Gather up the desired plugins. From 535c1f1f7a371f37edca66713daa82a35baa83ac Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sat, 19 Mar 2016 18:35:03 +0100 Subject: [PATCH 243/678] perl-CSS-DOM: 0.15 -> 0.16 --- 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 258b6a4909b..ccb2670a6ec 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -2573,10 +2573,10 @@ let self = _self // overrides; _self = with self; { }; CSSDOM = buildPerlPackage rec { - name = "CSS-DOM-0.15"; + name = "CSS-DOM-0.16"; src = fetchurl { url = "mirror://cpan/authors/id/S/SP/SPROUT/${name}.tar.gz"; - sha256 = "12xb6xsd828r5pxavvamhqf3pilj9prvcnxmzs4fpjj07x1ikwy4"; + sha256 = "0s1gg6jvcxlj87sbbbcn9riw7rrh2n85hkbaim9civki8vj8vg9z"; }; buildInputs = [ Clone ]; From f53df327aca998395651e8a8b861b53ecd203563 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sat, 19 Mar 2016 18:58:36 +0100 Subject: [PATCH 244/678] perl-Plack: fix build --- pkgs/top-level/perl-packages.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index ccb2670a6ec..a66ed57321c 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -9431,7 +9431,10 @@ let self = _self // overrides; _self = with self; { sha256 = "0vvppxs36729lggrx4s1gn37lzsm794wfkm3k386bwhkmk7sr31i"; }; buildInputs = [ FileShareDirInstall TestRequires ]; - propagatedBuildInputs = [ ApacheLogFormatCompiler DevelStackTrace DevelStackTraceAsHTML FileShareDir FilesysNotifySimple HTTPBody HTTPMessage HashMultiValue LWP StreamBuffered TestTCP TryTiny URI ]; + propagatedBuildInputs = [ ApacheLogFormatCompiler DevelStackTrace + DevelStackTraceAsHTML FileShareDir FilesysNotifySimple HTTPBody + HTTPMessage HashMultiValue LWP StreamBuffered TestTCP TryTiny URI + POSIXstrftimeCompiler ]; meta = { homepage = https://github.com/plack/Plack; description = "Perl Superglue for Web frameworks and Web Servers (PSGI toolkit)"; From 2dc1f2c934c0650fbac1a1f2c12e3a39a8df39b3 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sat, 19 Mar 2016 18:58:50 +0100 Subject: [PATCH 245/678] perl-Cache-FastMmap: 1.40 -> 1.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 a66ed57321c..cdb0b49a5da 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -706,10 +706,10 @@ let self = _self // overrides; _self = with self; { }; CacheFastMmap = buildPerlPackage rec { - name = "Cache-FastMmap-1.40"; + name = "Cache-FastMmap-1.43"; src = fetchurl { url = "mirror://cpan/modules/by-module/Cache/${name}.tar.gz"; - sha256 = "0h3ckr04cdn6dvl40m4m97vl5ybf30v1lwhw3jvkr92kpksvq4hd"; + sha256 = "18k10bhi67iyy8igw8hwb339miwscgnsh9y2pbncw6gdr2b610vi"; }; }; From 009fd5ef77c37d3c6412fe96ae3d3c432f5221df Mon Sep 17 00:00:00 2001 From: aszlig Date: Sat, 19 Mar 2016 19:04:13 +0100 Subject: [PATCH 246/678] lib/types: Revert handling submodules for "either" This reverts commit 0f0805b, because @nbp had concerns about whether this would be a good idea and pointed out problems with this. We currently do not have a case where "either" is used in conjunction with submodules, but I'm reverting it anyway to prevent people from adding options using that type in that way. This is now being reviewed in #14053. Signed-off-by: aszlig --- lib/types.nix | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/lib/types.nix b/lib/types.nix index 3495f34804c..b4d29ac84d2 100644 --- a/lib/types.nix +++ b/lib/types.nix @@ -246,25 +246,7 @@ rec { either = t1: t2: mkOptionType { name = "${t1.name} or ${t2.name}"; check = x: t1.check x || t2.check x; - merge = loc: defs: - if all t1.check (getValues defs) then t1.merge loc defs - else if all t2.check (getValues defs) then t2.merge loc defs - else throw ( "The option `${showOption loc}' has conflicting" - + " definitions for type either, in" - + " ${showFiles (getFiles defs)}."); - - getSubOptions = prefix: t1.getSubOptions prefix - // t2.getSubOptions prefix; - - getSubModules = concatLists (remove null [ - t1.getSubModules - t2.getSubModules - ]); - - substSubModules = m: let - maybeDef = def: r: if r == null then def else r; - in either (maybeDef t1 (t1.substSubModules m)) - (maybeDef t2 (t2.substSubModules m)); + merge = mergeOneOption; }; # Obsolete alternative to configOf. It takes its option From 6f5f855a2e6564898c96332db8748258fcf0a4c8 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sat, 19 Mar 2016 18:25:24 +0000 Subject: [PATCH 247/678] kernel: 3.10.99 -> 3.10.101 --- pkgs/os-specific/linux/kernel/linux-3.10.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-3.10.nix b/pkgs/os-specific/linux/kernel/linux-3.10.nix index d0c09d35cd0..3fe7df6b40e 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.10.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.10.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "3.10.99"; + version = "3.10.101"; extraMeta.branch = "3.10"; src = fetchurl { url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; - sha256 = "1hq90yn2ry36y317px7f0wy55j70ip3wlxa4qsdl9pzlndadcp24"; + sha256 = "1g8jx6vla8bjhy3xn0s7r6awinxpfr1w8zqfzjsx88pkqbf8qd9n"; }; kernelPatches = args.kernelPatches; From bf41deb88900d79e0c8bac2e88628ad4a3991d04 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sat, 19 Mar 2016 18:27:41 +0000 Subject: [PATCH 248/678] kernel: 3.12.55 -> 3.12.57 --- pkgs/os-specific/linux/kernel/linux-3.12.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-3.12.nix b/pkgs/os-specific/linux/kernel/linux-3.12.nix index f146e5f2f13..49de2c2ab0f 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.12.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.12.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "3.12.55"; + version = "3.12.57"; extraMeta.branch = "3.12"; src = fetchurl { url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; - sha256 = "0xg52i6zsrkzv0i2kxrsx0179lkp9f2388r06rahx0anf4ars5p2"; + sha256 = "0qv88rvi0n45z3888w2gis35lxdx34qg2p7c2cac2szbrzv664s8"; }; kernelPatches = args.kernelPatches; From 4274edbe40af4c3037c3b91aaae492f7a13b705e Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sat, 19 Mar 2016 18:29:40 +0000 Subject: [PATCH 249/678] kernel: 3.14.63 -> 3.14.65 --- pkgs/os-specific/linux/kernel/linux-3.14.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-3.14.nix b/pkgs/os-specific/linux/kernel/linux-3.14.nix index ae3ba775d41..f69fa93ea2f 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.14.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.14.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "3.14.63"; + version = "3.14.65"; extraMeta.branch = "3.14"; src = fetchurl { url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; - sha256 = "0q3qcgcaxjc298dgjpfn6g17lvki2p87f0zkaxs0h0g13jhykwbz"; + sha256 = "0pqfgzinwgllvyx0cfv0vnllgvzrrpbr2yi21zgppdd1iw6nipsd"; }; kernelPatches = args.kernelPatches; From 8dfb8d06f0b2f6b4792d012e929da43b21cfeec9 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 19 Mar 2016 19:50:36 +0100 Subject: [PATCH 250/678] ipxe: fix gcc5 build gcc5 enables additional warnings, causing the build to fail with -Werror. The build could be fixed by specifically disabling errors for `discarded-array-qualifiers` and `logical-not-parentheses` warnings, but simply passing -Wno-error is more future proof. See https://hydra.nixos.org/build/33274006/nixlog/1/raw --- pkgs/tools/misc/ipxe/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/tools/misc/ipxe/default.nix b/pkgs/tools/misc/ipxe/default.nix index e4c161b2e51..4346d25ca07 100644 --- a/pkgs/tools/misc/ipxe/default.nix +++ b/pkgs/tools/misc/ipxe/default.nix @@ -18,6 +18,8 @@ stdenv.mkDerivation { preConfigure = "cd src"; + NIX_CFLAGS_COMPILE = "-Wno-error"; + makeFlags = [ "ECHO_E_BIN_ECHO=echo" "ECHO_E_BIN_ECHO_E=echo" # No /bin/echo here. "ISOLINUX_BIN_LIST=${syslinux}/share/syslinux/isolinux.bin" From 497c828611f248baa8bdf8320e841b24e528bbe4 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sat, 19 Mar 2016 17:21:16 +0100 Subject: [PATCH 251/678] fuse: 2.9.3 -> 2.9.5 --- pkgs/os-specific/linux/fuse/builder.sh | 18 ------------- pkgs/os-specific/linux/fuse/default.nix | 34 +++++++++++++++++-------- pkgs/top-level/all-packages.nix | 4 ++- 3 files changed, 27 insertions(+), 29 deletions(-) delete mode 100644 pkgs/os-specific/linux/fuse/builder.sh diff --git a/pkgs/os-specific/linux/fuse/builder.sh b/pkgs/os-specific/linux/fuse/builder.sh deleted file mode 100644 index c843ae6183b..00000000000 --- a/pkgs/os-specific/linux/fuse/builder.sh +++ /dev/null @@ -1,18 +0,0 @@ -source $stdenv/setup - -export MOUNT_FUSE_PATH=$out/sbin -export INIT_D_PATH=$out/etc/init.d -export UDEV_RULES_PATH=$out/etc/udev/rules.d - -# This is ugly. Normally, FUSE executes $out/bin/fusermount to mount -# the file system. However, fusermount should be setuid root, but Nix -# doesn't support setuid binaries, so fusermount will fail. By -# setting FUSERMOUNT_DIR to a non-existant path, FUSE will fall back -# to searching for fusermount in $PATH. The user is responsible for -# (e.g.) setting up a setuid-wrapper for fusermount and adding it to -# $PATH. -export NIX_CFLAGS_COMPILE="-DFUSERMOUNT_DIR=\"/no-such-path\"" - -export preBuild="sed -e 's@/bin/@$utillinux/bin/@g' -i lib/mount_util.c"; - -genericBuild diff --git a/pkgs/os-specific/linux/fuse/default.nix b/pkgs/os-specific/linux/fuse/default.nix index 036ece4627b..d86eb2a9756 100644 --- a/pkgs/os-specific/linux/fuse/default.nix +++ b/pkgs/os-specific/linux/fuse/default.nix @@ -1,21 +1,35 @@ { stdenv, fetchurl, utillinux }: stdenv.mkDerivation rec { - name = "fuse-2.9.3"; - - builder = ./builder.sh; - + name = "fuse-2.9.5"; + + #builder = ./builder.sh; + src = fetchurl { - url = "mirror://sourceforge/fuse/${name}.tar.gz"; - sha256 = "071r6xjgssy8vwdn6m28qq1bqxsd2bphcd2mzhq0grf5ybm87sqb"; + url = "https://github.com/libfuse/libfuse/releases/download/fuse_2_9_5/${name}.tar.gz"; + sha256 = "1dfvbi1p57svbv2sfnbqwpnsk219spvjnlapf35azhgzqlf3g7sp"; }; - - configureFlags = "--disable-kernel-module"; - + buildInputs = [ utillinux ]; - + inherit utillinux; + preConfigure = + '' + export MOUNT_FUSE_PATH=$out/sbin + export INIT_D_PATH=$TMPDIR/etc/init.d + export UDEV_RULES_PATH=$out/etc/udev/rules.d + + # Ensure that FUSE calls the setuid wrapper, not + # $out/bin/fusermount. It falls back to calling fusermount in + # $PATH, so it should also work on non-NixOS systems. + export NIX_CFLAGS_COMPILE="-DFUSERMOUNT_DIR=\"/var/setuid-wrappers\"" + + sed -e 's@/bin/@${utillinux}/bin/@g' -i lib/mount_util.c + ''; + + enableParallelBuilding = true; + meta = with stdenv.lib; { homepage = http://fuse.sourceforge.net/; description = "Kernel module and library that allows filesystems to be implemented in user space"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 22cb6b3c8fa..75d6de57a31 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10286,7 +10286,9 @@ let inherit (linuxPackages) kernel; }; - fuse = callPackage ../os-specific/linux/fuse { }; + fuse = callPackage ../os-specific/linux/fuse { + utillinux = utillinuxMinimal; + }; fusionio-util = callPackage ../os-specific/linux/fusionio/util.nix { }; From 455ec64d11db07a5b02ca0cf2578507bc7137e58 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sat, 19 Mar 2016 21:00:57 +0100 Subject: [PATCH 252/678] s3ql: 2.13 -> 2.17.1 --- pkgs/tools/backup/s3ql/default.nix | 8 ++++---- pkgs/top-level/python-packages.nix | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/backup/s3ql/default.nix b/pkgs/tools/backup/s3ql/default.nix index e94af89a7c6..9b2adc1d39f 100644 --- a/pkgs/tools/backup/s3ql/default.nix +++ b/pkgs/tools/backup/s3ql/default.nix @@ -3,21 +3,21 @@ python3Packages.buildPythonApplication rec { name = "${pname}-${version}"; pname = "s3ql"; - version = "2.13"; + version = "2.17.1"; src = fetchurl { url = "https://bitbucket.org/nikratio/${pname}/downloads/${name}.tar.bz2"; - sha256 = "0bxps1iq0rv7bg2b8mys6zyjp912knm6zmafhid1jhsv3xyby4my"; + sha256 = "049vpvvkyia7v4v97rg2l01n43shrdxc1ik38bmjb2q4fvsh1pgx"; }; propagatedBuildInputs = with python3Packages; - [ sqlite apsw pycrypto requests defusedxml dugong llfuse ]; + [ sqlite apsw pycrypto requests2 defusedxml dugong llfuse ]; meta = with stdenv.lib; { description = "A full-featured file system for online data storage"; homepage = "https://bitbucket.org/nikratio/s3ql"; license = licenses.gpl3; maintainers = with maintainers; [ rushmorem ]; - platforms = platforms.unix; + platforms = platforms.linux; }; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index dd8f93d00f0..afdf953934b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11227,11 +11227,11 @@ in modules // { }; llfuse = buildPythonPackage rec { - name = "llfuse-0.40"; + name = "llfuse-1.0"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/l/llfuse/${name}.tar.bz2"; - sha256 = "0mx87n6j2g63mgiimjqn0gj6jgqfdkc04xkxc56r1azjlqji32zf"; + md5 = "6e71af191381da135a222e3c0e7569a1"; }; buildInputs = [ pkgs.pkgconfig pkgs.fuse pkgs.attr ]; From 76947878cb79562c4a6be92bfb5952f0aa29da56 Mon Sep 17 00:00:00 2001 From: Jude Taylor Date: Sat, 19 Mar 2016 13:11:24 -0700 Subject: [PATCH 253/678] add xautoclick --- pkgs/applications/misc/xautoclick/default.nix | 24 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/applications/misc/xautoclick/default.nix diff --git a/pkgs/applications/misc/xautoclick/default.nix b/pkgs/applications/misc/xautoclick/default.nix new file mode 100644 index 00000000000..49a94ac3979 --- /dev/null +++ b/pkgs/applications/misc/xautoclick/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchurl, xorg, pkgconfig +, gtkSupport ? true, gtk +, qtSupport ? true, qt4 +}: + +stdenv.mkDerivation rec { + version = "0.31"; + name = "xautoclick-${version}"; + src = fetchurl { + url = "http://downloads.sourceforge.net/project/xautoclick/xautoclick/xautoclick-0.31/xautoclick-0.31.tar.gz"; + sha256 = "0h522f12a7v2b89411xm51iwixmjp2mp90rnizjgiakx9ajnmqnm"; + }; + buildInputs = [ xorg.libX11 xorg.libXtst xorg.xinput xorg.libXi xorg.libXext pkgconfig ] + ++ stdenv.lib.optionals gtkSupport [ gtk ] + ++ stdenv.lib.optionals qtSupport [ qt4 ]; + patchPhase = '' + substituteInPlace configure --replace /usr/X11R6 ${xorg.libX11} + ''; + preConfigure = stdenv.lib.optional qtSupport '' + mkdir .bin + ln -s ${qt4}/bin/moc .bin/moc-qt4 + addToSearchPath PATH .bin + ''; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 75d6de57a31..7e56476c9b6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3658,6 +3658,8 @@ let python = python2; }; + xautoclick = callPackage ../applications/misc/xautoclick {}; + xl2tpd = callPackage ../tools/networking/xl2tpd { }; xe = callPackage ../tools/system/xe { }; From 53c9edef343c5ed66bc2f5acf8501d82414b02cc Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sat, 19 Mar 2016 20:25:34 +0000 Subject: [PATCH 254/678] bundlerEnv: fix wrapping of programs Setting the GEM_PATH after ruby is started is not reliable enough. In some cases rubygems would have already loaded and ignore these settings. Fixes #14048 --- .../interpreters/ruby/bundler-env/gen-bin-stubs.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/development/interpreters/ruby/bundler-env/gen-bin-stubs.rb b/pkgs/development/interpreters/ruby/bundler-env/gen-bin-stubs.rb index fac9c9ad944..fa77682cfd5 100644 --- a/pkgs/development/interpreters/ruby/bundler-env/gen-bin-stubs.rb +++ b/pkgs/development/interpreters/ruby/bundler-env/gen-bin-stubs.rb @@ -32,10 +32,8 @@ paths.each do |path| ENV["BUNDLE_GEMFILE"] = "#{gemfile}" ENV["BUNDLE_PATH"] = "#{bundle_path}" -gem_path = ENV["GEM_PATH"] -ENV["GEM_PATH"] = "\#{gem_path}\#{":" unless gem_path.nil? || gem_path.empty?}#{bundler_gem_path}" +Gem.use_paths("#{bundler_gem_path}", ENV["GEM_PATH"]) -require 'rubygems' require 'bundler/setup' load Gem.bin_path(#{name.inspect}, #{exe.inspect}) From 1dbf51416a42c8cf8ddc8d23714b3ad5c0f3b799 Mon Sep 17 00:00:00 2001 From: lukasepple Date: Sat, 19 Mar 2016 21:52:48 +0100 Subject: [PATCH 255/678] torbrowser: 5.5.3 -> 5.5.4 --- pkgs/tools/security/tor/torbrowser.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/security/tor/torbrowser.nix b/pkgs/tools/security/tor/torbrowser.nix index 457cc5fa4c4..ef00a8538a9 100644 --- a/pkgs/tools/security/tor/torbrowser.nix +++ b/pkgs/tools/security/tor/torbrowser.nix @@ -16,13 +16,13 @@ let in stdenv.mkDerivation rec { name = "tor-browser-${version}"; - version = "5.5.3"; + version = "5.5.4"; src = fetchurl { url = "https://archive.torproject.org/tor-package-archive/torbrowser/${version}/tor-browser-linux${if stdenv.is64bit then "64" else "32"}-${version}_en-US.tar.xz"; sha256 = if stdenv.is64bit then - "04na0xp2fqq72shj88wayx23cwhbhcdsl0vi0wfhh4k6ajr7yg7c" else - "06xmbrpyazvss89dwd08rdza7s2p4i326izjdrdhxrjkz83jkf2m"; + "0sjx2r7z7s3x1ygs9xak1phng13jcf4d5pcfyfrfsrd8kb1yn8xa" else + "0w9wk9hk57hyhhx7l4sr2x64ki9882fr6py2can1slr7kbb4mhpb"; }; desktopItem = makeDesktopItem { From 0f3618da1e848ef0f0b256f583d44548d810b701 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edward=20Tj=C3=B6rnhammar?= Date: Sat, 19 Mar 2016 22:48:52 +0100 Subject: [PATCH 256/678] kodiPlugins: sort collection alphabetically --- pkgs/applications/video/kodi/plugins.nix | 88 ++++++++++++------------ pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 45 insertions(+), 45 deletions(-) diff --git a/pkgs/applications/video/kodi/plugins.nix b/pkgs/applications/video/kodi/plugins.nix index 96c47a15ef1..d10b979f852 100644 --- a/pkgs/applications/video/kodi/plugins.nix +++ b/pkgs/applications/video/kodi/plugins.nix @@ -89,29 +89,6 @@ in }; }).override { buildInputs = [ unzip ]; }; - urlresolver = (mkKodiPlugin rec { - - plugin = "urlresolver"; - namespace = "script.module.urlresolver"; - version = "2.10.0"; - - src = fetchFromGitHub { - name = plugin + "-" + version + ".tar.gz"; - owner = "Eldorados"; - repo = namespace; - rev = "72b9d978d90d54bb7a0224a1fd2407143e592984"; - sha256 = "0r5glfvgy9ri3ar9zdkvix8lalr1kfp22fap2pqp739b6k2iqir6"; - }; - - meta = with stdenv.lib; { - homepage = "https://github.com/Eldorados/urlresolver"; - description = "Resolve common video host URL's to be playable in XBMC/Kodi"; - maintainers = with maintainers; [ edwtjo ]; - }; - }).override { - postPatch = "sed -i -e 's,settings_file = os.path.join(addon_path,settings_file = os.path.join(profile_path,g' lib/urlresolver/common.py"; - }; - salts = mkKodiPlugin rec { plugin = "salts"; @@ -191,27 +168,6 @@ in propagatedBuildinputs = [ steam ]; }; - t0mm0-common = mkKodiPlugin rec { - - plugin = "t0mm0-common"; - namespace = "script.module.t0mm0.common"; - version = "0.0.1"; - - src = fetchFromGitHub { - name = plugin + "-" + version + ".tar.gz"; - owner = "t0mm0"; - repo = "xbmc-urlresolver"; - rev = "ab16933a996a9e77b572953c45e70900c723d6e1"; - sha256 = "1yd00md8iirizzaiqy6fv1n2snydcpqvp2f9irzfzxxi3i9asb93"; - }; - - meta = with stdenv.lib; { - homepage = "https://github.com/t0mm0/xbmc-urlresolver/"; - description = "t0mm0's common stuff"; - maintainers = with maintainers; [ edwtjo ]; - }; - }; - pvr-hts = (mkKodiPlugin rec { plugin = "pvr-hts"; namespace = "pvr.hts"; @@ -244,4 +200,48 @@ in ln -s $out/lib/kodi/addons/pvr.hts/pvr.hts.so $out/share/kodi/addons/pvr.hts ''; }; + + t0mm0-common = mkKodiPlugin rec { + + plugin = "t0mm0-common"; + namespace = "script.module.t0mm0.common"; + version = "0.0.1"; + + src = fetchFromGitHub { + name = plugin + "-" + version + ".tar.gz"; + owner = "t0mm0"; + repo = "xbmc-urlresolver"; + rev = "ab16933a996a9e77b572953c45e70900c723d6e1"; + sha256 = "1yd00md8iirizzaiqy6fv1n2snydcpqvp2f9irzfzxxi3i9asb93"; + }; + + meta = with stdenv.lib; { + homepage = "https://github.com/t0mm0/xbmc-urlresolver/"; + description = "t0mm0's common stuff"; + maintainers = with maintainers; [ edwtjo ]; + }; + }; + + urlresolver = (mkKodiPlugin rec { + + plugin = "urlresolver"; + namespace = "script.module.urlresolver"; + version = "2.10.0"; + + src = fetchFromGitHub { + name = plugin + "-" + version + ".tar.gz"; + owner = "Eldorados"; + repo = namespace; + rev = "72b9d978d90d54bb7a0224a1fd2407143e592984"; + sha256 = "0r5glfvgy9ri3ar9zdkvix8lalr1kfp22fap2pqp739b6k2iqir6"; + }; + + meta = with stdenv.lib; { + homepage = "https://github.com/Eldorados/urlresolver"; + description = "Resolve common video host URL's to be playable in XBMC/Kodi"; + maintainers = with maintainers; [ edwtjo ]; + }; + }).override { + postPatch = "sed -i -e 's,settings_file = os.path.join(addon_path,settings_file = os.path.join(profile_path,g' lib/urlresolver/common.py"; + }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7e56476c9b6..f2109254b11 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14272,10 +14272,10 @@ let ([] ++ optional (config.kodi.enableAdvancedLauncher or false) advanced-launcher ++ optional (config.kodi.enableGenesis or false) genesis + ++ optionals (config.kodi.enableSALTS or false) [salts urlresolver t0mm0-common] ++ optional (config.kodi.enableSVTPlay or false) svtplay ++ optional (config.kodi.enableSteamLauncher or false) steam-launcher ++ optional (config.kodi.enablePVRHTS or false) pvr-hts - ++ optionals (config.kodi.enableSALTS or false) [salts urlresolver t0mm0-common] ); }; From 7d0b492731412373884bdfb3c45a72f9f8c4d6b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edward=20Tj=C3=B6rnhammar?= Date: Sat, 19 Mar 2016 22:48:58 +0100 Subject: [PATCH 257/678] kodiPlugins.pdfreader: init at 1.0.2 --- pkgs/applications/video/kodi/plugins.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/pkgs/applications/video/kodi/plugins.nix b/pkgs/applications/video/kodi/plugins.nix index d10b979f852..8640651e4c7 100644 --- a/pkgs/applications/video/kodi/plugins.nix +++ b/pkgs/applications/video/kodi/plugins.nix @@ -168,6 +168,26 @@ in propagatedBuildinputs = [ steam ]; }; + pdfreader = mkKodiPlugin rec { + plugin = "pdfreader"; + namespace = "plugin.image.pdf"; + version = "1.0.2"; + + src = fetchFromGitHub rec { + name = plugin + "-" + version + ".tar.gz"; + owner = "teeedubb"; + repo = owner + "-xbmc-repo"; + rev = "0a405b95208ced8a1365ad3193eade8d1c2117ce"; + sha256 = "1iv7d030z3xvlflvp4p5v3riqnwg9g0yvzxszy63v1a6x5kpjkqa"; + }; + + meta = with stdenv.lib; { + homepage = http://forum.kodi.tv/showthread.php?tid=187421; + descritpion = "A comic book reader"; + maintainers = with maintainers; [ edwtjo ]; + }; + }; + pvr-hts = (mkKodiPlugin rec { plugin = "pvr-hts"; namespace = "pvr.hts"; From c871c625c019a0c507f192027c0e738e57d87bfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edward=20Tj=C3=B6rnhammar?= Date: Sat, 19 Mar 2016 22:49:04 +0100 Subject: [PATCH 258/678] kodiPlugins.hyper-launcher.{plugin,service}: init at 1.2.0 --- pkgs/applications/video/kodi/plugins.nix | 28 ++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 30 insertions(+) diff --git a/pkgs/applications/video/kodi/plugins.nix b/pkgs/applications/video/kodi/plugins.nix index 8640651e4c7..bd452f81236 100644 --- a/pkgs/applications/video/kodi/plugins.nix +++ b/pkgs/applications/video/kodi/plugins.nix @@ -89,6 +89,34 @@ in }; }).override { buildInputs = [ unzip ]; }; + hyper-launcher = let + pname = "hyper-launcher"; + version = "1.2.0"; + src = fetchFromGitHub rec { + name = pname + "-" + version + ".tar.gz"; + owner = "teeedubb"; + repo = owner + "-xbmc-repo"; + rev = "9bd170407436e736d2d709f8af9968238594669c"; + sha256 = "019nqf7kixicnrzkg671x4yq723igjkhfl8hz5bifi9gx2qcy8hy"; + }; + meta = with stdenv.lib; { + homepage = http://forum.kodi.tv/showthread.php?tid=258159; + description = "A ROM launcher for Kodi that uses HyperSpin assets."; + maintainers = with maintainers; [ edwtjo ]; + }; + in { + service = mkKodiPlugin { + plugin = pname + "-service"; + namespace = "service.hyper.launcher"; + inherit version src meta; + }; + plugin = mkKodiPlugin { + plugin = pname; + namespace = "plugin.hyper.launcher"; + inherit version src meta; + }; + }; + salts = mkKodiPlugin rec { plugin = "salts"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f2109254b11..6f2c015840d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14272,6 +14272,8 @@ let ([] ++ optional (config.kodi.enableAdvancedLauncher or false) advanced-launcher ++ optional (config.kodi.enableGenesis or false) genesis + ++ optionals (config.kodi.enableHyperLauncher or false) + (with hyper-launcher; [ plugin service pdfreader ]) ++ optionals (config.kodi.enableSALTS or false) [salts urlresolver t0mm0-common] ++ optional (config.kodi.enableSVTPlay or false) svtplay ++ optional (config.kodi.enableSteamLauncher or false) steam-launcher From 4422731542beca7697efc416d9160a509cff430e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edward=20Tj=C3=B6rnhammar?= Date: Sat, 19 Mar 2016 22:49:09 +0100 Subject: [PATCH 259/678] kodiPlugins.salts: 2.0.6 -> 2.0.19 --- pkgs/applications/video/kodi/plugins.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/video/kodi/plugins.nix b/pkgs/applications/video/kodi/plugins.nix index bd452f81236..467144cefba 100644 --- a/pkgs/applications/video/kodi/plugins.nix +++ b/pkgs/applications/video/kodi/plugins.nix @@ -121,14 +121,14 @@ in plugin = "salts"; namespace = "plugin.video.salts"; - version = "2.0.6"; + version = "2.0.19"; src = fetchFromGitHub { name = plugin + "-" + version + ".tar.gz"; owner = "tknorris"; repo = plugin; - rev = "5100565bec5818cdcd8a891ab6a6d67b0018e070"; - sha256 = "00nlcddmgzyi3462i12qikdryfwqzqd1i30rkp485ay16akyj0lr"; + rev = "9c1882bad35cab9e62687847e097c37a576b900d"; + sha256 = "0saq578xsxvyg1v8jg2m3131hfrr95gv74b2npxr7g715yyx5bjq"; }; meta = with stdenv.lib; { From cf40f1f8c68db67b01d86d757b9444d01381093c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edward=20Tj=C3=B6rnhammar?= Date: Sat, 19 Mar 2016 22:49:14 +0100 Subject: [PATCH 260/678] kodiPlugins.steam-launcher: 3.1.1 -> 3.1.4 --- pkgs/applications/video/kodi/plugins.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/video/kodi/plugins.nix b/pkgs/applications/video/kodi/plugins.nix index 467144cefba..272a112e6b3 100644 --- a/pkgs/applications/video/kodi/plugins.nix +++ b/pkgs/applications/video/kodi/plugins.nix @@ -171,13 +171,13 @@ in plugin = "steam-launcher"; namespace = "script.steam.launcher"; - version = "3.1.1"; + version = "3.1.4"; src = fetchFromGitHub rec { owner = "teeedubb"; repo = owner + "-xbmc-repo"; - rev = "bb66db7c4927619485373699ff865a9b00e253bb"; - sha256 = "1skjkz0h6nkg04vylhl4zzavf5lba75j0qbgdhb9g7h0a98jz7s4"; + rev = "db67704c3e16bdcdd3bdfe2926c609f1f6bdc4fb"; + sha256 = "001a7zs3a4jfzj8ylxv2klc33mipmqsd5aqax7q81fbgwdlndvbm"; }; meta = with stdenv.lib; { From dcf8c1573b638f086d5ff34d14bbed4c735b6b3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edward=20Tj=C3=B6rnhammar?= Date: Sat, 19 Mar 2016 22:49:24 +0100 Subject: [PATCH 261/678] kodiPlugins.svtplay: 4.0.21 -> 4.0.23 --- pkgs/applications/video/kodi/plugins.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/video/kodi/plugins.nix b/pkgs/applications/video/kodi/plugins.nix index 272a112e6b3..5e68958a170 100644 --- a/pkgs/applications/video/kodi/plugins.nix +++ b/pkgs/applications/video/kodi/plugins.nix @@ -142,14 +142,14 @@ in plugin = "svtplay"; namespace = "plugin.video.svtplay"; - version = "4.0.21"; + version = "4.0.23"; src = fetchFromGitHub { name = plugin + "-" + version + ".tar.gz"; owner = "nilzen"; repo = "xbmc-" + plugin; - rev = "1fb099dcddc65e58ca8691d19de657321b1b1fc2"; - sha256 = "178krh8kzll7cprqwyhydb41b1jh961av875bm5yfdlplzaiynm0"; + rev = "80b6d241adb046c105ceb63d637da3f7f3684f1a"; + sha256 = "1236kanzl4dra78whpwic1r5iifaj3f27qycia9jr54z01id083s"; }; meta = with stdenv.lib; { From ac85f1ab4b4610e2637d9af595d7aebb71db9698 Mon Sep 17 00:00:00 2001 From: Anders Papitto Date: Mon, 14 Mar 2016 22:40:26 -0700 Subject: [PATCH 262/678] distcc: 3.1 -> 2016-02-16 3.1 is from 2008 --- .../misc/distcc/20-minute-io-timeout.patch | 12 ----------- .../development/tools/misc/distcc/default.nix | 21 ++++++++++++------- 2 files changed, 13 insertions(+), 20 deletions(-) delete mode 100644 pkgs/development/tools/misc/distcc/20-minute-io-timeout.patch diff --git a/pkgs/development/tools/misc/distcc/20-minute-io-timeout.patch b/pkgs/development/tools/misc/distcc/20-minute-io-timeout.patch deleted file mode 100644 index 175060137fd..00000000000 --- a/pkgs/development/tools/misc/distcc/20-minute-io-timeout.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -ubr distcc-3.1-orig/src/io.c distcc-3.1-patched/src/io.c ---- distcc-3.1-orig/src/io.c 2008-12-02 22:50:25.000000000 +0100 -+++ distcc-3.1-patched/src/io.c 2010-01-07 15:07:18.000000000 +0100 -@@ -64,7 +64,7 @@ - - /** Timeout for all IO other than opening connections. Much longer, because - * compiling files can take a long time. **/ --const int dcc_io_timeout = 300; /* seconds */ -+const int dcc_io_timeout = 1200; /* seconds */ - - - /** diff --git a/pkgs/development/tools/misc/distcc/default.nix b/pkgs/development/tools/misc/distcc/default.nix index 0b42b88ef7a..cf9d7a01920 100644 --- a/pkgs/development/tools/misc/distcc/default.nix +++ b/pkgs/development/tools/misc/distcc/default.nix @@ -1,21 +1,25 @@ -{ stdenv, fetchurl, popt, avahi, pkgconfig, python, gtk, runCommand, gcc +{ stdenv, fetchFromGitHub, popt, avahi, pkgconfig, python, gtk, runCommand, gcc, autoconf, automake, which, procps , sysconfDir ? "" # set this parameter to override the default value $out/etc , static ? false }: let name = "distcc"; - version = "3.1"; + version = "2016-02-24"; distcc = stdenv.mkDerivation { name = "${name}-${version}"; - src = fetchurl { - url = "http://distcc.googlecode.com/files/${name}-${version}.tar.bz2"; - sha256 = "f55dbafd76bed3ce57e1bbcdab1329227808890d90f4c724fcd2d53f934ddd89"; + src = fetchFromGitHub { + owner = "distcc"; + repo = "distcc"; + rev = "b2fa4e21b4029e13e2c33f7b03ca43346f2cecb8"; + sha256 = "1vj31wcdas8wy52hy6749mlrca9v6ynycdiigx5ay8pnya9z73c6"; }; - buildInputs = [popt avahi pkgconfig python gtk]; + buildInputs = [popt avahi pkgconfig python gtk autoconf automake pkgconfig which procps]; preConfigure = '' + export CPATH=$(ls -d ${gcc.cc}/lib/gcc/*/${gcc.cc.version}/plugin/include) + configureFlagsArray=( CFLAGS="-O2 -fno-strict-aliasing" CXXFLAGS="-O2 -fno-strict-aliasing" --mandir=$out/share/man @@ -29,8 +33,9 @@ let --disable-Werror # a must on gcc 4.6 ) installFlags="sysconfdir=$out/etc"; + + ./autogen.sh ''; - patches = [ ./20-minute-io-timeout.patch ]; # The test suite fails because it uses hard-coded paths, i.e. /usr/bin/gcc. doCheck = false; @@ -69,7 +74,7 @@ let license = "GPL"; platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = with stdenv.lib.maintainers; [ simons anderspapitto ]; }; }; in From 64fe2b5eb6111cd8fc1688bf177988cc7fe7d4d9 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Tue, 15 Mar 2016 20:50:10 +0000 Subject: [PATCH 263/678] gitlab: remove unused parameter --- pkgs/applications/version-management/gitlab/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/version-management/gitlab/default.nix b/pkgs/applications/version-management/gitlab/default.nix index 87d20b7c9d3..9a3ce8bed22 100644 --- a/pkgs/applications/version-management/gitlab/default.nix +++ b/pkgs/applications/version-management/gitlab/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, bundler, fetchFromGitHub, bundlerEnv, defaultGemConfig, libiconv, ruby +{ stdenv, lib, bundler, fetchFromGitHub, bundlerEnv, libiconv, ruby , tzdata, git, nodejs, procps }: From eccad06e23a12bea201f1f540b56808b4ed71a12 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Tue, 15 Mar 2016 20:50:57 +0000 Subject: [PATCH 264/678] remove unsed ruby-sqlite3 package --- .../ruby-modules/sqlite3/default.nix | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 pkgs/development/ruby-modules/sqlite3/default.nix diff --git a/pkgs/development/ruby-modules/sqlite3/default.nix b/pkgs/development/ruby-modules/sqlite3/default.nix deleted file mode 100644 index 33a8951921e..00000000000 --- a/pkgs/development/ruby-modules/sqlite3/default.nix +++ /dev/null @@ -1,18 +0,0 @@ -{stdenv, fetchurl, ruby, sqlite}: - -stdenv.mkDerivation { - name = "ruby-sqlite3-1.2.4"; - src = fetchurl { - url = http://rubyforge.org/frs/download.php/42055/sqlite3-ruby-1.2.4.tar.bz2; - sha256 = "1mmhlrggzdsbhpmifv1iibrf4ch3ycm878pxil3x3xhf9l6vp0a7"; - }; - buildInputs = [ruby sqlite]; - buildPhase = "true"; - installPhase = '' - mkdir -p $out/lib - ruby setup.rb config --prefix=$out - # --bindir $out/bin --libdir $out/lib - ruby setup.rb setup - ruby setup.rb install - ''; -} From 3547ffa89fec408e93627c03f8bf0b3c98bde0e2 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Wed, 16 Mar 2016 19:56:47 +0000 Subject: [PATCH 265/678] ruby: remove unused patches --- .../development/interpreters/ruby/patches.nix | 138 ------------------ .../ruby-modules/fake-s3-list-bucket.patch | 30 ---- 2 files changed, 168 deletions(-) delete mode 100644 pkgs/development/interpreters/ruby/patches.nix delete mode 100644 pkgs/development/ruby-modules/fake-s3-list-bucket.patch diff --git a/pkgs/development/interpreters/ruby/patches.nix b/pkgs/development/interpreters/ruby/patches.nix deleted file mode 100644 index 0cc477c991e..00000000000 --- a/pkgs/development/interpreters/ruby/patches.nix +++ /dev/null @@ -1,138 +0,0 @@ -{ fetchurl, writeScript, ruby, ncurses, sqlite, libxml2, libxslt, libffi -, zlib, libuuid, gems, jdk, python, stdenv, libiconv, imagemagick -, pkgconfig }: - -let - - patchUsrBinEnv = writeScript "path-usr-bin-env" '' - #!/bin/sh - echo "===================" - find "$1" -type f -name "*.rb" | xargs sed -i "s@/usr/bin/env@$(type -p env)@g" - find "$1" -type f -name "*.mk" | xargs sed -i "s@/usr/bin/env@$(type -p env)@g" - ''; - -in - -{ - buildr = { - # Many Buildfiles rely on RUBYLIB containing the current directory - # (as was the default in Ruby < 1.9.2). - extraWrapperFlags = "--prefix RUBYLIB : ."; - }; - - fakes3 = { - postInstall = '' - cd $out/${ruby.gemPath}/gems/* - patch -Np1 -i ${../../ruby-modules/fake-s3-list-bucket.patch} - ''; - }; - - ffi = { - postUnpack = "onetuh"; - buildFlags = ["--with-ffi-dir=${libffi}"]; - NIX_POST_EXTRACT_FILES_HOOK = patchUsrBinEnv; - }; - - iconv = { buildInputs = [ libiconv ]; }; - - libv8 = { - # This fix is needed to fool scons, which clears the environment by default. - # It's ugly, but it works. - # - # We create a gcc wrapper wrapper, which reexposes the environment variables - # that scons hides. Furthermore, they treat warnings as errors causing the - # build to fail, due to an unused variable. - # - # Finally, we must set CC and AR explicitly to allow scons to find the - # compiler and archiver - - preBuild = '' - cat > $TMPDIR/g++ < -Date: Wed Sep 4 16:16:12 2013 -0400 - - Fix LS_BUCKET - - GET foo.s3.amazonaws.com/ and GET s3.amazonaws.com/foo should result in - an LS_BUCKET request, but under the previous logic it would result in a - LIST_BUCKETS request. GET s3.amazonaws.com/ still results in a - LIST_BUCKETS request due to the 'if path == "/" and s_req.is_path_style' - conditional. - - Signed-off-by: Shea Levy - -diff --git a/lib/fakes3/server.rb b/lib/fakes3/server.rb -index 6958151..36d9cad 100644 ---- a/lib/fakes3/server.rb -+++ b/lib/fakes3/server.rb -@@ -213,10 +213,7 @@ module FakeS3 - elems = path.split("/") - end - -- if elems.size == 0 -- # List buckets -- s_req.type = Request::LIST_BUCKETS -- elsif elems.size == 1 -+ if elems.size < 2 - s_req.type = Request::LS_BUCKET - s_req.query = query - else From 5a64bc44ead7099857e5ecec339e87a80a60796e Mon Sep 17 00:00:00 2001 From: zimbatm Date: Tue, 15 Mar 2016 20:49:07 +0000 Subject: [PATCH 266/678] move all ruby modules to development/ruby-modules --- .../ruby => ruby-modules}/bundix/default.nix | 0 .../ruby => ruby-modules}/bundler-env/default.nix | 0 .../bundler-env/gen-bin-stubs.rb | 0 .../bundler/default.nix} | 0 .../gem-config}/default.nix | 0 .../gem-config}/mkrf_conf_xapian.rb | 0 .../gem-config}/xapian-Rakefile | 0 .../build-ruby-gem => ruby-modules/gem}/default.nix | 0 .../gem}/gem-post-build.rb | 0 .../gem}/nix-bundle-install.rb | 0 pkgs/top-level/aliases.nix | 1 + pkgs/top-level/all-packages.nix | 13 +++++-------- 12 files changed, 6 insertions(+), 8 deletions(-) rename pkgs/development/{interpreters/ruby => ruby-modules}/bundix/default.nix (100%) rename pkgs/development/{interpreters/ruby => ruby-modules}/bundler-env/default.nix (100%) rename pkgs/development/{interpreters/ruby => ruby-modules}/bundler-env/gen-bin-stubs.rb (100%) rename pkgs/development/{interpreters/ruby/bundler.nix => ruby-modules/bundler/default.nix} (100%) rename pkgs/development/{interpreters/ruby/gemconfig => ruby-modules/gem-config}/default.nix (100%) rename pkgs/development/{interpreters/ruby/gemconfig => ruby-modules/gem-config}/mkrf_conf_xapian.rb (100%) rename pkgs/development/{interpreters/ruby/gemconfig => ruby-modules/gem-config}/xapian-Rakefile (100%) rename pkgs/development/{interpreters/ruby/build-ruby-gem => ruby-modules/gem}/default.nix (100%) rename pkgs/development/{interpreters/ruby/build-ruby-gem => ruby-modules/gem}/gem-post-build.rb (100%) rename pkgs/development/{interpreters/ruby/build-ruby-gem => ruby-modules/gem}/nix-bundle-install.rb (100%) diff --git a/pkgs/development/interpreters/ruby/bundix/default.nix b/pkgs/development/ruby-modules/bundix/default.nix similarity index 100% rename from pkgs/development/interpreters/ruby/bundix/default.nix rename to pkgs/development/ruby-modules/bundix/default.nix diff --git a/pkgs/development/interpreters/ruby/bundler-env/default.nix b/pkgs/development/ruby-modules/bundler-env/default.nix similarity index 100% rename from pkgs/development/interpreters/ruby/bundler-env/default.nix rename to pkgs/development/ruby-modules/bundler-env/default.nix diff --git a/pkgs/development/interpreters/ruby/bundler-env/gen-bin-stubs.rb b/pkgs/development/ruby-modules/bundler-env/gen-bin-stubs.rb similarity index 100% rename from pkgs/development/interpreters/ruby/bundler-env/gen-bin-stubs.rb rename to pkgs/development/ruby-modules/bundler-env/gen-bin-stubs.rb diff --git a/pkgs/development/interpreters/ruby/bundler.nix b/pkgs/development/ruby-modules/bundler/default.nix similarity index 100% rename from pkgs/development/interpreters/ruby/bundler.nix rename to pkgs/development/ruby-modules/bundler/default.nix diff --git a/pkgs/development/interpreters/ruby/gemconfig/default.nix b/pkgs/development/ruby-modules/gem-config/default.nix similarity index 100% rename from pkgs/development/interpreters/ruby/gemconfig/default.nix rename to pkgs/development/ruby-modules/gem-config/default.nix diff --git a/pkgs/development/interpreters/ruby/gemconfig/mkrf_conf_xapian.rb b/pkgs/development/ruby-modules/gem-config/mkrf_conf_xapian.rb similarity index 100% rename from pkgs/development/interpreters/ruby/gemconfig/mkrf_conf_xapian.rb rename to pkgs/development/ruby-modules/gem-config/mkrf_conf_xapian.rb diff --git a/pkgs/development/interpreters/ruby/gemconfig/xapian-Rakefile b/pkgs/development/ruby-modules/gem-config/xapian-Rakefile similarity index 100% rename from pkgs/development/interpreters/ruby/gemconfig/xapian-Rakefile rename to pkgs/development/ruby-modules/gem-config/xapian-Rakefile diff --git a/pkgs/development/interpreters/ruby/build-ruby-gem/default.nix b/pkgs/development/ruby-modules/gem/default.nix similarity index 100% rename from pkgs/development/interpreters/ruby/build-ruby-gem/default.nix rename to pkgs/development/ruby-modules/gem/default.nix diff --git a/pkgs/development/interpreters/ruby/build-ruby-gem/gem-post-build.rb b/pkgs/development/ruby-modules/gem/gem-post-build.rb similarity index 100% rename from pkgs/development/interpreters/ruby/build-ruby-gem/gem-post-build.rb rename to pkgs/development/ruby-modules/gem/gem-post-build.rb diff --git a/pkgs/development/interpreters/ruby/build-ruby-gem/nix-bundle-install.rb b/pkgs/development/ruby-modules/gem/nix-bundle-install.rb similarity index 100% rename from pkgs/development/interpreters/ruby/build-ruby-gem/nix-bundle-install.rb rename to pkgs/development/ruby-modules/gem/nix-bundle-install.rb diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index c8f1ed3b7c3..f2e1bbc5102 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -15,6 +15,7 @@ rec { bridge_utils = bridge-utils; # added 2015-02-20 btrfsProgs = btrfs-progs; # added 2016-01-03 buildbotSlave = buildbot-slave; # added 2014-12-09 + bundler_HEAD = bundler; # added 2015-11-15 cheetahTemplate = pythonPackages.cheetah; # 2015-06-15 clangAnalyzer = clang-analyzer; # added 2015-02-20 conkerorWrapper = conkeror; # added 2015-01 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6f2c015840d..3ac55c8f817 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5589,14 +5589,11 @@ let pixie = callPackage ../development/interpreters/pixie { }; dust = callPackage ../development/interpreters/pixie/dust.nix { }; - bundix = callPackage ../development/interpreters/ruby/bundix { - ruby = ruby_2_1; - }; - bundler = callPackage ../development/interpreters/ruby/bundler.nix { }; - bundler_HEAD = bundler; - defaultGemConfig = callPackage ../development/interpreters/ruby/gemconfig/default.nix { }; - buildRubyGem = callPackage ../development/interpreters/ruby/build-ruby-gem { }; - bundlerEnv = callPackage ../development/interpreters/ruby/bundler-env { }; + buildRubyGem = callPackage ../development/ruby-modules/gem { }; + defaultGemConfig = callPackage ../development/ruby-modules/gem-config { }; + bundix = callPackage ../development/ruby-modules/bundix { }; + bundler = callPackage ../development/ruby-modules/bundler { }; + bundlerEnv = callPackage ../development/ruby-modules/bundler-env { }; inherit (callPackage ../development/interpreters/ruby {}) ruby_1_9_3 From d9e60e4d43ae21dbd63b76cf86edcc8f56c4d764 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sat, 19 Mar 2016 22:18:53 +0000 Subject: [PATCH 267/678] htop: merge both implementations htop 2.0+ is now cross-platform --- pkgs/os-specific/darwin/htop/default.nix | 21 ------------------- .../linux => tools/system}/htop/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 9 +------- 3 files changed, 3 insertions(+), 31 deletions(-) delete mode 100644 pkgs/os-specific/darwin/htop/default.nix rename pkgs/{os-specific/linux => tools/system}/htop/default.nix (86%) diff --git a/pkgs/os-specific/darwin/htop/default.nix b/pkgs/os-specific/darwin/htop/default.nix deleted file mode 100644 index 3f076b838d4..00000000000 --- a/pkgs/os-specific/darwin/htop/default.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ fetchurl, stdenv, ncurses, autoconf, automake, IOKit }: - -stdenv.mkDerivation rec { - name = "htop-0.8.2.2"; - - src = fetchurl { - url = "https://github.com/max-horvath/htop-osx/archive/0.8.2.2.tar.gz"; - sha256 = "0qxibadn2lfqn10a5jmkv8r5ljfs0vaaa4j6psd7ppxa2w6bx5li"; - }; - - buildInputs = [ autoconf automake ncurses IOKit ]; - - preConfigure = "./autogen.sh"; - - meta = { - description = "An interactive process viewer for Mac OS X"; - homepage = "https://github.com/max-horvath/htop-osx"; - platforms = stdenv.lib.platforms.darwin; - maintainers = with stdenv.lib.maintainers; [ joelteon ]; - }; -} diff --git a/pkgs/os-specific/linux/htop/default.nix b/pkgs/tools/system/htop/default.nix similarity index 86% rename from pkgs/os-specific/linux/htop/default.nix rename to pkgs/tools/system/htop/default.nix index 946b44346ab..9c05c07c052 100644 --- a/pkgs/os-specific/linux/htop/default.nix +++ b/pkgs/tools/system/htop/default.nix @@ -13,9 +13,9 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "An interactive process viewer for Linux"; - homepage = http://htop.sourceforge.net; + homepage = https://hisham.hm/htop/; license = licenses.gpl2Plus; - platforms = platforms.linux; + platforms = platforms.all; maintainers = with maintainers; [ rob simons relrod nckx ]; }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3ac55c8f817..cbb41322f89 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10311,14 +10311,7 @@ let hostapd = callPackage ../os-specific/linux/hostapd { }; - htop = - if stdenv.isLinux then - callPackage ../os-specific/linux/htop { } - else if stdenv.isDarwin then - callPackage ../os-specific/darwin/htop { - inherit (darwin.apple_sdk.frameworks) IOKit; - } - else null; + htop = callPackage ../tools/system/htop { }; # GNU/Hurd core packages. gnu = recurseIntoAttrs (callPackage ../os-specific/gnu { From a6c1481c66dd4047019705abca6ee917d397a4c6 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Thu, 17 Mar 2016 10:42:36 +0000 Subject: [PATCH 268/678] foreman: init at 0.78.0 --- pkgs/tools/system/foreman/Gemfile | 3 +++ pkgs/tools/system/foreman/Gemfile.lock | 15 +++++++++++++ pkgs/tools/system/foreman/default.nix | 30 ++++++++++++++++++++++++++ pkgs/tools/system/foreman/gemset.nix | 18 ++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 5 files changed, 68 insertions(+) create mode 100644 pkgs/tools/system/foreman/Gemfile create mode 100644 pkgs/tools/system/foreman/Gemfile.lock create mode 100644 pkgs/tools/system/foreman/default.nix create mode 100644 pkgs/tools/system/foreman/gemset.nix diff --git a/pkgs/tools/system/foreman/Gemfile b/pkgs/tools/system/foreman/Gemfile new file mode 100644 index 00000000000..e25e6d790fc --- /dev/null +++ b/pkgs/tools/system/foreman/Gemfile @@ -0,0 +1,3 @@ +source "https://rubygems.org" + +gem "foreman" diff --git a/pkgs/tools/system/foreman/Gemfile.lock b/pkgs/tools/system/foreman/Gemfile.lock new file mode 100644 index 00000000000..8fa9a213ab2 --- /dev/null +++ b/pkgs/tools/system/foreman/Gemfile.lock @@ -0,0 +1,15 @@ +GEM + remote: https://rubygems.org/ + specs: + foreman (0.78.0) + thor (~> 0.19.1) + thor (0.19.1) + +PLATFORMS + ruby + +DEPENDENCIES + foreman + +BUNDLED WITH + 1.11.2 diff --git a/pkgs/tools/system/foreman/default.nix b/pkgs/tools/system/foreman/default.nix new file mode 100644 index 00000000000..594947c265a --- /dev/null +++ b/pkgs/tools/system/foreman/default.nix @@ -0,0 +1,30 @@ +{ stdenv, lib, ruby, bundlerEnv, makeWrapper }: + +stdenv.mkDerivation rec { + name = "foreman-${env.gems.foreman.version}"; + + env = bundlerEnv { + inherit ruby; + name = "${name}-gems"; + gemfile = ./Gemfile; + lockfile = ./Gemfile.lock; + gemset = ./gemset.nix; + }; + + phases = ["installPhase"]; + + nativeBuildInputs = [ makeWrapper ]; + + installPhase = '' + mkdir -p $out/bin + makeWrapper ${env}/bin/foreman $out/bin/foreman + ''; + + meta = with lib; { + description = "Process manager for applications with multiple components"; + homepage = https://github.com/ddollar/foreman; + license = licenses.mit; + maintainers = with maintainers; [ zimbatm ]; + platforms = ruby.meta.platforms; + }; +} diff --git a/pkgs/tools/system/foreman/gemset.nix b/pkgs/tools/system/foreman/gemset.nix new file mode 100644 index 00000000000..b35bd15c974 --- /dev/null +++ b/pkgs/tools/system/foreman/gemset.nix @@ -0,0 +1,18 @@ +{ + thor = { + version = "0.19.1"; + source = { + type = "gem"; + remotes = ["https://rubygems.org"]; + sha256 = "08p5gx18yrbnwc6xc0mxvsfaxzgy2y9i78xq7ds0qmdm67q39y4z"; + }; + }; + foreman = { + version = "0.78.0"; + source = { + type = "gem"; + remotes = ["https://rubygems.org"]; + sha256 = "1caz8mi7gq1hs4l1flcyyw1iw1bdvdbhppsvy12akr01k3s17xaq"; + }; + }; +} \ No newline at end of file diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3ac55c8f817..1b147c64974 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6000,6 +6000,8 @@ let findbugs = callPackage ../development/tools/analysis/findbugs { }; + foreman = callPackage ../tools/system/foreman { }; + flow = callPackage ../development/tools/analysis/flow { inherit (darwin.apple_sdk.frameworks) CoreServices; inherit (darwin) cf-private; From e6e7de082d742e619a869c822d89157287105a2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sun, 20 Mar 2016 00:42:12 +0100 Subject: [PATCH 269/678] Fixing icu for ARM with a patch from openembedded. It failed with an "internal error". --- pkgs/development/libraries/icu/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/icu/default.nix b/pkgs/development/libraries/icu/default.nix index 148e4f02a94..224e9302baa 100644 --- a/pkgs/development/libraries/icu/default.nix +++ b/pkgs/development/libraries/icu/default.nix @@ -4,7 +4,7 @@ let pname = "icu4c"; version = "56.1"; in -stdenv.mkDerivation { +stdenv.mkDerivation ({ name = pname + "-" + version; src = fetchurl { @@ -45,4 +45,6 @@ stdenv.mkDerivation { maintainers = with maintainers; [ raskin urkud ]; platforms = platforms.all; }; -} +} // (if stdenv.isArm then { + patches = [ ./0001-Disable-LDFLAGSICUDT-for-Linux.patch ]; +} else {})) From c6a717d2125a43e2b1ce538a5a5c101782d3453b Mon Sep 17 00:00:00 2001 From: Peter Hoeg Date: Thu, 17 Mar 2016 16:35:23 +0800 Subject: [PATCH 270/678] dynamic-colors: 2013-12-28 -> 0.2.1 --- lib/maintainers.nix | 1 + pkgs/tools/misc/dynamic-colors/default.nix | 39 +++++++------ ...eparate-config-and-dynamic-root-path.patch | 58 ------------------- 3 files changed, 22 insertions(+), 76 deletions(-) delete mode 100644 pkgs/tools/misc/dynamic-colors/separate-config-and-dynamic-root-path.patch diff --git a/lib/maintainers.nix b/lib/maintainers.nix index df6a3b36a7d..bbe0013971f 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -257,6 +257,7 @@ palo = "Ingolf Wanger "; pashev = "Igor Pashev "; pesterhazy = "Paulus Esterhazy "; + peterhoeg = "Peter Hoeg "; philandstuff = "Philip Potter "; phile314 = "Philipp Hausmann "; Phlogistique = "Noé Rubinstein "; diff --git a/pkgs/tools/misc/dynamic-colors/default.nix b/pkgs/tools/misc/dynamic-colors/default.nix index b587afb645c..b32f8f43146 100644 --- a/pkgs/tools/misc/dynamic-colors/default.nix +++ b/pkgs/tools/misc/dynamic-colors/default.nix @@ -1,37 +1,40 @@ -{ stdenv, fetchFromGitHub, makeWrapper, tmux, vim }: +{ stdenv, fetchFromGitHub }: stdenv.mkDerivation rec { - name = "dynamic-colors-git-${version}"; - version = "2013-12-28"; + name = "dynamic-colors-${version}"; + version = "0.2.1"; src = fetchFromGitHub { - owner = "sos4nt"; + owner = "peterhoeg"; repo = "dynamic-colors"; - rev = "35325f43620c5ee11a56db776b8f828bc5ae1ddd"; - sha256 = "1xsjanqyvjlcj1fb8x4qafskxp7aa9b43ba9gyjgzr7yz8hkl4iz"; + rev = "v${version}"; + sha256 = "061lh4qjk4671hwzmj55n3gy5hsi4p3hb30hj5bg3s6glcsbjpr5"; }; - buildInputs = [ makeWrapper ]; - - patches = [ ./separate-config-and-dynamic-root-path.patch ]; + dontBuild = true; + dontStrip = true; installPhase = '' - mkdir -p $out/bin $out/etc/bash_completion.d $out/share/dynamic-colors - cp bin/dynamic-colors $out/bin/ - cp completions/dynamic-colors.bash $out/etc/bash_completion.d/ - cp -r colorschemes $out/share/dynamic-colors/ + mkdir -p \ + $out/bin \ + $out/share/colorschemes \ + $out/share/bash-completion/completions \ + $out/share/zsh/site-packages - sed -e 's|\|${tmux}/bin/tmux|g' \ - -e 's|/usr/bin/vim|${vim}/bin/vim|g' \ - -i "$out/bin/dynamic-colors" + install -m755 bin/dynamic-colors $out/bin/ + install -m644 completions/dynamic-colors.bash $out/share/bash-completion/completions/dynamic-colors + install -m644 completions/dynamic-colors.zsh $out/share/zsh/site-packages/_dynamic-colors + install -m644 colorschemes/* -t $out/share/colorschemes - wrapProgram $out/bin/dynamic-colors --set DYNAMIC_COLORS_ROOT "$out/share/dynamic-colors" + sed -e "s|/usr/share/dynamic-colors|$out/share|g" \ + -i $out/bin/dynamic-colors ''; meta = { - homepage = https://github.com/sos4nt/dynamic-colors; + homepage = https://github.com/peterhoeg/dynamic-colors; license = stdenv.lib.licenses.mit; description = "Change terminal colors on the fly"; platforms = stdenv.lib.platforms.unix; + maintainers = [ stdenv.lib.maintainers.peterhoeg ]; }; } diff --git a/pkgs/tools/misc/dynamic-colors/separate-config-and-dynamic-root-path.patch b/pkgs/tools/misc/dynamic-colors/separate-config-and-dynamic-root-path.patch deleted file mode 100644 index 7462ed0e3af..00000000000 --- a/pkgs/tools/misc/dynamic-colors/separate-config-and-dynamic-root-path.patch +++ /dev/null @@ -1,58 +0,0 @@ -From ee44b859003972275d8e469ab41b9900420295e0 Mon Sep 17 00:00:00 2001 -From: Malte Rohde -Date: Fri, 9 Jan 2015 13:10:41 +0100 -Subject: [PATCH] Store user configuration in appropriate config location. - -So that the dynamic-colors source can live somewhere else -(e.g., /usr/local/dynamic-colors) and multiple users -can use the same script. ---- - bin/dynamic-colors | 21 ++++++++++++++++----- - 1 file changed, 16 insertions(+), 5 deletions(-) - -diff --git a/bin/dynamic-colors b/bin/dynamic-colors -index a669221..5d6bce7 100755 ---- a/bin/dynamic-colors -+++ b/bin/dynamic-colors -@@ -84,16 +84,27 @@ else - fi - COLORSCHEMES="${DYNAMIC_COLORS_ROOT}/colorschemes" - -+if [ -z "${DYNAMIC_COLORS_HOME}" ]; then -+ if [ -d "${HOME}/.dynamic-colors" ] || [ -z "${XDG_CONFIG_HOME}" ]; then -+ DYNAMIC_COLORS_HOME="${HOME}/.dynamic-colors" -+ else -+ DYNAMIC_COLORS_HOME="${XDG_CONFIG_HOME}/dynamic-colors" -+ fi -+else -+ DYNAMIC_COLORS_HOME="${DYNAMIC_COLORS_HOME%/}" -+fi -+ - write_colorscheme_name () { -- echo "$1" > "${DYNAMIC_COLORS_ROOT}/colorscheme" -+ [ ! -d "${DYNAMIC_COLORS_HOME}" ] && mkdir -p "${DYNAMIC_COLORS_HOME}" -+ echo "$1" > "${DYNAMIC_COLORS_HOME}/colorscheme" - } - - load_colorscheme_name () { -- head -1 "${DYNAMIC_COLORS_ROOT}/colorscheme" -+ head -1 "${DYNAMIC_COLORS_HOME}/colorscheme" - } - - init () { -- [ ! -f "${DYNAMIC_COLORS_ROOT}/colorscheme" ] && return -+ [ ! -f "${DYNAMIC_COLORS_HOME}/colorscheme" ] && return - colorscheme_name=$(load_colorscheme_name) - load_colorscheme "$colorscheme_name" - set_colors -@@ -142,8 +153,8 @@ audit () { - } - - cycle() { -- if [ -f "${DYNAMIC_COLORS_ROOT}/colorscheme" ]; then -- current=`head -1 "${DYNAMIC_COLORS_ROOT}/colorscheme"` -+ if [ -f "${DYNAMIC_COLORS_HOME}/colorscheme" ]; then -+ current=$(load_colorscheme_name) - found=false - cd "$COLORSCHEMES" - for file in *.sh; do From 9b8b143c9935cd2adfbc5db9182d5cf5865991ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sun, 20 Mar 2016 00:46:45 +0100 Subject: [PATCH 271/678] Missing path in prev commit --- .../0001-Disable-LDFLAGSICUDT-for-Linux.patch | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pkgs/development/libraries/icu/0001-Disable-LDFLAGSICUDT-for-Linux.patch diff --git a/pkgs/development/libraries/icu/0001-Disable-LDFLAGSICUDT-for-Linux.patch b/pkgs/development/libraries/icu/0001-Disable-LDFLAGSICUDT-for-Linux.patch new file mode 100644 index 00000000000..2968d571bb3 --- /dev/null +++ b/pkgs/development/libraries/icu/0001-Disable-LDFLAGSICUDT-for-Linux.patch @@ -0,0 +1,28 @@ +From 0c82d6aa02c08e41b13c83b14782bd7024e25d59 Mon Sep 17 00:00:00 2001 +From: Khem Raj +Date: Sat, 15 Feb 2014 21:06:42 +0000 +Subject: [PATCH] Disable LDFLAGSICUDT for Linux + +Upstream-Status: Inappropriate [ OE Configuration ] + +Signed-off-by: Khem Raj +--- + source/config/mh-linux | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/config/mh-linux b/config/mh-linux +index 366f0cc..2689aab 100644 +--- a/config/mh-linux ++++ b/config/mh-linux +@@ -21,7 +21,7 @@ LD_RPATH= -Wl,-zorigin,-rpath,'$$'ORIGIN + LD_RPATH_PRE = -Wl,-rpath, + + ## These are the library specific LDFLAGS +-LDFLAGSICUDT=-nodefaultlibs -nostdlib ++# LDFLAGSICUDT=-nodefaultlibs -nostdlib + + ## Compiler switch to embed a library name + # The initial tab in the next line is to prevent icu-config from reading it. +-- +1.7.10.4 + From ec8484734bde9fa134f2887ad5d274c7ff705cde Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 20 Mar 2016 01:21:45 +0100 Subject: [PATCH 272/678] debian-devscripts: 2.16.1 -> 2.16.2 --- pkgs/tools/misc/debian-devscripts/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/debian-devscripts/default.nix b/pkgs/tools/misc/debian-devscripts/default.nix index 9430b1349a1..51b9a1e847e 100644 --- a/pkgs/tools/misc/debian-devscripts/default.nix +++ b/pkgs/tools/misc/debian-devscripts/default.nix @@ -5,12 +5,12 @@ }: stdenv.mkDerivation rec { - version = "2.16.1"; + version = "2.16.2"; name = "debian-devscripts-${version}"; src = fetchurl { url = "mirror://debian/pool/main/d/devscripts/devscripts_${version}.tar.xz"; - sha256 = "096f26b0z6kwv47qy99gak40wcc8mp24n0nvqwgifcicr18qv4rz"; + sha256 = "0qlzciiyfhq11j5wf0x6jsa18bmmf2z7f2x5psq2wkkccfi0fxc4"; }; buildInputs = [ perl CryptSSLeay LWP unzip xz dpkg TimeDate DBFile From af1e32acd34de356ff7b5267f4e56d1caf555b3e Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sun, 20 Mar 2016 00:50:05 +0000 Subject: [PATCH 273/678] xdg_utils: 1.1.0-rc3p46 -> 1.1.1 --- pkgs/tools/X11/xdg-utils/default.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/X11/xdg-utils/default.nix b/pkgs/tools/X11/xdg-utils/default.nix index 6f133559362..7df698dc3ae 100644 --- a/pkgs/tools/X11/xdg-utils/default.nix +++ b/pkgs/tools/X11/xdg-utils/default.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchzip, fetchFromGitHub, file, libxslt, docbook_xml_dtd_412, docbook_xsl, xmlto +{ stdenv, fetchurl, fetchFromGitHub +, file, libxslt, docbook_xml_dtd_412, docbook_xsl, xmlto , w3m, which, gnugrep, gnused, coreutils , mimiSupport ? false, gawk ? null }: @@ -15,12 +16,12 @@ let in stdenv.mkDerivation rec { - name = "xdg-utils-1.1.0-rc3p46"; + name = "xdg-utils-${version}"; + version = "1.1.1"; - src = fetchzip { - name = "${name}.tar.gz"; - url = "http://cgit.freedesktop.org/xdg/xdg-utils/snapshot/03577f987730.tar.gz"; - sha256 = "1fs0kxalmpqv6x0rv4xg65w8r26sk464xisrbwp4p6a033y5x34l"; + src = fetchurl { + url = "https://portland.freedesktop.org/download/${name}.tar.gz"; + sha256 = "09a1pk3ifsndc5qz2kcd1557i137gpgnv3d739pv22vfayi67pdh"; }; # just needed when built from git From 621ed3599103aa5050e71259cb55dd37d60ac31a Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sun, 20 Mar 2016 00:50:39 +0000 Subject: [PATCH 274/678] xdg_utils: fixes #14060 --- pkgs/tools/X11/xdg-utils/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/tools/X11/xdg-utils/default.nix b/pkgs/tools/X11/xdg-utils/default.nix index 7df698dc3ae..e7233d0f714 100644 --- a/pkgs/tools/X11/xdg-utils/default.nix +++ b/pkgs/tools/X11/xdg-utils/default.nix @@ -39,6 +39,12 @@ stdenv.mkDerivation rec { sed "s# $(basename "$tool") # $tool #g" -i "$out"/bin/* done + substituteInPlace $out/bin/xdg-open \ + --replace "/usr/bin/printf" "${coreutils}/bin/printf" + + substituteInPlace $out/bin/xdg-mime \ + --replace "/usr/bin/file" "${file}/bin/file" + sed 's# which # type -P #g' -i "$out"/bin/* ''; From e379e4aa38002fe2034aaa255d0d6fd260414ceb Mon Sep 17 00:00:00 2001 From: Greyson Date: Sat, 19 Mar 2016 23:08:58 -0400 Subject: [PATCH 275/678] unifi: 4.7.6 -> 4.8.14 Includes upstream URL relocation. --- pkgs/servers/unifi/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/unifi/default.nix b/pkgs/servers/unifi/default.nix index 5e647f90de1..e683c7f5f0c 100644 --- a/pkgs/servers/unifi/default.nix +++ b/pkgs/servers/unifi/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "unifi-controller-${version}"; - version = "4.7.6"; + version = "4.8.14"; src = fetchurl { - url = "https://www.ubnt.com/downloads/unifi/${version}/UniFi.unix.zip"; - sha256 = "0xinrxcbd5gb2jgcvrx3jcslad0f19qrbjzkiir9zjq59sn68gfn"; + url = "https://dl.ubnt.com/unifi/${version}/UniFi.unix.zip"; + sha256 = "2498d898399c4ce636ea62e5e4bb1afdd6146e45d721084fe28a44bfd3dffb11"; }; buildInputs = [ unzip ]; From b27593276cc1587213b14f85358f442fdc5a782c Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Sun, 20 Mar 2016 14:53:32 +0900 Subject: [PATCH 276/678] im-engines: use recurseIntoAttrs --- pkgs/top-level/all-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8576c4b1b3e..db1a930873e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1194,7 +1194,7 @@ let ibus-qt = callPackage ../tools/inputmethods/ibus/ibus-qt.nix { }; - ibus-engines = { + ibus-engines = recurseIntoAttrs { anthy = callPackage ../tools/inputmethods/ibus-engines/ibus-anthy { inherit (python3Packages) pygobject3; @@ -1557,7 +1557,7 @@ let fcitx = callPackage ../tools/inputmethods/fcitx { }; - fcitx-engines = { + fcitx-engines = recurseIntoAttrs { anthy = callPackage ../tools/inputmethods/fcitx-engines/fcitx-anthy { }; From 9c029c3b05b80f1154919ecc4f48a36a0ffeacbe Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Sun, 20 Mar 2016 15:03:58 +0900 Subject: [PATCH 277/678] anthy: add maintainer --- pkgs/tools/inputmethods/anthy/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/inputmethods/anthy/default.nix b/pkgs/tools/inputmethods/anthy/default.nix index a421ca16e8c..4fbd0965c78 100644 --- a/pkgs/tools/inputmethods/anthy/default.nix +++ b/pkgs/tools/inputmethods/anthy/default.nix @@ -7,6 +7,7 @@ stdenv.mkDerivation { description = "Hiragana text to Kana Kanji mixed text Japanese input method"; homepace = http://sourceforge.jp/projects/anthy/; license = licenses.gpl2Plus; + maintainers = with maintainers; [ ericsagnes ]; platforms = platforms.linux; }; From 51eb1dce81fdc8d61fae8afab082367b0bbb02ef Mon Sep 17 00:00:00 2001 From: Brandon Kase Date: Sun, 20 Mar 2016 02:29:34 -0700 Subject: [PATCH 278/678] vim-plugins: add airline-themes --- pkgs/misc/vim-plugins/default.nix | 10 ++++++++++ pkgs/misc/vim-plugins/vim-plugin-names | 1 + 2 files changed, 11 insertions(+) diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix index f1e64a8e6f3..b2ce4d39b80 100644 --- a/pkgs/misc/vim-plugins/default.nix +++ b/pkgs/misc/vim-plugins/default.nix @@ -1451,6 +1451,16 @@ rec { }; + vim-airline-themes = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "vim-airline-themes-2016-02-24"; + src = fetchgit { + url = "git://github.com/vim-airline/vim-airline-themes"; + rev = "13bad30d4ee3892cae755c83433ee85fbc96d028"; + sha256 = "0w36ani4r2v58pd0fcqv12j0hjd97g2q78zici1a72njvwp9qhgj"; + }; + dependencies = [ "vim-airline" ]; + }; + vim-coffee-script = buildVimPluginFrom2Nix { # created by nix#NixDerivation name = "vim-coffee-script-2015-04-20"; src = fetchgit { diff --git a/pkgs/misc/vim-plugins/vim-plugin-names b/pkgs/misc/vim-plugins/vim-plugin-names index 82b59f1ebaa..88e9bbb9594 100644 --- a/pkgs/misc/vim-plugins/vim-plugin-names +++ b/pkgs/misc/vim-plugins/vim-plugin-names @@ -112,6 +112,7 @@ "vim-addon-toggle-buffer" "vim-addon-xdebug" "vim-airline" +"vim-airline-themes" "vim-coffee-script" "vim-easy-align" "vim-gista" From f9cae4f6dc8be76471a307c643532b5c32eb8bdf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 19 Mar 2016 13:42:52 +0100 Subject: [PATCH 279/678] fpm: init at 1.4.0 /cc #14061. --- pkgs/tools/package-management/fpm/Gemfile | 2 + .../tools/package-management/fpm/Gemfile.lock | 29 ++++++++ pkgs/tools/package-management/fpm/default.nix | 18 +++++ pkgs/tools/package-management/fpm/gemset.nix | 66 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 5 files changed, 117 insertions(+) create mode 100644 pkgs/tools/package-management/fpm/Gemfile create mode 100644 pkgs/tools/package-management/fpm/Gemfile.lock create mode 100644 pkgs/tools/package-management/fpm/default.nix create mode 100644 pkgs/tools/package-management/fpm/gemset.nix diff --git a/pkgs/tools/package-management/fpm/Gemfile b/pkgs/tools/package-management/fpm/Gemfile new file mode 100644 index 00000000000..95916cf4322 --- /dev/null +++ b/pkgs/tools/package-management/fpm/Gemfile @@ -0,0 +1,2 @@ +source 'https://rubygems.org' +gem 'fpm' diff --git a/pkgs/tools/package-management/fpm/Gemfile.lock b/pkgs/tools/package-management/fpm/Gemfile.lock new file mode 100644 index 00000000000..a2a652c4056 --- /dev/null +++ b/pkgs/tools/package-management/fpm/Gemfile.lock @@ -0,0 +1,29 @@ +GEM + remote: https://rubygems.org/ + specs: + arr-pm (0.0.10) + cabin (> 0) + backports (3.6.8) + cabin (0.8.1) + childprocess (0.5.9) + ffi (~> 1.0, >= 1.0.11) + clamp (0.6.5) + ffi (1.9.10) + fpm (1.4.0) + arr-pm (~> 0.0.10) + backports (>= 2.6.2) + cabin (>= 0.6.0) + childprocess + clamp (~> 0.6) + ffi + json (>= 1.7.7) + json (1.8.3) + +PLATFORMS + ruby + +DEPENDENCIES + fpm + +BUNDLED WITH + 1.10.6 diff --git a/pkgs/tools/package-management/fpm/default.nix b/pkgs/tools/package-management/fpm/default.nix new file mode 100644 index 00000000000..ca2e44fcaf0 --- /dev/null +++ b/pkgs/tools/package-management/fpm/default.nix @@ -0,0 +1,18 @@ +{ lib, bundlerEnv, ruby }: + +bundlerEnv rec { + name = "fpm-${version}"; + + version = (import gemset).fpm.version; + inherit ruby; + gemfile = ./Gemfile; + lockfile = ./Gemfile.lock; + gemset = ./gemset.nix; + + meta = with lib; { + description = "Tool to build packages for multiple platforms with ease"; + homepage = https://github.com/jordansissel/fpm; + license = licenses.mit; + platforms = platforms.unix; + }; +} diff --git a/pkgs/tools/package-management/fpm/gemset.nix b/pkgs/tools/package-management/fpm/gemset.nix new file mode 100644 index 00000000000..0751fdc48bc --- /dev/null +++ b/pkgs/tools/package-management/fpm/gemset.nix @@ -0,0 +1,66 @@ +{ + arr-pm = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "07yx1g1nh4zdy38i2id1xyp42fvj4vl6i196jn7szvjfm0jx98hg"; + type = "gem"; + }; + version = "0.0.10"; + }; + backports = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1zcgqw7m7jb8n7b2jwla5cq0nw9wsgddxfmn0a9v89ihzd4i1a5k"; + type = "gem"; + }; + version = "3.6.8"; + }; + cabin = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "06b5ri2629ad9xjc419xswz17zli90v8x640k2sd6v2yb90zkr1b"; + type = "gem"; + }; + version = "0.8.1"; + }; + childprocess = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1is253wm9k2s325nfryjnzdqv9flq8bm4y2076mhdrncxamrh7r2"; + type = "gem"; + }; + version = "0.5.9"; + }; + clamp = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1gpz9jvg1gpr8xmfqd35gvyzsvmjvlvwm2sq3pyhml3i84a6qjrq"; + type = "gem"; + }; + version = "0.6.5"; + }; + ffi = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1m5mprppw0xcrv2mkim5zsk70v089ajzqiq5hpyb0xg96fcyzyxj"; + type = "gem"; + }; + version = "1.9.10"; + }; + fpm = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1ljifrfzjirad5ql5yvs1prpbivsjnwdbhzlqb8r7sdidd9kwakz"; + type = "gem"; + }; + version = "1.4.0"; + }; + json = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1nsby6ry8l9xg3yw4adlhk2pnc7i0h0rznvcss4vk3v74qg0k8lc"; + type = "gem"; + }; + version = "1.8.3"; + }; +} \ No newline at end of file diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8576c4b1b3e..54a2ee0b8f4 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1658,6 +1658,8 @@ let fping = callPackage ../tools/networking/fping {}; + fpm = callPackage ../tools/package-management/fpm { }; + fprot = callPackage ../tools/security/fprot { }; fprintd = callPackage ../tools/security/fprintd { }; From 6ea546e3b939ab59827b98a34971714a42b74ea3 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sun, 20 Mar 2016 13:22:58 +0100 Subject: [PATCH 280/678] entr: 3.2 -> 3.4 --- pkgs/tools/misc/entr/default.nix | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/pkgs/tools/misc/entr/default.nix b/pkgs/tools/misc/entr/default.nix index 7097ecfae74..e18b115df87 100644 --- a/pkgs/tools/misc/entr/default.nix +++ b/pkgs/tools/misc/entr/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "entr-${version}"; - version = "3.2"; + version = "3.4"; src = fetchurl { url = "http://entrproject.org/code/${name}.tar.gz"; - sha256 = "0ikigpfzyjmr8j6snwlvxzqamrjbhlv78m8w1h0h7kzczc5f1vmi"; + sha256 = "02h1drxn2lid2fwzwjpkp9p04l0g5a56v6jyj3gi3dzjsq7h0zff"; }; postPatch = '' @@ -21,12 +21,11 @@ stdenv.mkDerivation rec { checkTarget = "test"; installFlags = [ "PREFIX=$(out)" ]; - meta = { + meta = with stdenv.lib; { homepage = http://entrproject.org/; description = "Run arbitrary commands when files change"; - - license = stdenv.lib.licenses.isc; - - platforms = stdenv.lib.platforms.all; + license = licenses.isc; + platforms = platforms.all; + maintainers = with maintainers; [ pSub ]; }; } From 88a62b3aeac7225a8b1cfd152793287b1142a7c1 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sun, 20 Mar 2016 13:23:11 +0100 Subject: [PATCH 281/678] datamash: 1.0.6 -> 1.0.7 --- pkgs/tools/misc/datamash/default.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/misc/datamash/default.nix b/pkgs/tools/misc/datamash/default.nix index dabf843fc83..e65cec54218 100644 --- a/pkgs/tools/misc/datamash/default.nix +++ b/pkgs/tools/misc/datamash/default.nix @@ -1,18 +1,20 @@ -{stdenv, fetchurl}: +{ stdenv, fetchurl }: stdenv.mkDerivation rec { name = "datamash-${version}"; - version = "1.0.6"; + version = "1.0.7"; src = fetchurl { url = "http://ftp.gnu.org/gnu/datamash/${name}.tar.gz"; - sha256 = "0154c25c45b5506b6d618ca8e18d0ef093dac47946ac0df464fb21e77b504118"; + sha256 = "0y49zaadzirghy4xfajvsv1f5x805cjp61z212ggipx5243302qs"; }; - meta = { - description = "GNU datamash"; + meta = with stdenv.lib; { + description = "A command-line program which performs basic numeric,textual and statistical operations on input textual data files"; homepage = http://www.gnu.org/software/datamash/; - platforms = stdenv.lib.platforms.all; + license = licenses.gpl3Plus; + platforms = platforms.all; + maintainers = with maintainers; [ pSub ]; }; } From b405e82edb4cb00a191839ad8208748189767f9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 19 Mar 2016 11:47:55 +0100 Subject: [PATCH 282/678] ruby docs: improve the example - missing cd command - invoke bundler through nix-shell, so it doesn't need to be on $PATH Note: running bundix through nix-shell won't work ATM, as the shell sets SSL_CERT_FILE=/no-cert-file.crt which prevents fetching throug https. - use version from gemset to simplify updating - don't break line in meta.description --- doc/languages-frameworks/ruby.xml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/doc/languages-frameworks/ruby.xml b/doc/languages-frameworks/ruby.xml index 6a0388d24c7..15c0802ad69 100644 --- a/doc/languages-frameworks/ruby.xml +++ b/doc/languages-frameworks/ruby.xml @@ -12,25 +12,26 @@ Gemfile source 'https://rubygems.org' gem 'sensu' -$ bundler package --path /tmp/vendor/bundle +$ nix-shell -p bundler --command "bundler package --path /tmp/vendor/bundle" $ $(nix-build '' -A bundix)/bin/bundix $ cat > default.nix { lib, bundlerEnv, ruby }: -bundlerEnv { - name = "sensu-0.17.1"; +bundlerEnv rec { + name = "sensu-${version}"; + version = (import gemset).sensu.version; inherit ruby; gemfile = ./Gemfile; lockfile = ./Gemfile.lock; gemset = ./gemset.nix; meta = with lib; { - description = "A monitoring framework that aims to be simple, malleable, -and scalable"; + description = "A monitoring framework that aims to be simple, malleable, and scalable"; homepage = http://sensuapp.org/; license = with licenses; mit; maintainers = with maintainers; [ theuni ]; From afa4a27a2500519304f482460d5e879018d3ba56 Mon Sep 17 00:00:00 2001 From: Peter Hoeg Date: Sun, 20 Mar 2016 21:16:49 +0800 Subject: [PATCH 283/678] dropbox-cli: minor refactoring to play nice with dropbox We were previously getting collissions for the following 2 files with files from the dropbox package: - bin/dropbox - share/applications/dropbox.desktop As a consequence the binary has been renamed to dropbox-cli and the .desktop removed as it is redundant. --- pkgs/applications/networking/dropbox-cli/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/dropbox-cli/default.nix b/pkgs/applications/networking/dropbox-cli/default.nix index 892d8fa3300..ab79159ea6e 100644 --- a/pkgs/applications/networking/dropbox-cli/default.nix +++ b/pkgs/applications/networking/dropbox-cli/default.nix @@ -16,8 +16,7 @@ stdenv.mkDerivation { phases = "unpackPhase installPhase"; installPhase = '' - mkdir -p "$out/bin/" "$out/share/applications" - cp data/dropbox.desktop "$out/share/applications" + mkdir -p "$out/bin/" substitute "dropbox.in" "$out/bin/dropbox" \ --replace '@PACKAGE_VERSION@' ${version} \ --replace '@DESKTOP_FILE_DIR@' "$out/share/applications" \ @@ -25,6 +24,7 @@ stdenv.mkDerivation { --replace '@IMAGEDATA64@' '"too-lazy-to-fix"' sed -i 's:db_path = .*:db_path = "${dropboxd}":' $out/bin/dropbox chmod +x "$out/bin/"* + mv $out/bin/dropbox $out/bin/dropbox-cli patchShebangs "$out/bin" ''; From 7185aefbbea55d8e196f9d9e7e4988aa802b3258 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sun, 20 Mar 2016 15:17:50 +0300 Subject: [PATCH 284/678] ioquake3: 2016-02-18 -> 2016-03-15 --- pkgs/games/quake3/ioquake/default.nix | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/pkgs/games/quake3/ioquake/default.nix b/pkgs/games/quake3/ioquake/default.nix index 8988c391824..3067b5cefea 100644 --- a/pkgs/games/quake3/ioquake/default.nix +++ b/pkgs/games/quake3/ioquake/default.nix @@ -1,23 +1,21 @@ -{ lib, stdenv, fetchFromGitHub, xlibsWrapper, SDL2, mesa, openalSoft +{ lib, stdenv, fetchFromGitHub, which, pkgconfig, xlibsWrapper, SDL2, mesa, openalSoft , curl, speex, opusfile, libogg, libopus, libjpeg, mumble, freetype }: stdenv.mkDerivation rec { name = "ioquake3-git-${version}"; - version = "2016-02-18"; + version = "2016-03-15"; src = fetchFromGitHub { owner = "ioquake"; repo = "ioq3"; - rev = "a331637745fb82266f3627fb438f2d58d53e366c"; - sha256 = "0l9ppv1msd73bhqmdiv5lsvkr5i6khqgi6gi322gbnndr20arn4n"; + rev = "f911e32bb059f714dfc49dc2296bc6f27c442e4c"; + sha256 = "0l60snxlgvwxbpv31nwshy0rddyyxmcvqg6xqj9ifzr1gj4np5r8"; }; + nativeBuildInputs = [ which pkgconfig ]; buildInputs = [ xlibsWrapper SDL2 mesa openalSoft curl speex opusfile libogg libopus libjpeg freetype mumble ]; - NIX_CFLAGS_COMPILE = [ "-I${SDL2}/include/SDL2" "-I${opusfile}/include/opus" "-I${libopus}/include/opus" ]; - NIX_CFLAGS_LINK = [ "-lSDL2" ]; - enableParallelBuilding = true; makeFlags = [ "USE_INTERNAL_LIBS=0" "USE_FREETYPE=1" "USE_OPENAL_DLOPEN=0" "USE_CURL_DLOPEN=0" ]; From fa0c2c08a27b7f6eb9113ff17f38203d69c71997 Mon Sep 17 00:00:00 2001 From: Peter Hoeg Date: Sun, 20 Mar 2016 22:18:53 +0800 Subject: [PATCH 285/678] bash-completion: remove collision nmcli is already provided by network-manager --- pkgs/shells/bash-completion/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/shells/bash-completion/default.nix b/pkgs/shells/bash-completion/default.nix index 39f7073fcbb..6c7051c9c7a 100644 --- a/pkgs/shells/bash-completion/default.nix +++ b/pkgs/shells/bash-completion/default.nix @@ -12,6 +12,11 @@ stdenv.mkDerivation rec { doCheck = true; + # nmcli is included in the network-manager package + postInstall = '' + rm $out/share/bash-completion/completions/nmcli + ''; + meta = { homepage = "http://bash-completion.alioth.debian.org/"; description = "Programmable completion for the bash shell"; From 097e20ccfee0e7580fa978d2b3392cefe5aa6ac9 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sun, 20 Mar 2016 15:24:08 +0100 Subject: [PATCH 286/678] python-radicale: user newer sqlalchemy version --- pkgs/top-level/python-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index afdf953934b..70e78f2cc6b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -7189,7 +7189,7 @@ in modules // { propagatedBuildInputs = with self; [ flup ldap - sqlalchemy7 + sqlalchemy ]; doCheck = true; From 9444d6e6ded8c281174599c6c1e7281e956896b6 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Thu, 17 Mar 2016 19:48:01 +0000 Subject: [PATCH 287/678] Split miss-indented last lines. to simplify future diffs. --- pkgs/top-level/all-packages.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 54a2ee0b8f4..2fd1cb51ac3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16478,4 +16478,8 @@ tweakAlias = _n: alias: with lib; removeAttrs alias ["recurseForDerivations"] else alias; -in lib.mapAttrs tweakAlias aliases // self; in pkgs +in + lib.mapAttrs tweakAlias aliases // self; + +in + pkgs From a39c5ff0d891d451a9ce08cab7ff99942664cc72 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Thu, 17 Mar 2016 20:18:03 +0000 Subject: [PATCH 288/678] Re-indent the top of pkgsFun. --- pkgs/top-level/all-packages.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2fd1cb51ac3..4cc95221e30 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -126,8 +126,10 @@ let # The package compositions. Yes, this isn't properly indented. pkgsFun = pkgs: overrides: with helperFunctions; - let defaultScope = pkgs // pkgs.xorg; self = self_ // overrides; - self_ = with self; helperFunctions // { + let + defaultScope = pkgs // pkgs.xorg; + self = self_ // overrides; + self_ = with self; helperFunctions // { # Make some arguments passed to all-packages.nix available inherit system platform; From 11a566b5bc9cb90619df16170f47c9acac8eb57d Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Thu, 17 Mar 2016 20:19:44 +0000 Subject: [PATCH 289/678] Move 'with helperFunctions' above the set of all packages. --- pkgs/top-level/all-packages.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4cc95221e30..c5c4820b584 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -125,11 +125,10 @@ let # The package compositions. Yes, this isn't properly indented. pkgsFun = pkgs: overrides: - with helperFunctions; let defaultScope = pkgs // pkgs.xorg; self = self_ // overrides; - self_ = with self; helperFunctions // { + self_ = with self; helperFunctions // (with helperFunctions; { # Make some arguments passed to all-packages.nix available inherit system platform; @@ -16470,7 +16469,7 @@ let mg = callPackage ../applications/editors/mg { }; -}; # self_ = +}); # self_ = aliases = import ./aliases.nix self; From 5f4cb91a1c022ca20f47ff189dfa0e4c98e5b592 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Thu, 17 Mar 2016 20:22:15 +0000 Subject: [PATCH 290/678] Move helperfunctions and stdenvAdapters under pkgsFun. The `helperFunctions` and `stdenvAdapters` both use the `pkgs` attribute as input, either to inherit some properties, either to use it as argument. The `pkgs` binding used in both expressions of the `helperFunctions` and `stdenvAdapters` is no longer the result of the `applyGlobalOverrides` function, but the argument of the `pkgsFun` function. The `pkgsFun` functions is called twice under `applyGlobalOverrides`, and in both cases, the first argument of `pkgsFun` correspond to the result of `applyGlobalOverrides`. Thus, this modification will change the bindings, but the evaluation of ``. A third call the `pkgsFun` exists under `overridePackages` in the set of all packages. Previously, the `helperFunctions` and `stdenvAdapaters` would use the functions defined as part of the default `` set. With this modification, the `helperFunctions` and the `stdenvAdapters` are now using the fix-point of the newly evaluated package set. This implies that this modification allow the user to use `overridePackages`, which is already not recommended for performance reasons, to override the inputs of the `helperFucntions` and `stdenvAdapaters` too, where this was not possible before. --- pkgs/top-level/all-packages.nix | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c5c4820b584..0a80c5b48d2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -83,15 +83,6 @@ let platform = if platform_ != null then platform_ else config.platform or platformAuto; - # Helper functions that are exported through `pkgs'. - helperFunctions = - stdenvAdapters // - (import ../build-support/trivial-builders.nix { inherit lib; inherit (pkgs) stdenv; inherit (pkgs.xorg) lndir; }); - - stdenvAdapters = - import ../stdenv/adapters.nix pkgs; - - # Allow packages to be overriden globally via the `packageOverrides' # configuration option, which must be a function that takes `pkgs' # as an argument and returns a set of new or overriden packages. @@ -128,6 +119,15 @@ let let defaultScope = pkgs // pkgs.xorg; self = self_ // overrides; + + # Helper functions that are exported through `pkgs'. + helperFunctions = + stdenvAdapters // + (import ../build-support/trivial-builders.nix { inherit lib; inherit (pkgs) stdenv; inherit (pkgs.xorg) lndir; }); + + stdenvAdapters = + import ../stdenv/adapters.nix pkgs; + self_ = with self; helperFunctions // (with helperFunctions; { # Make some arguments passed to all-packages.nix available From f9a29887fe5e8c6205a982ef3fed4b77553c43b9 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Thu, 17 Mar 2016 21:03:22 +0000 Subject: [PATCH 291/678] Move pkgsOrig outside applyGlobalOverrides and provide it as argument. --- pkgs/top-level/all-packages.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0a80c5b48d2..1f8b04a8350 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -90,15 +90,18 @@ let # (un-overriden) set of packages, allowing packageOverrides # attributes to refer to the original attributes (e.g. "foo = # ... pkgs.foo ..."). - pkgs = applyGlobalOverrides (config.packageOverrides or (pkgs: {})); + pkgs = applyGlobalOverrides pkgsInit (config.packageOverrides or (pkgs: {})); mkOverrides = pkgsOrig: overrides: overrides // (lib.optionalAttrs (pkgsOrig.stdenv ? overrides && crossSystem == null) (pkgsOrig.stdenv.overrides pkgsOrig)); + # The un-overriden packages, passed to `overrider'. + pkgsInit = pkgsFun pkgs {}; + # Return the complete set of packages, after applying the overrides # returned by the `overrider' function (see above). Warning: this # function is very expensive! - applyGlobalOverrides = overrider: + applyGlobalOverrides = pkgsOrig: overrider: let # Call the overrider function. We don't want stdenv overrides # in the case of cross-building, or otherwise the basic @@ -106,9 +109,6 @@ let # adapter. overrides = mkOverrides pkgsOrig (overrider pkgsOrig); - # The un-overriden packages, passed to `overrider'. - pkgsOrig = pkgsFun pkgs {}; - # The overriden, final packages. pkgs = pkgsFun pkgs overrides; in pkgs; From a6e260c91f38dacbc42a08273101f222276075b7 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Thu, 17 Mar 2016 21:05:03 +0000 Subject: [PATCH 292/678] Add an extra argument to the overrider function of applyGlobalOverrides. --- pkgs/top-level/all-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1f8b04a8350..bda8ff62c56 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -90,7 +90,7 @@ let # (un-overriden) set of packages, allowing packageOverrides # attributes to refer to the original attributes (e.g. "foo = # ... pkgs.foo ..."). - pkgs = applyGlobalOverrides pkgsInit (config.packageOverrides or (pkgs: {})); + pkgs = applyGlobalOverrides pkgsInit (self: config.packageOverrides or (super: {})); mkOverrides = pkgsOrig: overrides: overrides // (lib.optionalAttrs (pkgsOrig.stdenv ? overrides && crossSystem == null) (pkgsOrig.stdenv.overrides pkgsOrig)); @@ -107,7 +107,7 @@ let # in the case of cross-building, or otherwise the basic # overrided packages will not be built with the crossStdenv # adapter. - overrides = mkOverrides pkgsOrig (overrider pkgsOrig); + overrides = mkOverrides pkgsOrig (overrider pkgs pkgsOrig); # The overriden, final packages. pkgs = pkgsFun pkgs overrides; From a5188bda7b008c942ae58a43a2d4d0b9d3ba4ebc Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Thu, 17 Mar 2016 21:07:13 +0000 Subject: [PATCH 293/678] Unify the applyGlobalOverride function with the overridePackages function. --- pkgs/top-level/all-packages.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index bda8ff62c56..b40014a2e75 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -158,11 +158,7 @@ let # # The result is `pkgs' where all the derivations depending on `foo' # will use the new version. - overridePackages = f: - let - newpkgs = pkgsFun newpkgs overrides; - overrides = mkOverrides pkgs (f newpkgs pkgs); - in newpkgs; + overridePackages = f: applyGlobalOverrides pkgs f; # Override system. This is useful to build i686 packages on x86_64-linux. forceSystem = system: kernel: (import ./../..) { From 00963c3dfdab7fbcc3e2a9db6df47cea25d46688 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Thu, 17 Mar 2016 21:24:53 +0000 Subject: [PATCH 294/678] Extract stdenvOverrides function out of mkOverrides function. --- pkgs/top-level/all-packages.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b40014a2e75..b7d68885507 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -92,8 +92,14 @@ let # ... pkgs.foo ..."). pkgs = applyGlobalOverrides pkgsInit (self: config.packageOverrides or (super: {})); - mkOverrides = pkgsOrig: overrides: overrides // - (lib.optionalAttrs (pkgsOrig.stdenv ? overrides && crossSystem == null) (pkgsOrig.stdenv.overrides pkgsOrig)); + mkOverrides = pkgs: overrides: overrides // stdenvOverrides pkgs; + + # stdenvOverrides is used to avoid circular dependencies for building the + # standard build environment. This mechanism use the override mechanism to + # implement some staged compilation of the stdenv. + stdenvOverrides = pkgs: + lib.optionalAttrs (pkgs.stdenv ? overrides && crossSystem == null) + (pkgs.stdenv.overrides pkgs); # The un-overriden packages, passed to `overrider'. pkgsInit = pkgsFun pkgs {}; From acaa99cbd2db20fad9ee63118d0828f0f237709a Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Fri, 18 Mar 2016 20:36:00 +0000 Subject: [PATCH 295/678] Move applyGlobalOverrides comment to stdenvOverrides, where it fits better. --- pkgs/top-level/all-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b7d68885507..1798b120cd1 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -97,6 +97,10 @@ let # stdenvOverrides is used to avoid circular dependencies for building the # standard build environment. This mechanism use the override mechanism to # implement some staged compilation of the stdenv. + # + # We don't want stdenv overrides in the case of cross-building, or + # otherwise the basic overrided packages will not be built with the + # crossStdenv adapter. stdenvOverrides = pkgs: lib.optionalAttrs (pkgs.stdenv ? overrides && crossSystem == null) (pkgs.stdenv.overrides pkgs); @@ -109,10 +113,6 @@ let # function is very expensive! applyGlobalOverrides = pkgsOrig: overrider: let - # Call the overrider function. We don't want stdenv overrides - # in the case of cross-building, or otherwise the basic - # overrided packages will not be built with the crossStdenv - # adapter. overrides = mkOverrides pkgsOrig (overrider pkgs pkgsOrig); # The overriden, final packages. From 71b2fd92b3be82291563699a94a795b8becd5a65 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Fri, 18 Mar 2016 20:56:40 +0000 Subject: [PATCH 296/678] Move mkOverrides under applyGlobalOverrides. --- pkgs/top-level/all-packages.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1798b120cd1..eb30c460d47 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -92,8 +92,6 @@ let # ... pkgs.foo ..."). pkgs = applyGlobalOverrides pkgsInit (self: config.packageOverrides or (super: {})); - mkOverrides = pkgs: overrides: overrides // stdenvOverrides pkgs; - # stdenvOverrides is used to avoid circular dependencies for building the # standard build environment. This mechanism use the override mechanism to # implement some staged compilation of the stdenv. @@ -113,13 +111,14 @@ let # function is very expensive! applyGlobalOverrides = pkgsOrig: overrider: let + mkOverrides = pkgs: overrides: overrides // stdenvOverrides pkgs; + overrides = mkOverrides pkgsOrig (overrider pkgs pkgsOrig); # The overriden, final packages. pkgs = pkgsFun pkgs overrides; in pkgs; - # The package compositions. Yes, this isn't properly indented. pkgsFun = pkgs: overrides: let From a8374f2168e4ad6dda41ae6457feac69614e271b Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Fri, 18 Mar 2016 20:58:24 +0000 Subject: [PATCH 297/678] Under applyGlobalOverrides, inline mkOverrides in overrides. --- pkgs/top-level/all-packages.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index eb30c460d47..5f27f94b44c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -111,9 +111,7 @@ let # function is very expensive! applyGlobalOverrides = pkgsOrig: overrider: let - mkOverrides = pkgs: overrides: overrides // stdenvOverrides pkgs; - - overrides = mkOverrides pkgsOrig (overrider pkgs pkgsOrig); + overrides = overrider pkgs pkgsOrig // stdenvOverrides pkgsOrig; # The overriden, final packages. pkgs = pkgsFun pkgs overrides; From a658645e1e277ecea37ccbdac6c2ce64e55eed13 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Fri, 18 Mar 2016 22:54:24 +0000 Subject: [PATCH 298/678] Remove with helperFunction above the list of all packages. This modification change the names bound to the `helperFunctions` attribute set, to be bound to `self` which is constructed by merging the same `helperFunctions` set with the set of all packages. This patch works as expected because none of the helperFunction names is aliased by the name of a package. --- pkgs/top-level/all-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5f27f94b44c..12ebed19f2d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -131,7 +131,7 @@ let stdenvAdapters = import ../stdenv/adapters.nix pkgs; - self_ = with self; helperFunctions // (with helperFunctions; { + self_ = with self; helperFunctions // { # Make some arguments passed to all-packages.nix available inherit system platform; @@ -16468,7 +16468,7 @@ let mg = callPackage ../applications/editors/mg { }; -}); # self_ = +}; # self_ = aliases = import ./aliases.nix self; From ffcb6682bcc14f70c49949fdcbfbba8841c63e0c Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sat, 19 Mar 2016 14:02:20 +0000 Subject: [PATCH 299/678] Under pkgsFun, move the merge of helper functions from self_ to self. --- pkgs/top-level/all-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 12ebed19f2d..5d21f1fd9e5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -121,7 +121,7 @@ let pkgsFun = pkgs: overrides: let defaultScope = pkgs // pkgs.xorg; - self = self_ // overrides; + self = helperFunctions // self_ // overrides; # Helper functions that are exported through `pkgs'. helperFunctions = @@ -131,7 +131,7 @@ let stdenvAdapters = import ../stdenv/adapters.nix pkgs; - self_ = with self; helperFunctions // { + self_ = with self; { # Make some arguments passed to all-packages.nix available inherit system platform; From 8d355b8d85b7ce454bca1473bf8cc5aebf8f0c48 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sat, 19 Mar 2016 14:39:48 +0000 Subject: [PATCH 300/678] Under pkgsFun, expand self attribute, and rename self_ to self. Note, the aliases are now computed against the set of packages defined in the set of all packages, and no longer apply to any overriden package. I think this is better as this reduces the amount of surprizes. --- pkgs/top-level/all-packages.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5d21f1fd9e5..fb39447c999 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -121,7 +121,6 @@ let pkgsFun = pkgs: overrides: let defaultScope = pkgs // pkgs.xorg; - self = helperFunctions // self_ // overrides; # Helper functions that are exported through `pkgs'. helperFunctions = @@ -131,7 +130,7 @@ let stdenvAdapters = import ../stdenv/adapters.nix pkgs; - self_ = with self; { + self = with helperFunctions; with self; with overrides; { # Make some arguments passed to all-packages.nix available inherit system platform; @@ -16468,7 +16467,7 @@ let mg = callPackage ../applications/editors/mg { }; -}; # self_ = +}; # self = aliases = import ./aliases.nix self; @@ -16479,7 +16478,7 @@ tweakAlias = _n: alias: with lib; else alias; in - lib.mapAttrs tweakAlias aliases // self; + lib.mapAttrs tweakAlias aliases // helperFunctions // self // overrides; in pkgs From 7f3a4f428746620ca555797f1a7269bb2226e5dc Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 20 Mar 2016 13:15:37 +0000 Subject: [PATCH 301/678] Swap conditions of stdenvOverrides to prevent infinite loops while evaluating stdenvCross. While evaluating the derivation of xbursttools: the condition `pkgs.stdenv ? overrides` causes the evaluation of `stdenvCross`. This evaluation comes too early during the execution, as it prevents the resolution of names such as `pkgs.lib`, and `stdenvAdapaters.makeStdenvCross`, which we want to take from `pkgs` instead of `self` in following patches. By swapping the conditions, we effectively make the resolution of `pkgs.lib` and `stdenvAdapaters.makeStdenvCross` possible through the pkgs attribute. --- 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 fb39447c999..f16a7b6691c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -100,7 +100,7 @@ let # otherwise the basic overrided packages will not be built with the # crossStdenv adapter. stdenvOverrides = pkgs: - lib.optionalAttrs (pkgs.stdenv ? overrides && crossSystem == null) + lib.optionalAttrs (crossSystem == null && pkgs.stdenv ? overrides) (pkgs.stdenv.overrides pkgs); # The un-overriden packages, passed to `overrider'. From 020bb40454712e9149cfce31ba21cf918afb34dc Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sat, 19 Mar 2016 18:11:09 +0000 Subject: [PATCH 302/678] Split stdenv attribute set. Extract stdenvDefault from the set of all packages. As this set of attributes are inter-dependant, probably due to stdenvOverrides, we have to keep them in a close set of inter-dependent options. I guess I will have to investigate more ... --- pkgs/top-level/all-packages.nix | 92 +++++++++++++++++---------------- 1 file changed, 47 insertions(+), 45 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f16a7b6691c..6d5bf04cfa3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -130,7 +130,40 @@ let stdenvAdapters = import ../stdenv/adapters.nix pkgs; - self = with helperFunctions; with self; with overrides; { + stdenvDefault = with helperFunctions; with self; with overrides; { + + + ### STANDARD ENVIRONMENT + + + allStdenvs = import ../stdenv { + inherit system platform config lib; + allPackages = args: import ./../.. ({ inherit config system; } // args); + }; + + defaultStdenv = allStdenvs.stdenv // { inherit platform; }; + + stdenv = + if bootStdenv != null then (bootStdenv // {inherit platform;}) else + if crossSystem != null then + stdenvCross + else + let + changer = config.replaceStdenv or null; + in if changer != null then + changer { + # We import again all-packages to avoid recursivities. + pkgs = import ./../.. { + # We remove packageOverrides to avoid recursivities + config = removeAttrs config [ "replaceStdenv" ]; + }; + } + else + defaultStdenv; + +}; + + self = with pkgs; stdenvDefault // { # Make some arguments passed to all-packages.nix available inherit system platform; @@ -170,12 +203,24 @@ let crossSystem; }; - # Used by wine, firefox with debugging version of Flash, ... pkgsi686Linux = forceSystem "i686-linux" "i386"; callPackage_i686 = lib.callPackageWith (pkgsi686Linux // pkgsi686Linux.xorg); + forceNativeDrv = drv : if crossSystem == null then drv else + (drv // { crossDrv = drv.nativeDrv; }); + + stdenvCross = lowPrio (makeStdenvCross defaultStdenv crossSystem binutilsCross gccCrossStageFinal); + + # A stdenv capable of building 32-bit binaries. On x86_64-linux, + # it uses GCC compiled with multilib support; on i686-linux, it's + # just the plain stdenv. + stdenv_32bit = lowPrio ( + if system == "x86_64-linux" then + overrideCC stdenv gcc_multi + else + stdenv); # For convenience, allow callers to get the path to Nixpkgs. path = ../..; @@ -205,49 +250,6 @@ let nixpkgs-lint = callPackage ../../maintainers/scripts/nixpkgs-lint.nix { }; - ### STANDARD ENVIRONMENT - - - allStdenvs = import ../stdenv { - inherit system platform config lib; - allPackages = args: import ./../.. ({ inherit config system; } // args); - }; - - defaultStdenv = allStdenvs.stdenv // { inherit platform; }; - - stdenvCross = lowPrio (makeStdenvCross defaultStdenv crossSystem binutilsCross gccCrossStageFinal); - - stdenv = - if bootStdenv != null then (bootStdenv // {inherit platform;}) else - if crossSystem != null then - stdenvCross - else - let - changer = config.replaceStdenv or null; - in if changer != null then - changer { - # We import again all-packages to avoid recursivities. - pkgs = import ./../.. { - # We remove packageOverrides to avoid recursivities - config = removeAttrs config [ "replaceStdenv" ]; - }; - } - else - defaultStdenv; - - forceNativeDrv = drv : if crossSystem == null then drv else - (drv // { crossDrv = drv.nativeDrv; }); - - # A stdenv capable of building 32-bit binaries. On x86_64-linux, - # it uses GCC compiled with multilib support; on i686-linux, it's - # just the plain stdenv. - stdenv_32bit = lowPrio ( - if system == "x86_64-linux" then - overrideCC stdenv gcc_multi - else - stdenv); - - ### BUILD SUPPORT attrSetToDir = arg: callPackage ../build-support/upstream-updater/attrset-to-dir.nix { From be3531a56e153a4947b4c4b5f22a43e65b174d5e Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 20 Mar 2016 13:46:14 +0000 Subject: [PATCH 303/678] Replace with statements of stdenvDefault to rely on pkgs instead of self. --- 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 6d5bf04cfa3..9cb6b371427 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -130,7 +130,7 @@ let stdenvAdapters = import ../stdenv/adapters.nix pkgs; - stdenvDefault = with helperFunctions; with self; with overrides; { + stdenvDefault = with pkgs; with stdenvDefault; { ### STANDARD ENVIRONMENT From f7c86ee01841f85b94b3823f381119faf7060810 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 20 Mar 2016 13:47:31 +0000 Subject: [PATCH 304/678] Move merge of stdenvDefault from the self attribute to the returned value of pkgsFun. --- pkgs/top-level/all-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9cb6b371427..1d120339110 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -163,7 +163,7 @@ let }; - self = with pkgs; stdenvDefault // { + self = with pkgs; { # Make some arguments passed to all-packages.nix available inherit system platform; @@ -16480,7 +16480,7 @@ tweakAlias = _n: alias: with lib; else alias; in - lib.mapAttrs tweakAlias aliases // helperFunctions // self // overrides; + lib.mapAttrs tweakAlias aliases // helperFunctions // stdenvDefault // self // overrides; in pkgs From d8cae4d0cb0091641354fdad9fed0987c5d31a43 Mon Sep 17 00:00:00 2001 From: leenaars Date: Sun, 20 Mar 2016 15:36:03 +0100 Subject: [PATCH 305/678] blink: added icon and updated license --- .../instant-messengers/blink/default.nix | 20 ++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/blink/default.nix b/pkgs/applications/networking/instant-messengers/blink/default.nix index 0a6d04aef64..1cb345ba63a 100644 --- a/pkgs/applications/networking/instant-messengers/blink/default.nix +++ b/pkgs/applications/networking/instant-messengers/blink/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, pythonPackages, pyqt4, cython, libvncserver, zlib, twisted -, gnutls, libvpx }: +, gnutls, libvpx, makeDesktopItem }: pythonPackages.buildPythonApplication rec { name = "blink-${version}"; @@ -20,16 +20,30 @@ pythonPackages.buildPythonApplication rec { buildInputs = [ cython zlib libvncserver libvpx ]; + desktopItem = makeDesktopItem { + name = "Blink"; + exec = "blink"; + comment = meta.description; + desktopName = "Blink"; + icon = "blink"; + genericName = "Instant Messaging"; + categories = "Application;Internet;"; + }; + postInstall = '' wrapProgram $out/bin/blink \ --prefix LD_LIBRARY_PATH ":" ${gnutls}/lib + mkdir -p "$out/share/applications" + mkdir -p "$out/share/pixmaps" + cp "$desktopItem"/share/applications/* "$out/share/applications" + cp "$out"/share/blink/icons/blink.* "$out/share/pixmaps" ''; meta = with stdenv.lib; { homepage = http://icanblink.com/; - description = "A state of the art, easy to use SIP client"; + description = "A state of the art, easy to use SIP client for Voice, Video and IM"; platforms = platforms.linux; - license = licenses.mit; + license = licenses.gplv3; maintainers = with maintainers; [ pSub ]; }; } From a491b75523e70c6355ef63e598044bc4c69e95bc Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sun, 20 Mar 2016 15:25:02 +0100 Subject: [PATCH 306/678] radicale service: run with dedicated user This is done in the context of #11908. --- nixos/modules/misc/ids.nix | 2 ++ nixos/modules/services/networking/radicale.nix | 15 +++++++++++++++ 2 files changed, 17 insertions(+) diff --git a/nixos/modules/misc/ids.nix b/nixos/modules/misc/ids.nix index 919271cc4e9..d0914df9c28 100644 --- a/nixos/modules/misc/ids.nix +++ b/nixos/modules/misc/ids.nix @@ -255,6 +255,7 @@ avahi-autoipd = 231; nntp-proxy = 232; mjpg-streamer = 233; + radicale = 234; # When adding a uid, make sure it doesn't match an existing gid. And don't use uids above 399! @@ -483,6 +484,7 @@ cfdyndns = 227; pdnsd = 229; octoprint = 230; + radicale = 234; # When adding a gid, make sure it doesn't match an existing # uid. Users and groups with the same name should have equal diff --git a/nixos/modules/services/networking/radicale.nix b/nixos/modules/services/networking/radicale.nix index 4b77ef22ac1..19762f4e570 100644 --- a/nixos/modules/services/networking/radicale.nix +++ b/nixos/modules/services/networking/radicale.nix @@ -35,12 +35,27 @@ in config = mkIf cfg.enable { environment.systemPackages = [ pkgs.pythonPackages.radicale ]; + users.extraUsers = singleton + { name = "radicale"; + uid = config.ids.uids.radicale; + description = "radicale user"; + home = "/var/lib/radicale"; + createHome = true; + }; + + users.extraGroups = singleton + { name = "radicale"; + gid = config.ids.gids.radicale; + }; + systemd.services.radicale = { description = "A Simple Calendar and Contact Server"; after = [ "network-interfaces.target" ]; wantedBy = [ "multi-user.target" ]; script = "${pkgs.pythonPackages.radicale}/bin/radicale -C ${confFile} -d"; serviceConfig.Type = "forking"; + serviceConfig.User = "radicale"; + serviceConfig.Group = "radicale"; }; }; } From 0b67f7cb5dfc2b5080b8e3046917a0a15bb5140d Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 20 Mar 2016 14:50:27 +0000 Subject: [PATCH 307/678] Move tweakAlias function into the aliases.nix file, and rename it. --- pkgs/top-level/aliases.nix | 14 +++++++++++++- pkgs/top-level/all-packages.nix | 7 +------ 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index f2e1bbc5102..944de791929 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -2,9 +2,21 @@ self: with self; +let + # Removind recurseForDerivation prevents derivations of aliased attribute + # set to appear while listing all the packages available. + removeRecurseForDerivations = _n: alias: with lib; + if alias.recurseForDerivations or false then + removeAttrs alias ["recurseForDerivations"] + else alias; + + doNotDisplayTwice = aliases: + lib.mapAttrs removeRecurseForDerivations aliases; +in + ### Deprecated aliases - for backward compatibility -rec { +doNotDisplayTwice rec { accounts-qt = qt5.accounts-qt; # added 2015-12-19 adobeReader = adobe-reader; aircrackng = aircrack-ng; # added 2016-01-14 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1d120339110..188c548050c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16474,13 +16474,8 @@ let aliases = import ./aliases.nix self; -tweakAlias = _n: alias: with lib; - if alias.recurseForDerivations or false then - removeAttrs alias ["recurseForDerivations"] - else alias; - in - lib.mapAttrs tweakAlias aliases // helperFunctions // stdenvDefault // self // overrides; + aliases // helperFunctions // stdenvDefault // self // overrides; in pkgs From a09683ed298fc741cc9a80ca2fce57c4c4ead43b Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 20 Mar 2016 14:51:20 +0000 Subject: [PATCH 308/678] Remove unused 'ncat' alias, as a package with the same name already exists. --- pkgs/top-level/aliases.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 944de791929..c0b93335c80 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -61,7 +61,6 @@ doNotDisplayTwice rec { mssys = ms-sys; # added 2015-12-13 multipath_tools = multipath-tools; # added 2016-01-21 mupen64plus1_5 = mupen64plus; # added 2016-02-12 - ncat = nmap; # added 2016-01-26 nfsUtils = nfs-utils; # added 2014-12-06 phonon_qt5 = qt5.phonon; # added 2015-12-19 phonon_qt5_backend_gstreamer = qt5.phonon-backend-gstreamer; # added 2015-12-19 From f043ffcea463e3f965283e26b458b5fab5ddbbd9 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 20 Mar 2016 14:52:28 +0000 Subject: [PATCH 309/678] Move the set of aliases after 'self', such that we can later use the extend function. --- 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 188c548050c..a0bae697db2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16475,7 +16475,7 @@ let aliases = import ./aliases.nix self; in - aliases // helperFunctions // stdenvDefault // self // overrides; + helperFunctions // stdenvDefault // self // aliases // overrides; in pkgs From 7ed3dc6cfc9dafd2a3f632f351fc23a71a384012 Mon Sep 17 00:00:00 2001 From: Sander van der Burg Date: Sun, 20 Mar 2016 15:21:42 +0000 Subject: [PATCH 310/678] dysnomia: bump to version 0.5.1 --- pkgs/tools/package-management/disnix/dysnomia/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/package-management/disnix/dysnomia/default.nix b/pkgs/tools/package-management/disnix/dysnomia/default.nix index 720526d72a6..e9bb704c772 100644 --- a/pkgs/tools/package-management/disnix/dysnomia/default.nix +++ b/pkgs/tools/package-management/disnix/dysnomia/default.nix @@ -20,10 +20,10 @@ assert enableEjabberdDump -> ejabberd != null; assert enableMongoDatabase -> (mongodb != null && mongodb-tools != null); stdenv.mkDerivation { - name = "dysnomia-0.5"; + name = "dysnomia-0.5.1"; src = fetchurl { - url = http://hydra.nixos.org/build/31143399/download/1/dysnomia-0.5.tar.gz; - sha256 = "1dxilzcqnv60l418k1ihyh0gkai5xgzj13s9hcbbb0yp71mv7n9x"; + url = http://hydra.nixos.org/build/33508870/download/1/dysnomia-0.5.1.tar.gz; + sha256 = "0mrbg0wirixqzx0qw8lg6mklr8npr29ghbj7lq1mygjgzr1hyhzm"; }; preConfigure = if enableEjabberdDump then "export PATH=$PATH:${ejabberd}/sbin" else ""; From d6b11ed722ae4ba60e5b67fba03b2be7bef3093d Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 20 Mar 2016 16:44:34 +0100 Subject: [PATCH 311/678] chromium/source: Move patches into its own subdir We're going to reference the patches in the Chromium main build rather than applying it to the sources. So as a first step, this should keep the patches away from the "source" subdirectory so we can make it flat. Signed-off-by: aszlig --- .../chromium/{source => patches}/build_fixes_46.patch | 0 .../{source => patches}/nix_plugin_paths_46.patch | 0 .../{source => patches}/nix_plugin_paths_50.patch | 0 .../browsers/chromium/{source => patches}/widevine.patch | 0 .../networking/browsers/chromium/source/default.nix | 8 ++++---- 5 files changed, 4 insertions(+), 4 deletions(-) rename pkgs/applications/networking/browsers/chromium/{source => patches}/build_fixes_46.patch (100%) rename pkgs/applications/networking/browsers/chromium/{source => patches}/nix_plugin_paths_46.patch (100%) rename pkgs/applications/networking/browsers/chromium/{source => patches}/nix_plugin_paths_50.patch (100%) rename pkgs/applications/networking/browsers/chromium/{source => patches}/widevine.patch (100%) diff --git a/pkgs/applications/networking/browsers/chromium/source/build_fixes_46.patch b/pkgs/applications/networking/browsers/chromium/patches/build_fixes_46.patch similarity index 100% rename from pkgs/applications/networking/browsers/chromium/source/build_fixes_46.patch rename to pkgs/applications/networking/browsers/chromium/patches/build_fixes_46.patch diff --git a/pkgs/applications/networking/browsers/chromium/source/nix_plugin_paths_46.patch b/pkgs/applications/networking/browsers/chromium/patches/nix_plugin_paths_46.patch similarity index 100% rename from pkgs/applications/networking/browsers/chromium/source/nix_plugin_paths_46.patch rename to pkgs/applications/networking/browsers/chromium/patches/nix_plugin_paths_46.patch diff --git a/pkgs/applications/networking/browsers/chromium/source/nix_plugin_paths_50.patch b/pkgs/applications/networking/browsers/chromium/patches/nix_plugin_paths_50.patch similarity index 100% rename from pkgs/applications/networking/browsers/chromium/source/nix_plugin_paths_50.patch rename to pkgs/applications/networking/browsers/chromium/patches/nix_plugin_paths_50.patch diff --git a/pkgs/applications/networking/browsers/chromium/source/widevine.patch b/pkgs/applications/networking/browsers/chromium/patches/widevine.patch similarity index 100% rename from pkgs/applications/networking/browsers/chromium/source/widevine.patch rename to pkgs/applications/networking/browsers/chromium/patches/widevine.patch diff --git a/pkgs/applications/networking/browsers/chromium/source/default.nix b/pkgs/applications/networking/browsers/chromium/source/default.nix index a566c4bb1c8..bc646f6b252 100644 --- a/pkgs/applications/networking/browsers/chromium/source/default.nix +++ b/pkgs/applications/networking/browsers/chromium/source/default.nix @@ -42,11 +42,11 @@ in stdenv.mkDerivation { ''; patches = [ - ./build_fixes_46.patch - ./widevine.patch + ../patches/build_fixes_46.patch + ../patches/widevine.patch (if versionOlder version "50.0.0.0" - then ./nix_plugin_paths_46.patch - else ./nix_plugin_paths_50.patch) + then ../patches/nix_plugin_paths_46.patch + else ../patches/nix_plugin_paths_50.patch) ]; patchPhase = let From 2d9a604907432bce60345545f57b3cdeffc31dac Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 20 Mar 2016 16:48:54 +0100 Subject: [PATCH 312/678] chromium: Rename sources.nix to upstream-info.nix The "sources.nix" also contains information about where to get binary packages, so calling it "upstream-info.nix" fits better in terms of naming. Also, we're moving it away from the sources dir, because the latter will soon vanish. Signed-off-by: aszlig --- .../networking/browsers/chromium/source/update.nix | 8 ++++---- pkgs/applications/networking/browsers/chromium/update.sh | 2 +- .../chromium/{source/sources.nix => upstream-info.nix} | 0 3 files changed, 5 insertions(+), 5 deletions(-) rename pkgs/applications/networking/browsers/chromium/{source/sources.nix => upstream-info.nix} (100%) diff --git a/pkgs/applications/networking/browsers/chromium/source/update.nix b/pkgs/applications/networking/browsers/chromium/source/update.nix index d4dc3b59cbc..41fac2d781d 100644 --- a/pkgs/applications/networking/browsers/chromium/source/update.nix +++ b/pkgs/applications/networking/browsers/chromium/source/update.nix @@ -5,8 +5,8 @@ let inherit system; }) lib runCommand writeText stdenv curl cacert nix; - sources = if builtins.pathExists ./sources.nix - then import ./sources.nix + sources = if builtins.pathExists ../upstream-info.nix + then import ../upstream-info.nix else {}; bucketURL = "https://commondatastorage.googleapis.com/" @@ -224,8 +224,8 @@ in rec { mkAttr = key: val: "${mkIndent (indent + 1)}${key} = ${mkVal val};\n"; attrLines = lib.mapAttrsToList mkAttr attrs; in "{\n" + (lib.concatStrings attrLines) + (mkIndent indent) + "}"; - in writeText "chromium-new-sources.nix" '' - # This file is autogenerated from update.sh in the parent directory. + in writeText "chromium-new-upstream-info.nix" '' + # This file is autogenerated from update.sh in the same directory. ${dumpAttrs 0 newChannels} ''; } diff --git a/pkgs/applications/networking/browsers/chromium/update.sh b/pkgs/applications/networking/browsers/chromium/update.sh index 14f3dc6bd9d..461d8b7dd40 100755 --- a/pkgs/applications/networking/browsers/chromium/update.sh +++ b/pkgs/applications/networking/browsers/chromium/update.sh @@ -1,4 +1,4 @@ #!/bin/sh -e cd "$(dirname "$0")" sp="$(nix-build -Q --no-out-link source/update.nix -A update)" -cat "$sp" > source/sources.nix +cat "$sp" > upstream-info.nix diff --git a/pkgs/applications/networking/browsers/chromium/source/sources.nix b/pkgs/applications/networking/browsers/chromium/upstream-info.nix similarity index 100% rename from pkgs/applications/networking/browsers/chromium/source/sources.nix rename to pkgs/applications/networking/browsers/chromium/upstream-info.nix From f59998055b1a18a59172fe5a9ab3d6ef3e6bff71 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sun, 20 Mar 2016 16:46:50 +0100 Subject: [PATCH 313/678] ldm: fix build There were two problems: - because buildPhase is specified directly, preBuild ends up never being executed; and - the source is missing a header, resulting in an undefined reference error --- pkgs/os-specific/linux/ldm/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/ldm/default.nix b/pkgs/os-specific/linux/ldm/default.nix index c5e94ed81e9..a32d815ac2f 100644 --- a/pkgs/os-specific/linux/ldm/default.nix +++ b/pkgs/os-specific/linux/ldm/default.nix @@ -19,9 +19,10 @@ stdenv.mkDerivation rec { buildInputs = [ udev utillinux ]; - preBuild = '' + postPatch = '' substituteInPlace ldm.c \ --replace "/mnt/" "${mountPath}" + sed '16i#include ' -i ldm.c ''; buildPhase = "make ldm"; From 6041cfe2af8968ffaa0cb80384572beae81d0d5b Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 20 Mar 2016 16:53:08 +0100 Subject: [PATCH 314/678] chromium/source: Move update.nix to parent dir We now should have only the default.nix left in the source directory and we can start to factor out the pieces into the Chromium main derivation attributes. Signed-off-by: aszlig --- .../networking/browsers/chromium/source/default.nix | 2 +- .../networking/browsers/chromium/{source => }/update.nix | 6 +++--- pkgs/applications/networking/browsers/chromium/update.sh | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) rename pkgs/applications/networking/browsers/chromium/{source => }/update.nix (98%) diff --git a/pkgs/applications/networking/browsers/chromium/source/default.nix b/pkgs/applications/networking/browsers/chromium/source/default.nix index bc646f6b252..394dd81cc2f 100644 --- a/pkgs/applications/networking/browsers/chromium/source/default.nix +++ b/pkgs/applications/networking/browsers/chromium/source/default.nix @@ -4,7 +4,7 @@ with stdenv.lib; -with (import ./update.nix { +with (import ../update.nix { inherit (stdenv) system; }).getChannel channel; diff --git a/pkgs/applications/networking/browsers/chromium/source/update.nix b/pkgs/applications/networking/browsers/chromium/update.nix similarity index 98% rename from pkgs/applications/networking/browsers/chromium/source/update.nix rename to pkgs/applications/networking/browsers/chromium/update.nix index 41fac2d781d..d9c4e6a56e4 100644 --- a/pkgs/applications/networking/browsers/chromium/source/update.nix +++ b/pkgs/applications/networking/browsers/chromium/update.nix @@ -1,12 +1,12 @@ { system ? builtins.currentSystem }: let - inherit (import ../../../../../../. { + inherit (import ../../../../../. { inherit system; }) lib runCommand writeText stdenv curl cacert nix; - sources = if builtins.pathExists ../upstream-info.nix - then import ../upstream-info.nix + sources = if builtins.pathExists ./upstream-info.nix + then import ./upstream-info.nix else {}; bucketURL = "https://commondatastorage.googleapis.com/" diff --git a/pkgs/applications/networking/browsers/chromium/update.sh b/pkgs/applications/networking/browsers/chromium/update.sh index 461d8b7dd40..df53068713d 100755 --- a/pkgs/applications/networking/browsers/chromium/update.sh +++ b/pkgs/applications/networking/browsers/chromium/update.sh @@ -1,4 +1,4 @@ #!/bin/sh -e cd "$(dirname "$0")" -sp="$(nix-build -Q --no-out-link source/update.nix -A update)" +sp="$(nix-build -Q --no-out-link update.nix -A update)" cat "$sp" > upstream-info.nix From f48cde5b74b41ada8785738312117f402e429d2e Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sun, 20 Mar 2016 15:41:24 +0000 Subject: [PATCH 315/678] quassel: 0.12.2 -> 0.12.3 --- pkgs/applications/networking/irc/quassel/default.nix | 2 +- pkgs/applications/networking/irc/quassel/qt-5.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/irc/quassel/default.nix b/pkgs/applications/networking/irc/quassel/default.nix index aca68f94670..0c89b002f47 100644 --- a/pkgs/applications/networking/irc/quassel/default.nix +++ b/pkgs/applications/networking/irc/quassel/default.nix @@ -25,7 +25,7 @@ let in with stdenv; mkDerivation rec { - version = "0.12.2"; + version = "0.12.3"; name = "quassel${tag}-${version}"; src = fetchurl { diff --git a/pkgs/applications/networking/irc/quassel/qt-5.nix b/pkgs/applications/networking/irc/quassel/qt-5.nix index 19e0c475c66..f401cace06e 100644 --- a/pkgs/applications/networking/irc/quassel/qt-5.nix +++ b/pkgs/applications/networking/irc/quassel/qt-5.nix @@ -36,7 +36,7 @@ let in with stdenv; mkDerivation rec { - version = "0.12.2"; + version = "0.12.3"; name = "quassel${tag}-${version}"; src = fetchurl { From 985df3900d43268d77db7713a374e959490deb22 Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 20 Mar 2016 16:57:53 +0100 Subject: [PATCH 316/678] chromium/common.nix: Remove unreferenced attrs We're going to refactor things anyway, so let's first get rid of everything that's not used anymore. Signed-off-by: aszlig --- pkgs/applications/networking/browsers/chromium/common.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/common.nix b/pkgs/applications/networking/browsers/chromium/common.nix index c63f57f934d..8c2703e76ce 100644 --- a/pkgs/applications/networking/browsers/chromium/common.nix +++ b/pkgs/applications/networking/browsers/chromium/common.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, ninja, which +{ stdenv, ninja, which # default dependencies , bzip2, flac, speex, libopus @@ -30,7 +30,6 @@ , hiDPISupport ? false , source -, plugins }: buildFun: From 76ce988c500067e2dfc2a6eafaa59fc9124d8625 Mon Sep 17 00:00:00 2001 From: Simon Vandel Sillesen Date: Sun, 20 Mar 2016 17:03:12 +0100 Subject: [PATCH 317/678] kodiPlusings.pvr-hts: fix loading of plugin The plugin was looking for pvr.hts.so.2.2.13, so as only pvr.hts.so was copied, the plugin would not load. This symlinks all variants of the name to the addons folder. --- pkgs/applications/video/kodi/plugins.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/video/kodi/plugins.nix b/pkgs/applications/video/kodi/plugins.nix index 5e68958a170..0ad638dd705 100644 --- a/pkgs/applications/video/kodi/plugins.nix +++ b/pkgs/applications/video/kodi/plugins.nix @@ -245,7 +245,7 @@ in # them. Symlinking .so, as setting LD_LIBRARY_PATH is of no use installPhase = '' make install - ln -s $out/lib/kodi/addons/pvr.hts/pvr.hts.so $out/share/kodi/addons/pvr.hts + ln -s $out/lib/kodi/addons/pvr.hts/pvr.hts.so* $out/share/kodi/addons/pvr.hts ''; }; From 4984a2bf76c93b5a32e92b7585f4650b751d8b4f Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 20 Mar 2016 17:07:28 +0100 Subject: [PATCH 318/678] chromium/plugins: Break long line Yes, I know I'm a bit nitpicky, but lines >80 chars are very ugly if you have two windows side-by-side. Thus no feature changes here. Signed-off-by: aszlig --- pkgs/applications/networking/browsers/chromium/plugins.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/networking/browsers/chromium/plugins.nix b/pkgs/applications/networking/browsers/chromium/plugins.nix index c3b294876c8..b2e777c6faf 100644 --- a/pkgs/applications/networking/browsers/chromium/plugins.nix +++ b/pkgs/applications/networking/browsers/chromium/plugins.nix @@ -84,7 +84,9 @@ let wvModule = "@widevine@/lib/libwidevinecdmadapter.so"; wvInfo = "#${wvName}#${wvDescription};${wvMimeTypes}"; in '' - flashVersion="$(${jshon}/bin/jshon -F PepperFlash/manifest.json -e version -u)" + flashVersion="$( + "${jshon}/bin/jshon" -F PepperFlash/manifest.json -e version -u + )" install -vD PepperFlash/libpepflashplayer.so \ "$flash/lib/libpepflashplayer.so" From 054327729cfe043587f4a0cff86fb4f5f5f20ec5 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 20 Mar 2016 15:14:57 +0000 Subject: [PATCH 319/678] Move stdenvDefault into its own file. --- pkgs/top-level/all-packages.nix | 38 ++++++--------------------------- pkgs/top-level/stdenv.nix | 31 +++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 32 deletions(-) create mode 100644 pkgs/top-level/stdenv.nix diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a0bae697db2..f0bb6a7ee7b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -83,6 +83,11 @@ let platform = if platform_ != null then platform_ else config.platform or platformAuto; + topLevelArguments = { + inherit system bootStdenv noSysDirs gccWithCC gccWithProfiling config + crossSystem platform lib; + }; + # Allow packages to be overriden globally via the `packageOverrides' # configuration option, which must be a function that takes `pkgs' # as an argument and returns a set of new or overriden packages. @@ -130,38 +135,7 @@ let stdenvAdapters = import ../stdenv/adapters.nix pkgs; - stdenvDefault = with pkgs; with stdenvDefault; { - - - ### STANDARD ENVIRONMENT - - - allStdenvs = import ../stdenv { - inherit system platform config lib; - allPackages = args: import ./../.. ({ inherit config system; } // args); - }; - - defaultStdenv = allStdenvs.stdenv // { inherit platform; }; - - stdenv = - if bootStdenv != null then (bootStdenv // {inherit platform;}) else - if crossSystem != null then - stdenvCross - else - let - changer = config.replaceStdenv or null; - in if changer != null then - changer { - # We import again all-packages to avoid recursivities. - pkgs = import ./../.. { - # We remove packageOverrides to avoid recursivities - config = removeAttrs config [ "replaceStdenv" ]; - }; - } - else - defaultStdenv; - -}; + stdenvDefault = (import ./stdenv.nix topLevelArguments) {} pkgs; self = with pkgs; { diff --git a/pkgs/top-level/stdenv.nix b/pkgs/top-level/stdenv.nix new file mode 100644 index 00000000000..aeb36b8edc3 --- /dev/null +++ b/pkgs/top-level/stdenv.nix @@ -0,0 +1,31 @@ +{ system, bootStdenv, crossSystem, config, platform, lib, ... }: +self: super: + +with super; + +rec { + allStdenvs = import ../stdenv { + inherit system platform config lib; + allPackages = args: import ./../.. ({ inherit config system; } // args); + }; + + defaultStdenv = allStdenvs.stdenv // { inherit platform; }; + + stdenv = + if bootStdenv != null then (bootStdenv // {inherit platform;}) else + if crossSystem != null then + stdenvCross + else + let + changer = config.replaceStdenv or null; + in if changer != null then + changer { + # We import again all-packages to avoid recursivities. + pkgs = import ./../.. { + # We remove packageOverrides to avoid recursivities + config = removeAttrs config [ "replaceStdenv" ]; + }; + } + else + defaultStdenv; +} From 007500f2ece22ab43b6c73e33cb39c4c29221745 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 20 Mar 2016 15:17:34 +0000 Subject: [PATCH 320/678] Move the merge of the overrides from pkgsFun to applyGlobalOverrides. --- pkgs/top-level/all-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f0bb6a7ee7b..5f94da4b6e4 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -109,7 +109,7 @@ let (pkgs.stdenv.overrides pkgs); # The un-overriden packages, passed to `overrider'. - pkgsInit = pkgsFun pkgs {}; + pkgsInit = pkgsFun pkgs; # Return the complete set of packages, after applying the overrides # returned by the `overrider' function (see above). Warning: this @@ -119,11 +119,11 @@ let overrides = overrider pkgs pkgsOrig // stdenvOverrides pkgsOrig; # The overriden, final packages. - pkgs = pkgsFun pkgs overrides; + pkgs = pkgsFun pkgs // overrides; in pkgs; # The package compositions. Yes, this isn't properly indented. - pkgsFun = pkgs: overrides: + pkgsFun = pkgs: let defaultScope = pkgs // pkgs.xorg; @@ -16449,7 +16449,7 @@ let aliases = import ./aliases.nix self; in - helperFunctions // stdenvDefault // self // aliases // overrides; + helperFunctions // stdenvDefault // self // aliases; in pkgs From 5e3ce6334c5c4fbec260f71e69f02493403aa2eb Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 20 Mar 2016 15:27:14 +0000 Subject: [PATCH 321/678] Remove applyGlobalOverrides's pkgsOrig argument. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This patch change the behaviour or overridePackages: - Before, overridePackages was based on top of the set of packages overriden by `~/.nixpkgs/config.nix` file. - After, overridePackages should when given a function f, behave almost¹ the same as-if the packageOverrides attribute of `~/.nixpkgs/config.nix` file attribute was set to f, assuming that we ignore the extra `self` argument. ¹ It is not yet exactly the same because we have many paths which are re-entering nixpkgs while taking the default attributes, such as the bootstrap phase of stdenv. Thus if the nixpkgs configuration overrides any of the dependencies need for the bootstrap, then we might get different sha. --- pkgs/top-level/all-packages.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5f94da4b6e4..614978b011d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -95,7 +95,7 @@ let # (un-overriden) set of packages, allowing packageOverrides # attributes to refer to the original attributes (e.g. "foo = # ... pkgs.foo ..."). - pkgs = applyGlobalOverrides pkgsInit (self: config.packageOverrides or (super: {})); + pkgs = applyGlobalOverrides (self: config.packageOverrides or (super: {})); # stdenvOverrides is used to avoid circular dependencies for building the # standard build environment. This mechanism use the override mechanism to @@ -108,16 +108,16 @@ let lib.optionalAttrs (crossSystem == null && pkgs.stdenv ? overrides) (pkgs.stdenv.overrides pkgs); - # The un-overriden packages, passed to `overrider'. - pkgsInit = pkgsFun pkgs; - # Return the complete set of packages, after applying the overrides # returned by the `overrider' function (see above). Warning: this # function is very expensive! - applyGlobalOverrides = pkgsOrig: overrider: + applyGlobalOverrides = overrider: let overrides = overrider pkgs pkgsOrig // stdenvOverrides pkgsOrig; + # The un-overriden packages, passed to `overrider'. + pkgsOrig = pkgsFun pkgs; + # The overriden, final packages. pkgs = pkgsFun pkgs // overrides; in pkgs; @@ -167,7 +167,7 @@ let # # The result is `pkgs' where all the derivations depending on `foo' # will use the new version. - overridePackages = f: applyGlobalOverrides pkgs f; + overridePackages = f: applyGlobalOverrides f; # Override system. This is useful to build i686 packages on x86_64-linux. forceSystem = system: kernel: (import ./../..) { From 32e96bbb8b05bbc5aecaf4a8edec9a20e150d8cd Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 20 Mar 2016 15:43:27 +0000 Subject: [PATCH 322/678] Within applyGlobalOverrides, alias pkgsFun calls. --- pkgs/top-level/all-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 614978b011d..778ce916d12 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -113,13 +113,13 @@ let # function is very expensive! applyGlobalOverrides = overrider: let - overrides = overrider pkgs pkgsOrig // stdenvOverrides pkgsOrig; + overrides = super: overrider pkgs super // stdenvOverrides super; # The un-overriden packages, passed to `overrider'. - pkgsOrig = pkgsFun pkgs; + pkgs_ = pkgsFun pkgs; # The overriden, final packages. - pkgs = pkgsFun pkgs // overrides; + pkgs = pkgs_ // overrides pkgs_; in pkgs; # The package compositions. Yes, this isn't properly indented. From 07e549ee5b8b53ecedb8c3932982a1547d8963c6 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 20 Mar 2016 15:54:26 +0000 Subject: [PATCH 323/678] Rename applyGlobalOverrides to pkgsWithOverrides --- pkgs/top-level/all-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 778ce916d12..11987090806 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -95,7 +95,7 @@ let # (un-overriden) set of packages, allowing packageOverrides # attributes to refer to the original attributes (e.g. "foo = # ... pkgs.foo ..."). - pkgs = applyGlobalOverrides (self: config.packageOverrides or (super: {})); + pkgs = pkgsWithOverrides (self: config.packageOverrides or (super: {})); # stdenvOverrides is used to avoid circular dependencies for building the # standard build environment. This mechanism use the override mechanism to @@ -111,7 +111,7 @@ let # Return the complete set of packages, after applying the overrides # returned by the `overrider' function (see above). Warning: this # function is very expensive! - applyGlobalOverrides = overrider: + pkgsWithOverrides = overrider: let overrides = super: overrider pkgs super // stdenvOverrides super; @@ -167,7 +167,7 @@ let # # The result is `pkgs' where all the derivations depending on `foo' # will use the new version. - overridePackages = f: applyGlobalOverrides f; + overridePackages = f: pkgsWithOverrides f; # Override system. This is useful to build i686 packages on x86_64-linux. forceSystem = system: kernel: (import ./../..) { From a543a57ab5758d174e6351938a73583091517273 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 20 Mar 2016 16:04:00 +0000 Subject: [PATCH 324/678] Reformat pkgsWithOverrides to later facilitate the identitication with the extend functions. --- pkgs/top-level/all-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 11987090806..769cae55406 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -113,13 +113,13 @@ let # function is very expensive! pkgsWithOverrides = overrider: let - overrides = super: overrider pkgs super // stdenvOverrides super; - # The un-overriden packages, passed to `overrider'. - pkgs_ = pkgsFun pkgs; + pkgs_6 = pkgsFun pkgs; + + pkgs_7 = pkgs_6 // overrider pkgs pkgs_6; # The overriden, final packages. - pkgs = pkgs_ // overrides pkgs_; + pkgs = pkgs_7 // stdenvOverrides pkgs_6; in pkgs; # The package compositions. Yes, this isn't properly indented. From 37dbd62a83874cccb766a11e4e28ba88f226614e Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 20 Mar 2016 17:13:12 +0100 Subject: [PATCH 325/678] chromium: Move fetchurl calls to getChannel We always do something like "fetchurl channelProduct", so let's move it to getChannel directly so we can avoid those fetchurl calls all over the place. Also, we can still access subattributes from the fetchurl call if we need to, so there really is no need to expose the product's attributes directly. Signed-off-by: aszlig --- .../networking/browsers/chromium/source/default.nix | 6 +++--- pkgs/applications/networking/browsers/chromium/update.nix | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/source/default.nix b/pkgs/applications/networking/browsers/chromium/source/default.nix index 394dd81cc2f..6e0decbca25 100644 --- a/pkgs/applications/networking/browsers/chromium/source/default.nix +++ b/pkgs/applications/networking/browsers/chromium/source/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, fetchpatch, patchutils, python +{ stdenv, fetchpatch, patchutils, python , channel ? "stable" }: @@ -19,7 +19,7 @@ let in stdenv.mkDerivation { name = "chromium-source-${version}"; - src = fetchurl main; + src = main; buildInputs = [ python ]; # cannot patch shebangs otherwise @@ -73,6 +73,6 @@ in stdenv.mkDerivation { passthru = { inherit version channel; - plugins = fetchurl binary; + plugins = binary; }; } diff --git a/pkgs/applications/networking/browsers/chromium/update.nix b/pkgs/applications/networking/browsers/chromium/update.nix index d9c4e6a56e4..150031ab788 100644 --- a/pkgs/applications/networking/browsers/chromium/update.nix +++ b/pkgs/applications/networking/browsers/chromium/update.nix @@ -3,7 +3,7 @@ let inherit (import ../../../../../. { inherit system; - }) lib runCommand writeText stdenv curl cacert nix; + }) lib runCommand fetchurl writeText stdenv curl cacert nix; sources = if builtins.pathExists ./upstream-info.nix then import ./upstream-info.nix @@ -34,12 +34,12 @@ in rec { in { inherit (chanAttrs) version; - main = { + main = fetchurl { url = mkVerURL chanAttrs.version; inherit (chanAttrs) sha256; }; - binary = let + binary = fetchurl (let mkUrls = arch: let mkURLForMirror = getDebURL channel chanAttrs.version arch; in map mkURLForMirror ([ debURL ] ++ debMirrors); @@ -49,7 +49,7 @@ in rec { } else if !stdenv.is64bit && chanAttrs ? sha256bin32 then { urls = mkUrls "i386"; sha256 = chanAttrs.sha256bin32; - } else throw "No Chrome plugins are available for your architecture."; + } else throw "No Chrome plugins are available for your architecture."); }; update = let From ad317834053983e1bf3b61f58c923ca48a0dd2d7 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 20 Mar 2016 16:28:18 +0000 Subject: [PATCH 326/678] Extract the top-level logic out of all-packages.nix into pkgs/top-level/default.nix --- default.nix | 2 +- pkgs/top-level/all-packages.nix | 155 +++----------------------------- pkgs/top-level/default.nix | 147 ++++++++++++++++++++++++++++++ 3 files changed, 158 insertions(+), 146 deletions(-) create mode 100644 pkgs/top-level/default.nix diff --git a/default.nix b/default.nix index 12c3cf87618..c384a5bb694 100644 --- a/default.nix +++ b/default.nix @@ -6,4 +6,4 @@ if ! builtins ? nixVersion || builtins.compareVersions requiredVersion builtins. else - import ./pkgs/top-level/all-packages.nix + import ./pkgs/top-level diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 769cae55406..18fc8b95811 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1,143 +1,16 @@ -/* This file composes the Nix Packages collection. That is, it - imports the functions that build the various packages, and calls - them with appropriate arguments. The result is a set of all the - packages in the Nix Packages collection for some particular - platform. */ +{ system, bootStdenv, noSysDirs, gccWithCC, gccWithProfiling +, config, crossSystem, platform, lib +, pkgsWithOverrides, stdenvAdapters, helperFunctions +, ... }: +self: pkgs: - -{ # The system (e.g., `i686-linux') for which to build the packages. - system ? builtins.currentSystem - -, # The standard environment to use. Only used for bootstrapping. If - # null, the default standard environment is used. - bootStdenv ? null - -, # Non-GNU/Linux OSes are currently "impure" platforms, with their libc - # outside of the store. Thus, GCC, GFortran, & co. must always look for - # files in standard system directories (/usr/include, etc.) - noSysDirs ? (system != "x86_64-freebsd" && system != "i686-freebsd" - && system != "x86_64-solaris" - && system != "x86_64-kfreebsd-gnu") - - # More flags for the bootstrapping of stdenv. -, gccWithCC ? true -, gccWithProfiling ? true - -, # Allow a configuration attribute set to be passed in as an - # argument. Otherwise, it's read from $NIXPKGS_CONFIG or - # ~/.nixpkgs/config.nix. - config ? null - -, crossSystem ? null -, platform ? null -}: - - -let config_ = config; platform_ = platform; in # rename the function arguments +with pkgs; let + defaultScope = pkgs // pkgs.xorg; +in - lib = import ../../lib; - - # The contents of the configuration file found at $NIXPKGS_CONFIG or - # $HOME/.nixpkgs/config.nix. - # for NIXOS (nixos-rebuild): use nixpkgs.config option - config = - let - toPath = builtins.toPath; - getEnv = x: if builtins ? getEnv then builtins.getEnv x else ""; - pathExists = name: - builtins ? pathExists && builtins.pathExists (toPath name); - - configFile = getEnv "NIXPKGS_CONFIG"; - homeDir = getEnv "HOME"; - configFile2 = homeDir + "/.nixpkgs/config.nix"; - - configExpr = - if config_ != null then config_ - else if configFile != "" && pathExists configFile then import (toPath configFile) - else if homeDir != "" && pathExists configFile2 then import (toPath configFile2) - else {}; - - in - # allow both: - # { /* the config */ } and - # { pkgs, ... } : { /* the config */ } - if builtins.isFunction configExpr - then configExpr { inherit pkgs; } - else configExpr; - - # Allow setting the platform in the config file. Otherwise, let's use a reasonable default (pc) - - platformAuto = let - platforms = (import ./platforms.nix); - in - if system == "armv6l-linux" then platforms.raspberrypi - else if system == "armv7l-linux" then platforms.armv7l-hf-multiplatform - else if system == "armv5tel-linux" then platforms.sheevaplug - else if system == "mips64el-linux" then platforms.fuloong2f_n32 - else if system == "x86_64-linux" then platforms.pc64 - else if system == "i686-linux" then platforms.pc32 - else platforms.pcBase; - - platform = if platform_ != null then platform_ - else config.platform or platformAuto; - - topLevelArguments = { - inherit system bootStdenv noSysDirs gccWithCC gccWithProfiling config - crossSystem platform lib; - }; - - # Allow packages to be overriden globally via the `packageOverrides' - # configuration option, which must be a function that takes `pkgs' - # as an argument and returns a set of new or overriden packages. - # The `packageOverrides' function is called with the *original* - # (un-overriden) set of packages, allowing packageOverrides - # attributes to refer to the original attributes (e.g. "foo = - # ... pkgs.foo ..."). - pkgs = pkgsWithOverrides (self: config.packageOverrides or (super: {})); - - # stdenvOverrides is used to avoid circular dependencies for building the - # standard build environment. This mechanism use the override mechanism to - # implement some staged compilation of the stdenv. - # - # We don't want stdenv overrides in the case of cross-building, or - # otherwise the basic overrided packages will not be built with the - # crossStdenv adapter. - stdenvOverrides = pkgs: - lib.optionalAttrs (crossSystem == null && pkgs.stdenv ? overrides) - (pkgs.stdenv.overrides pkgs); - - # Return the complete set of packages, after applying the overrides - # returned by the `overrider' function (see above). Warning: this - # function is very expensive! - pkgsWithOverrides = overrider: - let - # The un-overriden packages, passed to `overrider'. - pkgs_6 = pkgsFun pkgs; - - pkgs_7 = pkgs_6 // overrider pkgs pkgs_6; - - # The overriden, final packages. - pkgs = pkgs_7 // stdenvOverrides pkgs_6; - in pkgs; - - # The package compositions. Yes, this isn't properly indented. - pkgsFun = pkgs: - let - defaultScope = pkgs // pkgs.xorg; - - # Helper functions that are exported through `pkgs'. - helperFunctions = - stdenvAdapters // - (import ../build-support/trivial-builders.nix { inherit lib; inherit (pkgs) stdenv; inherit (pkgs.xorg) lndir; }); - - stdenvAdapters = - import ../stdenv/adapters.nix pkgs; - - stdenvDefault = (import ./stdenv.nix topLevelArguments) {} pkgs; - - self = with pkgs; { +{ # Make some arguments passed to all-packages.nix available inherit system platform; @@ -16443,13 +16316,5 @@ let mg = callPackage ../applications/editors/mg { }; -}; # self = +} - -aliases = import ./aliases.nix self; - -in - helperFunctions // stdenvDefault // self // aliases; - -in - pkgs diff --git a/pkgs/top-level/default.nix b/pkgs/top-level/default.nix new file mode 100644 index 00000000000..39626a7485f --- /dev/null +++ b/pkgs/top-level/default.nix @@ -0,0 +1,147 @@ +/* This file composes the Nix Packages collection. That is, it + imports the functions that build the various packages, and calls + them with appropriate arguments. The result is a set of all the + packages in the Nix Packages collection for some particular + platform. */ + + +{ # The system (e.g., `i686-linux') for which to build the packages. + system ? builtins.currentSystem + +, # The standard environment to use. Only used for bootstrapping. If + # null, the default standard environment is used. + bootStdenv ? null + +, # Non-GNU/Linux OSes are currently "impure" platforms, with their libc + # outside of the store. Thus, GCC, GFortran, & co. must always look for + # files in standard system directories (/usr/include, etc.) + noSysDirs ? (system != "x86_64-freebsd" && system != "i686-freebsd" + && system != "x86_64-solaris" + && system != "x86_64-kfreebsd-gnu") + + # More flags for the bootstrapping of stdenv. +, gccWithCC ? true +, gccWithProfiling ? true + +, # Allow a configuration attribute set to be passed in as an + # argument. Otherwise, it's read from $NIXPKGS_CONFIG or + # ~/.nixpkgs/config.nix. + config ? null + +, crossSystem ? null +, platform ? null +}: + + +let config_ = config; platform_ = platform; in # rename the function arguments + +let + + lib = import ../../lib; + + # The contents of the configuration file found at $NIXPKGS_CONFIG or + # $HOME/.nixpkgs/config.nix. + # for NIXOS (nixos-rebuild): use nixpkgs.config option + config = + let + toPath = builtins.toPath; + getEnv = x: if builtins ? getEnv then builtins.getEnv x else ""; + pathExists = name: + builtins ? pathExists && builtins.pathExists (toPath name); + + configFile = getEnv "NIXPKGS_CONFIG"; + homeDir = getEnv "HOME"; + configFile2 = homeDir + "/.nixpkgs/config.nix"; + + configExpr = + if config_ != null then config_ + else if configFile != "" && pathExists configFile then import (toPath configFile) + else if homeDir != "" && pathExists configFile2 then import (toPath configFile2) + else {}; + + in + # allow both: + # { /* the config */ } and + # { pkgs, ... } : { /* the config */ } + if builtins.isFunction configExpr + then configExpr { inherit pkgs; } + else configExpr; + + # Allow setting the platform in the config file. Otherwise, let's use a reasonable default (pc) + + platformAuto = let + platforms = (import ./platforms.nix); + in + if system == "armv6l-linux" then platforms.raspberrypi + else if system == "armv7l-linux" then platforms.armv7l-hf-multiplatform + else if system == "armv5tel-linux" then platforms.sheevaplug + else if system == "mips64el-linux" then platforms.fuloong2f_n32 + else if system == "x86_64-linux" then platforms.pc64 + else if system == "i686-linux" then platforms.pc32 + else platforms.pcBase; + + platform = if platform_ != null then platform_ + else config.platform or platformAuto; + + topLevelArguments = { + inherit system bootStdenv noSysDirs gccWithCC gccWithProfiling config + crossSystem platform lib; + }; + + # Allow packages to be overriden globally via the `packageOverrides' + # configuration option, which must be a function that takes `pkgs' + # as an argument and returns a set of new or overriden packages. + # The `packageOverrides' function is called with the *original* + # (un-overriden) set of packages, allowing packageOverrides + # attributes to refer to the original attributes (e.g. "foo = + # ... pkgs.foo ..."). + pkgs = pkgsWithOverrides (self: config.packageOverrides or (super: {})); + + # stdenvOverrides is used to avoid circular dependencies for building the + # standard build environment. This mechanism use the override mechanism to + # implement some staged compilation of the stdenv. + # + # We don't want stdenv overrides in the case of cross-building, or + # otherwise the basic overrided packages will not be built with the + # crossStdenv adapter. + stdenvOverrides = pkgs: + lib.optionalAttrs (crossSystem == null && pkgs.stdenv ? overrides) + (pkgs.stdenv.overrides pkgs); + + # Return the complete set of packages, after applying the overrides + # returned by the `overrider' function (see above). Warning: this + # function is very expensive! + pkgsWithOverrides = overrider: + let + # The un-overriden packages, passed to `overrider'. + pkgs_6 = pkgsFun pkgs; + + pkgs_7 = pkgs_6 // overrider pkgs pkgs_6; + + # The overriden, final packages. + pkgs = pkgs_7 // stdenvOverrides pkgs_6; + in pkgs; + + # The package compositions. Yes, this isn't properly indented. + pkgsFun = pkgs: + let + # Helper functions that are exported through `pkgs'. + helperFunctions = + stdenvAdapters // + (import ../build-support/trivial-builders.nix { inherit lib; inherit (pkgs) stdenv; inherit (pkgs.xorg) lndir; }); + + stdenvAdapters = + import ../stdenv/adapters.nix pkgs; + + stdenvDefault = (import ./stdenv.nix topLevelArguments) {} pkgs; + + selfArgs = topLevelArguments // { inherit pkgsWithOverrides stdenvAdapters helperFunctions; }; + self = (import ./all-packages.nix selfArgs) self pkgs; + + aliases = import ./aliases.nix self; + + in + helperFunctions // stdenvDefault // self // aliases; + +in + pkgs From 335a969d458e72a4f9049f247ea33dde8cb10630 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 20 Mar 2016 16:33:46 +0000 Subject: [PATCH 327/678] Inline pkgsFun in pkgsWithOverrides. --- pkgs/top-level/default.nix | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/pkgs/top-level/default.nix b/pkgs/top-level/default.nix index 39626a7485f..135ec2a49d2 100644 --- a/pkgs/top-level/default.nix +++ b/pkgs/top-level/default.nix @@ -112,18 +112,6 @@ let # returned by the `overrider' function (see above). Warning: this # function is very expensive! pkgsWithOverrides = overrider: - let - # The un-overriden packages, passed to `overrider'. - pkgs_6 = pkgsFun pkgs; - - pkgs_7 = pkgs_6 // overrider pkgs pkgs_6; - - # The overriden, final packages. - pkgs = pkgs_7 // stdenvOverrides pkgs_6; - in pkgs; - - # The package compositions. Yes, this isn't properly indented. - pkgsFun = pkgs: let # Helper functions that are exported through `pkgs'. helperFunctions = @@ -140,8 +128,13 @@ let aliases = import ./aliases.nix self; - in - helperFunctions // stdenvDefault // self // aliases; + pkgs_6 = helperFunctions // stdenvDefault // self // aliases; + + pkgs_7 = pkgs_6 // overrider pkgs pkgs_6; + + # The overriden, final packages. + pkgs = pkgs_7 // stdenvOverrides pkgs_6; + in pkgs; in pkgs From ae0471b737c28aa046934058fc8b984ecf87ba39 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 20 Mar 2016 16:40:36 +0000 Subject: [PATCH 328/678] Split consecutive merge operators to simplify the identification of extend functions. --- pkgs/top-level/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/default.nix b/pkgs/top-level/default.nix index 135ec2a49d2..acce228ddff 100644 --- a/pkgs/top-level/default.nix +++ b/pkgs/top-level/default.nix @@ -128,7 +128,10 @@ let aliases = import ./aliases.nix self; - pkgs_6 = helperFunctions // stdenvDefault // self // aliases; + pkgs_3 = helperFunctions; + pkgs_4 = pkgs_3 // stdenvDefault; + pkgs_5 = pkgs_4 // self; + pkgs_6 = pkgs_5 // aliases; pkgs_7 = pkgs_6 // overrider pkgs pkgs_6; From 5cdaa7b90766f69e8fee9eb2a2ce1cbb1c22624a Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 20 Mar 2016 16:41:20 +0000 Subject: [PATCH 329/678] Remove all-packages.nix helperFunctions dependency. --- pkgs/build-support/dotnetbuildhelpers/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 6 ++---- pkgs/top-level/default.nix | 2 +- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/pkgs/build-support/dotnetbuildhelpers/default.nix b/pkgs/build-support/dotnetbuildhelpers/default.nix index ed0d4f790c8..0edfd0b467a 100644 --- a/pkgs/build-support/dotnetbuildhelpers/default.nix +++ b/pkgs/build-support/dotnetbuildhelpers/default.nix @@ -1,5 +1,5 @@ -{ helperFunctions, mono, pkgconfig }: - helperFunctions.runCommand +{ runCommand, mono, pkgconfig }: + runCommand "dotnetbuildhelpers" { preferLocalBuild = true; } '' diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 18fc8b95811..e8b659586c2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1,6 +1,6 @@ { system, bootStdenv, noSysDirs, gccWithCC, gccWithProfiling , config, crossSystem, platform, lib -, pkgsWithOverrides, stdenvAdapters, helperFunctions +, pkgsWithOverrides, stdenvAdapters , ... }: self: pkgs: @@ -151,9 +151,7 @@ in dotnetfx = dotnetfx40; }; - dotnetbuildhelpers = callPackage ../build-support/dotnetbuildhelpers { - inherit helperFunctions; - }; + dotnetbuildhelpers = callPackage ../build-support/dotnetbuildhelpers { }; dispad = callPackage ../tools/X11/dispad { }; diff --git a/pkgs/top-level/default.nix b/pkgs/top-level/default.nix index acce228ddff..8b499b96215 100644 --- a/pkgs/top-level/default.nix +++ b/pkgs/top-level/default.nix @@ -123,7 +123,7 @@ let stdenvDefault = (import ./stdenv.nix topLevelArguments) {} pkgs; - selfArgs = topLevelArguments // { inherit pkgsWithOverrides stdenvAdapters helperFunctions; }; + selfArgs = topLevelArguments // { inherit pkgsWithOverrides stdenvAdapters; }; self = (import ./all-packages.nix selfArgs) self pkgs; aliases = import ./aliases.nix self; From 4f981b4f84707a63904410bb3e2b88621db03e8e Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 20 Mar 2016 17:50:17 +0100 Subject: [PATCH 330/678] chromium: Move source/default.nix into common.nix This addresses #12794 so that we now have only a single tarball where we base our build on instead of splitting the source into different outputs first and then reference the outputs. The reason I did this in the first place is that we previously built the sandbox as a different derivation and unpacking the whole source tree just for building the sandbox was a bit too much. As we now have namespaces sandbox built in by default we no longer have that derivation anymore. It still might come up however if we want to build NaCl as a separate derivation (see #8560), but splitting the source code into things only NaCl might require is already too much work and doesn't weight out the benefits. Another issue with the source splitup is that Hydra now has an output limit for non-fixed-output derivations which we're already hitting. Tested the build against the stable channel and it went well, but I haven't tested running the browser. Signed-off-by: aszlig --- .../networking/browsers/chromium/common.nix | 35 ++++++--- .../networking/browsers/chromium/default.nix | 7 +- .../networking/browsers/chromium/plugins.nix | 11 ++- .../browsers/chromium/source/default.nix | 78 ------------------- .../networking/browsers/chromium/update.nix | 1 + 5 files changed, 33 insertions(+), 99 deletions(-) delete mode 100644 pkgs/applications/networking/browsers/chromium/source/default.nix diff --git a/pkgs/applications/networking/browsers/chromium/common.nix b/pkgs/applications/networking/browsers/chromium/common.nix index 8c2703e76ce..d77fd104815 100644 --- a/pkgs/applications/networking/browsers/chromium/common.nix +++ b/pkgs/applications/networking/browsers/chromium/common.nix @@ -29,7 +29,7 @@ , pulseSupport ? false, libpulseaudio ? null , hiDPISupport ? false -, source +, upstream-info }: buildFun: @@ -97,9 +97,17 @@ let base = rec { name = "${packageName}-${version}"; - inherit (source) version; + inherit (upstream-info) version; inherit packageName buildType buildPath; - src = source; + + src = upstream-info.main; + + unpackCmd = '' + tar xf "$src" \ + --anchored \ + --no-wildcards-match-slash \ + --exclude='*/tools/gyp' + ''; buildInputs = defaultDependencies ++ [ which @@ -117,16 +125,21 @@ let ++ optionals cupsSupport [ libgcrypt cups ] ++ optional pulseSupport libpulseaudio; - # XXX: Wait for https://crbug.com/239107 and https://crbug.com/239181 to - # be fixed, then try again to unbundle everything into separate - # derivations. - prePatch = '' - cp -dr --no-preserve=mode "${source.main}"/* . - cp -dr "${source.bundled}" third_party - chmod -R u+w third_party - ''; + patches = [ + ./patches/build_fixes_46.patch + ./patches/widevine.patch + (if versionOlder version "50.0.0.0" + then ./patches/nix_plugin_paths_46.patch + else ./patches/nix_plugin_paths_50.patch) + ]; postPatch = '' + sed -i -r \ + -e 's/-f(stack-protector)(-all)?/-fno-\1/' \ + -e 's|/bin/echo|echo|' \ + -e "/python_arch/s/: *'[^']*'/: '""'/" \ + build/common.gypi chrome/chrome_tests.gypi + sed -i -e '/module_path *=.*libexif.so/ { s|= [^;]*|= base::FilePath().AppendASCII("${libexif}/lib/libexif.so")| }' chrome/utility/media_galleries/image_metadata_extractor.cc diff --git a/pkgs/applications/networking/browsers/chromium/default.nix b/pkgs/applications/networking/browsers/chromium/default.nix index f9ed1f31e54..79e5e2dfec3 100644 --- a/pkgs/applications/networking/browsers/chromium/default.nix +++ b/pkgs/applications/networking/browsers/chromium/default.nix @@ -19,10 +19,9 @@ let callPackage = newScope chromium; chromium = { - source = callPackage ./source { - inherit channel; - # XXX: common config - }; + upstream-info = (import ./update.nix { + inherit (stdenv) system; + }).getChannel channel; mkChromiumDerivation = callPackage ./common.nix { inherit enableSELinux enableNaCl enableHotwording gnomeSupport diff --git a/pkgs/applications/networking/browsers/chromium/plugins.nix b/pkgs/applications/networking/browsers/chromium/plugins.nix index b2e777c6faf..a0b354f0327 100644 --- a/pkgs/applications/networking/browsers/chromium/plugins.nix +++ b/pkgs/applications/networking/browsers/chromium/plugins.nix @@ -3,7 +3,7 @@ , enablePepperFlash ? false , enableWideVine ? false -, source +, upstream-info }: with stdenv.lib; @@ -40,16 +40,15 @@ let plugins = stdenv.mkDerivation { name = "chromium-binary-plugins"; - # XXX: Only temporary and has to be version-specific - src = source.plugins; + src = upstream-info.binary; phases = [ "unpackPhase" "patchPhase" "installPhase" "checkPhase" ]; outputs = [ "flash" "widevine" ]; unpackCmd = let - chan = if source.channel == "dev" then "chrome-unstable" - else if source.channel == "stable" then "chrome" - else "chrome-${source.channel}"; + chan = if upstream-info.channel == "dev" then "chrome-unstable" + else if upstream-info.channel == "stable" then "chrome" + else "chrome-${upstream-info.channel}"; in '' mkdir -p plugins ar p "$src" data.tar.xz | tar xJ -C plugins --strip-components=4 \ diff --git a/pkgs/applications/networking/browsers/chromium/source/default.nix b/pkgs/applications/networking/browsers/chromium/source/default.nix deleted file mode 100644 index 6e0decbca25..00000000000 --- a/pkgs/applications/networking/browsers/chromium/source/default.nix +++ /dev/null @@ -1,78 +0,0 @@ -{ stdenv, fetchpatch, patchutils, python -, channel ? "stable" -}: - -with stdenv.lib; - -with (import ../update.nix { - inherit (stdenv) system; -}).getChannel channel; - -let - transform = flags: concatStringsSep ";" (map (subst: subst + flags) [ - "s,^[^/]+(.*)$,$main\\1," - "s,$main/(build|tools)(/.*)?$,$out/\\1\\2," - "s,$main/third_party(/.*)?$,$bundled\\1," - "s,^/,," - ]); - -in stdenv.mkDerivation { - name = "chromium-source-${version}"; - - src = main; - - buildInputs = [ python ]; # cannot patch shebangs otherwise - - phases = [ "unpackPhase" "patchPhase" ]; - outputs = [ "out" "bundled" "main" ]; - - unpackPhase = '' - tar xf "$src" -C / \ - --transform="${transform "xS"}" \ - --anchored \ - --no-wildcards-match-slash \ - --exclude='*/tools/gyp' \ - --exclude='*/.*' - ''; - - prePatch = '' - for i in $outputs; do - eval patchShebangs "\$$i" - done - ''; - - patches = [ - ../patches/build_fixes_46.patch - ../patches/widevine.patch - (if versionOlder version "50.0.0.0" - then ../patches/nix_plugin_paths_46.patch - else ../patches/nix_plugin_paths_50.patch) - ]; - - patchPhase = let - diffmod = sym: "/^${sym} /{s/^${sym} //;${transform ""};s/^/${sym} /}"; - allmods = "${diffmod "---"};${diffmod "\\+\\+\\+"}"; - sedexpr = "/^(---|\\+\\+\\+) *\\/dev\\/null/b;${allmods}"; - in '' - runHook prePatch - for i in $patches; do - header "applying patch $i" 3 - sed -r -e "${sedexpr}" "$i" | patch -d / -p0 - stopNest - done - runHook postPatch - ''; - - postPatch = '' - sed -i -r \ - -e 's/-f(stack-protector)(-all)?/-fno-\1/' \ - -e 's|/bin/echo|echo|' \ - -e "/python_arch/s/: *'[^']*'/: '""'/" \ - "$out/build/common.gypi" "$main/chrome/chrome_tests.gypi" - ''; - - passthru = { - inherit version channel; - plugins = binary; - }; -} diff --git a/pkgs/applications/networking/browsers/chromium/update.nix b/pkgs/applications/networking/browsers/chromium/update.nix index 150031ab788..cff84199562 100644 --- a/pkgs/applications/networking/browsers/chromium/update.nix +++ b/pkgs/applications/networking/browsers/chromium/update.nix @@ -32,6 +32,7 @@ in rec { getChannel = channel: let chanAttrs = builtins.getAttr channel sources; in { + inherit channel; inherit (chanAttrs) version; main = fetchurl { From 0e05d552f8cd88cf79750ab4e6af559e9ee6d88f Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sun, 20 Mar 2016 18:09:27 +0100 Subject: [PATCH 331/678] electrum: 2.6.2 -> 2.6.3 --- pkgs/applications/misc/electrum/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/electrum/default.nix b/pkgs/applications/misc/electrum/default.nix index 733833e3171..69f41571c45 100644 --- a/pkgs/applications/misc/electrum/default.nix +++ b/pkgs/applications/misc/electrum/default.nix @@ -18,11 +18,11 @@ in pythonPackages.buildPythonApplication rec { name = "electrum-${version}"; - version = "2.6.2"; + version = "2.6.3"; src = fetchurl { url = "https://download.electrum.org/${version}/Electrum-${version}.tar.gz"; - sha256 = "1wvzlx9aj88z01vljhyg3v67zsk2iz18r58727pdq7h94vwwjc86"; + sha256 = "0lj3a8zg6dznpnnxyza8a05c13py52j62rqlad1zcgksm5g63vic"; }; propagatedBuildInputs = with pythonPackages; [ From ff72cf185e0f0b5eaa5691f31574d16563a703d0 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 20 Mar 2016 17:37:40 +0000 Subject: [PATCH 332/678] Split helperFunctions to simplify the identification with the extend function. --- pkgs/top-level/default.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/pkgs/top-level/default.nix b/pkgs/top-level/default.nix index 8b499b96215..58b2a75f0d2 100644 --- a/pkgs/top-level/default.nix +++ b/pkgs/top-level/default.nix @@ -113,14 +113,12 @@ let # function is very expensive! pkgsWithOverrides = overrider: let - # Helper functions that are exported through `pkgs'. - helperFunctions = - stdenvAdapters // - (import ../build-support/trivial-builders.nix { inherit lib; inherit (pkgs) stdenv; inherit (pkgs.xorg) lndir; }); - stdenvAdapters = import ../stdenv/adapters.nix pkgs; + trivialBuilders = + (import ../build-support/trivial-builders.nix { inherit lib; inherit (pkgs) stdenv; inherit (pkgs.xorg) lndir; }); + stdenvDefault = (import ./stdenv.nix topLevelArguments) {} pkgs; selfArgs = topLevelArguments // { inherit pkgsWithOverrides stdenvAdapters; }; @@ -128,7 +126,8 @@ let aliases = import ./aliases.nix self; - pkgs_3 = helperFunctions; + pkgs_2 = stdenvAdapters; + pkgs_3 = pkgs_2 // trivialBuilders; pkgs_4 = pkgs_3 // stdenvDefault; pkgs_5 = pkgs_4 // self; pkgs_6 = pkgs_5 // aliases; From 1f497204f721993b4e121d6bb15e64db97dc39f8 Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 20 Mar 2016 18:23:09 +0100 Subject: [PATCH 333/678] chromium: Show status about precompiling .py files Only a aesthetics thingy, but also corrects the comment, because we're essentially precompiling .py files, NOT the .pyc files (the latter are the results). Signed-off-by: aszlig --- pkgs/applications/networking/browsers/chromium/common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/browsers/chromium/common.nix b/pkgs/applications/networking/browsers/chromium/common.nix index d77fd104815..247156a9470 100644 --- a/pkgs/applications/networking/browsers/chromium/common.nix +++ b/pkgs/applications/networking/browsers/chromium/common.nix @@ -194,7 +194,7 @@ let } // (extraAttrs.gypFlags or {})); configurePhase = '' - # Precompile .pyc files to prevent race conditions during build + echo "Precompiling .py files to prevent race conditions..." >&2 python -m compileall -q -f . > /dev/null 2>&1 || : # ignore errors # This is to ensure expansion of $out. From 01693ac154138e95324959d260056312021e0dae Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 20 Mar 2016 17:50:06 +0000 Subject: [PATCH 334/678] Move stdenvAdapaters attribute from all-packages.nix into the stdenvAdapters of the top-level. --- pkgs/top-level/all-packages.nix | 4 ++-- pkgs/top-level/default.nix | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e8b659586c2..14e87053387 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1,6 +1,6 @@ { system, bootStdenv, noSysDirs, gccWithCC, gccWithProfiling , config, crossSystem, platform, lib -, pkgsWithOverrides, stdenvAdapters +, pkgsWithOverrides , ... }: self: pkgs: @@ -74,7 +74,7 @@ in ### Helper functions. - inherit lib config stdenvAdapters; + inherit lib config; inherit (lib) lowPrio hiPrio appendToName makeOverridable; inherit (misc) versionedDerivation; diff --git a/pkgs/top-level/default.nix b/pkgs/top-level/default.nix index 58b2a75f0d2..0e9f7ecf056 100644 --- a/pkgs/top-level/default.nix +++ b/pkgs/top-level/default.nix @@ -114,14 +114,16 @@ let pkgsWithOverrides = overrider: let stdenvAdapters = - import ../stdenv/adapters.nix pkgs; + let res = import ../stdenv/adapters.nix pkgs; in res // { + stdenvAdapters = res; + }; trivialBuilders = (import ../build-support/trivial-builders.nix { inherit lib; inherit (pkgs) stdenv; inherit (pkgs.xorg) lndir; }); stdenvDefault = (import ./stdenv.nix topLevelArguments) {} pkgs; - selfArgs = topLevelArguments // { inherit pkgsWithOverrides stdenvAdapters; }; + selfArgs = topLevelArguments // { inherit pkgsWithOverrides; }; self = (import ./all-packages.nix selfArgs) self pkgs; aliases = import ./aliases.nix self; From 447c97f92987df984d5be59f99fcbed859a490f7 Mon Sep 17 00:00:00 2001 From: Matt McHenry Date: Fri, 18 Mar 2016 20:53:37 -0400 Subject: [PATCH 335/678] crashplan: 3.6.4 -> 4.6.0 * the major change is to set TARGETDIR=${vardir}, and symlink from ${vardir} back to ${out} instead of the other way around. this gives CP more liberty to write to more directories -- in particular it seems to want to write some configuration files outside of conf? * run.conf does not need 'export' * minor tweaks to CrashPlanDesktop.patch --- nixos/modules/services/backup/crashplan.nix | 8 ++++++++ .../backup/crashplan/CrashPlanDesktop.patch | 16 ++++++++++------ pkgs/applications/backup/crashplan/default.nix | 18 +++++++++--------- 3 files changed, 27 insertions(+), 15 deletions(-) diff --git a/nixos/modules/services/backup/crashplan.nix b/nixos/modules/services/backup/crashplan.nix index 74643d1d463..46d4c5192d9 100644 --- a/nixos/modules/services/backup/crashplan.nix +++ b/nixos/modules/services/backup/crashplan.nix @@ -48,6 +48,14 @@ with lib; ensureDir ${crashplan.vardir}/cache 700 ensureDir ${crashplan.vardir}/backupArchives 700 ensureDir ${crashplan.vardir}/log 777 + cp -avn ${crashplan}/conf.template/* ${crashplan.vardir}/conf + for x in app.asar bin EULA.txt install.vars lang lib libjniwrap64.so libjniwrap.so libjtux64.so libjtux.so libmd564.so libmd5.so share skin upgrade; do + if [ -e $x ]; then + true; + else + ln -s ${crashplan}/$x ${crashplan.vardir}/$x; + fi; + done ''; serviceConfig = { diff --git a/pkgs/applications/backup/crashplan/CrashPlanDesktop.patch b/pkgs/applications/backup/crashplan/CrashPlanDesktop.patch index 00516484890..7fa68ba4a38 100644 --- a/pkgs/applications/backup/crashplan/CrashPlanDesktop.patch +++ b/pkgs/applications/backup/crashplan/CrashPlanDesktop.patch @@ -1,8 +1,12 @@ ---- ./scripts/CrashPlanDesktop 2014-12-18 09:51:14.050804325 +0100 -+++ ./scripts/CrashPlanDesktop-1 2014-12-18 09:51:32.271009382 +0100 -@@ -9,4 +9,4 @@ - +--- ./scripts/CrashPlanDesktop 2016-03-02 21:01:58.000000000 -0500 ++++ ./scripts/CrashPlanDesktop-1 2016-03-18 20:52:10.117686266 -0400 +@@ -11,7 +11,7 @@ cd ${TARGETDIR} --${JAVACOMMON} ${GUI_JAVA_OPTS} -classpath "./lib/com.backup42.desktop.jar:./lang:./skin" com.backup42.desktop.CPDesktop > ${TARGETDIR}/log/ui_output.log 2> ${TARGETDIR}/log/ui_error.log & -+${JAVACOMMON} ${GUI_JAVA_OPTS} -classpath "./lib/com.backup42.desktop.jar:./lang:./skin" com.backup42.desktop.CPDesktop & + if [ "_${VERSION_5_UI}" == "_true" ]; then +- ${TARGETDIR}/electron/crashplan > ${TARGETDIR}/log/ui_output.log 2> ${TARGETDIR}/log/ui_error.log & ++ ${TARGETDIR}/electron/crashplan & + else +- ${JAVACOMMON} ${GUI_JAVA_OPTS} -classpath "./lib/com.backup42.desktop.jar:./lang:./skin" com.backup42.desktop.CPDesktop > ${TARGETDIR}/log/ui_output.log 2> ${TARGETDIR}/log/ui_error.log & ++ ${JAVACOMMON} ${GUI_JAVA_OPTS} -classpath "./lib/com.backup42.desktop.jar:./lang:./skin" com.backup42.desktop.CPDesktop & + fi diff --git a/pkgs/applications/backup/crashplan/default.nix b/pkgs/applications/backup/crashplan/default.nix index f86ab91344f..e89de9b4c6a 100644 --- a/pkgs/applications/backup/crashplan/default.nix +++ b/pkgs/applications/backup/crashplan/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, makeWrapper, jre, cpio, gawk, gnugrep, gnused, procps, swt, gtk2, glib, libXtst }: -let version = "3.6.4"; +let version = "4.6.0"; in stdenv.mkDerivation rec { name = "crashplan-${version}"; crashPlanArchive = fetchurl { - url = "http://download.crashplan.com/installs/linux/install/CrashPlan/CrashPlan_${version}_Linux.tgz"; - sha256 = "0xmzpxfm8vghk552jy167wg1nky1pp93dqds1p922hn73g0x5cv3"; + url = "https://download.code42.com/installs/linux/install/CrashPlan/CrashPlan_${version}_Linux.tgz"; + sha256 = "0h9zk6i1pdvl101c8l4v4x6i7q4wkmkqp2dkm0lq7ha96lrvac47"; }; srcs = [ crashPlanArchive ]; @@ -16,7 +16,6 @@ in stdenv.mkDerivation rec { description = "An online/offline backup solution"; homepage = "http://www.crashplan.org"; license = licenses.unfree; - broken = true; # outdated and new client has trouble starting (nullpointer exception) maintainers = with maintainers; [ sztupi iElectric ]; }; @@ -38,7 +37,7 @@ in stdenv.mkDerivation rec { # Make sure the daemon is running using the same localization as # the (installing) user echo "" >> run.conf - echo "export LC_ALL=en_US.UTF-8" >> run.conf + echo "LC_ALL=en_US.UTF-8" >> run.conf install -d -m 755 unpacked $out @@ -49,15 +48,15 @@ in stdenv.mkDerivation rec { install -D -m 644 scripts/CrashPlan.desktop $out/share/applications/CrashPlan.desktop rm -r $out/log + mv -v $out/conf $out/conf.template ln -s $vardir/log $out/log ln -s $vardir/cache $out/cache ln -s $vardir/backupArchives $out/backupArchives - ln -s $vardir/conf/service.model $out/conf/service.model - ln -s $vardir/conf/my.service.xml $out/conf/my.service.xml + ln -s $vardir/conf $out/conf echo "JAVACOMMON=${jre}/bin/java" > $out/install.vars echo "APP_BASENAME=CrashPlan" >> $out/install.vars - echo "TARGETDIR=$out" >> $out/install.vars + echo "TARGETDIR=${vardir}" >> $out/install.vars echo "BINSDIR=$out/bin" >> $out/install.vars echo "MANIFESTDIR=${manifestdir}" >> $out/install.vars echo "VARDIR=${vardir}" >> $out/install.vars @@ -77,7 +76,8 @@ in stdenv.mkDerivation rec { substituteInPlace $out/share/applications/CrashPlan.desktop \ --replace /usr/local $out \ - --replace crashplan/skin skin + --replace crashplan/skin skin \ + --replace bin/CrashPlanDesktop CrashPlanDesktop wrapProgram $out/bin/CrashPlanDesktop --prefix LD_LIBRARY_PATH ":" "${gtk2}/lib:${glib}/lib:${libXtst}/lib" ''; From f8dedbb10108898672dce84386b4c9f675c3a82a Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 20 Mar 2016 18:02:28 +0000 Subject: [PATCH 336/678] Build aliases based on the previous set including all-packages, instead of only using all-packages. --- pkgs/top-level/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/default.nix b/pkgs/top-level/default.nix index 0e9f7ecf056..ae0d38fc7af 100644 --- a/pkgs/top-level/default.nix +++ b/pkgs/top-level/default.nix @@ -126,13 +126,13 @@ let selfArgs = topLevelArguments // { inherit pkgsWithOverrides; }; self = (import ./all-packages.nix selfArgs) self pkgs; - aliases = import ./aliases.nix self; + aliases = super: import ./aliases.nix super; pkgs_2 = stdenvAdapters; pkgs_3 = pkgs_2 // trivialBuilders; pkgs_4 = pkgs_3 // stdenvDefault; pkgs_5 = pkgs_4 // self; - pkgs_6 = pkgs_5 // aliases; + pkgs_6 = pkgs_5 // aliases pkgs_5; pkgs_7 = pkgs_6 // overrider pkgs pkgs_6; From 5783f66bc838317bbd6b78e22eb12bac958c25b1 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 20 Mar 2016 18:17:35 +0000 Subject: [PATCH 337/678] Internalize the recursion over the set of all packages. --- pkgs/top-level/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/default.nix b/pkgs/top-level/default.nix index ae0d38fc7af..6370bf57e13 100644 --- a/pkgs/top-level/default.nix +++ b/pkgs/top-level/default.nix @@ -124,7 +124,9 @@ let stdenvDefault = (import ./stdenv.nix topLevelArguments) {} pkgs; selfArgs = topLevelArguments // { inherit pkgsWithOverrides; }; - self = (import ./all-packages.nix selfArgs) self pkgs; + self = + let res = import ./all-packages.nix selfArgs res pkgs; + in res; aliases = super: import ./aliases.nix super; From a190baa4791d4b29bfe51f2e21894454940d480c Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 20 Mar 2016 18:18:39 +0000 Subject: [PATCH 338/678] In top-level/default.nix, rename self to allPackages. --- pkgs/top-level/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/default.nix b/pkgs/top-level/default.nix index 6370bf57e13..36f0ce0ab3b 100644 --- a/pkgs/top-level/default.nix +++ b/pkgs/top-level/default.nix @@ -123,9 +123,9 @@ let stdenvDefault = (import ./stdenv.nix topLevelArguments) {} pkgs; - selfArgs = topLevelArguments // { inherit pkgsWithOverrides; }; - self = - let res = import ./all-packages.nix selfArgs res pkgs; + allPackagesArgs = topLevelArguments // { inherit pkgsWithOverrides; }; + allPackages = + let res = import ./all-packages.nix allPackagesArgs res pkgs; in res; aliases = super: import ./aliases.nix super; @@ -133,7 +133,7 @@ let pkgs_2 = stdenvAdapters; pkgs_3 = pkgs_2 // trivialBuilders; pkgs_4 = pkgs_3 // stdenvDefault; - pkgs_5 = pkgs_4 // self; + pkgs_5 = pkgs_4 // allPackages; pkgs_6 = pkgs_5 // aliases pkgs_5; pkgs_7 = pkgs_6 // overrider pkgs pkgs_6; From 598ed874df099987545bfb96fe0f8d076321bdea Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 20 Mar 2016 18:23:29 +0000 Subject: [PATCH 339/678] Add extra argument to better identity with the extend function later. --- pkgs/top-level/default.nix | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/pkgs/top-level/default.nix b/pkgs/top-level/default.nix index 36f0ce0ab3b..f1082226d76 100644 --- a/pkgs/top-level/default.nix +++ b/pkgs/top-level/default.nix @@ -104,7 +104,7 @@ let # We don't want stdenv overrides in the case of cross-building, or # otherwise the basic overrided packages will not be built with the # crossStdenv adapter. - stdenvOverrides = pkgs: + stdenvOverrides = self: pkgs: lib.optionalAttrs (crossSystem == null && pkgs.stdenv ? overrides) (pkgs.stdenv.overrides pkgs); @@ -113,33 +113,34 @@ let # function is very expensive! pkgsWithOverrides = overrider: let - stdenvAdapters = + stdenvAdapters = self: super: let res = import ../stdenv/adapters.nix pkgs; in res // { stdenvAdapters = res; }; - trivialBuilders = + trivialBuilders = self: super: (import ../build-support/trivial-builders.nix { inherit lib; inherit (pkgs) stdenv; inherit (pkgs.xorg) lndir; }); - stdenvDefault = (import ./stdenv.nix topLevelArguments) {} pkgs; + stdenvDefault = self: super: (import ./stdenv.nix topLevelArguments) {} pkgs; allPackagesArgs = topLevelArguments // { inherit pkgsWithOverrides; }; - allPackages = + allPackages = self: super: let res = import ./all-packages.nix allPackagesArgs res pkgs; in res; - aliases = super: import ./aliases.nix super; + aliases = self: super: import ./aliases.nix super; - pkgs_2 = stdenvAdapters; - pkgs_3 = pkgs_2 // trivialBuilders; - pkgs_4 = pkgs_3 // stdenvDefault; - pkgs_5 = pkgs_4 // allPackages; - pkgs_6 = pkgs_5 // aliases pkgs_5; + pkgs_1 = {}; + pkgs_2 = pkgs_1 // stdenvAdapters pkgs pkgs_1; + pkgs_3 = pkgs_2 // trivialBuilders pkgs pkgs_2; + pkgs_4 = pkgs_3 // stdenvDefault pkgs pkgs_3; + pkgs_5 = pkgs_4 // allPackages pkgs pkgs_4; + pkgs_6 = pkgs_5 // aliases pkgs pkgs_5; pkgs_7 = pkgs_6 // overrider pkgs pkgs_6; # The overriden, final packages. - pkgs = pkgs_7 // stdenvOverrides pkgs_6; + pkgs = pkgs_7 // stdenvOverrides pkgs pkgs_6; in pkgs; in From fdf8c73f15bcb02738d9d1e46e32b5b754b149aa Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 20 Mar 2016 18:32:21 +0000 Subject: [PATCH 340/678] goPackages.oh: 2016-02-23 -> 2016-03-02 --- pkgs/top-level/go-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index d063b982960..5ba499d3e39 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -2592,11 +2592,11 @@ let }; oh = buildFromGitHub { - rev = "f3e482f664e76dcf98d5f94dd93c216da300b78e"; - date = "2016-02-23"; + rev = "f54be52450a07398a2f605222eb22e69bb34f565"; + date = "2016-03-02"; owner = "michaelmacinnis"; repo = "oh"; - sha256 = "1j5g37jjl1kxri44ihb1bsrzx4al07dvl4s5dglb2m7bjia6iqs2"; + sha256 = "0gczqi9aw6sv7vmjdandxmaz1m6pfzchmbkf12qmpmc6dmh2wy6b"; goPackageAliases = [ "github.com/michaelmacinnis/oh" ]; buildInputs = [ adapted liner ]; disabled = isGo14; From 54f6695928412a14525ff70b565873b5217509c4 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Fri, 6 Nov 2015 17:31:57 +0000 Subject: [PATCH 341/678] libykneomgr: 0.1.7 -> 0.1.8 --- pkgs/development/libraries/libykneomgr/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libykneomgr/default.nix b/pkgs/development/libraries/libykneomgr/default.nix index 035a291be29..c084cfb8116 100644 --- a/pkgs/development/libraries/libykneomgr/default.nix +++ b/pkgs/development/libraries/libykneomgr/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, pkgconfig, pcsclite, libzip, help2man }: stdenv.mkDerivation rec { - name = "libykneomgr-0.1.7"; + name = "libykneomgr-0.1.8"; src = fetchurl { url = "https://developers.yubico.com/libykneomgr/Releases/${name}.tar.gz"; - sha256 = "0nlzl9g0gjb54h43gjhg8d25bq3m3s794cq671irpqkn94kj1knw"; + sha256 = "12gqblz400kr11m1fdr1vvwr85lgy5v55zy0cf782whpk8lyyj97"; }; nativeBuildInputs = [ pkgconfig ]; From 1489af21530c2fbdb4dcd5b91374aa9dd289c6ac Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 20 Mar 2016 18:42:23 +0000 Subject: [PATCH 342/678] yubico-piv-tool: 1.0.2 -> 1.3.0 --- pkgs/tools/misc/yubico-piv-tool/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/yubico-piv-tool/default.nix b/pkgs/tools/misc/yubico-piv-tool/default.nix index fee4d44ce66..20c1170a805 100644 --- a/pkgs/tools/misc/yubico-piv-tool/default.nix +++ b/pkgs/tools/misc/yubico-piv-tool/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, pkgconfig, openssl, pcsclite }: stdenv.mkDerivation rec { - name = "yubico-piv-tool-1.0.2"; + name = "yubico-piv-tool-1.3.0"; src = fetchurl { url = "https://developers.yubico.com/yubico-piv-tool/Releases/${name}.tar.gz"; - sha256 = "1l12bkyqs38212rizda6s3mypfr4wdiap0yhqfwx86lqcp4h0yb9"; + sha256 = "0l9lkzwi2227y5y02i5g1d701bmlyaj8lffv72jks1w4mkh7q7qh"; }; buildInputs = [ pkgconfig openssl pcsclite ]; From 451a7ec4a9e0987288eac77123a022013cd5f1c1 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 20 Mar 2016 18:48:49 +0000 Subject: [PATCH 343/678] yubikey-personalization: 1.17.2 -> 1.17.3 --- pkgs/tools/misc/yubikey-personalization/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/yubikey-personalization/default.nix b/pkgs/tools/misc/yubikey-personalization/default.nix index c109903e6ee..1562b9e69b8 100644 --- a/pkgs/tools/misc/yubikey-personalization/default.nix +++ b/pkgs/tools/misc/yubikey-personalization/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "yubikey-personalization-${version}"; - version = "1.17.2"; + version = "1.17.3"; src = fetchurl { url = "https://developers.yubico.com/yubikey-personalization/Releases/ykpers-${version}.tar.gz"; - sha256 = "1z6ybpdhl74phwzg2lhxhipqf7xnfhg52dykkzb3fbx21m0i4jkh"; + sha256 = "034wmwinxmngji1ly8nm9q4hg194iwk164y5rw0whnf69ycc6bs8"; }; nativeBuildInputs = [ pkgconfig ]; From 23befca742f67494f44dbe84070c9d56e7615c1b Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 20 Mar 2016 18:49:05 +0000 Subject: [PATCH 344/678] yubikey-personalization-gui: 3.1.21 -> 3.1.24 --- pkgs/tools/misc/yubikey-personalization-gui/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/yubikey-personalization-gui/default.nix b/pkgs/tools/misc/yubikey-personalization-gui/default.nix index 269219e1143..57952b80daf 100644 --- a/pkgs/tools/misc/yubikey-personalization-gui/default.nix +++ b/pkgs/tools/misc/yubikey-personalization-gui/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, pkgconfig, yubikey-personalization, qt, libyubikey }: stdenv.mkDerivation rec { - name = "yubikey-personalization-gui-3.1.21"; + name = "yubikey-personalization-gui-3.1.24"; src = fetchurl { url = "https://developers.yubico.com/yubikey-personalization-gui/Releases/${name}.tar.gz"; - sha256 = "1b5mf6h3jj35f3xwzdbqsyzk171sn8rp9ym4vipmzzcg10jxyp0m"; + sha256 = "0aj8cvajswkwzig0py0mjnfw0m8xsilisdcnixpjx9xxsxz5yacq"; }; nativeBuildInputs = [ pkgconfig ]; From 9e8c5208a1370be720ccce8c42e17e0922ba0159 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 20 Mar 2016 19:00:30 +0000 Subject: [PATCH 345/678] Add bootStdenv condition around the overrider. This condition used to be implicit in the sense that the stdenvOverrides uses pkgs_6, instead of pkgs_7 as its super set, and also that each stage of the compiler is build again the bootstrap packages of the previous stage, thus overriden by the stdenv.override function. --- pkgs/top-level/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/default.nix b/pkgs/top-level/default.nix index f1082226d76..b641d54a5ae 100644 --- a/pkgs/top-level/default.nix +++ b/pkgs/top-level/default.nix @@ -130,6 +130,9 @@ let aliases = self: super: import ./aliases.nix super; + customOverrides = self: super: + lib.optionalAttrs (bootStdenv == null) (overrider self super); + pkgs_1 = {}; pkgs_2 = pkgs_1 // stdenvAdapters pkgs pkgs_1; pkgs_3 = pkgs_2 // trivialBuilders pkgs pkgs_2; @@ -137,7 +140,7 @@ let pkgs_5 = pkgs_4 // allPackages pkgs pkgs_4; pkgs_6 = pkgs_5 // aliases pkgs pkgs_5; - pkgs_7 = pkgs_6 // overrider pkgs pkgs_6; + pkgs_7 = pkgs_6 // customOverrides pkgs pkgs_6; # The overriden, final packages. pkgs = pkgs_7 // stdenvOverrides pkgs pkgs_6; From 21b8007bcfb83db36e502efefb541a28a4571fbb Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 20 Mar 2016 19:04:15 +0000 Subject: [PATCH 346/678] Move the customOverrides after the stdenvOverrides. This change is not backward compatible, in the sense that this allow you to override the packages which used to be overriden by the last stage of stdenv. Note, this does not mean that these packages would be used by stdenv. --- pkgs/top-level/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/default.nix b/pkgs/top-level/default.nix index b641d54a5ae..66a99847698 100644 --- a/pkgs/top-level/default.nix +++ b/pkgs/top-level/default.nix @@ -140,10 +140,10 @@ let pkgs_5 = pkgs_4 // allPackages pkgs pkgs_4; pkgs_6 = pkgs_5 // aliases pkgs pkgs_5; - pkgs_7 = pkgs_6 // customOverrides pkgs pkgs_6; + pkgs_7 = pkgs_6 // stdenvOverrides pkgs pkgs_6; # The overriden, final packages. - pkgs = pkgs_7 // stdenvOverrides pkgs pkgs_6; + pkgs = pkgs_7 // customOverrides pkgs pkgs_6; in pkgs; in From 800766fb0b26991a19b63487dceaf369aec92138 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 20 Mar 2016 19:10:48 +0000 Subject: [PATCH 347/678] Change the customOverrides to use the stdenvOverrides instead of the original package set. --- pkgs/top-level/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/default.nix b/pkgs/top-level/default.nix index 66a99847698..b1d1282d3d6 100644 --- a/pkgs/top-level/default.nix +++ b/pkgs/top-level/default.nix @@ -143,7 +143,7 @@ let pkgs_7 = pkgs_6 // stdenvOverrides pkgs pkgs_6; # The overriden, final packages. - pkgs = pkgs_7 // customOverrides pkgs pkgs_6; + pkgs = pkgs_7 // customOverrides pkgs pkgs_7; in pkgs; in From 1bcefcdf5caf5f238abd9cc74f4d9738ad505f29 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 20 Mar 2016 19:18:33 +0000 Subject: [PATCH 348/678] Under pkgsWithOverrides, replace the last uses of pkgs by the corresponding argument. --- pkgs/top-level/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/default.nix b/pkgs/top-level/default.nix index b1d1282d3d6..d335ffb8a37 100644 --- a/pkgs/top-level/default.nix +++ b/pkgs/top-level/default.nix @@ -114,18 +114,20 @@ let pkgsWithOverrides = overrider: let stdenvAdapters = self: super: - let res = import ../stdenv/adapters.nix pkgs; in res // { + let res = import ../stdenv/adapters.nix self; in res // { stdenvAdapters = res; }; trivialBuilders = self: super: - (import ../build-support/trivial-builders.nix { inherit lib; inherit (pkgs) stdenv; inherit (pkgs.xorg) lndir; }); + (import ../build-support/trivial-builders.nix { + inherit lib; inherit (self) stdenv; inherit (self.xorg) lndir; + }); stdenvDefault = self: super: (import ./stdenv.nix topLevelArguments) {} pkgs; allPackagesArgs = topLevelArguments // { inherit pkgsWithOverrides; }; allPackages = self: super: - let res = import ./all-packages.nix allPackagesArgs res pkgs; + let res = import ./all-packages.nix allPackagesArgs res self; in res; aliases = self: super: import ./aliases.nix super; From 5ae7356d4292ba48ca0e3945a829adda93f64b8b Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 20 Mar 2016 19:23:08 +0000 Subject: [PATCH 349/678] Replace the merge operators by the fix' and extends functions. --- pkgs/top-level/default.nix | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/pkgs/top-level/default.nix b/pkgs/top-level/default.nix index d335ffb8a37..2d091571973 100644 --- a/pkgs/top-level/default.nix +++ b/pkgs/top-level/default.nix @@ -134,19 +134,15 @@ let customOverrides = self: super: lib.optionalAttrs (bootStdenv == null) (overrider self super); - - pkgs_1 = {}; - pkgs_2 = pkgs_1 // stdenvAdapters pkgs pkgs_1; - pkgs_3 = pkgs_2 // trivialBuilders pkgs pkgs_2; - pkgs_4 = pkgs_3 // stdenvDefault pkgs pkgs_3; - pkgs_5 = pkgs_4 // allPackages pkgs pkgs_4; - pkgs_6 = pkgs_5 // aliases pkgs pkgs_5; - - pkgs_7 = pkgs_6 // stdenvOverrides pkgs pkgs_6; - - # The overriden, final packages. - pkgs = pkgs_7 // customOverrides pkgs pkgs_7; - in pkgs; - + in + lib.fix' ( + lib.extends customOverrides ( + lib.extends stdenvOverrides ( + lib.extends aliases ( + lib.extends allPackages ( + lib.extends stdenvDefault ( + lib.extends trivialBuilders ( + lib.extends stdenvAdapters ( + self: {})))))))); in pkgs From aa7f0fc21435c253a7fb0c9e3ab1840c2f60c5be Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 20 Mar 2016 19:26:57 +0000 Subject: [PATCH 350/678] Move stdenvOverrides under pkgsWithOverrides. --- pkgs/top-level/default.nix | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/pkgs/top-level/default.nix b/pkgs/top-level/default.nix index 2d091571973..61fd39f8ca5 100644 --- a/pkgs/top-level/default.nix +++ b/pkgs/top-level/default.nix @@ -97,17 +97,6 @@ let # ... pkgs.foo ..."). pkgs = pkgsWithOverrides (self: config.packageOverrides or (super: {})); - # stdenvOverrides is used to avoid circular dependencies for building the - # standard build environment. This mechanism use the override mechanism to - # implement some staged compilation of the stdenv. - # - # We don't want stdenv overrides in the case of cross-building, or - # otherwise the basic overrided packages will not be built with the - # crossStdenv adapter. - stdenvOverrides = self: pkgs: - lib.optionalAttrs (crossSystem == null && pkgs.stdenv ? overrides) - (pkgs.stdenv.overrides pkgs); - # Return the complete set of packages, after applying the overrides # returned by the `overrider' function (see above). Warning: this # function is very expensive! @@ -132,6 +121,17 @@ let aliases = self: super: import ./aliases.nix super; + # stdenvOverrides is used to avoid circular dependencies for building + # the standard build environment. This mechanism use the override + # mechanism to implement some staged compilation of the stdenv. + # + # We don't want stdenv overrides in the case of cross-building, or + # otherwise the basic overrided packages will not be built with the + # crossStdenv adapter. + stdenvOverrides = self: super: + lib.optionalAttrs (crossSystem == null && super.stdenv ? overrides) + (super.stdenv.overrides super); + customOverrides = self: super: lib.optionalAttrs (bootStdenv == null) (overrider self super); in From f2e051b29eddff67b7aec35a6dc681a814951070 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sun, 20 Mar 2016 15:41:24 +0000 Subject: [PATCH 351/678] quassel: 0.12.2 -> 0.12.3 --- pkgs/applications/networking/irc/quassel/qt-5.nix | 8 -------- 1 file changed, 8 deletions(-) diff --git a/pkgs/applications/networking/irc/quassel/qt-5.nix b/pkgs/applications/networking/irc/quassel/qt-5.nix index f401cace06e..069b3bd6b97 100644 --- a/pkgs/applications/networking/irc/quassel/qt-5.nix +++ b/pkgs/applications/networking/irc/quassel/qt-5.nix @@ -44,14 +44,6 @@ in with stdenv; mkDerivation rec { sha256 = "15vqjiw38mifvnc95bhvy0zl23xxldkwg2byx9xqbyw8rfgggmkb"; }; - patches = [ - # fix build with Qt 5.5 - (fetchurl { - url = "https://github.com/quassel/quassel/commit/078477395aaec1edee90922037ebc8a36b072d90.patch"; - sha256 = "1njwnay7pjjw0g7m0x5cwvck8xcznc7jbdfyhbrd121nc7jgpbc5"; - }) - ]; - enableParallelBuilding = true; buildInputs = From 57dd725e853b54c578e3b73f520756be3ff2359c Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sun, 20 Mar 2016 19:35:59 +0000 Subject: [PATCH 352/678] htop: fix supported platforms list --- pkgs/tools/system/htop/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/system/htop/default.nix b/pkgs/tools/system/htop/default.nix index 9c05c07c052..a9d15b317f9 100644 --- a/pkgs/tools/system/htop/default.nix +++ b/pkgs/tools/system/htop/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { description = "An interactive process viewer for Linux"; homepage = https://hisham.hm/htop/; license = licenses.gpl2Plus; - platforms = platforms.all; + platforms = with platforms; [ linux freebsd openbsd darwin ]; maintainers = with maintainers; [ rob simons relrod nckx ]; }; } From 3f909d8f646e3ab4d50b4c076a08edf34718f053 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sun, 20 Mar 2016 19:38:05 +0000 Subject: [PATCH 353/678] Revert "quassel: 0.12.2 -> 0.12.3" This reverts commit f2e051b29eddff67b7aec35a6dc681a814951070. --- pkgs/applications/networking/irc/quassel/qt-5.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/applications/networking/irc/quassel/qt-5.nix b/pkgs/applications/networking/irc/quassel/qt-5.nix index 069b3bd6b97..f401cace06e 100644 --- a/pkgs/applications/networking/irc/quassel/qt-5.nix +++ b/pkgs/applications/networking/irc/quassel/qt-5.nix @@ -44,6 +44,14 @@ in with stdenv; mkDerivation rec { sha256 = "15vqjiw38mifvnc95bhvy0zl23xxldkwg2byx9xqbyw8rfgggmkb"; }; + patches = [ + # fix build with Qt 5.5 + (fetchurl { + url = "https://github.com/quassel/quassel/commit/078477395aaec1edee90922037ebc8a36b072d90.patch"; + sha256 = "1njwnay7pjjw0g7m0x5cwvck8xcznc7jbdfyhbrd121nc7jgpbc5"; + }) + ]; + enableParallelBuilding = true; buildInputs = From 9fb01da1136424a34f2cce4fde812a326acd1ee3 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sun, 20 Mar 2016 11:27:50 +0100 Subject: [PATCH 354/678] perl-Sub-Name: 0.14 -> 0.15 --- 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 cdb0b49a5da..24d858a9b68 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -10872,13 +10872,13 @@ let self = _self // overrides; _self = with self; { }; SubName = buildPerlPackage rec { - name = "Sub-Name-0.14"; + name = "Sub-Name-0.15"; src = fetchurl { url = "mirror://cpan/authors/id/E/ET/ETHER/${name}.tar.gz"; - sha256 = "9276412677b445e7e9bdf6ab3a034a05a860e5c5dc560dd9272967745eeb3f17"; + sha256 = "dabc9a4abcbe067d120ce005b4203b8a44291cbda013900152ba19a1e7c1c8c8"; }; meta = { - homepage = https://github.com/karenetheridge/Sub-Name; + homepage = https://github.com/p5sagit/Sub-Name; description = "(re)name a sub"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; maintainers = [ maintainers.rycee ]; From e0ec11e204492409cb5e46b3f597a4de04fd6a76 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sun, 20 Mar 2016 11:33:48 +0100 Subject: [PATCH 355/678] perl-CGI: 4.27 -> 4.28 --- 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 24d858a9b68..fbf4ac2bd77 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -1431,10 +1431,10 @@ let self = _self // overrides; _self = with self; { }; CGI = buildPerlPackage rec { - name = "CGI-4.27"; + name = "CGI-4.28"; src = fetchurl { url = "mirror://cpan/authors/id/L/LE/LEEJO/${name}.tar.gz"; - sha256 = "0rjif2z44lnfk4hkf95mq52nsgvlgjdigabjpx3v697lfibhx37c"; + sha256 = "1297d3ed6616cacb4eb57860e3e743f3890111e7a63ca08849930f42f1360532"; }; buildInputs = [ TestDeep TestWarn ]; propagatedBuildInputs = [ HTMLParser self."if" ]; From 658141fddb1d79907f0ea899ee69e42661377c76 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sun, 20 Mar 2016 19:38:49 +0100 Subject: [PATCH 356/678] perl-Log-Log4perl: 1.46 -> 1.47 Also rename the package attribute to match naming scheme, the old attribute now refers to the renamed one. --- pkgs/top-level/perl-packages.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index fbf4ac2bd77..2436e396a04 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -6900,11 +6900,11 @@ let self = _self // overrides; _self = with self; { }; }; - Log4Perl = buildPerlPackage rec { - name = "Log-Log4perl-1.46"; + LogLog4perl = buildPerlPackage rec { + name = "Log-Log4perl-1.47"; src = fetchurl { url = "mirror://cpan/authors/id/M/MS/MSCHILLI/${name}.tar.gz"; - sha256 = "31011a17c04e78016e73eaa4865d0481d2ffc3dc22813c61065d90ad73c64e6f"; + sha256 = "9001dded011226538b9a50c7856815bb0dba72a1e6218fdcaba56f651356b96f"; }; meta = { homepage = https://mschilli.github.io/log4perl/; @@ -6914,6 +6914,9 @@ let self = _self // overrides; _self = with self; { }; }; + # For backwards compatibility. + Log4Perl = self.LogLog4perl; + LogDispatchArray = buildPerlPackage { name = "Log-Dispatch-Array-1.003"; src = fetchurl { From fb65a0048a941653572596cd4e2a8c11ce026be4 Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 20 Mar 2016 21:04:02 +0100 Subject: [PATCH 357/678] chromium: Revert working around --sysroot filter This reverts commit 5979946c41e9b5fd9527eda1724761452d054b42. I have tested this by building against the stable version of Chromium and it seems to compile just fine, so it doesn't seem to be needed anymore. Signed-off-by: aszlig --- pkgs/applications/networking/browsers/chromium/browser.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/browser.nix b/pkgs/applications/networking/browsers/chromium/browser.nix index 2fb33fda610..982c6d659ee 100644 --- a/pkgs/applications/networking/browsers/chromium/browser.nix +++ b/pkgs/applications/networking/browsers/chromium/browser.nix @@ -29,8 +29,6 @@ mkChromiumDerivation (base: rec { done ''; - preHook = "unset NIX_ENFORCE_PURITY"; - meta = { description = "An open source web browser from Google"; homepage = http://www.chromium.org/; From e5343cd9e63ab54bde55ef69bd9f0eebed3b07dc Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sun, 20 Mar 2016 21:22:18 +0100 Subject: [PATCH 358/678] bitlbee: write pid file to /var/lib/bitlbee/bitlbee.pid Previously it was written to /var/lib/bitlbee.pid but on NixOS the user bitlbee has no write access to /var/lib/. --- .../networking/instant-messengers/bitlbee/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/networking/instant-messengers/bitlbee/default.nix b/pkgs/applications/networking/instant-messengers/bitlbee/default.nix index 41a698be290..d7c52ccfd6b 100644 --- a/pkgs/applications/networking/instant-messengers/bitlbee/default.nix +++ b/pkgs/applications/networking/instant-messengers/bitlbee/default.nix @@ -21,6 +21,7 @@ stdenv.mkDerivation rec { "--gcov=1" "--otr=1" "--ssl=gnutls" + "--pidfile=/var/lib/bitlbee/bitlbee.pid" ]; buildPhase = '' From ae81e1f52845a4a0a1d6f47cff1e13c74fe95abe Mon Sep 17 00:00:00 2001 From: "Rommel M. Martinez" Date: Mon, 21 Mar 2016 04:53:16 +0800 Subject: [PATCH 359/678] emem: 0.2.14 -> 0.2.15 --- 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 1077adb1fce..b2855e5a287 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.14"; + version = "0.2.15"; name = "${pname}-${version}"; inherit jdk; src = fetchurl { url = "https://github.com/ebzzry/${pname}/releases/download/v${version}/${pname}.jar"; - sha256 = "15q2n4a9m8zqi0wb7dyf3xiw78qvvz5zhxyff38xak5n7bvs51jc"; + sha256 = "0jj990syd9biq2awnjydi4x3p4hivigc522ds59hdf5wg4y2gg6c"; }; buildInputs = [ ]; From 3bd71b135bb6f3379b3e1cfba148224b14123464 Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 20 Mar 2016 22:20:39 +0100 Subject: [PATCH 360/678] nixos/tests/chromium: Allow overriding channel map This has been the case before e45c211, but it turns out that it's very useful to override the channel packages so we can run tests with different Chromium build options. Signed-off-by: aszlig --- nixos/tests/chromium.nix | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/nixos/tests/chromium.nix b/nixos/tests/chromium.nix index 974af6888b6..dfa65ab7391 100644 --- a/nixos/tests/chromium.nix +++ b/nixos/tests/chromium.nix @@ -1,4 +1,11 @@ -{ system ? builtins.currentSystem }: +{ system ? builtins.currentSystem +, pkgs ? import ../.. {} +, channelMap ? { + stable = pkgs.chromium; + beta = pkgs.chromiumBeta; + dev = pkgs.chromiumDev; + } +}: with import ../lib/testing.nix { inherit system; }; with pkgs.lib; @@ -160,8 +167,4 @@ mapAttrs (channel: chromiumPkg: makeTest rec { $machine->shutdown; ''; -}) { - stable = pkgs.chromium; - beta = pkgs.chromiumBeta; - dev = pkgs.chromiumDev; -} +}) channelMap From 16ed322928b30b39942054abb3b5d026ec1a3ec0 Mon Sep 17 00:00:00 2001 From: Aneesh Agrawal Date: Sun, 20 Mar 2016 17:26:09 -0400 Subject: [PATCH 361/678] htop: fix platforms attribute See comments at https://github.com/NixOS/nixpkgs/commit/57dd725e853b54c578e3b73f520756be3ff2359c. These values are already lists and need to be concatenated together instead of placed in another list. --- pkgs/tools/system/htop/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/system/htop/default.nix b/pkgs/tools/system/htop/default.nix index a9d15b317f9..46547aa45fd 100644 --- a/pkgs/tools/system/htop/default.nix +++ b/pkgs/tools/system/htop/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { description = "An interactive process viewer for Linux"; homepage = https://hisham.hm/htop/; license = licenses.gpl2Plus; - platforms = with platforms; [ linux freebsd openbsd darwin ]; + platforms = with platforms; linux ++ freebsd ++ openbsd ++ darwin; maintainers = with maintainers; [ rob simons relrod nckx ]; }; } From f3f8da4a5fe1a3e955dd38b68115de4cc6e6ff5e Mon Sep 17 00:00:00 2001 From: Ryan Artecona Date: Fri, 18 Mar 2016 02:49:38 -0400 Subject: [PATCH 362/678] libav: support Darwin & install docs/manpages --- pkgs/development/libraries/libav/default.nix | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/libav/default.nix b/pkgs/development/libraries/libav/default.nix index 23b1402e3e7..9611fdbb8d9 100644 --- a/pkgs/development/libraries/libav/default.nix +++ b/pkgs/development/libraries/libav/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, yasm, bzip2, zlib +{ stdenv, fetchurl, pkgconfig, yasm, bzip2, zlib, perl , mp3Support ? true, lame ? null , speexSupport ? true, speex ? null , theoraSupport ? true, libtheora ? null @@ -46,6 +46,7 @@ let "--enable-avplay" "--enable-shared" "--enable-runtime-cpudetect" + "--cc=cc" ] ++ optionals enableGPL [ "--enable-gpl" "--enable-swscale" ] ++ optional mp3Support "--enable-libmp3lame" @@ -62,6 +63,7 @@ let ; buildInputs = [ pkgconfig lame yasm zlib bzip2 SDL ] + ++ [ perl ] # for install-man target ++ optional mp3Support lame ++ optional speexSupport speex ++ optional theoraSupport libtheora @@ -79,10 +81,19 @@ let outputs = [ "out" "tools" ]; - # move avplay to get rid of the SDL dependency in the main output + # alltools to build smaller tools, incl. aviocat, ismindex, qt-faststart, etc. + buildFlags = "all alltools install-man"; + postInstall = '' + # move avplay to get rid of the SDL dependency in the main output mkdir -p "$tools/bin" mv "$out/bin/avplay" "$tools/bin" + + # alltools target compiles an executable in tools/ for every C + # source file in tools/, so move those to $out + for tool in $(find tools -type f -executable); do + mv "$tool" "$out/bin/" + done ''; doInstallCheck = false; # fails randomly @@ -105,10 +116,9 @@ let description = "A complete, cross-platform solution to record, convert and stream audio and video (fork of ffmpeg)"; license = with licenses; if enableUnfree then unfree #ToDo: redistributable or not? else if enableGPL then gpl2Plus else lgpl21Plus; - platforms = platforms.linux; + platforms = with platforms; linux ++ darwin; maintainers = [ maintainers.vcunat ]; }; }; # libavFun in result - From c1901038c804a2572b5e6a5d2a0c80360dcb67b1 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sun, 20 Mar 2016 22:57:48 +0100 Subject: [PATCH 363/678] haka: fix build on gcc5 See https://hydra.nixos.org/build/33296799/nixlog/1/raw --- pkgs/tools/security/haka/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/tools/security/haka/default.nix b/pkgs/tools/security/haka/default.nix index d040aaa6aea..8f856213e8c 100644 --- a/pkgs/tools/security/haka/default.nix +++ b/pkgs/tools/security/haka/default.nix @@ -13,6 +13,8 @@ stdenv.mkDerivation rec { sha1 = "87625ed32841cc0b3aa92aa49397ce71ce434bc2"; }; + NIX_CFLAGS_COMPILE = "-Wno-error"; + preConfigure = '' sed -i 's,/etc,'$out'/etc,' src/haka/haka.c sed -i 's,/etc,'$out'/etc,' src/haka/CMakeLists.txt From 5ebd629c6ff6ed00bcc3fff056dc9c2ed3dc848e Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 20 Mar 2016 23:10:13 +0100 Subject: [PATCH 364/678] chromium: Fix comment of upstream-info.nix As of 6041cfe, the upstream-info.nix (back then it was called sources.nix) is no longer in the source/ subdirectory, so we need to fix that comment to say that the file is autogenerated from update.sh in the *same* directory. Signed-off-by: aszlig --- .../applications/networking/browsers/chromium/upstream-info.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/browsers/chromium/upstream-info.nix b/pkgs/applications/networking/browsers/chromium/upstream-info.nix index c42488e9e1e..bcb5c3f2311 100644 --- a/pkgs/applications/networking/browsers/chromium/upstream-info.nix +++ b/pkgs/applications/networking/browsers/chromium/upstream-info.nix @@ -1,4 +1,4 @@ -# This file is autogenerated from update.sh in the parent directory. +# This file is autogenerated from update.sh in the same directory. { beta = { sha256 = "1lgpjnjhy3idha5b6wp31kdk6knic96dmajyrgn1701q3mq81g1i"; From d7a0a99f7fbcdb1af3bfc3dadf4fc04f6b6ece4f Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 20 Mar 2016 22:55:21 +0100 Subject: [PATCH 365/678] zpaq: 706 -> 707 Fixes v7.06 bug in creating multipart encrypted archives with incorrectly salted index. --- pkgs/tools/archivers/zpaq/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/archivers/zpaq/default.nix b/pkgs/tools/archivers/zpaq/default.nix index fe5dc54a27d..011793248cd 100644 --- a/pkgs/tools/archivers/zpaq/default.nix +++ b/pkgs/tools/archivers/zpaq/default.nix @@ -3,11 +3,11 @@ let s = # Generated upstream information rec { baseName="zpaq"; - version="706"; + version="707"; name="${baseName}-${version}"; - hash="0wn5hs02aac61rjbba3s6wibyk73f1mfcbqnf34hcpyj2gl5i59k"; - url="http://mattmahoney.net/dc/zpaq706.zip"; - sha256="0wn5hs02aac61rjbba3s6wibyk73f1mfcbqnf34hcpyj2gl5i59k"; + hash="0xbisphv318a33px47vriirdp2jhf99y6hx6gcbfhbhkaqpggjg3"; + url="http://mattmahoney.net/dc/zpaq707.zip"; + sha256="0xbisphv318a33px47vriirdp2jhf99y6hx6gcbfhbhkaqpggjg3"; }; in stdenv.mkDerivation { From a68545621315c96c6b9197d03ba177a3fe85cd62 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 20 Mar 2016 22:57:59 +0100 Subject: [PATCH 366/678] dropbear: 2016.72 -> 2016.73 Changes: https://matt.ucc.asn.au/dropbear/CHANGES. --- pkgs/tools/networking/dropbear/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/dropbear/default.nix b/pkgs/tools/networking/dropbear/default.nix index 1f3a09e63f9..586ae6b544e 100644 --- a/pkgs/tools/networking/dropbear/default.nix +++ b/pkgs/tools/networking/dropbear/default.nix @@ -2,11 +2,11 @@ sftpPath ? "/var/run/current-system/sw/libexec/sftp-server" }: stdenv.mkDerivation rec { - name = "dropbear-2016.72"; + name = "dropbear-2016.73"; src = fetchurl { url = "http://matt.ucc.asn.au/dropbear/releases/${name}.tar.bz2"; - sha256 = "10fnlaf6rm537v3rml1gnd58d42plv2q5cp7svbrysap69npc8wk"; + sha256 = "1mzg18jss1bsmcnn88zv7kv5yj01hzimndnd5636hfq9kgva8qaw"; }; dontDisableStatic = enableStatic; From e45c1aad669f1aa1556f947a87dc9b5b7109243e Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 20 Mar 2016 23:56:15 +0100 Subject: [PATCH 367/678] simple-scan: 3.19.92 -> 3.20.0 --- pkgs/applications/graphics/simple-scan/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/graphics/simple-scan/default.nix b/pkgs/applications/graphics/simple-scan/default.nix index 8eee5299a69..417d117d688 100644 --- a/pkgs/applications/graphics/simple-scan/default.nix +++ b/pkgs/applications/graphics/simple-scan/default.nix @@ -3,11 +3,11 @@ stdenv.mkDerivation rec { name = "simple-scan-${version}"; - version = "3.19.92"; + version = "3.20.0"; src = fetchurl { - sha256 = "1zz6y4cih1v0npxjfxvnqz3bz7i5aripdsfy0hg9mhr1f4r0ig19"; - url = "https://launchpad.net/simple-scan/3.19/${version}/+download/${name}.tar.xz"; + sha256 = "0b5ndrjwi7yipkr9bhyifpbdil65izdm677if23yj832n2jsbxcd"; + url = "https://launchpad.net/simple-scan/3.20/${version}/+download/${name}.tar.xz"; }; buildInputs = [ cairo colord glib gusb gtk3 libusb1 libxml2 sane-backends @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { configureFlags = [ "--disable-packagekit" ]; preBuild = '' - # Clean up stale .c files referencing packagekit headers as of 3.19.91: + # Clean up stale .c files referencing packagekit headers as of 3.20.0: make clean ''; From 9d629f52c8af151dc8f6ab4d5f347699bd1eea2a Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 21 Mar 2016 01:56:17 +0100 Subject: [PATCH 368/678] btrfs-progs: 4.4.1 -> 4.5 Changes: https://btrfs.wiki.kernel.org/index.php/Changelog#By_version_.28btrfs-progs.29 --- pkgs/tools/filesystems/btrfs-progs/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/filesystems/btrfs-progs/default.nix b/pkgs/tools/filesystems/btrfs-progs/default.nix index 3435a8c1432..59935af0a5d 100644 --- a/pkgs/tools/filesystems/btrfs-progs/default.nix +++ b/pkgs/tools/filesystems/btrfs-progs/default.nix @@ -2,14 +2,14 @@ , asciidoc, xmlto, docbook_xml_dtd_45, docbook_xsl, libxslt }: -let version = "4.4.1"; in +let version = "4.5"; in stdenv.mkDerivation rec { name = "btrfs-progs-${version}"; src = fetchurl { url = "mirror://kernel/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v${version}.tar.xz"; - sha256 = "1z5882zx9jx02vyg067siws0irsl8pg37myx17hr4imn9ypf6r4r"; + sha256 = "04d8w1wqaij6kxhxcirwvy1bkvc7aikkyw981ciwlznblzc16y7f"; }; buildInputs = [ @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { description = "Utilities for the btrfs filesystem"; homepage = https://btrfs.wiki.kernel.org/; license = licenses.gpl2; - maintainers = with maintainers; [ raskin wkennington ]; + maintainers = with maintainers; [ nckx raskin wkennington ]; platforms = platforms.linux; }; } From fb215f25d494086a7c422da4da44ebfe4be2ffd5 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Mon, 21 Mar 2016 01:13:28 +0000 Subject: [PATCH 369/678] goPackages: rename date to version --- pkgs/top-level/go-packages.nix | 208 ++++++++++++++++----------------- 1 file changed, 103 insertions(+), 105 deletions(-) diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 5ba499d3e39..ba70504732d 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -12,9 +12,9 @@ let inherit go buildGoPackage; - buildFromGitHub = { rev, date ? null, owner, repo, sha256, name ? repo, goPackagePath ? "github.com/${owner}/${repo}", ... }@args: buildGoPackage (args // { + buildFromGitHub = { rev, version ? null, owner, repo, sha256, name ? repo, goPackagePath ? "github.com/${owner}/${repo}", ... }@args: buildGoPackage (args // { inherit rev goPackagePath; - name = "${name}-${if date != null then date else if builtins.stringLength rev != 40 then rev else stdenv.lib.strings.substring 0 7 rev}"; + name = "${name}-${if version != null then version else if builtins.stringLength rev != 40 then rev else stdenv.lib.strings.substring 0 7 rev}"; src = fetchFromGitHub { inherit rev owner repo sha256; }; }); @@ -22,7 +22,7 @@ let crypto = buildFromGitHub { rev = "575fdbe86e5dd89229707ebec0575ce7d088a4a6"; - date = "2015-08-29"; + version = "2015-08-29"; owner = "golang"; repo = "crypto"; sha256 = "1kgv1mkw9y404pk3lcwbs0vgl133mwyp294i18jg9hp10s5d56xa"; @@ -35,7 +35,7 @@ let glog = buildFromGitHub { rev = "fca8c8854093a154ff1eb580aae10276ad6b1b5f"; - date = "2015-07-31"; + version = "2015-07-31"; owner = "golang"; repo = "glog"; sha256 = "1nr2q0vas0a2f395f4shjxqpas18mjsf8yhgndsav7svngpbbpg8"; @@ -43,7 +43,7 @@ let codesearch = buildFromGitHub { rev = "a45d81b686e85d01f2838439deaf72126ccd5a96"; - date = "2015-06-17"; + version = "2015-06-17"; owner = "google"; repo = "codesearch"; sha256 = "12bv3yz0l3bmsxbasfgv7scm9j719ch6pmlspv4bd4ix7wjpyhny"; @@ -51,7 +51,7 @@ let image = buildFromGitHub { rev = "8ab1ac6834edd43d91cbe24272897a87ce7e835e"; - date = "2015-08-23"; + version = "2015-08-23"; owner = "golang"; repo = "image"; sha256 = "1ckr7yh5dx2kbvp9mis7i090ss9qcz46sazrj9f2hw4jj5g3y7dr"; @@ -61,7 +61,7 @@ let net_go15 = buildFromGitHub { rev = "62ac18b461605b4be188bbc7300e9aa2bc836cd4"; - date = "2015-11-04"; + version = "2015-11-04"; owner = "golang"; repo = "net"; sha256 = "0lwwvbbwbf3yshxkfhn6z20gd45dkvnmw2ms36diiy34krgy402p"; @@ -77,7 +77,7 @@ let net_go14 = buildFromGitHub { rev = "ea47fc708ee3e20177f3ca3716217c4ab75942cb"; - date = "2015-08-29"; + version = "2015-08-29"; owner = "golang"; repo = "net"; sha256 = "0x1pmg97n7l62vak9qnjdjrrfl98jydhv6j0w3jkk4dycdlzn30d"; @@ -95,7 +95,7 @@ let oauth2 = buildFromGitHub { rev = "397fe7649477ff2e8ced8fc0b2696f781e53745a"; - date = "2015-06-23"; + version = "2015-06-23"; owner = "golang"; repo = "oauth2"; sha256 = "0fza0l7iwh6llkq2yzqn7dxi138vab0da64lnghfj1p71fprjzn8"; @@ -107,7 +107,7 @@ let protobuf = buildFromGitHub { rev = "59b73b37c1e45995477aae817e4a653c89a858db"; - date = "2015-08-23"; + version = "2015-08-23"; owner = "golang"; repo = "protobuf"; sha256 = "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa"; @@ -117,7 +117,7 @@ let snappy = buildFromGitHub { rev = "723cc1e459b8eea2dea4583200fd60757d40097a"; - date = "2015-07-21"; + version = "2015-07-21"; owner = "golang"; repo = "snappy"; sha256 = "0bprq0qb46f5511b5scrdqqzskqqi2z8b4yh3216rv0n1crx536h"; @@ -126,7 +126,7 @@ let sys = buildFromGitHub { rev = "d9157a9621b69ad1d8d77a1933590c416593f24f"; - date = "2015-02-01"; + version = "2015-02-01"; owner = "golang"; repo = "sys"; sha256 = "1asdbp7rj1j1m1aar1a022wpcwbml6zih6cpbxaw7b2m8v8is931"; @@ -138,7 +138,7 @@ let text = buildFromGitHub { rev = "5eb8d4684c4796dd36c74f6452f2c0fa6c79597e"; - date = "2015-08-27"; + version = "2015-08-27"; owner = "golang"; repo = "text"; sha256 = "1cjwm2pv42dbfqc6ylr7jmma902zg4gng5aarqrbjf1k2nf2vs14"; @@ -148,7 +148,7 @@ let tools = buildFromGitHub { rev = "b48dc8da98ae78c3d11f220e7d327304c84e623a"; - date = "2015-08-24"; + version = "2015-08-24"; owner = "golang"; repo = "tools"; sha256 = "187p3jjxrw2qjnzqwwrq7f9w10zh6vcnwnfl3q7ms8rbiffpjy5c"; @@ -197,7 +197,7 @@ let adapted = buildFromGitHub { rev = "eaea06aaff855227a71b1c58b18bc6de822e3e77"; - date = "2015-06-03"; + version = "2015-06-03"; owner = "michaelmacinnis"; repo = "adapted"; sha256 = "0f28sn5mj48087zhjdrph2sjcznff1i1lwnwplx32bc5ax8nx5xm"; @@ -340,7 +340,7 @@ let bleve = buildFromGitHub { rev = "fc34a97875840b2ae24517e7d746b69bdae9be90"; - date = "2016-01-19"; + version = "2016-01-19"; owner = "blevesearch"; repo = "bleve"; sha256 = "0ny7nvilrxmmzcdvpivwyrjkynnhc22c5gdrxzs421jly35jw8jx"; @@ -358,7 +358,7 @@ let bitset = buildFromGitHub { rev = "bb0da3785c4fe9d26f6029c77c8fce2aa4d0b291"; - date = "2016-01-13"; + version = "2016-01-13"; owner = "willf"; repo = "bitset"; sha256 = "1d4z2hjjs9jk6aysi4mf50p8lbbzag4ir4y1f0z4sz8gkwagh7b7"; @@ -541,7 +541,7 @@ let consul-alerts = buildFromGitHub { rev = "6eb4bc556d5f926dbf15d86170664d35d504ae54"; - date = "2015-08-09"; + version = "2015-08-09"; owner = "AcalephStorage"; repo = "consul-alerts"; sha256 = "191bmxix3nl4pr26hcdfxa9qpv5dzggjvi86h2slajgyd2rzn23b"; @@ -562,7 +562,7 @@ let consul-migrate = buildFromGitHub { rev = "678fb10cdeae25ab309e99e655148f0bf65f9710"; - date = "2015-05-19"; + version = "2015-05-19"; owner = "hashicorp"; repo = "consul-migrate"; sha256 = "18zqyzbc3pny700fnh4hi45i5mlsramqykikcr7lgyx7id6alf16"; @@ -632,7 +632,7 @@ let dbus-old-2015-05-19 = buildFromGitHub { rev = "a5942dec6340eb0d57f43f2003c190ce06e43dea"; - date = "2015-05-19"; + version = "2015-05-19"; owner = "godbus"; repo = "dbus"; sha256 = "1vk31wal7ncvjwvnb8q1myrkihv1np46f3q8dndi5k0csflbxxdf"; @@ -640,7 +640,7 @@ let dbus = buildFromGitHub { rev = "230e4b23db2fd81c53eaa0073f76659d4849ce51"; - date = "2016-03-02"; + version = "2016-03-02"; owner = "godbus"; repo = "dbus"; sha256 = "1wxv2cbihzcsz2z7iycyzl7f3arhhgagcc5kqln1k1mkm4l85z0q"; @@ -662,7 +662,7 @@ let dns = buildFromGitHub { rev = "e59f851c912767b1db587dcabee6e6652e495c75"; - date = "2015-07-22"; + version = "2015-07-22"; owner = "miekg"; repo = "dns"; sha256 = "1zcj4drmmskwvjy5ld54qd8a34ls9651ysl3q7c2bcambax5r0hp"; @@ -749,7 +749,7 @@ let du = buildFromGitHub { rev = "3c0690cca16228b97741327b1b6781397afbdb24"; - date = "2015-08-05"; + version = "2015-08-05"; owner = "calmh"; repo = "du"; sha256 = "1mv6mkbslfc8giv47kyl97ny0igb3l7jya5hc75sm54xi6g205wa"; @@ -861,7 +861,7 @@ let gawp = buildFromGitHub { rev = "488705639109de54d38974cc31353d34cc2cd609"; - date = "2015-08-31"; + version = "2015-08-31"; owner = "martingallagher"; repo = "gawp"; sha256 = "0iqqd63nqdijdskdb9f0jwnm6akkh1p2jw4p2w7r1dbaqz1znyay"; @@ -903,7 +903,7 @@ let gosexy.gettext = buildFromGitHub { rev = "4a979356fe964fec12e18326a32a89661f93dea7"; - date = "2016-02-20"; + version = "2016-02-20"; owner = "gosexy"; repo = "gettext"; sha256 = "07f3dmq4qsdykbn3fkha3v1w61hic6xw82dvdmvzhf0m41jxsgy6"; @@ -939,7 +939,7 @@ let }; git-lfs = buildFromGitHub { - date = "1.1.1"; # "date" is effectively "version" + version = "1.1.1"; rev = "v1.1.1"; owner = "github"; repo = "git-lfs"; @@ -1025,7 +1025,7 @@ let gocapability = buildFromGitHub { rev = "2c00daeb6c3b45114c80ac44119e7b8801fdd852"; - date = "2015-07-16"; + version = "2015-07-16"; owner = "syndtr"; repo = "gocapability"; sha256 = "1x7jdcg2r5pakjf20q7bdiidfmv7vcjiyg682186rkp2wz0yws0l"; @@ -1060,7 +1060,7 @@ let gocode = buildFromGitHub { rev = "680a0fbae5119fb0dbea5dca1d89e02747a80de0"; - date = "2015-09-03"; + version = "2015-09-03"; owner = "nsf"; repo = "gocode"; sha256 = "1ay2xakz4bcn8r3ylicbj753gjljvv4cj9l4wfly55cj1vjybjpv"; @@ -1139,7 +1139,7 @@ let govers = buildFromGitHub { rev = "3b5f175f65d601d06f48d78fcbdb0add633565b9"; - date = "2015-01-09"; + version = "2015-01-09"; owner = "rogpeppe"; repo = "govers"; sha256 = "0din5a7nff6hpc4wg0yad2nwbgy4q1qaazxl8ni49lkkr4hyp8pc"; @@ -1162,7 +1162,7 @@ let golang_protobuf_extensions = buildFromGitHub { rev = "fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a"; - date = "2015-04-06"; + version = "2015-04-06"; owner = "matttproud"; repo = "golang_protobuf_extensions"; sha256 = "0ajg41h6402big484drvm72wvid1af2sffw0qkzbmpy04lq68ahj"; @@ -1171,7 +1171,7 @@ let goleveldb = buildFromGitHub { rev = "1a9d62f03ea92815b46fcaab357cfd4df264b1a0"; - date = "2015-08-19"; + version = "2015-08-19"; owner = "syndtr"; repo = "goleveldb"; sha256 = "04ywbif36fiah4fw0x2abr5q3p4fdhi6q57d5icc2mz03q889vhb"; @@ -1209,7 +1209,7 @@ let google-api-go-client = buildFromGitHub { rev = "a5c3e2a4792aff40e59840d9ecdff0542a202a80"; - date = "2015-08-19"; + version = "2015-08-19"; owner = "google"; repo = "google-api-go-client"; sha256 = "1kigddnbyrl9ddpj5rs8njvf1ck54ipi4q1282k0d6b3am5qfbj8"; @@ -1258,7 +1258,7 @@ let goproxy = buildFromGitHub { rev = "2624781dc373cecd1136cafdaaaeba6c9bb90e96"; - date = "2015-07-26"; + version = "2015-07-26"; owner = "elazarl"; repo = "goproxy"; sha256 = "1zz425y8byjaa9i7mslc9anz9w2jc093fjl0562rmm5hh4rc5x5f"; @@ -1267,7 +1267,7 @@ let goreq = buildFromGitHub { rev = "72c51a544272e007ab3da4f7d9ac959b7af7af03"; - date = "2015-08-18"; + version = "2015-08-18"; owner = "franela"; repo = "goreq"; sha256 = "0dnqbijdzp2dgsf6m934nadixqbv73q0zkqglaa956zzw0pyhcxp"; @@ -1275,7 +1275,7 @@ let gotags = buildFromGitHub { rev = "be986a34e20634775ac73e11a5b55916085c48e7"; - date = "2015-08-03"; + version = "2015-08-03"; owner = "jstemmer"; repo = "gotags"; sha256 = "071wyq90b06xlb3bb0l4qjz1gf4nnci4bcngiddfcxf2l41w1vja"; @@ -1303,7 +1303,7 @@ let gozim = buildFromGitHub { rev = "ea9b7c39cb1d13bd8bf19ba4dc4e2a16bab52f14"; - date = "2016-01-15"; + version = "2016-01-15"; owner = "akhenakh"; repo = "gozim"; sha256 = "1n50fdd56r3s1sgjbpa72nvdh50gfpf6fq55c077w2p3bxn6p8k6"; @@ -1387,8 +1387,7 @@ let owner = "elazarl"; repo = "go-bindata-assetfs"; sha256 = "636ce247ff6f85c14f38a421f46662fa77bdc29762692e1f72b3cd1f9d7a1d17"; - - date = "2015-08-13"; + version = "2015-08-13"; meta = with stdenv.lib; { description = "Serves embedded files from jteeuwen/go-bindata with net/http"; @@ -1424,7 +1423,7 @@ let go-charset = buildFromGitHub { rev = "61cdee49014dc952076b5852ce4707137eb36b64"; - date = "2014-07-13"; + version = "2014-07-13"; owner = "paulrosania"; repo = "go-charset"; sha256 = "0jp6rwxlgl66dipk6ssk8ly55jxncvsxs7jc3abgdrhr3rzccab8"; @@ -1480,7 +1479,7 @@ let go-fuse = buildFromGitHub rec { rev = "324ea173d0a4d90e0e97c464a6ad33f80c9587a8"; - date = "2015-07-27"; + version = "2015-07-27"; owner = "hanwen"; repo = "go-fuse"; sha256 = "0r5amgnpb4g7b6kpz42vnj01w515by4yhy64s5lqf3snzjygaycf"; @@ -1526,7 +1525,7 @@ let go-hostpool = buildFromGitHub { rev = "d0e59c22a56e8dadfed24f74f452cea5a52722d2"; - date = "2015-03-31"; + version = "2015-03-31"; owner = "bitly"; repo = "go-hostpool"; sha256 = "14ph12krn5zlg00vh9g6g08lkfjxnpw46nzadrfb718yl1hgyk3g"; @@ -1548,7 +1547,7 @@ let go-incremental = buildFromGitHub { rev = "92fd0ce4a694213e8b3dfd2d39b16e51d26d0fbf"; - date = "2015-02-20"; + version = "2015-02-20"; owner = "GeertJohan"; repo = "go.incremental"; sha256 = "160cspmq73bk6cvisa6kq1dwrrp1yqpkrpq8dl69wcnaf91cbnml"; @@ -1563,7 +1562,7 @@ let go-liblzma = buildFromGitHub { rev = "e74be71c3c60411922b5424e875d7692ea638b78"; - date = "2016-01-01"; + version = "2016-01-01"; owner = "remyoudompheng"; repo = "go-liblzma"; sha256 = "12lwjmdcv2l98097rhvjvd2yz8jl741hxcg29i1c18grwmwxa7nf"; @@ -1587,7 +1586,7 @@ let go-lxc = buildFromGitHub { rev = "d89df0ad9dc13a7ce491eedaa771b076cf32db16"; - date = "2016-02-12"; + version = "2016-02-12"; owner = "lxc"; repo = "go-lxc"; sha256 = "051kqvvclfcinqcbi4zch694llvnxa5vvbw6cbdxbkzhr5zxm36q"; @@ -1605,7 +1604,7 @@ let rcrowley.go-metrics = buildFromGitHub { rev = "1ce93efbc8f9c568886b2ef85ce305b2217b3de3"; - date = "2015-08-22"; + version = "2015-08-22"; owner = "rcrowley"; repo = "go-metrics"; sha256 = "06gg72krlmd0z3zdq6s716blrga95pyj8dc2f2psfbknbkyrkfqa"; @@ -1662,7 +1661,7 @@ let go-options = buildFromGitHub { rev = "7c174072188d0cfbe6f01bb457626abb22bdff52"; - date = "2014-12-20"; + version = "2014-12-20"; owner = "mreiferson"; repo = "go-options"; sha256 = "0ksyi2cb4k6r2fxamljg42qbz5hdcb9kv5i7y6cx4ajjy0xznwgm"; @@ -1670,7 +1669,7 @@ let go-porterstemmer = buildFromGitHub { rev = "23a2c8e5cf1f380f27722c6d2ae8896431dc7d0e"; - date = "2014-12-30"; + version = "2014-12-30"; owner = "blevesearch"; repo = "go-porterstemmer"; sha256 = "0rcfbrad79xd114h3dhy5d3zs3b5bcgqwm3h5ih1lk69zr9wi91d"; @@ -1704,7 +1703,7 @@ let mattn.go-runewidth = buildFromGitHub { rev = "d6bea18f789704b5f83375793155289da36a3c7f"; - date = "2016-03-15"; + version = "2016-03-15"; owner = "mattn"; repo = "go-runewidth"; sha256 = "1hnigpn7rjbwd1ircxkyx9hvi0xmxr32b2jdy2jzw6b3jmcnz1fs"; @@ -1731,7 +1730,7 @@ let go-repo-root = buildFromGitHub { rev = "90041e5c7dc634651549f96814a452f4e0e680f9"; - date = "2014-09-11"; + version = "2014-09-11"; owner = "cstrahan"; repo = "go-repo-root"; sha256 = "1rlzp8kjv0a3dnfhyqcggny0ad648j5csr2x0siq5prahlp48mg4"; @@ -1740,7 +1739,7 @@ let go-rice = buildFromGitHub { rev = "4f3c5af2322e393f305d9674845bc36cd1dea589"; - date = "2016-01-04"; + version = "2016-01-04"; owner = "GeertJohan"; repo = "go.rice"; sha256 = "01q2d5iwibwdl68gn8sg6dm7byc42hax3zmiqgmdw63ir1fsv4ag"; @@ -1757,7 +1756,7 @@ let go-sct = buildFromGitHub { rev = "b82c2f81727357c45a47a43965c50ed5da5a2e74"; - date = "2016-01-11"; + version = "2016-01-11"; owner = "d4l3k"; repo = "go-sct"; sha256 = "13hgmpv2c8ll5ap8fn1n480bdv1j21n86jjwcssd36kh2i933anl"; @@ -1772,7 +1771,7 @@ let go-simplejson = buildFromGitHub { rev = "18db6e68d8fd9cbf2e8ebe4c81a78b96fd9bf05a"; - date = "2015-03-31"; + version = "2015-03-31"; owner = "bitly"; repo = "go-simplejson"; sha256 = "0lj9cxyncchlw6p35j0yym5q5waiz0giw6ri41qdwm8y3dghwwiy"; @@ -1780,7 +1779,7 @@ let go-snappystream = buildFromGitHub { rev = "028eae7ab5c4c9e2d1cb4c4ca1e53259bbe7e504"; - date = "2015-04-16"; + version = "2015-04-16"; owner = "mreiferson"; repo = "go-snappystream"; sha256 = "0jdd5whp74nvg35d9hzydsi3shnb1vrnd7shi9qz4wxap7gcrid6"; @@ -1788,7 +1787,7 @@ let go-spew = buildFromGitHub { rev = "5215b55f46b2b919f50a1df0eaa5886afe4e3b3d"; - date = "2015-11-05"; + version = "2015-11-05"; owner = "davecgh"; repo = "go-spew"; sha256 = "15h9kl73rdbzlfmsdxp13jja5gs7sknvqkpq2qizq3qv3nr1x8dk"; @@ -1796,7 +1795,7 @@ let go-sqlite3 = buildFromGitHub { rev = "b4142c444a8941d0d92b0b7103a24df9cd815e42"; - date = "2015-07-29"; + version = "2015-07-29"; owner = "mattn"; repo = "go-sqlite3"; sha256 = "0xq2y4am8dz9w9aaq24s1npg1sn8pf2gn4nki73ylz2fpjwq9vla"; @@ -1811,7 +1810,7 @@ let go-systemd = buildFromGitHub { rev = "7b2428fec40033549c68f54e26e89e7ca9a9ce31"; - date = "2016-03-10"; + version = "2016-03-10"; owner = "coreos"; repo = "go-systemd"; sha256 = "0kfbxvm9zsjgvgmiq2jl807y4s5z0rya65rm399llr5rr7vz1lxd"; @@ -1830,7 +1829,7 @@ let go-uuid = buildFromGitHub { rev = "6b8e5b55d20d01ad47ecfe98e5171688397c61e9"; - date = "2015-07-22"; + version = "2015-07-22"; owner = "satori"; repo = "go.uuid"; sha256 = "0injxzds41v8nc0brvyrrjl66fk3hycz6im38s5r9ccbwlp68p44"; @@ -1845,7 +1844,7 @@ let go-zipexe = buildFromGitHub { rev = "a5fe2436ffcb3236e175e5149162b41cd28bd27d"; - date = "2015-03-29"; + version = "2015-03-29"; owner = "daaku"; repo = "go.zipexe"; sha256 = "0vi5pskhifb6zw78w2j97qbhs09zmrlk4b48mybgk5b3sswp6510"; @@ -1853,7 +1852,7 @@ let go-zookeeper = buildFromGitHub { rev = "5bb5cfc093ad18a28148c578f8632cfdb4d802e4"; - date = "2015-06-02"; + version = "2015-06-02"; owner = "samuel"; repo = "go-zookeeper"; sha256 = "1kpx1ymh7rds0b2km291idnyqi0zck74nd8hnk72crgz7wmpqv6z"; @@ -1861,7 +1860,7 @@ let lint = buildFromGitHub { rev = "7b7f4364ff76043e6c3610281525fabc0d90f0e4"; - date = "2015-06-23"; + version = "2015-06-23"; owner = "golang"; repo = "lint"; sha256 = "1bj7zv534hyh87bp2vsbhp94qijc5nixb06li1dzfz9n0wcmlqw9"; @@ -1894,7 +1893,7 @@ let grpc = buildFromGitHub { rev = "d455e65570c07e6ee7f23275063fbf34660ea616"; - date = "2015-08-29"; + version = "2015-08-29"; owner = "grpc"; repo = "grpc-go"; sha256 = "08vra95hc8ihnj353680zhiqrv3ssw5yywkrifzb1zwl0l3cs2hr"; @@ -1906,7 +1905,7 @@ let gtreap = buildFromGitHub { rev = "0abe01ef9be25c4aedc174758ec2d917314d6d70"; - date = "2015-08-07"; + version = "2015-08-07"; owner = "steveyen"; repo = "gtreap"; sha256 = "03z5j8myrpmd0jk834l318xnyfm0n4rg15yq0d35y7j1aqx26gvk"; @@ -2006,7 +2005,7 @@ let httprouter = buildFromGitHub { rev = "6aacfd5ab513e34f7e64ea9627ab9670371b34e7"; - date = "2015-07-08"; + version = "2015-07-08"; owner = "julienschmidt"; repo = "httprouter"; sha256 = "00rrjysmq898qcrf2hfwfh9s70vwvmjx2kp5w03nz1krxa4zhrkl"; @@ -2026,7 +2025,7 @@ let i3cat = buildFromGitHub { rev = "b9ba886a7c769994ccd8d4627978ef4b51fcf576"; - date = "2015-03-21"; + version = "2015-03-21"; owner = "vincent-petithory"; repo = "i3cat"; sha256 = "1xlm5c9ajdb71985nq7hcsaraq2z06przbl6r4ykvzi8w2lwgv72"; @@ -2088,7 +2087,7 @@ let ipfs = buildFromGitHub{ rev = "7070b4d878baad57dcc8da80080dd293aa46cabd"; - date = "2016-01-12"; + version = "2016-01-12"; owner = "ipfs"; repo = "go-ipfs"; sha256 = "1b7aimnbz287fy7p27v3qdxnz514r5142v3jihqxanbk9g384gcd"; @@ -2122,7 +2121,7 @@ let kagome = buildFromGitHub { rev = "1bbdbdd590e13a8c2f4508c67a079113cd7b9f51"; - date = "2016-01-19"; + version = "2016-01-19"; owner = "ikawaha"; repo = "kagome"; sha256 = "1isnjdkn9hnrkp5g37p2k5bbsrx0ma32v3icwlmwwyc5mppa4blb"; @@ -2213,7 +2212,7 @@ let logger = buildFromGitHub { rev = "c96f6a1a8c7b6bf2f4860c667867d90174799eb2"; - date = "2015-05-23"; + version = "2015-05-23"; owner = "calmh"; repo = "logger"; sha256 = "1f67xbvvf210g5cqa84l12s00ynfbkjinhl8y6m88yrdb025v1vg"; @@ -2236,7 +2235,7 @@ let luhn = buildFromGitHub { rev = "0c8388ff95fa92d4094011e5a04fc99dea3d1632"; - date = "2015-01-13"; + version = "2015-01-13"; owner = "calmh"; repo = "luhn"; sha256 = "1hfj1lx7wdpifn16zqrl4xml6cj5gxbn6hfz1f46g2a6bdf0gcvs"; @@ -2434,7 +2433,7 @@ let mtpfs = buildFromGitHub { rev = "3ef47f91c38cf1da3e965e37debfc81738e9cd94"; - date = "2015-08-01"; + version = "2015-08-01"; owner = "hanwen"; repo = "go-mtpfs"; sha256 = "1f7lcialkpkwk01f7yxw77qln291sqjkspb09mh0yacmrhl231g8"; @@ -2444,7 +2443,7 @@ let mux = buildFromGitHub { rev = "5a8a0400500543e28b2886a8c52d21a435815411"; - date = "2015-08-05"; + version = "2015-08-05"; owner = "gorilla"; repo = "mux"; sha256 = "15w1bw14vx157r6v98fhy831ilnbzdsm5xzvs23j8hw6gnknzaw1"; @@ -2593,7 +2592,7 @@ let oh = buildFromGitHub { rev = "f54be52450a07398a2f605222eb22e69bb34f565"; - date = "2016-03-02"; + version = "2016-03-02"; owner = "michaelmacinnis"; repo = "oh"; sha256 = "0gczqi9aw6sv7vmjdandxmaz1m6pfzchmbkf12qmpmc6dmh2wy6b"; @@ -2631,7 +2630,7 @@ let opsgenie-go-sdk = buildFromGitHub { rev = "c6e1235dfed2126eb9b562c4d776baf55ccd23e3"; - date = "2015-08-24"; + version = "2015-08-24"; owner = "opsgenie"; repo = "opsgenie-go-sdk"; sha256 = "1prvnjiqmhnp9cggp9f6882yckix2laqik35fcj32117ry26p4jm"; @@ -2687,7 +2686,7 @@ let }; perks = buildFromGitHub rec { - date = "2014-07-16"; + version = "2014-07-16"; owner = "bmizerany"; repo = "perks"; rev = "d9a9656a3a4b1c2864fdb44db2ef8619772d92aa"; @@ -2695,7 +2694,7 @@ let }; beorn7.perks = buildFromGitHub rec { - date = "2015-02-23"; + version = "2015-02-23"; owner = "beorn7"; repo = "perks"; rev = "b965b613227fddccbfffe13eae360ed3fa822f8d"; @@ -2703,9 +2702,9 @@ let }; pflag = buildGoPackage rec { - date = "20131112"; + version = "20131112"; rev = "94e98a55fb412fcbcfc302555cb990f5e1590627"; - name = "pflag-${date}-${stdenv.lib.strings.substring 0 7 rev}"; + name = "pflag-${version}-${stdenv.lib.strings.substring 0 7 rev}"; goPackagePath = "github.com/spf13/pflag"; src = fetchgit { inherit rev; @@ -2745,7 +2744,7 @@ let pongo2 = buildFromGitHub { rev = "5e81b817a0c48c1c57cdf1a9056cf76bdee02ca9"; - date = "2014-10-27"; + version = "2014-10-27"; owner = "flosch"; repo = "pongo2"; sha256 = "0fd7d79644zmcirsb1gvhmh0l5vb5nyxmkzkvqpmzzcg6yfczph8"; @@ -2862,7 +2861,7 @@ let prometheus.client_model = buildFromGitHub { rev = "fa8ad6fec33561be4280a8f0514318c79d7f6cb6"; - date = "2015-02-12"; + version = "2015-02-12"; owner = "prometheus"; repo = "client_model"; sha256 = "11a7v1fjzhhwsl128znjcf5v7v6129xjgkdpym2lial4lac1dhm9"; @@ -2901,7 +2900,7 @@ let prometheus.log = buildFromGitHub { rev = "439e5db48fbb50ebbaf2c816030473a62f505f55"; - date = "2015-05-29"; + version = "2015-05-29"; owner = "prometheus"; repo = "log"; sha256 = "1fl23gsw2hn3c1y91qckr661sybqcw2gqnd1gllxn3hp6p2w6hxv"; @@ -2940,7 +2939,7 @@ let prometheus.nginx-exporter = buildFromGitHub { rev = "2cf16441591f6b6e58a8c0439dcaf344057aea2b"; - date = "2015-06-01"; + version = "2015-06-01"; owner = "discordianfish"; repo = "nginx_exporter"; sha256 = "0p9j0bbr2lr734980x2p8d67lcify21glwc5k3i3j4ri4vadpxvc"; @@ -2982,7 +2981,7 @@ let prometheus.procfs = buildFromGitHub { rev = "c91d8eefde16bd047416409eb56353ea84a186e4"; - date = "2015-06-16"; + version = "2015-06-16"; owner = "prometheus"; repo = "procfs"; sha256 = "0pj3gzw9b58l72w0rkpn03ayssglmqfmyxghhfad6mh0b49dvj3r"; @@ -3209,7 +3208,7 @@ let ratelimit = buildFromGitHub { rev = "772f5c38e468398c4511514f4f6aa9a4185bc0a0"; - date = "2015-06-19"; + version = "2015-06-19"; owner = "juju"; repo = "ratelimit"; sha256 = "02rs61ay6sq499lxxszjsrxp33m6zklds1xrmnr5fk73vpqfa28p"; @@ -3224,7 +3223,7 @@ let raven-go = buildFromGitHub { rev = "74c334d7b8aaa4fd1b4fc6aa428c36fed1699e28"; - date = "2015-07-21"; + version = "2015-07-21"; owner = "getsentry"; repo = "raven-go"; sha256 = "1356a7h8zp1mcywnr0y83w0h4qdblp65rcf9slbx667n8x2rzda8"; @@ -3273,7 +3272,7 @@ let restic = buildFromGitHub { rev = "4d7e802c44369b40177cd52938bc5b0930bd2be1"; - date = "2016-01-17"; + version = "2016-01-17"; owner = "restic"; repo = "restic"; sha256 = "0lf40539dy2xa5l1xy1kyn1vk3w0fmapa1h65ciksrdhn89ilrxv"; @@ -3297,7 +3296,7 @@ let rsrc = buildFromGitHub { rev = "ba14da1f827188454a4591717fff29999010887f"; - date = "2015-11-03"; + version = "2015-11-03"; owner = "akavel"; repo = "rsrc"; sha256 = "0g9fj10xnxcv034c8hpcgbhswv6as0d8l176c5nfgh1lh6klmmzc"; @@ -3344,7 +3343,7 @@ let seelog = buildFromGitHub { rev = "c510775bb50d98213cfafca75a4bc5e3fddc8d8f"; - date = "2015-05-26"; + version = "2015-05-26"; owner = "cihub"; repo = "seelog"; sha256 = "1f0rwgqlffv1a7b05736a4gf4l9dn80wsfyqcnz6qd2skhwnzv29"; @@ -3352,7 +3351,7 @@ let segment = buildFromGitHub { rev = "db70c57796cc8c310613541dfade3dce627d09c7"; - date = "2016-01-05"; + version = "2016-01-05"; owner = "blevesearch"; repo = "segment"; sha256 = "09xfdlcc6bsrr5grxp6fgnw9p4cf6jc0wwa9049fd1l0zmhj2m1g"; @@ -3360,7 +3359,7 @@ let semver = buildFromGitHub { rev = "31b736133b98f26d5e078ec9eb591666edfd091f"; - date = "2015-07-20"; + version = "2015-07-20"; owner = "blang"; repo = "semver"; sha256 = "19ifi0na4cj23q3h8xv89mx7p48y0ciymhmlrq9milm0xz80wk10"; @@ -3368,7 +3367,7 @@ let serf = buildFromGitHub { rev = "668982d8f90f5eff4a766583c1286393c1d27f68"; - date = "2015-05-15"; + version = "2015-05-15"; owner = "hashicorp"; repo = "serf"; sha256 = "1h05h5xhaj27r1mh5zshnykax29lqjhfc0bx4v9swiwb873c24qk"; @@ -3467,7 +3466,7 @@ let structfield = buildFromGitHub { rev = "01a738558a47fbf16712994d1737fb31c77e7d11"; - date = "2014-08-01"; + version = "2014-08-01"; owner = "vincent-petithory"; repo = "structfield"; sha256 = "1kyx71z13mf6hc8ly0j0b9zblgvj5lzzvgnc3fqh61wgxrsw24dw"; @@ -3541,7 +3540,7 @@ let syncthing-protocol011 = buildFromGitHub { rev = "84365882de255d2204d0eeda8dee288082a27f98"; - date = "2015-08-28"; + version = "2015-08-28"; owner = "syncthing"; repo = "protocol"; sha256 = "07xjs43lpd51pc339f8x487yhs39riysj3ifbjxsx329kljbflwx"; @@ -3550,7 +3549,7 @@ let tablewriter = buildFromGitHub { rev = "cca8bbc0798408af109aaaa239cbd2634846b340"; - date = "2016-01-15"; + version = "2016-01-15"; owner = "olekukonko"; repo = "tablewriter"; sha256 = "0f9ph3z7lh6p6gihbl1461j9yq5qiaqxr9mzdkp512n18v89ml48"; @@ -3611,7 +3610,7 @@ let timer_metrics = buildFromGitHub { rev = "afad1794bb13e2a094720aeb27c088aa64564895"; - date = "2015-02-02"; + version = "2015-02-02"; owner = "bitly"; repo = "timer_metrics"; sha256 = "1b717vkwj63qb5kan4b92kx4rg6253l5mdb3lxpxrspy56a6rl0c"; @@ -3628,7 +3627,7 @@ let toml = buildFromGitHub { rev = "056c9bc7be7190eaa7715723883caffa5f8fa3e4"; - date = "2015-05-01"; + version = "2015-05-01"; owner = "BurntSushi"; repo = "toml"; sha256 = "0gkgkw04ndr5y7hrdy0r4v2drs5srwfcw2bs1gyas066hwl84xyw"; @@ -3658,7 +3657,7 @@ let usb = buildFromGitHub rec { rev = "69aee4530ac705cec7c5344418d982aaf15cf0b1"; - date = "2014-12-17"; + version = "2014-12-17"; owner = "hanwen"; repo = "usb"; sha256 = "01k0c2g395j65vm1w37mmrfkg6nm900khjrrizzpmx8f8yf20dky"; @@ -3669,7 +3668,7 @@ let uuid = buildFromGitHub { rev = "cccd189d45f7ac3368a0d127efb7f4d08ae0b655"; - date = "2015-08-24"; + version = "2015-08-24"; owner = "pborman"; repo = "uuid"; sha256 = "0hswk9ihv3js5blp9pk2bpig64zkmyp5p1zhmgydfhb0dr2w8iad"; @@ -3739,7 +3738,7 @@ let xmpp-client = buildFromGitHub { rev = "525bd26cf5f56ec5aee99464714fd1d019c119ff"; - date = "2016-01-10"; + version = "2016-01-10"; owner = "agl"; repo = "xmpp-client"; sha256 = "0a1r08zs723ikcskmn6ylkdi3frcd0i0lkx30i9q39ilf734v253"; @@ -3768,7 +3767,7 @@ let yaml-v2 = buildFromGitHub { rev = "7ad95dd0798a40da1ccdff6dff35fd177b5edf40"; - date = "2015-06-24"; + version = "2015-06-24"; owner = "go-yaml"; repo = "yaml"; sha256 = "0d4jh46jq2yjg5dp00l7yl9ilhly7k4mfvi4harafd5ap5k9wnpb"; @@ -3784,7 +3783,7 @@ let xdr = buildFromGitHub { rev = "e467b5aeb65ca8516fb3925c84991bf1d7cc935e"; - date = "2015-04-08"; + version = "2015-04-08"; owner = "calmh"; repo = "xdr"; sha256 = "1bi4b2xkjzcr0vq1wxz14i9943k71sj092dam0gdmr9yvdrg0nra"; @@ -3799,7 +3798,7 @@ let ninefans = buildFromGitHub { rev = "65b8cf069318223b1e722b4b36e729e5e9bb9eab"; - date = "2015-10-24"; + version = "2015-10-24"; owner = "9fans"; repo = "go"; sha256 = "0kzyxhs2xf0339nlnbm9gc365b2svyyjxnr86rphx5m072r32ims"; @@ -3813,7 +3812,7 @@ let godef = buildFromGitHub { rev = "ea14e800fd7d16918be88dae9f0195f7bd688586"; - date = "2015-10-24"; + version = "2015-10-24"; owner = "rogpeppe"; repo = "godef"; sha256 = "1wkvsz8nqwyp36wbm8vcw4449sfs46894nskrfj9qbsrjijvamyc"; @@ -3824,7 +3823,7 @@ let godep = buildFromGitHub { rev = "5598a9815350896a2cdf9f4f1d0a3003ab9677fb"; - date = "2015-10-15"; + version = "2015-10-15"; owner = "tools"; repo = "godep"; sha256 = "0zc1ah5cvaqa3zw0ska89a40x445vwl1ixz8v42xi3zicx16ibwz"; @@ -3939,7 +3938,7 @@ let godotenv = buildFromGitHub rec { rev = "4ed13390c0acd2ff4e371e64d8b97c8954138243"; - date = "2015-09-07"; + version = "2015-09-07"; owner = "joho"; repo = "godotenv"; sha256 = "1wzgws4dnlavi14aw3jzdl3mdr348skgqaq8xx4j8l68irfqyh0p"; @@ -3949,7 +3948,6 @@ let goreman = buildFromGitHub rec { version = "0.0.8-rc0"; rev = "d3e62509ccf23e47a390447886c51b1d89d0934b"; - date = "2016-01-30"; owner = "mattn"; repo = "goreman"; sha256 = "153hf4dq4jh1yv35pv30idmxhc917qzl590qy5394l48d4rapgb5"; @@ -3964,7 +3962,7 @@ let # ''; upower-notify = buildFromGitHub rec { rev = "14c581e683a7e90ec9fa6d409413c16599a5323c"; - date = "2016-03-10"; + version = "2016-03-10"; owner = "omeid"; repo = "upower-notify"; sha256 = "16zlvn53p9m10ph8n9gps51fkkvl6sf4afdzni6azk05j0ng49jw"; From 4d0d1124ae8552ed09feeebbaa39cdbcce6b6a7c Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Mon, 21 Mar 2016 03:05:59 +0100 Subject: [PATCH 370/678] lxc: 1.1.4 -> 1.1.5 --- pkgs/os-specific/linux/lxc/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/lxc/default.nix b/pkgs/os-specific/linux/lxc/default.nix index 43a77f4c828..2bc9f7eaeeb 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 = "1.1.4"; + version = "1.1.5"; src = fetchurl { url = "https://linuxcontainers.org/downloads/lxc/lxc-${version}.tar.gz"; - sha256 = "1p75ff4lnkm7hq26zq09nqbdypl508csk0ix024l7j8v02i2w1wg"; + sha256 = "1gnhgs4i2zamfdydj895inr9i072658wd47nf1ryw5710hdsv24m"; }; nativeBuildInputs = [ @@ -79,6 +79,6 @@ stdenv.mkDerivation rec { ''; platforms = platforms.linux; - maintainers = with maintainers; [ simons wkennington globin ]; + maintainers = with maintainers; [ simons wkennington globin fpletz ]; }; } From b33453bd9871102d136a7f422690732bb8aedac6 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Mon, 21 Mar 2016 03:06:19 +0100 Subject: [PATCH 371/678] lxc: Add patch to fix bash completion Fixes #9616. --- pkgs/os-specific/linux/lxc/default.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/lxc/default.nix b/pkgs/os-specific/linux/lxc/default.nix index 2bc9f7eaeeb..fcfe4975fd7 100644 --- a/pkgs/os-specific/linux/lxc/default.nix +++ b/pkgs/os-specific/linux/lxc/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, autoreconfHook, pkgconfig, perl, docbook2x +{ stdenv, fetchurl, fetchpatch, autoreconfHook, pkgconfig, perl, docbook2x , docbook_xml_dtd_45, python3Packages # Optional Dependencies @@ -27,7 +27,13 @@ stdenv.mkDerivation rec { python3Packages.python systemd ]; - patches = [ ./support-db2x.patch ]; + patches = [ + ./support-db2x.patch + (fetchpatch { + url = "https://github.com/lxc/lxc/commit/3db8dd39a797f87f8b348f1b6b44953a25f3f170.patch"; + sha256 = "0scbzm9dqqhqsl0ri8da8a34r4qj9ph0cg68l9s7gw01vpvqbs8l"; + }) + ]; XML_CATALOG_FILES = "${docbook_xml_dtd_45}/xml/dtd/docbook/catalog.xml"; From e047d792796165c369ea2640e997e641b4908146 Mon Sep 17 00:00:00 2001 From: aszlig Date: Mon, 21 Mar 2016 03:50:38 +0100 Subject: [PATCH 372/678] nixos/tests/chromium: Propagate "system" to pkgs Assigning the channelMap by the function attrset argument at the top-level of the test expression file may reference a different architecture than we need for the tests. So if we get the pkgs attribute by auto-calling, this will lead to test failure because we have a different architecture for the test than for the browser. Signed-off-by: aszlig --- nixos/tests/chromium.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/chromium.nix b/nixos/tests/chromium.nix index dfa65ab7391..9a6414f81c3 100644 --- a/nixos/tests/chromium.nix +++ b/nixos/tests/chromium.nix @@ -1,5 +1,5 @@ { system ? builtins.currentSystem -, pkgs ? import ../.. {} +, pkgs ? import ../.. { inherit system; } , channelMap ? { stable = pkgs.chromium; beta = pkgs.chromiumBeta; From 404a699a20809400360ee21f76f9ce7f4f245a5a Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Mon, 21 Mar 2016 03:53:21 +0100 Subject: [PATCH 373/678] bind: 9.10.3 -> 9.10.3-P4 (security) Fixes: * CVE-2016-1285: https://kb.isc.org/article/AA-01352/ * CVE-2016-1286: https://kb.isc.org/article/AA-01353/ --- pkgs/servers/dns/bind/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/dns/bind/default.nix b/pkgs/servers/dns/bind/default.nix index a6933653e60..61ca93184dd 100644 --- a/pkgs/servers/dns/bind/default.nix +++ b/pkgs/servers/dns/bind/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, openssl, libtool, perl, libxml2 }: -let version = "9.10.3"; in +let version = "9.10.3-P4"; in stdenv.mkDerivation rec { name = "bind-${version}"; src = fetchurl { url = "http://ftp.isc.org/isc/bind9/${version}/${name}.tar.gz"; - sha256 = "1w4gp4hdkb452nmz91l413d1rx89isl2l6wv8kpbdd2afpc3phws"; + sha256 = "0giys46ifypysf799w9v58kbaz1v3fbdzw3s212znifzzfsl9h1a"; }; patches = [ ./libressl.patch ./remove-mkdir-var.patch ]; From 1662881740fbad540f277f69e783ac534d8df436 Mon Sep 17 00:00:00 2001 From: Ryan Artecona Date: Fri, 18 Mar 2016 02:49:38 -0400 Subject: [PATCH 374/678] libav: support Darwin & install docs/manpages Close #14005. --- pkgs/development/libraries/libav/default.nix | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/libav/default.nix b/pkgs/development/libraries/libav/default.nix index 23b1402e3e7..9611fdbb8d9 100644 --- a/pkgs/development/libraries/libav/default.nix +++ b/pkgs/development/libraries/libav/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, yasm, bzip2, zlib +{ stdenv, fetchurl, pkgconfig, yasm, bzip2, zlib, perl , mp3Support ? true, lame ? null , speexSupport ? true, speex ? null , theoraSupport ? true, libtheora ? null @@ -46,6 +46,7 @@ let "--enable-avplay" "--enable-shared" "--enable-runtime-cpudetect" + "--cc=cc" ] ++ optionals enableGPL [ "--enable-gpl" "--enable-swscale" ] ++ optional mp3Support "--enable-libmp3lame" @@ -62,6 +63,7 @@ let ; buildInputs = [ pkgconfig lame yasm zlib bzip2 SDL ] + ++ [ perl ] # for install-man target ++ optional mp3Support lame ++ optional speexSupport speex ++ optional theoraSupport libtheora @@ -79,10 +81,19 @@ let outputs = [ "out" "tools" ]; - # move avplay to get rid of the SDL dependency in the main output + # alltools to build smaller tools, incl. aviocat, ismindex, qt-faststart, etc. + buildFlags = "all alltools install-man"; + postInstall = '' + # move avplay to get rid of the SDL dependency in the main output mkdir -p "$tools/bin" mv "$out/bin/avplay" "$tools/bin" + + # alltools target compiles an executable in tools/ for every C + # source file in tools/, so move those to $out + for tool in $(find tools -type f -executable); do + mv "$tool" "$out/bin/" + done ''; doInstallCheck = false; # fails randomly @@ -105,10 +116,9 @@ let description = "A complete, cross-platform solution to record, convert and stream audio and video (fork of ffmpeg)"; license = with licenses; if enableUnfree then unfree #ToDo: redistributable or not? else if enableGPL then gpl2Plus else lgpl21Plus; - platforms = platforms.linux; + platforms = with platforms; linux ++ darwin; maintainers = [ maintainers.vcunat ]; }; }; # libavFun in result - From 6386d68e9df785a503d4efe78f069f3c64dfdbd0 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sat, 19 Mar 2016 11:11:22 +0100 Subject: [PATCH 375/678] vimPlugins: youcompleteme FIX #14006 No rule to make target 'ycm_support_libs' https://github.com/Valloric/ycmd/commit/599de71575d542d4fc5c33344c65b3931e4d7ed2#diff-6725b893dfc969abac4f4ee39a3a317f --- pkgs/misc/vim-plugins/default.nix | 8 ++++---- .../vim-plugins/vim2nix/additional-nix-code/youcompleteme | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix index f1e64a8e6f3..c1c0c4b1bd6 100644 --- a/pkgs/misc/vim-plugins/default.nix +++ b/pkgs/misc/vim-plugins/default.nix @@ -883,11 +883,11 @@ rec { }; youcompleteme = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "youcompleteme-2016-03-08"; + name = "youcompleteme-2016-03-10"; src = fetchgit { url = "git://github.com/valloric/youcompleteme"; - rev = "381b2132719a959f41e57ec0e6396fc1c3b6daf4"; - sha256 = "1gski3s1960pmxisyq85awda0a3kb22ji9y76f67k1a4smy5q9xa"; + rev = "f44435b88ec98156d17869aa67ad15f38cfecbf3"; + sha256 = "1y50ilyfwj6rvpvg50iq418maxvsfs54i202v7x0lfs5hmvcb4hi"; }; dependencies = []; buildInputs = [ @@ -904,7 +904,7 @@ rec { mkdir build pushd build cmake -G "Unix Makefiles" . ../third_party/ycmd/cpp -DPYTHON_LIBRARIES:PATH=${python}/lib/libpython2.7.so -DPYTHON_INCLUDE_DIR:PATH=${python}/include/python2.7 -DUSE_CLANG_COMPLETER=ON -DUSE_SYSTEM_LIBCLANG=ON - make ycm_support_libs -j''${NIX_BUILD_CORES} -l''${NIX_BUILD_CORES}} + make ycm_core -j''${NIX_BUILD_CORES} -l''${NIX_BUILD_CORES}} ${python}/bin/python ../third_party/ycmd/build.py --gocode-completer --clang-completer --system-libclang popd ''; diff --git a/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme b/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme index 48f5322267b..cb90adfdc39 100644 --- a/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme +++ b/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/youcompleteme @@ -12,7 +12,7 @@ mkdir build pushd build cmake -G "Unix Makefiles" . ../third_party/ycmd/cpp -DPYTHON_LIBRARIES:PATH=${python}/lib/libpython2.7.so -DPYTHON_INCLUDE_DIR:PATH=${python}/include/python2.7 -DUSE_CLANG_COMPLETER=ON -DUSE_SYSTEM_LIBCLANG=ON - make ycm_support_libs -j''${NIX_BUILD_CORES} -l''${NIX_BUILD_CORES}} + make ycm_core -j''${NIX_BUILD_CORES} -l''${NIX_BUILD_CORES}} ${python}/bin/python ../third_party/ycmd/build.py --gocode-completer --clang-completer --system-libclang popd ''; From 02b13f7bdbcbeb301a66b7b59bc7dc2759985a99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 21 Mar 2016 09:56:25 +0100 Subject: [PATCH 376/678] libav: fixup sandboxed builds after parent commit --- pkgs/development/libraries/libav/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/libraries/libav/default.nix b/pkgs/development/libraries/libav/default.nix index 9611fdbb8d9..0bd4168d73b 100644 --- a/pkgs/development/libraries/libav/default.nix +++ b/pkgs/development/libraries/libav/default.nix @@ -38,6 +38,9 @@ let url = "${meta.homepage}/releases/${name}.tar.xz"; inherit sha1; # upstream directly provides sha1 of releases over https }; + + preConfigure = "patchShebangs doc/texi2pod.pl"; + configureFlags = assert stdenv.lib.all (x: x!=null) buildInputs; [ From 07a3d420238fa0c127e43e1b25d354d6e7000d27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 21 Mar 2016 09:56:46 +0100 Subject: [PATCH 377/678] libav: minor updates 11.4 -> 11.6 The older branches seem unmaintained and better not used - /cc maintainer of keyfinder @nckx. --- pkgs/development/libraries/libav/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/libav/default.nix b/pkgs/development/libraries/libav/default.nix index 0bd4168d73b..5b6e9c024b5 100644 --- a/pkgs/development/libraries/libav/default.nix +++ b/pkgs/development/libraries/libav/default.nix @@ -28,7 +28,7 @@ let result = { libav_0_8 = libavFun "0.8.17" "31ace2daeb8c105deed9cd3476df47318d417714"; libav_9 = libavFun "9.18" "e10cde4587c4d4d3bb11d30c7b47e953664cd714"; - libav_11 = libavFun "11.4" "c2ab12102de187f2675a56b828b4a5e9136ab747"; + libav_11 = libavFun "11.6" "2296cbd7afe98591eb164cebe436dcb5582efc9d"; }; libavFun = version : sha1 : stdenv.mkDerivation rec { From 5db2d9366bde95e76428a687e977b04f395bb094 Mon Sep 17 00:00:00 2001 From: Evgeny Egorochkin Date: Mon, 21 Mar 2016 12:47:54 +0200 Subject: [PATCH 378/678] subversion: fix hash --- pkgs/applications/version-management/subversion/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/version-management/subversion/default.nix b/pkgs/applications/version-management/subversion/default.nix index bb7ee259ee0..08b07b64b68 100644 --- a/pkgs/applications/version-management/subversion/default.nix +++ b/pkgs/applications/version-management/subversion/default.nix @@ -89,7 +89,7 @@ in { subversion18 = common { version = "1.8.15"; - sha256 = "8bbf6bb125003d88ee1c22935a36b7b1ab7d957e0c8b5fbfe5cb6310b6e86ae0"; + sha256 = "0b68rjy1sjd66nqcswrm1bhda3vk2ngkgs6drcanmzbcd3vs366g"; }; subversion19 = common { From 4873838f753c1ee63b6848f400fa23a133c430b8 Mon Sep 17 00:00:00 2001 From: Michael Fellinger Date: Mon, 21 Mar 2016 12:01:37 +0100 Subject: [PATCH 379/678] capybara-webkit: gem needs qt5Full --- pkgs/development/ruby-modules/gem-config/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/development/ruby-modules/gem-config/default.nix b/pkgs/development/ruby-modules/gem-config/default.nix index dd4ae725095..05be9090c84 100644 --- a/pkgs/development/ruby-modules/gem-config/default.nix +++ b/pkgs/development/ruby-modules/gem-config/default.nix @@ -21,7 +21,7 @@ , libiconv, postgresql, v8_3_16_14, clang, sqlite, zlib, imagemagick , pkgconfig , ncurses, xapian, gpgme, utillinux, fetchpatch, tzdata, icu, libffi , cmake, libssh2, openssl, mysql, darwin, git, perl, gecode_3, curl -, libmsgpack +, libmsgpack, qt5Full }: let @@ -29,6 +29,10 @@ let in { + capybara-webkit = attrs: { + buildInputs = [ qt5Full ]; + }; + charlock_holmes = attrs: { buildInputs = [ which icu zlib ]; }; From aa097946d226aabbe77623800a825b3ee74180c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 21 Mar 2016 12:03:50 +0100 Subject: [PATCH 380/678] chrome: fix evaluation after 6041cfe2af896 --- pkgs/applications/networking/browsers/google-chrome/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/browsers/google-chrome/default.nix b/pkgs/applications/networking/browsers/google-chrome/default.nix index 89e545d12e4..65f740f6a0f 100644 --- a/pkgs/applications/networking/browsers/google-chrome/default.nix +++ b/pkgs/applications/networking/browsers/google-chrome/default.nix @@ -30,7 +30,7 @@ with stdenv.lib; -with (import ../chromium/source/update.nix { +with (import ../chromium/update.nix { inherit (stdenv) system; }).getChannel channel; From 379709b4045fc6ec720f82828cb1f9ce896ea0fa Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sat, 19 Mar 2016 18:34:01 +0000 Subject: [PATCH 381/678] kernel: 4.1.17 -> 4.1.20 (close #14058) --- pkgs/os-specific/linux/kernel/linux-4.1.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.1.nix b/pkgs/os-specific/linux/kernel/linux-4.1.nix index fbcfa17a8bc..57e239c1d09 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.1.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.1.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.1.17"; + version = "4.1.20"; extraMeta.branch = "4.1"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "084ij19vgm27ljrjabqqmlqn27p168nsm9grhr6rajid4n79h6ab"; + sha256 = "1dpq8dgj351jzm7n6330a4xriz9dxv7d9wxzj9zn9q7ya22np9gs"; }; kernelPatches = args.kernelPatches; From 6476075ccfbe11d4c30b33ec0d76f92d53d91097 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sat, 19 Mar 2016 18:32:10 +0000 Subject: [PATCH 382/678] kernel: 3.18.28 -> 3.18.29 (close #14057) --- pkgs/os-specific/linux/kernel/linux-3.18.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-3.18.nix b/pkgs/os-specific/linux/kernel/linux-3.18.nix index 6aa0eff8937..28893ce3f9f 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.18.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.18.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "3.18.28"; + version = "3.18.29"; extraMeta.branch = "3.18"; src = fetchurl { url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; - sha256 = "1vd7xm5wh082bwh93f69r99727y1yd5l6qjdm68rs0j5lzhamdbl"; + sha256 = "0g8vlhifl31dyghiamykrpgj6n8h5w6gh6n88ir57z6lj188vaj8"; }; kernelPatches = args.kernelPatches; From bd2bc77f8cf2a73a08a123a97192bf22c93386b6 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 21 Mar 2016 13:17:25 +0100 Subject: [PATCH 383/678] haskell-transformers-compat: fix build with GHC 8.0.x --- pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix index 2c1c825af53..f909336e669 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -46,4 +46,7 @@ self: super: { # https://github.com/hspec/hspec/issues/253 hspec-core = dontCheck super.hspec-core; + # Deviate from Stackage here to fix lots of builds. + transformers-compat = super.transformers-compat_0_5_1_4; + } From ca34db0409f63312ce6b7a6f7385f9b1a6519418 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 18 Mar 2016 17:17:44 +0100 Subject: [PATCH 384/678] configuration-hackage2nix.yaml: update list of broken packages --- .../configuration-hackage2nix.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index 5044ff45308..906629e8308 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -197,6 +197,7 @@ dont-distribute-packages: agda-server: [ i686-linux, x86_64-darwin, x86_64-linux ] agda-snippets-hakyll: [ i686-linux, x86_64-darwin, x86_64-linux ] agda-snippets: [ i686-linux, x86_64-darwin, x86_64-linux ] + Agda: [ x86_64-darwin ] AGI: [ i686-linux, x86_64-darwin, x86_64-linux ] AhoCorasick: [ i686-linux, x86_64-darwin, x86_64-linux ] airbrake: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -499,6 +500,7 @@ dont-distribute-packages: buster-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] buster-network: [ i686-linux, x86_64-darwin, x86_64-linux ] Buster: [ i686-linux, x86_64-darwin, x86_64-linux ] + buster: [ i686-linux, x86_64-darwin, x86_64-linux ] bustle: [ x86_64-darwin ] butterflies: [ i686-linux, x86_64-darwin, x86_64-linux ] bytable: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -694,6 +696,7 @@ dont-distribute-packages: concrete-typerep: [ i686-linux, x86_64-darwin, x86_64-linux ] concurrent-state: [ i686-linux, x86_64-darwin, x86_64-linux ] ConcurrentUtils: [ i686-linux, x86_64-darwin, x86_64-linux ] + Condor: [ i686-linux, x86_64-darwin, x86_64-linux ] condor: [ i686-linux, x86_64-darwin, x86_64-linux ] condorcet: [ i686-linux, x86_64-darwin, x86_64-linux ] conductive-hsc3: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -796,6 +799,7 @@ dont-distribute-packages: DAG-Tournament: [ i686-linux, x86_64-darwin, x86_64-linux ] Dangerous: [ i686-linux, x86_64-darwin, x86_64-linux ] Dao: [ i686-linux, x86_64-darwin, x86_64-linux ] + dao: [ i686-linux, x86_64-darwin, x86_64-linux ] dapi: [ i686-linux, x86_64-darwin, x86_64-linux ] darcs-benchmark: [ i686-linux, x86_64-darwin, x86_64-linux ] darcs-beta: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -822,6 +826,7 @@ dont-distribute-packages: data-quotientref: [ i686-linux, x86_64-darwin, x86_64-linux ] data-result: [ i686-linux, x86_64-darwin, x86_64-linux ] Data-Rope: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-rope: [ i686-linux, x86_64-darwin, x86_64-linux ] data-rtuple: [ i686-linux, x86_64-darwin, x86_64-linux ] data-store: [ i686-linux, x86_64-darwin, x86_64-linux ] data-type: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -1807,6 +1812,7 @@ dont-distribute-packages: hlibev: [ i686-linux, x86_64-darwin, x86_64-linux ] hlibfam: [ i686-linux, x86_64-linux ] HLogger: [ i686-linux, x86_64-darwin, x86_64-linux ] + hlogger: [ i686-linux, x86_64-darwin, x86_64-linux ] hly: [ i686-linux, x86_64-darwin, x86_64-linux ] HMap: [ i686-linux, x86_64-darwin, x86_64-linux ] hmark: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -1827,6 +1833,7 @@ dont-distribute-packages: hmk: [ i686-linux, x86_64-darwin, x86_64-linux ] hmm-hmatrix: [ i686-linux, x86_64-darwin, x86_64-linux ] HMM: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmm: [ i686-linux, x86_64-darwin, x86_64-linux ] hMollom: [ i686-linux, x86_64-darwin, x86_64-linux ] hmp3: [ i686-linux, x86_64-darwin, x86_64-linux ] Hmpf: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -2172,6 +2179,7 @@ dont-distribute-packages: jack-bindings: [ i686-linux, x86_64-darwin, x86_64-linux ] jack: [ x86_64-darwin ] JackMiniMix: [ i686-linux, x86_64-darwin, x86_64-linux ] + jackminimix: [ i686-linux, x86_64-darwin, x86_64-linux ] jacobi-roots: [ i686-linux, x86_64-darwin, x86_64-linux ] jalla: [ i686-linux, x86_64-darwin, x86_64-linux ] jarfind: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -2179,7 +2187,9 @@ dont-distribute-packages: java-bridge: [ i686-linux, x86_64-darwin, x86_64-linux ] java-reflect: [ i686-linux, x86_64-darwin, x86_64-linux ] javaclass: [ i686-linux, x86_64-darwin, x86_64-linux ] + Javasf: [ i686-linux, x86_64-darwin, x86_64-linux ] javasf: [ i686-linux, x86_64-darwin, x86_64-linux ] + Javav: [ i686-linux, x86_64-darwin, x86_64-linux ] javav: [ i686-linux, x86_64-darwin, x86_64-linux ] jespresso: [ i686-linux, x86_64-linux ] join: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -2188,6 +2198,7 @@ dont-distribute-packages: jort: [ i686-linux, x86_64-darwin, x86_64-linux ] js-good-parts: [ i686-linux, x86_64-darwin, x86_64-linux ] jsaddle-hello: [ i686-linux, x86_64-linux, x86_64-darwin ] + jsaddle: [ x86_64-darwin ] jsc: [ i686-linux, x86_64-linux, x86_64-darwin ] JsContracts: [ i686-linux, x86_64-darwin, x86_64-linux ] jsmw: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -2757,6 +2768,7 @@ dont-distribute-packages: ois-input-manager: [ i686-linux, x86_64-darwin, x86_64-linux ] omaketex: [ i686-linux, x86_64-darwin, x86_64-linux ] Omega: [ i686-linux, x86_64-darwin, x86_64-linux ] + omega: [ i686-linux, x86_64-darwin, x86_64-linux ] omnicodec: [ i686-linux, x86_64-darwin, x86_64-linux ] on-a-horse: [ i686-linux, x86_64-darwin, x86_64-linux ] one-liner: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -2908,6 +2920,7 @@ dont-distribute-packages: plot-gtk-ui: [ x86_64-darwin ] plot-gtk3: [ x86_64-darwin ] plot-gtk: [ x86_64-darwin ] + Plot-ho-matic: [ i686-linux ] Plot-ho-matic: [ i686-linux, x86_64-darwin, x86_64-linux ] Plot-ho-matic: [ x86_64-darwin ] plot-lab: [ x86_64-darwin ] @@ -3001,6 +3014,7 @@ dont-distribute-packages: Proper: [ i686-linux, x86_64-darwin, x86_64-linux ] proplang: [ i686-linux, x86_64-darwin, x86_64-linux ] proteaaudio: [ i686-linux, x86_64-darwin, x86_64-linux ] + proteaaudio: [ i686-linux, x86_64-linux ] proteaaudio: [ x86_64-darwin ] protobuf-native: [ i686-linux, x86_64-darwin, x86_64-linux ] protocol-buffers-descriptor-fork: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3109,6 +3123,7 @@ dont-distribute-packages: Redmine: [ i686-linux, x86_64-darwin, x86_64-linux ] reedsolomon: [ i686-linux, x86_64-darwin, x86_64-linux ] reenact: [ x86_64-darwin ] + Ref: [ i686-linux, x86_64-darwin, x86_64-linux ] ref: [ i686-linux, x86_64-darwin, x86_64-linux ] Referees: [ i686-linux, x86_64-darwin, x86_64-linux ] refh: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3276,6 +3291,7 @@ dont-distribute-packages: SDL-mpeg: [ x86_64-darwin ] SDL-ttf: [ x86_64-darwin ] sdl2-compositor: [ i686-linux, x86_64-darwin, x86_64-linux ] + sdl2-compositor: [ i686-linux, x86_64-linux ] sdl2-compositor: [ x86_64-darwin ] sdl2-image: [ i686-linux, x86_64-darwin, x86_64-linux ] sdl2-ttf: [ x86_64-darwin ] @@ -3525,6 +3541,7 @@ dont-distribute-packages: supero: [ i686-linux, x86_64-darwin, x86_64-linux ] supervisor: [ i686-linux, x86_64-darwin, x86_64-linux ] SVG2Q: [ i686-linux, x86_64-darwin, x86_64-linux ] + svg2q: [ i686-linux, x86_64-darwin, x86_64-linux ] svgcairo: [ x86_64-darwin ] svm-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] svndump: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3565,6 +3582,7 @@ dont-distribute-packages: system-random-effect: [ i686-linux, x86_64-darwin, x86_64-linux ] system-time-monotonic: [ x86_64-darwin ] ta: [ i686-linux, x86_64-darwin, x86_64-linux ] + Tables: [ i686-linux, x86_64-darwin, x86_64-linux ] tables: [ i686-linux, x86_64-darwin, x86_64-linux ] tablestorage: [ i686-linux, x86_64-darwin, x86_64-linux ] tabloid: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3633,6 +3651,7 @@ dont-distribute-packages: thimk: [ i686-linux, x86_64-darwin, x86_64-linux ] Thingie: [ i686-linux, x86_64-darwin, x86_64-linux ] threadscope: [ x86_64-darwin ] + Thrift: [ i686-linux, x86_64-darwin, x86_64-linux ] thrift: [ i686-linux, x86_64-darwin, x86_64-linux ] tianbar: [ x86_64-darwin ] tic-tac-toe: [ i686-linux, x86_64-darwin, x86_64-linux ] From 9405b1f497be71fbf1ea153ca9fb5446213d99eb Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 18 Mar 2016 17:25:09 +0100 Subject: [PATCH 385/678] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20160308-3-g8057d11 using the following inputs: - Nixpkgs: https://github.com/NixOS/nixpkgs/commit/cc6b62965c9c59011709e84ad9f3d763ec5b4ffc - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/81034151438ea05e24228e220e2eb18363cfe2d6 - LTS Haskell: https://github.com/fpco/lts-haskell/commit/6bcb171af74b3bcce09d9ba8da3c2ef819232dcc - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/26f7d11e374996252486b3e531e947a034132ca0 --- .../haskell-modules/configuration-lts-0.0.nix | 12 + .../haskell-modules/configuration-lts-0.1.nix | 12 + .../haskell-modules/configuration-lts-0.2.nix | 12 + .../haskell-modules/configuration-lts-0.3.nix | 12 + .../haskell-modules/configuration-lts-0.4.nix | 12 + .../haskell-modules/configuration-lts-0.5.nix | 12 + .../haskell-modules/configuration-lts-0.6.nix | 12 + .../haskell-modules/configuration-lts-0.7.nix | 12 + .../haskell-modules/configuration-lts-1.0.nix | 12 + .../haskell-modules/configuration-lts-1.1.nix | 12 + .../configuration-lts-1.10.nix | 12 + .../configuration-lts-1.11.nix | 12 + .../configuration-lts-1.12.nix | 12 + .../configuration-lts-1.13.nix | 12 + .../configuration-lts-1.14.nix | 12 + .../configuration-lts-1.15.nix | 12 + .../haskell-modules/configuration-lts-1.2.nix | 12 + .../haskell-modules/configuration-lts-1.4.nix | 12 + .../haskell-modules/configuration-lts-1.5.nix | 12 + .../haskell-modules/configuration-lts-1.7.nix | 12 + .../haskell-modules/configuration-lts-1.8.nix | 12 + .../haskell-modules/configuration-lts-1.9.nix | 12 + .../haskell-modules/configuration-lts-2.0.nix | 12 + .../haskell-modules/configuration-lts-2.1.nix | 12 + .../configuration-lts-2.10.nix | 12 + .../configuration-lts-2.11.nix | 12 + .../configuration-lts-2.12.nix | 12 + .../configuration-lts-2.13.nix | 12 + .../configuration-lts-2.14.nix | 12 + .../configuration-lts-2.15.nix | 12 + .../configuration-lts-2.16.nix | 12 + .../configuration-lts-2.17.nix | 12 + .../configuration-lts-2.18.nix | 12 + .../configuration-lts-2.19.nix | 12 + .../haskell-modules/configuration-lts-2.2.nix | 12 + .../configuration-lts-2.20.nix | 12 + .../configuration-lts-2.21.nix | 12 + .../configuration-lts-2.22.nix | 12 + .../haskell-modules/configuration-lts-2.3.nix | 12 + .../haskell-modules/configuration-lts-2.4.nix | 12 + .../haskell-modules/configuration-lts-2.5.nix | 12 + .../haskell-modules/configuration-lts-2.6.nix | 12 + .../haskell-modules/configuration-lts-2.7.nix | 12 + .../haskell-modules/configuration-lts-2.8.nix | 12 + .../haskell-modules/configuration-lts-2.9.nix | 12 + .../haskell-modules/configuration-lts-3.0.nix | 13 + .../haskell-modules/configuration-lts-3.1.nix | 13 + .../configuration-lts-3.10.nix | 15 + .../configuration-lts-3.11.nix | 15 + .../configuration-lts-3.12.nix | 15 + .../configuration-lts-3.13.nix | 15 + .../configuration-lts-3.14.nix | 15 + .../configuration-lts-3.15.nix | 15 + .../configuration-lts-3.16.nix | 15 + .../configuration-lts-3.17.nix | 15 + .../configuration-lts-3.18.nix | 16 + .../configuration-lts-3.19.nix | 16 + .../haskell-modules/configuration-lts-3.2.nix | 14 + .../configuration-lts-3.20.nix | 17 + .../configuration-lts-3.21.nix | 22 + .../configuration-lts-3.22.nix | 22 + .../haskell-modules/configuration-lts-3.3.nix | 14 + .../haskell-modules/configuration-lts-3.4.nix | 14 + .../haskell-modules/configuration-lts-3.5.nix | 14 + .../haskell-modules/configuration-lts-3.6.nix | 14 + .../haskell-modules/configuration-lts-3.7.nix | 14 + .../haskell-modules/configuration-lts-3.8.nix | 14 + .../haskell-modules/configuration-lts-3.9.nix | 15 + .../haskell-modules/configuration-lts-4.0.nix | 25 + .../haskell-modules/configuration-lts-4.1.nix | 25 + .../haskell-modules/configuration-lts-4.2.nix | 27 + .../haskell-modules/configuration-lts-5.0.nix | 27 + .../haskell-modules/configuration-lts-5.1.nix | 27 + .../haskell-modules/configuration-lts-5.2.nix | 27 + .../haskell-modules/configuration-lts-5.3.nix | 27 + .../haskell-modules/configuration-lts-5.4.nix | 27 + .../haskell-modules/configuration-lts-5.5.nix | 27 + .../haskell-modules/configuration-lts-5.6.nix | 27 + .../haskell-modules/configuration-lts-5.7.nix | 27 + .../haskell-modules/configuration-lts-5.8.nix | 27 + .../haskell-modules/hackage-packages.nix | 1052 ++++++++++++++--- 81 files changed, 2095 insertions(+), 169 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index ad4724a8891..961115b9ac7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -935,6 +935,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_5_1"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = dontDistribute super."Spock-digestive"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = dontDistribute super."Spock-worker"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1597,6 +1598,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2275,6 +2277,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2471,6 +2474,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3808,6 +3812,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-mysql" = doDistribute super."groundhog-mysql_0_7_0"; "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0"; @@ -4954,6 +4959,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7154,6 +7160,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7441,9 +7448,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7614,6 +7623,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_4"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -8061,6 +8071,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8089,6 +8100,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index 7e37f3034dc..b429e6ac01c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -935,6 +935,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_5_1"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = dontDistribute super."Spock-digestive"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = dontDistribute super."Spock-worker"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1597,6 +1598,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2275,6 +2277,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2471,6 +2474,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3808,6 +3812,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-mysql" = doDistribute super."groundhog-mysql_0_7_0"; "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0"; @@ -4954,6 +4959,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7154,6 +7160,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7441,9 +7448,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7614,6 +7623,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_4"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -8061,6 +8071,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8089,6 +8100,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index 9f4e76f48ff..fc8cd6d2d4d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -935,6 +935,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_5_1"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = dontDistribute super."Spock-digestive"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = dontDistribute super."Spock-worker"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1597,6 +1598,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2275,6 +2277,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2471,6 +2474,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3808,6 +3812,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-mysql" = doDistribute super."groundhog-mysql_0_7_0"; "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0"; @@ -4954,6 +4959,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7154,6 +7160,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7441,9 +7448,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7614,6 +7623,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_4"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -8061,6 +8071,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8089,6 +8100,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index 1d0bfb9c0f7..9b92aa8f595 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -935,6 +935,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_5_1"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = dontDistribute super."Spock-digestive"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = dontDistribute super."Spock-worker"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1597,6 +1598,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2275,6 +2277,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2471,6 +2474,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3808,6 +3812,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-mysql" = doDistribute super."groundhog-mysql_0_7_0"; "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0"; @@ -4954,6 +4959,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7154,6 +7160,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7441,9 +7448,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7614,6 +7623,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_4"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -8061,6 +8071,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8089,6 +8100,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index e5e76b8859e..db78ab232e6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -935,6 +935,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_5_1"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = dontDistribute super."Spock-digestive"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = dontDistribute super."Spock-worker"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1597,6 +1598,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2275,6 +2277,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2471,6 +2474,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3807,6 +3811,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0_1"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; @@ -4951,6 +4956,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7151,6 +7157,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7437,9 +7444,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7610,6 +7619,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -8057,6 +8067,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8085,6 +8096,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 95ce9523223..532add4cd02 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -935,6 +935,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_5_1"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = dontDistribute super."Spock-digestive"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = dontDistribute super."Spock-worker"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1597,6 +1598,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2275,6 +2277,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2471,6 +2474,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3807,6 +3811,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0_1"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; @@ -4951,6 +4956,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7151,6 +7157,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7437,9 +7444,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7610,6 +7619,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -8057,6 +8067,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8085,6 +8096,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 1509fbf341c..0610fec8d09 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -934,6 +934,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_5_2"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = dontDistribute super."Spock-digestive"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = dontDistribute super."Spock-worker"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1596,6 +1597,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2274,6 +2276,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2470,6 +2473,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3806,6 +3810,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0_1"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; @@ -4949,6 +4954,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7148,6 +7154,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7434,9 +7441,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7607,6 +7616,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -8054,6 +8064,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8082,6 +8093,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index f0d02cb9a3c..9568063360a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -934,6 +934,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_5_2"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = dontDistribute super."Spock-digestive"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = dontDistribute super."Spock-worker"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1596,6 +1597,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2274,6 +2276,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2470,6 +2473,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3806,6 +3810,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0_1"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; @@ -4949,6 +4954,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7148,6 +7154,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7434,9 +7441,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7607,6 +7616,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -8054,6 +8064,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8082,6 +8093,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index 23e5c90c198..af09d2ebb12 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -931,6 +931,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_6_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1593,6 +1594,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2268,6 +2270,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2463,6 +2466,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3797,6 +3801,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0_1"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; @@ -4940,6 +4945,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7138,6 +7144,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7424,9 +7431,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7597,6 +7606,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -8043,6 +8053,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8071,6 +8082,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index c43a3efa697..971e8ec125b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -931,6 +931,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_6_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1593,6 +1594,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2267,6 +2269,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2461,6 +2464,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3794,6 +3798,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0_1"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; @@ -4934,6 +4939,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7131,6 +7137,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7417,9 +7424,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7589,6 +7598,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -8034,6 +8044,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8062,6 +8073,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 3ecb05e4cf7..9ff44166cf6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -930,6 +930,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1592,6 +1593,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2264,6 +2266,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2457,6 +2460,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3785,6 +3789,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0_2"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; @@ -4918,6 +4923,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7110,6 +7116,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7395,9 +7402,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7566,6 +7575,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -8010,6 +8020,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8038,6 +8049,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index f16ab10fb6f..9daa2e0d88f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -930,6 +930,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1592,6 +1593,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2264,6 +2266,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2457,6 +2460,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3784,6 +3788,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0_2"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; @@ -4916,6 +4921,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7106,6 +7112,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7391,9 +7398,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7562,6 +7571,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -8006,6 +8016,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8034,6 +8045,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index a510a8d38f5..b64f6435917 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -930,6 +930,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1592,6 +1593,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2264,6 +2266,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2457,6 +2460,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3784,6 +3788,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0_2"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; @@ -4915,6 +4920,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7105,6 +7111,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7390,9 +7397,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7561,6 +7570,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -8005,6 +8015,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8033,6 +8044,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index e8c1c534cd9..74c45de31d8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -930,6 +930,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1592,6 +1593,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2264,6 +2266,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2457,6 +2460,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3783,6 +3787,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; @@ -4914,6 +4919,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7104,6 +7110,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7389,9 +7396,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7560,6 +7569,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -8004,6 +8014,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8032,6 +8043,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 93c497595ba..86e17e82e5a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -929,6 +929,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1590,6 +1591,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2262,6 +2264,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2454,6 +2457,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3780,6 +3784,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; @@ -4911,6 +4916,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7098,6 +7104,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7383,9 +7390,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7554,6 +7563,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7998,6 +8008,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8026,6 +8037,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index 4c8c8c4f6d0..9f43f3360b1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -928,6 +928,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1589,6 +1590,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2260,6 +2262,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2451,6 +2454,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3776,6 +3780,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; @@ -4907,6 +4912,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7091,6 +7097,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7376,9 +7383,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7547,6 +7556,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7989,6 +7999,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8017,6 +8028,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index 2c1871e66b6..dde44a825b6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -931,6 +931,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1593,6 +1594,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2266,6 +2268,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2459,6 +2462,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3791,6 +3795,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0_1"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; @@ -4931,6 +4936,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7126,6 +7132,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7411,9 +7418,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7583,6 +7592,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -8028,6 +8038,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8056,6 +8067,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index f6514802129..cfcc24d57f4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -930,6 +930,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1592,6 +1593,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2265,6 +2267,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2458,6 +2461,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3789,6 +3793,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0_1"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; @@ -4928,6 +4933,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7122,6 +7128,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7407,9 +7414,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7579,6 +7588,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -8024,6 +8034,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8052,6 +8063,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index e9779ceefb2..e41aa563323 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -930,6 +930,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1592,6 +1593,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2264,6 +2266,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2457,6 +2460,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3788,6 +3792,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0_1"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; @@ -4927,6 +4932,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7121,6 +7127,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7406,9 +7413,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7578,6 +7587,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -8023,6 +8033,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8051,6 +8062,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index 4d40baa9582..3fa8844fc05 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -930,6 +930,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1592,6 +1593,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2264,6 +2266,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2457,6 +2460,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3788,6 +3792,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0_1"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; @@ -4922,6 +4927,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7116,6 +7122,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7401,9 +7408,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7573,6 +7582,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -8018,6 +8028,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8046,6 +8057,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index 20cbc9d2543..9851a0e9978 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -930,6 +930,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1592,6 +1593,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2264,6 +2266,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2457,6 +2460,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3786,6 +3790,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0_2"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; @@ -4919,6 +4924,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7112,6 +7118,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7397,9 +7404,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7569,6 +7578,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -8014,6 +8024,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8042,6 +8053,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index 3a32bb6b7e1..7fb9b211bd6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -930,6 +930,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1592,6 +1593,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2264,6 +2266,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2457,6 +2460,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3785,6 +3789,7 @@ self: super: { "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; "groundhog" = doDistribute super."groundhog_0_7_0_2"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; @@ -4918,6 +4923,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7111,6 +7117,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7396,9 +7403,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7568,6 +7577,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -8013,6 +8023,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -8041,6 +8052,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_2_2_4"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit" = doDistribute super."tasty-hunit_0_9_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index a814f2e4ead..59d84aac27f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -923,6 +923,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1581,6 +1582,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2249,6 +2251,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2438,6 +2441,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3759,6 +3763,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; @@ -4882,6 +4887,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7046,6 +7052,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7330,9 +7337,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7500,6 +7509,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7937,6 +7947,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7965,6 +7976,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index d9ec4d126f1..d7343eeb751 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -923,6 +923,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1581,6 +1582,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2248,6 +2250,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2437,6 +2440,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3758,6 +3762,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; @@ -4881,6 +4886,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7045,6 +7051,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7329,9 +7336,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7499,6 +7508,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7936,6 +7946,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7964,6 +7975,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index aea147afacb..3b92642e2fe 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -920,6 +920,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_9_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1573,6 +1574,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2237,6 +2239,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2425,6 +2428,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3741,6 +3745,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4859,6 +4864,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7010,6 +7016,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -7293,9 +7300,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7463,6 +7472,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7892,6 +7902,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7920,6 +7931,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index d7b322ecaa2..ef206543d6d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -920,6 +920,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_9_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1572,6 +1573,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2236,6 +2238,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2424,6 +2427,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3739,6 +3743,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4856,6 +4861,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7004,6 +7010,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -7286,9 +7293,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7456,6 +7465,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7883,6 +7893,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7911,6 +7922,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index e35499f812b..ec3792fe4df 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -920,6 +920,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_9_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1572,6 +1573,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2236,6 +2238,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2424,6 +2427,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3739,6 +3743,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4856,6 +4861,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7004,6 +7010,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -7285,9 +7292,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7455,6 +7464,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7882,6 +7892,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7910,6 +7921,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 07d48adb7af..a8851a733ba 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -920,6 +920,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_9_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1572,6 +1573,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2236,6 +2238,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2424,6 +2427,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3739,6 +3743,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4854,6 +4859,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7002,6 +7008,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -7283,9 +7290,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7453,6 +7462,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7880,6 +7890,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7908,6 +7919,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index 6c14955ee36..191eef3e922 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -920,6 +920,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_9_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1571,6 +1572,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2235,6 +2237,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2423,6 +2426,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3737,6 +3741,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4851,6 +4856,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6999,6 +7005,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -7280,9 +7287,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7449,6 +7458,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7876,6 +7886,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7904,6 +7915,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index 7b1d139eb87..d324d6ca8e2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -920,6 +920,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_9_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1571,6 +1572,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2235,6 +2237,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2423,6 +2426,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3736,6 +3740,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4850,6 +4855,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6997,6 +7003,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -7278,9 +7285,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7447,6 +7456,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7873,6 +7883,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7901,6 +7912,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index 6a25bc52701..c3def68d85a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -920,6 +920,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_9_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1571,6 +1572,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2234,6 +2236,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2421,6 +2424,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3732,6 +3736,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4846,6 +4851,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6992,6 +6998,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -7273,9 +7280,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7442,6 +7451,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7868,6 +7878,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7896,6 +7907,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index dd161d7d54a..cf6510c45c4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -920,6 +920,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_10_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1570,6 +1571,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2232,6 +2234,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2419,6 +2422,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3728,6 +3732,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4842,6 +4847,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6987,6 +6993,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -7268,9 +7275,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7437,6 +7446,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7863,6 +7873,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7891,6 +7902,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index db7601ca785..a8293634e83 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -920,6 +920,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_10_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1570,6 +1571,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2231,6 +2233,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2418,6 +2421,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3726,6 +3730,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4840,6 +4845,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6984,6 +6990,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -7265,9 +7272,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7434,6 +7443,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7859,6 +7869,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7887,6 +7898,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index 19bf383a006..13e4fa4f5d2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -920,6 +920,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_10_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1570,6 +1571,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2231,6 +2233,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2418,6 +2421,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3725,6 +3729,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4839,6 +4844,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6982,6 +6988,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -7263,9 +7270,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7432,6 +7441,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7856,6 +7866,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7884,6 +7895,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index 508a9b40dcd..d524e2e2a43 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -922,6 +922,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1580,6 +1581,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2245,6 +2247,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2434,6 +2437,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3755,6 +3759,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; @@ -4878,6 +4883,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7042,6 +7048,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7326,9 +7333,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7496,6 +7505,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_5"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7933,6 +7943,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7961,6 +7972,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index 364ed466ed2..8ddde714521 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -920,6 +920,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_10_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1570,6 +1571,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2230,6 +2232,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2417,6 +2420,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3724,6 +3728,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4838,6 +4843,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6980,6 +6986,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -7261,9 +7268,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7429,6 +7438,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7853,6 +7863,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7881,6 +7892,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index 2347165a201..4ff92862a67 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -920,6 +920,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_10_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1570,6 +1571,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2230,6 +2232,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2417,6 +2420,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3724,6 +3728,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4838,6 +4843,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6979,6 +6985,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -7260,9 +7267,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7428,6 +7437,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7852,6 +7862,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7880,6 +7891,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index 251129c0a04..b8064f7ebc7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -920,6 +920,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_10_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1570,6 +1571,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2230,6 +2232,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2417,6 +2420,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3724,6 +3728,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4837,6 +4842,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6977,6 +6983,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -7258,9 +7265,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7426,6 +7435,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7850,6 +7860,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7878,6 +7889,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index bf0a2b34133..1a95699c9a3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -922,6 +922,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_7_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1580,6 +1581,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2245,6 +2247,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2434,6 +2437,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3754,6 +3758,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; @@ -4876,6 +4881,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7040,6 +7046,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7324,9 +7331,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7494,6 +7503,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7931,6 +7941,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7959,6 +7970,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index 179bfa6277c..af966d99b80 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -922,6 +922,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_9_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1580,6 +1581,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2244,6 +2246,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2433,6 +2436,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3753,6 +3757,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; @@ -4875,6 +4880,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7036,6 +7042,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_2_1"; "reserve" = dontDistribute super."reserve"; @@ -7320,9 +7327,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7490,6 +7499,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7927,6 +7937,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7955,6 +7966,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index 43d728e3a34..0e26411d135 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -922,6 +922,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_9_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1580,6 +1581,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2244,6 +2246,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2432,6 +2435,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3752,6 +3756,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; @@ -4874,6 +4879,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7035,6 +7041,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -7319,9 +7326,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7489,6 +7498,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7926,6 +7936,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7954,6 +7965,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index 093e6eed329..f90d3caf5b0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -922,6 +922,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_9_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1577,6 +1578,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2241,6 +2243,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2429,6 +2432,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3749,6 +3753,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4869,6 +4874,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7029,6 +7035,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -7313,9 +7320,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7483,6 +7492,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7920,6 +7930,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7948,6 +7959,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index 6ab93d77fc8..c2512dd8289 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -921,6 +921,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_9_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1576,6 +1577,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2240,6 +2242,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2428,6 +2431,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3748,6 +3752,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4868,6 +4873,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7028,6 +7034,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -7312,9 +7319,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7482,6 +7491,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7919,6 +7929,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7947,6 +7958,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index 108aee81956..2625754e479 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -920,6 +920,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_9_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1575,6 +1576,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2239,6 +2241,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2427,6 +2430,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3746,6 +3750,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4866,6 +4871,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7026,6 +7032,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -7309,9 +7316,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7479,6 +7488,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7913,6 +7923,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7941,6 +7952,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index de9e9a3a3ce..dddccaa020d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -920,6 +920,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_7_9_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_0"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1573,6 +1574,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; @@ -2237,6 +2239,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2425,6 +2428,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3742,6 +3746,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4860,6 +4865,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -7017,6 +7023,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_2_3_0"; "reserve" = dontDistribute super."reserve"; @@ -7300,9 +7307,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -7470,6 +7479,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_0_1_6"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7900,6 +7910,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7928,6 +7939,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index 9fb5eafd865..0330afe8b60 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -902,6 +902,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_0_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1530,6 +1531,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -2174,6 +2176,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2359,6 +2362,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3638,6 +3642,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4049,6 +4054,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4727,6 +4733,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6803,6 +6810,7 @@ self: super: { "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"; "reroute" = doDistribute super."reroute_0_3_0_2"; "reserve" = dontDistribute super."reserve"; @@ -7081,9 +7089,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -7243,6 +7253,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7658,6 +7669,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7686,6 +7698,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 5febee3c789..1ab556b7abb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -902,6 +902,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1529,6 +1530,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -2173,6 +2175,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2358,6 +2361,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3635,6 +3639,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4046,6 +4051,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4724,6 +4730,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6797,6 +6804,7 @@ self: super: { "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"; @@ -7074,9 +7082,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -7236,6 +7246,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7651,6 +7662,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7679,6 +7691,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index 3f176157315..f6541f1dbe8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -899,6 +899,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1521,6 +1522,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -2162,6 +2164,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2346,6 +2349,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3081,6 +3085,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3609,6 +3614,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4019,6 +4025,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4692,6 +4699,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6744,6 +6752,7 @@ self: super: { "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"; @@ -7021,9 +7030,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -7097,6 +7108,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7181,6 +7193,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7592,6 +7605,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7619,6 +7633,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_2"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index 93ddfa1ba03..ea41bee191e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -899,6 +899,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1521,6 +1522,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -2161,6 +2163,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2345,6 +2348,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3079,6 +3083,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3607,6 +3612,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4017,6 +4023,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4690,6 +4697,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6741,6 +6749,7 @@ self: super: { "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"; @@ -7018,9 +7027,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -7093,6 +7104,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7177,6 +7189,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7588,6 +7601,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7615,6 +7629,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_2"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index 2ec8febf122..a2cb1c392c1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -899,6 +899,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1521,6 +1522,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -2160,6 +2162,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2344,6 +2347,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3078,6 +3082,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3605,6 +3610,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4015,6 +4021,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4688,6 +4695,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6738,6 +6746,7 @@ self: super: { "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"; @@ -7015,9 +7024,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -7090,6 +7101,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7174,6 +7186,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7585,6 +7598,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7612,6 +7626,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_2"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index 01061e53649..60657c671eb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -899,6 +899,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1521,6 +1522,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -2160,6 +2162,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2344,6 +2347,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3078,6 +3082,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3605,6 +3610,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4015,6 +4021,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4687,6 +4694,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6735,6 +6743,7 @@ self: super: { "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"; @@ -7012,9 +7021,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -7087,6 +7098,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7171,6 +7183,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7582,6 +7595,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7609,6 +7623,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_2"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index c872cd524ae..3211293d1b5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -899,6 +899,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1519,6 +1520,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -2157,6 +2159,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2340,6 +2343,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3072,6 +3076,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3599,6 +3604,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4009,6 +4015,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4680,6 +4687,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6728,6 +6736,7 @@ self: super: { "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"; @@ -7005,9 +7014,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -7080,6 +7091,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7164,6 +7176,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7575,6 +7588,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7602,6 +7616,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_2"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index f9c7ad344d9..8256caaa1cd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -899,6 +899,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1519,6 +1520,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -2157,6 +2159,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2340,6 +2343,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3072,6 +3076,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3599,6 +3604,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4008,6 +4014,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4677,6 +4684,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6725,6 +6733,7 @@ self: super: { "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"; @@ -7002,9 +7011,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; @@ -7076,6 +7087,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7160,6 +7172,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7571,6 +7584,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7598,6 +7612,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_2"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index 12dbabfe056..0d27d140905 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -898,6 +898,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1518,6 +1519,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -2156,6 +2158,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2339,6 +2342,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3070,6 +3074,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3597,6 +3602,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4005,6 +4011,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4674,6 +4681,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6718,6 +6726,7 @@ self: super: { "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"; @@ -6995,9 +7004,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; @@ -7069,6 +7080,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7153,6 +7165,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7564,6 +7577,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7590,6 +7604,7 @@ self: super: { "tasty-dejafu" = dontDistribute super."tasty-dejafu"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index 1afbad2814f..18bceff62c1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -898,6 +898,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1517,6 +1518,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -2155,6 +2157,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2338,6 +2341,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3069,6 +3073,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3596,6 +3601,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4003,6 +4009,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4672,6 +4679,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6713,6 +6721,7 @@ self: super: { "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"; @@ -6990,9 +6999,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; @@ -7064,6 +7075,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7148,6 +7160,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7559,6 +7572,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7585,6 +7599,7 @@ self: super: { "tasty-dejafu" = dontDistribute super."tasty-dejafu"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index 2148431d986..5d6f883d97d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -898,6 +898,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1517,6 +1518,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -2154,6 +2156,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2337,6 +2340,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3068,6 +3072,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3593,6 +3598,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3998,6 +4004,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4106,6 +4113,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4664,6 +4672,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6702,6 +6711,7 @@ self: super: { "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"; @@ -6979,9 +6989,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; @@ -7052,6 +7064,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7136,6 +7149,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7547,6 +7561,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7573,6 +7588,7 @@ self: super: { "tasty-dejafu" = dontDistribute super."tasty-dejafu"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix index c6d21a5d976..0a87d9d8b96 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -897,6 +897,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1514,6 +1515,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -2148,6 +2150,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2331,6 +2334,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3062,6 +3066,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3587,6 +3592,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3992,6 +3998,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4100,6 +4107,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4655,6 +4663,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6690,6 +6699,7 @@ self: super: { "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"; @@ -6967,9 +6977,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; @@ -7040,6 +7052,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7124,6 +7137,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7534,6 +7548,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7560,6 +7575,7 @@ self: super: { "tasty-dejafu" = dontDistribute super."tasty-dejafu"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index a7d89a26946..0d368f7c309 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -901,6 +901,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1527,6 +1528,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -2171,6 +2173,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2356,6 +2359,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3631,6 +3635,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4042,6 +4047,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4720,6 +4726,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6789,6 +6796,7 @@ self: super: { "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"; @@ -7066,9 +7074,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -7143,6 +7153,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7227,6 +7238,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7641,6 +7653,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7669,6 +7682,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix index 4d8e6d18247..ab130ff9cf7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -896,6 +896,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1513,6 +1514,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -2147,6 +2149,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2330,6 +2333,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3061,6 +3065,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3586,6 +3591,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3991,6 +3997,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4099,6 +4106,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4654,6 +4662,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6688,6 +6697,7 @@ self: super: { "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"; @@ -6965,9 +6975,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; @@ -7038,6 +7050,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7122,6 +7135,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7531,6 +7545,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7557,6 +7572,7 @@ self: super: { "tasty-dejafu" = dontDistribute super."tasty-dejafu"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7635,6 +7651,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_4_1"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix index 59f60f4737a..8f81ba847b3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix @@ -896,6 +896,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1513,6 +1514,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -2146,6 +2148,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2329,6 +2332,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3058,6 +3062,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3583,6 +3588,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3987,6 +3993,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4095,6 +4102,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4648,6 +4656,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6678,6 +6687,7 @@ self: super: { "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"; @@ -6944,20 +6954,27 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_6"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_6"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = dontDistribute super."servant-swagger"; "servant-yaml" = dontDistribute super."servant-yaml"; "servius" = dontDistribute super."servius"; @@ -7018,6 +7035,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7101,6 +7119,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7510,6 +7529,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7536,6 +7556,7 @@ self: super: { "tasty-dejafu" = dontDistribute super."tasty-dejafu"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7614,6 +7635,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_4_1"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix index 4e35a202239..bc3de3682f2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix @@ -896,6 +896,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1513,6 +1514,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -2146,6 +2148,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2329,6 +2332,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3056,6 +3060,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3581,6 +3586,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -3985,6 +3991,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4092,6 +4099,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4644,6 +4652,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6672,6 +6681,7 @@ self: super: { "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"; @@ -6938,20 +6948,27 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_6"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_6"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = dontDistribute super."servant-swagger"; "servant-yaml" = dontDistribute super."servant-yaml"; "servius" = dontDistribute super."servius"; @@ -7012,6 +7029,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7095,6 +7113,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7504,6 +7523,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7530,6 +7550,7 @@ self: super: { "tasty-dejafu" = dontDistribute super."tasty-dejafu"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7608,6 +7629,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_4_1"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index 127cf3cb3ef..2713d7267d2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -901,6 +901,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1526,6 +1527,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -2170,6 +2172,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2355,6 +2358,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3629,6 +3633,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4040,6 +4045,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4717,6 +4723,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6785,6 +6792,7 @@ self: super: { "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"; @@ -7062,9 +7070,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_2"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -7139,6 +7149,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7223,6 +7234,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7636,6 +7648,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7664,6 +7677,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index abb668f6337..1a186297dae 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -901,6 +901,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1526,6 +1527,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -2170,6 +2172,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2355,6 +2358,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3629,6 +3633,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4040,6 +4045,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4717,6 +4723,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6785,6 +6792,7 @@ self: super: { "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"; @@ -7062,9 +7070,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_2"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -7139,6 +7149,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7223,6 +7234,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7635,6 +7647,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7663,6 +7676,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index c30813ba542..5d78a259e50 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -901,6 +901,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1525,6 +1526,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -2169,6 +2171,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2354,6 +2357,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3627,6 +3631,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4038,6 +4043,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4711,6 +4717,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6776,6 +6783,7 @@ self: super: { "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"; @@ -7053,9 +7061,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_2"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -7130,6 +7140,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7214,6 +7225,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7626,6 +7638,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7653,6 +7666,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index 3fd5dab3746..1159c93ff33 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -901,6 +901,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1525,6 +1526,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -2169,6 +2171,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2354,6 +2357,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3624,6 +3628,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4035,6 +4040,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4708,6 +4714,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6769,6 +6776,7 @@ self: super: { "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"; @@ -7046,9 +7054,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_2"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -7123,6 +7133,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7207,6 +7218,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7619,6 +7631,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7646,6 +7659,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index a1db590cde9..4f0e8f9b158 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -901,6 +901,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1523,6 +1524,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -2167,6 +2169,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2351,6 +2354,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3621,6 +3625,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4031,6 +4036,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4704,6 +4710,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6763,6 +6770,7 @@ self: super: { "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"; @@ -7040,9 +7048,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -7117,6 +7127,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7201,6 +7212,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7612,6 +7624,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7639,6 +7652,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index 04337ca7606..516315bb8d6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -901,6 +901,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1523,6 +1524,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -2165,6 +2167,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2349,6 +2352,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3615,6 +3619,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4025,6 +4030,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4698,6 +4704,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6754,6 +6761,7 @@ self: super: { "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"; @@ -7031,9 +7039,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -7108,6 +7118,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7192,6 +7203,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7603,6 +7615,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7630,6 +7643,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_2"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index 81b257b12a5..a89ad287182 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -899,6 +899,7 @@ self: super: { "Spock" = doDistribute super."Spock_0_8_1_0"; "Spock-auth" = dontDistribute super."Spock-auth"; "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1521,6 +1522,7 @@ self: super: { "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"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; @@ -2162,6 +2164,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2346,6 +2349,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -3082,6 +3086,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3610,6 +3615,7 @@ self: super: { "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; "groom" = dontDistribute super."groom"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; "grouped-list" = dontDistribute super."grouped-list"; @@ -4020,6 +4026,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -4693,6 +4700,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6748,6 +6756,7 @@ self: super: { "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"; @@ -7025,9 +7034,11 @@ self: super: { "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -7102,6 +7113,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "should-not-typecheck" = dontDistribute super."should-not-typecheck"; "show-type" = dontDistribute super."show-type"; @@ -7186,6 +7198,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7597,6 +7610,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7624,6 +7638,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_2"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix index 48692680149..6fee3441372 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix @@ -876,6 +876,7 @@ self: super: { "SpinCounter" = dontDistribute super."SpinCounter"; "Spintax" = dontDistribute super."Spintax"; "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1416,6 +1417,7 @@ self: super: { "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"; @@ -2024,6 +2026,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2202,6 +2205,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -2911,6 +2915,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock" = dontDistribute super."flowdock"; "flowdock-api" = dontDistribute super."flowdock-api"; @@ -3423,6 +3428,7 @@ self: super: { "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"; "grouped-list" = doDistribute super."grouped-list_0_2_1_0"; @@ -3730,6 +3736,7 @@ self: super: { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_6_0_0"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-core" = dontDistribute super."haskoin-core"; @@ -3815,6 +3822,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3920,6 +3928,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4438,6 +4447,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6390,6 +6400,7 @@ self: super: { "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"; @@ -6649,18 +6660,26 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_6"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_6"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = dontDistribute super."servant-swagger"; "ses-html" = dontDistribute super."ses-html"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; @@ -6719,6 +6738,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; @@ -6799,6 +6819,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7055,6 +7076,7 @@ self: super: { "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_0"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; @@ -7190,6 +7212,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7212,6 +7235,7 @@ self: super: { "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"; @@ -7287,6 +7311,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_4_1"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix index 54df38ebbbe..762fa239896 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix @@ -876,6 +876,7 @@ self: super: { "SpinCounter" = dontDistribute super."SpinCounter"; "Spintax" = dontDistribute super."Spintax"; "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1414,6 +1415,7 @@ self: super: { "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"; @@ -2022,6 +2024,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2200,6 +2203,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -2905,6 +2909,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock" = dontDistribute super."flowdock"; "flowdock-api" = dontDistribute super."flowdock-api"; @@ -3417,6 +3422,7 @@ self: super: { "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"; "grouped-list" = doDistribute super."grouped-list_0_2_1_0"; @@ -3724,6 +3730,7 @@ self: super: { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_6_0_0"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-core" = dontDistribute super."haskoin-core"; @@ -3809,6 +3816,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3913,6 +3921,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4428,6 +4437,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6373,6 +6383,7 @@ self: super: { "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"; @@ -6632,18 +6643,26 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_6"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_6"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = dontDistribute super."servant-swagger"; "ses-html" = dontDistribute super."ses-html"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; @@ -6702,6 +6721,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; @@ -6782,6 +6802,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -7038,6 +7059,7 @@ self: super: { "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_0"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; @@ -7173,6 +7195,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7195,6 +7218,7 @@ self: super: { "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"; @@ -7270,6 +7294,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_4_1"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix index 8b7438640b5..51ea3c83744 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix @@ -873,6 +873,7 @@ self: super: { "SpinCounter" = dontDistribute super."SpinCounter"; "Spintax" = dontDistribute super."Spintax"; "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1409,6 +1410,7 @@ self: super: { "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"; @@ -2011,6 +2013,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2189,6 +2192,7 @@ self: super: { "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" = dontDistribute super."darcs"; @@ -2888,6 +2892,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock" = dontDistribute super."flowdock"; "flowdock-api" = dontDistribute super."flowdock-api"; @@ -3397,6 +3402,7 @@ self: super: { "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"; @@ -3700,6 +3706,7 @@ self: super: { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_6_0_0"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-core" = dontDistribute super."haskoin-core"; @@ -3744,6 +3751,7 @@ self: super: { "haxl-amazonka" = dontDistribute super."haxl-amazonka"; "haxl-facebook" = dontDistribute super."haxl-facebook"; "haxparse" = dontDistribute super."haxparse"; + "haxr" = doDistribute super."haxr_3000_11_1_3"; "haxr-th" = dontDistribute super."haxr-th"; "haxy" = dontDistribute super."haxy"; "hayland" = dontDistribute super."hayland"; @@ -3784,6 +3792,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3887,6 +3896,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4396,6 +4406,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6330,6 +6341,7 @@ self: super: { "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"; @@ -6585,18 +6597,26 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_6"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_6"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = dontDistribute super."servant-swagger"; "ses-html" = dontDistribute super."ses-html"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; @@ -6655,6 +6675,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; @@ -6731,6 +6752,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -6985,6 +7007,7 @@ self: super: { "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_0"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; @@ -7120,6 +7143,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7142,6 +7166,7 @@ self: super: { "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"; @@ -7216,6 +7241,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_4_1"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7808,6 +7834,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_8_1"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix index fd424725953..12348a49d16 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix @@ -861,6 +861,7 @@ self: super: { "SpacePrivateers" = dontDistribute super."SpacePrivateers"; "SpinCounter" = dontDistribute super."SpinCounter"; "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1392,6 +1393,7 @@ self: super: { "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"; @@ -1980,6 +1982,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2153,6 +2156,7 @@ self: super: { "daemons" = dontDistribute super."daemons"; "dag" = dontDistribute super."dag"; "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; "darcs" = doDistribute super."darcs_2_10_2"; @@ -2836,6 +2840,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3336,6 +3341,7 @@ self: super: { "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"; @@ -3637,6 +3643,7 @@ self: super: { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_6_0_0"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-core" = dontDistribute super."haskoin-core"; @@ -3681,6 +3688,7 @@ self: super: { "haxl-amazonka" = dontDistribute super."haxl-amazonka"; "haxl-facebook" = dontDistribute super."haxl-facebook"; "haxparse" = dontDistribute super."haxparse"; + "haxr" = doDistribute super."haxr_3000_11_1_3"; "haxr-th" = dontDistribute super."haxr-th"; "haxy" = dontDistribute super."haxy"; "hayland" = dontDistribute super."hayland"; @@ -3721,6 +3729,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3824,6 +3833,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4329,6 +4339,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6234,6 +6245,7 @@ self: super: { "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"; @@ -6485,12 +6497,19 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_6"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_6"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -6498,6 +6517,7 @@ self: super: { "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -6554,6 +6574,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; @@ -6629,6 +6650,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -6878,6 +6900,7 @@ self: super: { "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_0"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; @@ -7013,6 +7036,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7034,6 +7058,7 @@ self: super: { "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"; @@ -7104,6 +7129,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_4_1"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7688,6 +7714,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_8_1"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix index 2ab90032f53..bc39b5bcfab 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix @@ -859,6 +859,7 @@ self: super: { "SpacePrivateers" = dontDistribute super."SpacePrivateers"; "SpinCounter" = dontDistribute super."SpinCounter"; "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1386,6 +1387,7 @@ self: super: { "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"; @@ -1971,6 +1973,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2144,6 +2147,7 @@ self: super: { "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"; @@ -2826,6 +2830,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3326,6 +3331,7 @@ self: super: { "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"; @@ -3627,6 +3633,7 @@ self: super: { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_6_0_0"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-core" = dontDistribute super."haskoin-core"; @@ -3671,6 +3678,7 @@ self: super: { "haxl-amazonka" = dontDistribute super."haxl-amazonka"; "haxl-facebook" = dontDistribute super."haxl-facebook"; "haxparse" = dontDistribute super."haxparse"; + "haxr" = doDistribute super."haxr_3000_11_1_3"; "haxr-th" = dontDistribute super."haxr-th"; "haxy" = dontDistribute super."haxy"; "hayland" = dontDistribute super."hayland"; @@ -3711,6 +3719,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3814,6 +3823,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4318,6 +4328,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6220,6 +6231,7 @@ self: super: { "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"; @@ -6470,12 +6482,19 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_6"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_6"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -6483,6 +6502,7 @@ self: super: { "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -6539,6 +6559,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; @@ -6614,6 +6635,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -6863,6 +6885,7 @@ self: super: { "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_0"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; @@ -6997,6 +7020,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -7018,6 +7042,7 @@ self: super: { "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"; @@ -7088,6 +7113,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_4_1"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7671,6 +7697,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_8_1"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix index 0994f108107..ae4557e9d5f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix @@ -858,6 +858,7 @@ self: super: { "SpacePrivateers" = dontDistribute super."SpacePrivateers"; "SpinCounter" = dontDistribute super."SpinCounter"; "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1385,6 +1386,7 @@ self: super: { "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"; @@ -1970,6 +1972,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2143,6 +2146,7 @@ self: super: { "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"; @@ -2821,6 +2825,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3319,6 +3324,7 @@ self: super: { "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"; @@ -3620,6 +3626,7 @@ self: super: { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_6_0_0"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-core" = dontDistribute super."haskoin-core"; @@ -3664,6 +3671,7 @@ self: super: { "haxl-amazonka" = dontDistribute super."haxl-amazonka"; "haxl-facebook" = dontDistribute super."haxl-facebook"; "haxparse" = dontDistribute super."haxparse"; + "haxr" = doDistribute super."haxr_3000_11_1_3"; "haxr-th" = dontDistribute super."haxr-th"; "haxy" = dontDistribute super."haxy"; "hayland" = dontDistribute super."hayland"; @@ -3704,6 +3712,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3807,6 +3816,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4310,6 +4320,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6199,6 +6210,7 @@ self: super: { "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"; @@ -6448,12 +6460,19 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_6"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_6"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -6461,6 +6480,7 @@ self: super: { "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -6517,6 +6537,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; @@ -6592,6 +6613,7 @@ self: super: { "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; "slave-thread" = doDistribute super."slave-thread_1_0_0_0"; + "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; "sloane" = dontDistribute super."sloane"; @@ -6841,6 +6863,7 @@ self: super: { "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_0"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; @@ -6974,6 +6997,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -6995,6 +7019,7 @@ self: super: { "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"; @@ -7065,6 +7090,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_4_1"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7648,6 +7674,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_8_1"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix index fc760b16369..d477235227a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix @@ -855,6 +855,7 @@ self: super: { "SpacePrivateers" = dontDistribute super."SpacePrivateers"; "SpinCounter" = dontDistribute super."SpinCounter"; "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1379,6 +1380,7 @@ self: super: { "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"; @@ -1959,6 +1961,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2131,6 +2134,7 @@ self: super: { "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"; @@ -2800,6 +2804,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3296,6 +3301,7 @@ self: super: { "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"; @@ -3597,6 +3603,7 @@ self: super: { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_6_0_0"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-core" = dontDistribute super."haskoin-core"; @@ -3641,6 +3648,7 @@ self: super: { "haxl-amazonka" = dontDistribute super."haxl-amazonka"; "haxl-facebook" = dontDistribute super."haxl-facebook"; "haxparse" = dontDistribute super."haxparse"; + "haxr" = doDistribute super."haxr_3000_11_1_3"; "haxr-th" = dontDistribute super."haxr-th"; "haxy" = dontDistribute super."haxy"; "hayland" = dontDistribute super."hayland"; @@ -3681,6 +3689,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3784,6 +3793,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4287,6 +4297,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6165,6 +6176,7 @@ self: super: { "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"; @@ -6413,12 +6425,19 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_6"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_6"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -6426,6 +6445,7 @@ self: super: { "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -6482,6 +6502,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; @@ -6556,6 +6577,7 @@ self: super: { "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"; @@ -6801,6 +6823,7 @@ self: super: { "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_0"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; @@ -6934,6 +6957,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -6955,6 +6979,7 @@ self: super: { "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"; @@ -7024,6 +7049,7 @@ self: super: { "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7603,6 +7629,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_8_1"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.4.nix b/pkgs/development/haskell-modules/configuration-lts-5.4.nix index 6cd7f371a35..a6a4b891672 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.4.nix @@ -854,6 +854,7 @@ self: super: { "SpacePrivateers" = dontDistribute super."SpacePrivateers"; "SpinCounter" = dontDistribute super."SpinCounter"; "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1377,6 +1378,7 @@ self: super: { "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"; @@ -1956,6 +1958,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2127,6 +2130,7 @@ self: super: { "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"; @@ -2788,6 +2792,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3283,6 +3288,7 @@ self: super: { "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"; @@ -3582,6 +3588,7 @@ self: super: { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_6_0_0"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-core" = dontDistribute super."haskoin-core"; @@ -3626,6 +3633,7 @@ self: super: { "haxl-amazonka" = dontDistribute super."haxl-amazonka"; "haxl-facebook" = dontDistribute super."haxl-facebook"; "haxparse" = dontDistribute super."haxparse"; + "haxr" = doDistribute super."haxr_3000_11_1_3"; "haxr-th" = dontDistribute super."haxr-th"; "haxy" = dontDistribute super."haxy"; "hayland" = dontDistribute super."hayland"; @@ -3666,6 +3674,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3769,6 +3778,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4269,6 +4279,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6134,6 +6145,7 @@ self: super: { "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"; @@ -6382,12 +6394,19 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_6"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_6"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -6395,6 +6414,7 @@ self: super: { "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -6451,6 +6471,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; @@ -6525,6 +6546,7 @@ self: super: { "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"; @@ -6770,6 +6792,7 @@ self: super: { "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_0"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; @@ -6903,6 +6926,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -6924,6 +6948,7 @@ self: super: { "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"; @@ -6992,6 +7017,7 @@ self: super: { "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7569,6 +7595,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_8_1"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.5.nix b/pkgs/development/haskell-modules/configuration-lts-5.5.nix index 321ce52588e..886993043d6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.5.nix @@ -854,6 +854,7 @@ self: super: { "SpacePrivateers" = dontDistribute super."SpacePrivateers"; "SpinCounter" = dontDistribute super."SpinCounter"; "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1376,6 +1377,7 @@ self: super: { "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"; @@ -1952,6 +1954,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2123,6 +2126,7 @@ self: super: { "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"; @@ -2784,6 +2788,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3279,6 +3284,7 @@ self: super: { "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"; @@ -3577,6 +3583,7 @@ self: super: { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_6_0_0"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-core" = dontDistribute super."haskoin-core"; @@ -3621,6 +3628,7 @@ self: super: { "haxl-amazonka" = dontDistribute super."haxl-amazonka"; "haxl-facebook" = dontDistribute super."haxl-facebook"; "haxparse" = dontDistribute super."haxparse"; + "haxr" = doDistribute super."haxr_3000_11_1_3"; "haxr-th" = dontDistribute super."haxr-th"; "haxy" = dontDistribute super."haxy"; "hayland" = dontDistribute super."hayland"; @@ -3661,6 +3669,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3764,6 +3773,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4263,6 +4273,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6126,6 +6137,7 @@ self: super: { "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"; @@ -6374,12 +6386,19 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_6"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_6"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -6387,6 +6406,7 @@ self: super: { "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -6443,6 +6463,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; @@ -6517,6 +6538,7 @@ self: super: { "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"; @@ -6762,6 +6784,7 @@ self: super: { "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_0"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; @@ -6895,6 +6918,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -6916,6 +6940,7 @@ self: super: { "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"; @@ -6984,6 +7009,7 @@ self: super: { "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7558,6 +7584,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_8_1"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.6.nix b/pkgs/development/haskell-modules/configuration-lts-5.6.nix index 2f5c29f2324..b907b94428c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.6.nix @@ -853,6 +853,7 @@ self: super: { "SpacePrivateers" = dontDistribute super."SpacePrivateers"; "SpinCounter" = dontDistribute super."SpinCounter"; "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1372,6 +1373,7 @@ self: super: { "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"; @@ -1942,6 +1944,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2112,6 +2115,7 @@ self: super: { "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"; @@ -2773,6 +2777,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3265,6 +3270,7 @@ self: super: { "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"; @@ -3562,6 +3568,7 @@ self: super: { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_6_0_0"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-core" = dontDistribute super."haskoin-core"; @@ -3606,6 +3613,7 @@ self: super: { "haxl-amazonka" = dontDistribute super."haxl-amazonka"; "haxl-facebook" = dontDistribute super."haxl-facebook"; "haxparse" = dontDistribute super."haxparse"; + "haxr" = doDistribute super."haxr_3000_11_1_3"; "haxr-th" = dontDistribute super."haxr-th"; "haxy" = dontDistribute super."haxy"; "hayland" = dontDistribute super."hayland"; @@ -3645,6 +3653,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3747,6 +3756,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4244,6 +4254,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6102,6 +6113,7 @@ self: super: { "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"; @@ -6349,12 +6361,19 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_6"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_6"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -6362,6 +6381,7 @@ self: super: { "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -6418,6 +6438,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; @@ -6492,6 +6513,7 @@ self: super: { "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"; @@ -6737,6 +6759,7 @@ self: super: { "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_0"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; @@ -6868,6 +6891,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -6889,6 +6913,7 @@ self: super: { "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"; @@ -6957,6 +6982,7 @@ self: super: { "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7529,6 +7555,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_8_1"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.7.nix b/pkgs/development/haskell-modules/configuration-lts-5.7.nix index 26f79b2885a..9c24e438cd7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.7.nix @@ -853,6 +853,7 @@ self: super: { "SpacePrivateers" = dontDistribute super."SpacePrivateers"; "SpinCounter" = dontDistribute super."SpinCounter"; "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1372,6 +1373,7 @@ self: super: { "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"; @@ -1938,6 +1940,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2108,6 +2111,7 @@ self: super: { "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"; @@ -2769,6 +2773,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3261,6 +3266,7 @@ self: super: { "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"; @@ -3558,6 +3564,7 @@ self: super: { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_6_0_0"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-core" = dontDistribute super."haskoin-core"; @@ -3602,6 +3609,7 @@ self: super: { "haxl-amazonka" = dontDistribute super."haxl-amazonka"; "haxl-facebook" = dontDistribute super."haxl-facebook"; "haxparse" = dontDistribute super."haxparse"; + "haxr" = doDistribute super."haxr_3000_11_1_3"; "haxr-th" = dontDistribute super."haxr-th"; "haxy" = dontDistribute super."haxy"; "hayland" = dontDistribute super."hayland"; @@ -3641,6 +3649,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3742,6 +3751,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4237,6 +4247,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6091,6 +6102,7 @@ self: super: { "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"; @@ -6337,12 +6349,19 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_6"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_6"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -6350,6 +6369,7 @@ self: super: { "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -6406,6 +6426,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; @@ -6480,6 +6501,7 @@ self: super: { "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"; @@ -6725,6 +6747,7 @@ self: super: { "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_0"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; @@ -6854,6 +6877,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -6875,6 +6899,7 @@ self: super: { "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"; @@ -6943,6 +6968,7 @@ self: super: { "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7512,6 +7538,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_8_1"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.8.nix b/pkgs/development/haskell-modules/configuration-lts-5.8.nix index dbe6ed200fa..cb9856fd33b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.8.nix @@ -853,6 +853,7 @@ self: super: { "SpacePrivateers" = dontDistribute super."SpacePrivateers"; "SpinCounter" = dontDistribute super."SpinCounter"; "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; @@ -1372,6 +1373,7 @@ self: super: { "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"; @@ -1937,6 +1939,7 @@ self: super: { "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; "config-select" = dontDistribute super."config-select"; "config-value" = dontDistribute super."config-value"; "configifier" = dontDistribute super."configifier"; @@ -2107,6 +2110,7 @@ self: super: { "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"; @@ -2768,6 +2772,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_2"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3259,6 +3264,7 @@ self: super: { "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"; @@ -3556,6 +3562,7 @@ self: super: { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_6_0_0"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-core" = dontDistribute super."haskoin-core"; @@ -3600,6 +3607,7 @@ self: super: { "haxl-amazonka" = dontDistribute super."haxl-amazonka"; "haxl-facebook" = dontDistribute super."haxl-facebook"; "haxparse" = dontDistribute super."haxparse"; + "haxr" = doDistribute super."haxr_3000_11_1_3"; "haxr-th" = dontDistribute super."haxr-th"; "haxy" = dontDistribute super."haxy"; "hayland" = dontDistribute super."hayland"; @@ -3639,6 +3647,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; "hdr-histogram" = dontDistribute super."hdr-histogram"; @@ -3740,6 +3749,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_1"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4235,6 +4245,7 @@ self: super: { "imbib" = dontDistribute super."imbib"; "imgurder" = dontDistribute super."imgurder"; "imm" = dontDistribute super."imm"; + "immortal" = doDistribute super."immortal_0_2"; "imparse" = dontDistribute super."imparse"; "imperative-edsl" = dontDistribute super."imperative-edsl"; "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; @@ -6089,6 +6100,7 @@ self: super: { "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"; @@ -6335,12 +6347,19 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_6"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; "servant-github" = dontDistribute super."servant-github"; "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_6"; + "servant-js" = dontDistribute super."servant-js"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pandoc" = dontDistribute super."servant-pandoc"; @@ -6348,6 +6367,7 @@ self: super: { "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -6404,6 +6424,7 @@ self: super: { "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; + "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; @@ -6478,6 +6499,7 @@ self: super: { "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"; @@ -6723,6 +6745,7 @@ self: super: { "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_0"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; @@ -6852,6 +6875,7 @@ self: super: { "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; "tagged-transformer" = dontDistribute super."tagged-transformer"; "tagging" = dontDistribute super."tagging"; "taggy" = dontDistribute super."taggy"; @@ -6873,6 +6897,7 @@ self: super: { "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"; @@ -6941,6 +6966,7 @@ self: super: { "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7508,6 +7534,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_8_1"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 1f5f52c8cdb..9fd16e6dbac 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -797,6 +797,7 @@ self: { homepage = "http://wiki.portal.chalmers.se/agda/"; description = "A dependently typed functional programming language and proof assistant"; license = "unknown"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) emacs;}; "Agda-executable" = callPackage @@ -3596,6 +3597,7 @@ self: { homepage = "https://github.com/klangner/Condor"; description = "Information retrieval library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ConfigFile" = callPackage @@ -5144,6 +5146,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "Earley_0_11_0_0" = callPackage + ({ mkDerivation, base, ListLike, tasty, tasty-hunit + , tasty-quickcheck, unordered-containers + }: + mkDerivation { + pname = "Earley"; + version = "0.11.0.0"; + sha256 = "a8ad11ac5a263752180fb25a9d1accd21855f61423086bdbf223bd3fb2192126"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base ListLike ]; + executableHaskellDepends = [ base unordered-containers ]; + testHaskellDepends = [ base tasty tasty-hunit tasty-quickcheck ]; + description = "Parsing all context-free grammars using Earley's algorithm"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "Ebnf2ps" = callPackage ({ mkDerivation, array, base, containers, directory, happy , old-time, unix @@ -11701,6 +11721,7 @@ self: { ]; description = "A utility to print the SourceFile attribute of one or more Java class files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Javav" = callPackage @@ -11714,6 +11735,7 @@ self: { executableHaskellDepends = [ base ]; description = "A utility to print the target version of Java class files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JsContracts" = callPackage @@ -17077,6 +17099,7 @@ self: { homepage = "https://bitbucket.org/carter/ref"; description = "Generic Mutable Ref Abstraction Layer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RefSerialize_0_3_1_3" = callPackage @@ -18704,6 +18727,20 @@ self: { hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; + "Spock-lucid" = callPackage + ({ mkDerivation, base, blaze-builder, lucid, Spock, transformers }: + mkDerivation { + pname = "Spock-lucid"; + version = "0.2.0.0"; + sha256 = "c12d8f47caff17ce9c59d8a2a645c80b73d4e542d770794fea034e75376b27b0"; + libraryHaskellDepends = [ + base blaze-builder lucid Spock transformers + ]; + homepage = "http://github.com/aelve/Spock-lucid"; + description = "Lucid support for Spock"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "Spock-worker_0_2_1_3" = callPackage ({ mkDerivation, base, containers, HTF, lifted-base, mtl, Spock , stm, text, time, transformers, vector @@ -19182,6 +19219,7 @@ self: { jailbreak = true; description = "A client for Quill databases"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Tablify" = callPackage @@ -19387,6 +19425,7 @@ self: { homepage = "http://thrift.apache.org"; description = "Haskell bindings for the Apache Thrift RPC system"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Tic-Tac-Toe" = callPackage @@ -32653,12 +32692,13 @@ self: { ({ mkDerivation, base, directory, filepath }: mkDerivation { pname = "autoexporter"; - version = "0.1.2"; - sha256 = "bdc64e16ee42cbadf596cba93ca665cdfd3cf621f636ea5a1f3f8e7248616f2e"; + version = "0.1.4"; + sha256 = "b3b75b89e2d357a49df12b429cb7699932dd9b96bd1104ee9b1fcbe48a7e9b47"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base directory filepath ]; executableHaskellDepends = [ base ]; + homepage = "https://github.com/tfausak/autoexporter#readme"; description = "Automatically re-export modules"; license = stdenv.lib.licenses.mit; }) {}; @@ -35546,6 +35586,20 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "bench" = callPackage + ({ mkDerivation, base, criterion, silently, text, turtle }: + mkDerivation { + pname = "bench"; + version = "1.0.0"; + sha256 = "377f85a056c84e5a5e3e8b5ddd6fd2bf8e061b1025c48eac1053df3ff988dcca"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ base criterion silently text turtle ]; + homepage = "http://github.com/Gabriel439/bench"; + description = "Command-line benchmark tool"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "benchmark-function" = callPackage ({ mkDerivation, base, process, random, time }: mkDerivation { @@ -41121,6 +41175,7 @@ self: { homepage = "http://vis.renci.org/jeff/buster"; description = "Almost but not quite entirely unlike FRP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "buster-gtk" = callPackage @@ -45070,8 +45125,8 @@ self: { }: mkDerivation { pname = "casr-logbook"; - version = "0.0.3"; - sha256 = "467e3484e77c94f6d077048fd184ea6b50904afe80291be88114455dd9af4fd5"; + version = "0.0.4"; + sha256 = "9c0942ed3905dc6d6fc2e65a171c826f9de33b7df72f897a8e94fdf854d02f95"; libraryHaskellDepends = [ base containers ]; testHaskellDepends = [ base directory doctest filepath QuickCheck template-haskell @@ -47311,10 +47366,9 @@ self: { ({ mkDerivation, base, split }: mkDerivation { pname = "cipher-rc5"; - version = "0.1.0.1"; - sha256 = "2e66cd9a8e8b7fe73ba7f88470781d6d0e1ec170cdd0850851f3b4056c9ba4d1"; + version = "0.1.0.2"; + sha256 = "ad060a752c1b4965e0a8165ddbedaeb28b0e224995de4a2a7fb49263b1873451"; libraryHaskellDepends = [ base split ]; - jailbreak = true; homepage = "http://github.com/fegu/cipher-rc5"; description = "Pure RC5 implementation"; license = stdenv.lib.licenses.bsd3; @@ -53787,6 +53841,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "config-manager" = callPackage + ({ mkDerivation, base, directory, filepath, HUnit, parsec + , temporary, test-framework, test-framework-hunit, text + , unordered-containers + }: + mkDerivation { + pname = "config-manager"; + version = "0.0.0.2"; + sha256 = "9e20b6792c8147ee3ffabb4a39da92dd0f5427c5ac49c42c11f28ed5e73fce11"; + libraryHaskellDepends = [ + base filepath parsec text unordered-containers + ]; + testHaskellDepends = [ + base directory HUnit temporary test-framework test-framework-hunit + text unordered-containers + ]; + homepage = "https://gitlab.com/guyonvarch/config-manager"; + description = "Configuration management"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "config-select" = callPackage ({ mkDerivation, base, directory, filepath, unix, vty-menu }: mkDerivation { @@ -58696,6 +58771,29 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "danibot" = callPackage + ({ mkDerivation, aeson, async, attoparsec, base, bytestring + , conceit, containers, foldl, lens, lens-aeson, monoid-subclasses + , network, optparse-applicative, stm, streaming, text, transformers + , websockets, wreq, wuss + }: + mkDerivation { + pname = "danibot"; + version = "0.2.0.0"; + sha256 = "a8bd34d31eff0143a4e2fdc6cfd5070b37c5cfc8d087d21d742f3f9b0b720fa3"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson async attoparsec base bytestring conceit containers foldl + lens lens-aeson monoid-subclasses network stm streaming text + transformers websockets wreq wuss + ]; + executableHaskellDepends = [ base optparse-applicative ]; + jailbreak = true; + description = "Basic Slack bot framework"; + license = stdenv.lib.licenses.mit; + }) {}; + "dao" = callPackage ({ mkDerivation, array, base, binary, bytestring, containers , Crypto, data-binary-ieee754, deepseq, directory, filepath, mtl @@ -58724,6 +58822,7 @@ self: { ]; description = "Dao is meta programming language with its own built-in interpreted language, designed with artificial intelligence applications in mind"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dapi" = callPackage @@ -60380,6 +60479,7 @@ self: { libraryHaskellDepends = [ base bytestring bytestring-mmap unix ]; description = "Ropes, an alternative to (Byte)Strings"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-rtuple" = callPackage @@ -63176,6 +63276,35 @@ self: { hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; + "diagrams-builder_0_7_2_3" = callPackage + ({ mkDerivation, base, base-orphans, bytestring, cmdargs + , diagrams-cairo, diagrams-lib, diagrams-postscript + , diagrams-rasterific, diagrams-svg, directory, exceptions + , filepath, hashable, haskell-src-exts, hint, JuicyPixels, lens + , lucid-svg, mtl, split, transformers + }: + mkDerivation { + pname = "diagrams-builder"; + version = "0.7.2.3"; + sha256 = "4763a1e795311335dfec6b8f49deaca3b31a6f3d2bec5168a82f849df4b39029"; + configureFlags = [ "-fcairo" "-fps" "-frasterific" "-fsvg" ]; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base base-orphans cmdargs diagrams-lib directory exceptions + filepath hashable haskell-src-exts hint lens mtl split transformers + ]; + executableHaskellDepends = [ + base bytestring cmdargs diagrams-cairo diagrams-lib + diagrams-postscript diagrams-rasterific diagrams-svg directory + filepath JuicyPixels lens lucid-svg + ]; + homepage = "http://projects.haskell.org/diagrams"; + description = "hint-based build service for the diagrams graphics EDSL"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "diagrams-cairo_1_2_0_4" = callPackage ({ mkDerivation, base, bytestring, cairo, colour, containers , data-default-class, diagrams-core, diagrams-lib, directory @@ -67931,6 +68060,27 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "dotenv_0_3_0_0" = callPackage + ({ mkDerivation, base, base-compat, hspec, megaparsec + , optparse-applicative, process, text + }: + mkDerivation { + pname = "dotenv"; + version = "0.3.0.0"; + sha256 = "616c36561459941a20a5dc952fc4a03e68fdc02c944507a0d9e80ac9f7a49be7"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base base-compat megaparsec text ]; + executableHaskellDepends = [ + base base-compat megaparsec optparse-applicative process text + ]; + testHaskellDepends = [ base base-compat hspec megaparsec text ]; + homepage = "https://github.com/stackbuilders/dotenv-hs"; + description = "Loads environment variables from dotenv files"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "dotfs" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , haskell-src, HFuse, HUnit, parsec, process, QuickCheck @@ -78177,7 +78327,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "flow" = callPackage + "flow_1_0_2" = callPackage ({ mkDerivation, base, doctest, QuickCheck, template-haskell }: mkDerivation { pname = "flow"; @@ -78188,6 +78338,20 @@ self: { homepage = "http://taylor.fausak.me/flow/"; description = "Write more understandable Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "flow" = callPackage + ({ mkDerivation, base, doctest, QuickCheck, template-haskell }: + mkDerivation { + pname = "flow"; + version = "1.0.5"; + sha256 = "942cec5eb0430c9e3b147d75ed9246aff651a55afaee0735de3f3fec91266190"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base doctest QuickCheck template-haskell ]; + homepage = "https://github.com/tfausak/flow#readme"; + description = "Write more understandable Haskell"; + license = stdenv.lib.licenses.mit; }) {}; "flow2dot" = callPackage @@ -84997,25 +85161,25 @@ self: { , bloomfilter, bup, byteable, bytestring, case-insensitive , clientsession, concurrent-output, conduit, conduit-extra , containers, crypto-api, cryptonite, curl, data-default, DAV, dbus - , directory, dlist, dns, edit-distance, esqueleto, exceptions - , fdo-notify, feed, filepath, git, gnupg, gnutls, hinotify - , hslogger, http-client, http-conduit, http-types, IfElse, json - , lsof, magic, MissingH, monad-control, monad-logger, mtl, network - , network-info, network-multicast, network-protocol-xmpp - , network-uri, old-locale, openssh, optparse-applicative - , path-pieces, perl, persistent, persistent-sqlite - , persistent-template, process, QuickCheck, random, regex-tdfa - , resourcet, rsync, SafeSemaphore, sandi, securemem, shakespeare - , stm, tasty, tasty-hunit, tasty-quickcheck, tasty-rerun - , template-haskell, text, time, torrent, transformers, unix - , unix-compat, utf8-string, uuid, wai, wai-extra, warp, warp-tls - , wget, which, xml-types, yesod, yesod-core, yesod-default - , yesod-form, yesod-static + , directory, disk-free-space, dlist, dns, edit-distance, esqueleto + , exceptions, fdo-notify, feed, filepath, git, gnupg, gnutls + , hinotify, hslogger, http-client, http-conduit, http-types, IfElse + , json, lsof, magic, MissingH, monad-control, monad-logger + , mountpoints, mtl, network, network-info, network-multicast + , network-protocol-xmpp, network-uri, old-locale, openssh + , optparse-applicative, path-pieces, perl, persistent + , persistent-sqlite, persistent-template, process, QuickCheck + , random, regex-tdfa, resourcet, rsync, SafeSemaphore, sandi + , securemem, shakespeare, stm, tasty, tasty-hunit, tasty-quickcheck + , tasty-rerun, template-haskell, text, time, torrent, transformers + , unix, unix-compat, utf8-string, uuid, wai, wai-extra, warp + , warp-tls, wget, which, xml-types, yesod, yesod-core + , yesod-default, yesod-form, yesod-static }: mkDerivation { pname = "git-annex"; - version = "6.20160229"; - sha256 = "1eac609eeedbf01cf088461577b478a3aa99f7ecefa668214308e3b5509c1506"; + version = "6.20160318"; + sha256 = "5c0067d161a3cd6b93822f85eb82e5cb4895d913b2593bc4fe3b74d3ed426e0b"; configureFlags = [ "-fassistant" "-fcryptonite" "-fdbus" "-fdesktopnotify" "-fdns" "-ffeed" "-finotify" "-fpairing" "-fproduction" "-fquvi" "-fs3" @@ -85028,17 +85192,18 @@ self: { aeson async aws base blaze-builder bloomfilter byteable bytestring case-insensitive clientsession concurrent-output conduit conduit-extra containers crypto-api cryptonite data-default DAV - dbus directory dlist dns edit-distance esqueleto exceptions - fdo-notify feed filepath gnutls hinotify hslogger http-client - http-conduit http-types IfElse json magic MissingH monad-control - monad-logger mtl network network-info network-multicast - network-protocol-xmpp network-uri old-locale optparse-applicative - path-pieces persistent persistent-sqlite persistent-template - process QuickCheck random regex-tdfa resourcet SafeSemaphore sandi - securemem shakespeare stm tasty tasty-hunit tasty-quickcheck - tasty-rerun template-haskell text time torrent transformers unix - unix-compat utf8-string uuid wai wai-extra warp warp-tls xml-types - yesod yesod-core yesod-default yesod-form yesod-static + dbus directory disk-free-space dlist dns edit-distance esqueleto + exceptions fdo-notify feed filepath gnutls hinotify hslogger + http-client http-conduit http-types IfElse json magic MissingH + monad-control monad-logger mountpoints mtl network network-info + network-multicast network-protocol-xmpp network-uri old-locale + optparse-applicative path-pieces persistent persistent-sqlite + persistent-template process QuickCheck random regex-tdfa resourcet + SafeSemaphore sandi securemem shakespeare stm tasty tasty-hunit + tasty-quickcheck tasty-rerun template-haskell text time torrent + transformers unix unix-compat utf8-string uuid wai wai-extra warp + warp-tls xml-types yesod yesod-core yesod-default yesod-form + yesod-static ]; executableSystemDepends = [ bup curl git gnupg lsof openssh perl rsync wget which @@ -85434,22 +85599,22 @@ self: { ({ mkDerivation, base, bytestring, containers, directory , exceptions, filepath, git, github, hslogger, IfElse, MissingH , mtl, network, network-uri, optparse-applicative, pretty-show - , process, text, transformers, unix, unix-compat + , process, text, transformers, unix, unix-compat, utf8-string + , vector }: mkDerivation { pname = "github-backup"; - version = "1.20160207"; - sha256 = "7502179fe38bc00b21f9352a013334bfb9ca51488854bd9c01092cedf2330c64"; + version = "1.20160319"; + sha256 = "6831013f8ce72b5bfbe8ba19cd46bcca61e134d463d64f614db54526a944f73f"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ base bytestring containers directory exceptions filepath github hslogger IfElse MissingH mtl network network-uri optparse-applicative pretty-show process text transformers unix - unix-compat + unix-compat utf8-string vector ]; executableToolDepends = [ git ]; - jailbreak = true; homepage = "https://github.com/joeyh/github-backup"; description = "backs up everything github knows about a repository, to the repository"; license = stdenv.lib.licenses.gpl3; @@ -89928,6 +90093,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "groundhog-converters" = callPackage + ({ mkDerivation, aeson, base, bimap, bytestring, containers + , groundhog, groundhog-sqlite, groundhog-th, tasty, tasty-hunit + , tasty-quickcheck + }: + mkDerivation { + pname = "groundhog-converters"; + version = "0.1.0"; + sha256 = "394f213aba5f33fa564dbdb22cbaec38ad1a4fd6e779704700b0cf1b0e7f90ed"; + libraryHaskellDepends = [ aeson base bimap bytestring containers ]; + testHaskellDepends = [ + aeson base bimap bytestring containers groundhog groundhog-sqlite + groundhog-th tasty tasty-hunit tasty-quickcheck + ]; + description = "Extended Converter Library for groundhog embedded types"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "groundhog-inspector" = callPackage ({ mkDerivation, aeson-pretty, base, bytestring, cmdargs , containers, groundhog, groundhog-sqlite, groundhog-th, mtl @@ -94858,6 +95041,36 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "happstack-authenticate_2_3_4_1" = 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.1"; + sha256 = "d5d4ff8f3d4344e8e46010bcc178e15df58d98a542682d42221bb7ba2686da31"; + 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 @@ -98460,7 +98673,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "haskintex" = callPackage + "haskintex_0_6_0_0" = callPackage ({ mkDerivation, base, binary, bytestring, containers, directory , filepath, haskell-src-exts, HaTeX, hint, parsec, process, text , transformers @@ -98479,6 +98692,28 @@ self: { homepage = "http://daniel-diaz.github.io/projects/haskintex"; description = "Haskell Evaluation inside of LaTeX code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "haskintex" = callPackage + ({ mkDerivation, base, binary, bytestring, containers, directory + , filepath, haskell-src-exts, HaTeX, hint, parsec, process, text + , transformers + }: + mkDerivation { + pname = "haskintex"; + version = "0.6.0.1"; + sha256 = "9b45463a0d77e8665cc82b656b6d9f8020c873d73f2dd9fe92fcb85a45e90f44"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base binary bytestring containers directory filepath + haskell-src-exts HaTeX hint parsec process text transformers + ]; + executableHaskellDepends = [ base ]; + homepage = "http://daniel-diaz.github.io/projects/haskintex"; + description = "Haskell Evaluation inside of LaTeX code"; + license = stdenv.lib.licenses.bsd3; }) {}; "haskmon" = callPackage @@ -100370,7 +100605,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "haxr" = callPackage + "haxr_3000_11_1_3" = callPackage ({ mkDerivation, array, base, base-compat, base64-bytestring , blaze-builder, bytestring, HaXml, HsOpenSSL, http-streams , http-types, io-streams, mtl, mtl-compat, network, network-uri @@ -100389,6 +100624,28 @@ self: { homepage = "http://www.haskell.org/haskellwiki/HaXR"; description = "XML-RPC client and server library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "haxr" = callPackage + ({ mkDerivation, array, base, base-compat, base64-bytestring + , blaze-builder, bytestring, HaXml, HsOpenSSL, http-streams + , http-types, io-streams, mtl, mtl-compat, network, network-uri + , old-locale, old-time, template-haskell, time, utf8-string + }: + mkDerivation { + pname = "haxr"; + version = "3000.11.1.4"; + sha256 = "cc8a9bac11beae5ea08984c91cd7abde6dd16cedbad42e54bae028fbf8e9b8fb"; + libraryHaskellDepends = [ + array base base-compat base64-bytestring blaze-builder bytestring + HaXml HsOpenSSL http-streams http-types io-streams mtl mtl-compat + network network-uri old-locale old-time template-haskell time + utf8-string + ]; + homepage = "http://www.haskell.org/haskellwiki/HaXR"; + description = "XML-RPC client and server library"; + license = stdenv.lib.licenses.bsd3; }) {}; "haxr-th" = callPackage @@ -101330,7 +101587,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hdocs" = callPackage + "hdocs_0_4_4_0" = callPackage ({ mkDerivation, aeson, aeson-pretty, base, bytestring, Cabal , containers, filepath, ghc, ghc-paths, haddock-api , haddock-library, MonadCatchIO-transformers, mtl, network, process @@ -101355,9 +101612,10 @@ self: { homepage = "https://github.com/mvoidex/hdocs"; description = "Haskell docs tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hdocs_0_4_4_1" = callPackage + "hdocs" = callPackage ({ mkDerivation, aeson, aeson-pretty, base, bytestring, Cabal , containers, filepath, ghc, ghc-paths, haddock-api , haddock-library, MonadCatchIO-transformers, mtl, network, process @@ -101382,7 +101640,6 @@ self: { homepage = "https://github.com/mvoidex/hdocs"; description = "Haskell docs tool"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdph" = callPackage @@ -101654,15 +101911,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hedis_0_7_7" = callPackage + "hedis_0_7_8" = callPackage ({ mkDerivation, attoparsec, base, bytestring, bytestring-lexing , deepseq, HUnit, mtl, network, resource-pool, slave-thread , test-framework, test-framework-hunit, time, vector }: mkDerivation { pname = "hedis"; - version = "0.7.7"; - sha256 = "5a36b46ab3b6e24a094eb217961828857b5b34f28c2f9565def865a867956807"; + version = "0.7.8"; + sha256 = "079cdbde01306818003ce306f98fcc5b4b51ef0bdcf8ac5154ebbf58824d43a8"; libraryHaskellDepends = [ attoparsec base bytestring bytestring-lexing deepseq mtl network resource-pool time vector @@ -102466,8 +102723,8 @@ self: { }: mkDerivation { pname = "heroku-persistent"; - version = "0.1.0"; - sha256 = "6ef14323b7f054fd140aa3300199f0a7ea5326e68ed7f4bda04891d9cc0144f3"; + version = "0.2.0"; + sha256 = "f0c2101361dbdc91aecd642f07099bb421b5abca00284f69a7406ad56dbfc80c"; libraryHaskellDepends = [ base bytestring heroku persistent-postgresql text ]; @@ -103825,7 +104082,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "highlighting-kate" = callPackage + "highlighting-kate_0_6_1" = callPackage ({ mkDerivation, base, blaze-html, bytestring, containers, Diff , directory, filepath, mtl, parsec, pcre-light, process , utf8-string @@ -103848,9 +104105,10 @@ self: { homepage = "http://github.com/jgm/highlighting-kate"; description = "Syntax highlighting"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "highlighting-kate_0_6_2" = callPackage + "highlighting-kate" = callPackage ({ mkDerivation, base, blaze-html, bytestring, containers, Diff , directory, filepath, mtl, parsec, pcre-light, process , utf8-string @@ -103873,7 +104131,6 @@ self: { homepage = "http://github.com/jgm/highlighting-kate"; description = "Syntax highlighting"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hills" = callPackage @@ -104342,14 +104599,14 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hint_0_5_0" = callPackage + "hint_0_5_1" = callPackage ({ mkDerivation, base, directory, exceptions, extensible-exceptions , filepath, ghc, ghc-paths, HUnit, mtl, random, unix }: mkDerivation { pname = "hint"; - version = "0.5.0"; - sha256 = "0e8275937a8a59268e720b387be721309b1303b942bd857ed30f29b0d63e9279"; + version = "0.5.1"; + sha256 = "c774c56859366ead6fa88605bd69dad6314cc3c1f4fb732a1910cd9d17ca1666"; libraryHaskellDepends = [ base directory exceptions filepath ghc ghc-paths mtl random unix ]; @@ -104411,8 +104668,8 @@ self: { }: mkDerivation { pname = "hip"; - version = "1.0.1"; - sha256 = "dc8fb010b0ae61cfb6b7949a3572f32ce9d470ad5818c4ac39d60f94c9b7e3ca"; + version = "1.0.1.1"; + sha256 = "e2b2eaf7786f56b50ac814c5ac8a2966c7bd0ee1c132dcca48234188f47f0101"; libraryHaskellDepends = [ base bytestring Chart Chart-cairo colour deepseq filepath JuicyPixels netpbm primitive process repa temporary vector @@ -105034,6 +105291,30 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hjsmin_0_2_0_1" = callPackage + ({ mkDerivation, base, blaze-builder, bytestring, containers + , language-javascript, optparse-applicative, text + }: + mkDerivation { + pname = "hjsmin"; + version = "0.2.0.1"; + sha256 = "333e13cfd2b00f0ebeddf08aa9f0ed5ca689dcc21224cd0d9e6416e50fe1acae"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base blaze-builder bytestring containers language-javascript text + ]; + executableHaskellDepends = [ + base blaze-builder bytestring containers language-javascript + optparse-applicative text + ]; + jailbreak = true; + homepage = "http://github.com/erikd/hjsmin"; + description = "Haskell implementation of a javascript minifier"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hjson" = callPackage ({ mkDerivation, base, containers, parsec }: mkDerivation { @@ -106187,6 +106468,7 @@ self: { homepage = "http://www.pontarius.org/sub-projects/hlogger/"; description = "Simple, concurrent, extendable and easy-to-use logging library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hlongurl" = callPackage @@ -106837,6 +107119,7 @@ self: { homepage = "https://github.com/mikeizbicki/hmm"; description = "A hidden markov model library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmm-hmatrix" = callPackage @@ -111217,8 +111500,8 @@ self: { }: mkDerivation { pname = "hsdev"; - version = "0.1.7.0"; - sha256 = "5593a3ecb9aeca84bf6b62e0ecb82e181b838802ec58bd30b8915444dc22ff5b"; + version = "0.1.7.1"; + sha256 = "adc1df9c7706445daccec30b6a71e5286de338059f696919e368e10b61b6a7c6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -111238,8 +111521,8 @@ self: { unordered-containers vector ]; testHaskellDepends = [ - aeson aeson-lens async base containers data-default deepseq hformat - hspec lens mtl text + aeson aeson-lens async base containers data-default deepseq + directory filepath hformat hspec lens mtl text ]; doHaddock = false; doCheck = false; @@ -119764,16 +120047,16 @@ self: { ({ mkDerivation, annotated-wl-pprint, ansi-terminal, ansi-wl-pprint , async, base, base64-bytestring, binary, blaze-html, blaze-markup , bytestring, cheapskate, containers, deepseq, directory, filepath - , fingertree, fsnotify, gmp, haskeline, hscurses, libffi, mtl - , network, optparse-applicative, parsers, pretty, process, safe - , split, text, time, transformers, transformers-compat, trifecta - , uniplate, unix, unordered-containers, utf8-string, vector - , vector-binary-instances, zip-archive + , fingertree, fsnotify, gmp, haskeline, libffi, mtl, network + , optparse-applicative, parsers, pretty, process, safe, split + , terminal-size, text, time, transformers, transformers-compat + , trifecta, uniplate, unix, unordered-containers, utf8-string + , vector, vector-binary-instances, zip-archive }: mkDerivation { pname = "idris"; - version = "0.10.2"; - sha256 = "797f848d073b14772e20b13507272a2bf490644e005a978423c4bf057d021d19"; + version = "0.10.3"; + sha256 = "63fd7bade38873e3c9933fa883bacdedffc73c5fec5a6e79a981ccf7ae990e85"; configureFlags = [ "-fcurses" "-fffi" "-fgmp" ]; isLibrary = true; isExecutable = true; @@ -119781,8 +120064,8 @@ self: { annotated-wl-pprint ansi-terminal ansi-wl-pprint async base base64-bytestring binary blaze-html blaze-markup bytestring cheapskate containers deepseq directory filepath fingertree - fsnotify haskeline hscurses libffi mtl network optparse-applicative - parsers pretty process safe split text time transformers + fsnotify haskeline libffi mtl network optparse-applicative parsers + pretty process safe split terminal-size text time transformers transformers-compat trifecta uniplate unix unordered-containers utf8-string vector vector-binary-instances zip-archive ]; @@ -119958,6 +120241,29 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "ig_0_7" = callPackage + ({ mkDerivation, aeson, base, base16-bytestring, bytestring + , conduit, conduit-extra, crypto-api, cryptohash + , cryptohash-cryptoapi, data-default, http-conduit, http-types + , lifted-base, monad-control, resourcet, text, time, transformers + , transformers-base, unordered-containers + }: + mkDerivation { + pname = "ig"; + version = "0.7"; + sha256 = "31763aae55c9cfa47a8f3f8e04ba0b91adb4b6aa5f92e3401208205b873d5c55"; + libraryHaskellDepends = [ + aeson base base16-bytestring bytestring conduit conduit-extra + crypto-api cryptohash cryptohash-cryptoapi data-default + http-conduit http-types lifted-base monad-control resourcet text + time transformers transformers-base unordered-containers + ]; + homepage = "https://github.com/prowdsponsor/ig"; + description = "Bindings to Instagram's API"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "ige-mac-integration" = callPackage ({ mkDerivation, array, base, containers, glib, gtk , gtk2hs-buildtools, haskell98, ige-mac-integration, mtl @@ -120668,7 +120974,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "immortal" = callPackage + "immortal_0_2" = callPackage ({ mkDerivation, base, lifted-base, monad-control, stm, tasty , tasty-hunit, transformers, transformers-base }: @@ -120685,9 +120991,10 @@ self: { homepage = "https://github.com/feuerbach/immortal"; description = "Spawn threads that never die (unless told to do so)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "immortal_0_2_2" = callPackage + "immortal" = callPackage ({ mkDerivation, base, lifted-base, monad-control, stm, tasty , tasty-hunit, transformers, transformers-base }: @@ -120704,7 +121011,6 @@ self: { homepage = "https://github.com/feuerbach/immortal"; description = "Spawn threads that never die (unless told to do so)"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "imparse" = callPackage @@ -124015,6 +124321,7 @@ self: { homepage = "http://www.renickbell.net/doku.php?id=jackminimix"; description = "control JackMiniMix"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jacobi-roots" = callPackage @@ -124841,6 +125148,7 @@ self: { ]; description = "High level interface for webkit-javascriptcore"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "jsaddle-hello" = callPackage @@ -128162,8 +128470,8 @@ self: { ({ mkDerivation, base, servant, tasty, tasty-hspec }: mkDerivation { pname = "lackey"; - version = "0.1.1"; - sha256 = "7c3efec91d44b93944e1c2814ae3345d577c347025837b81b54b143b0cb4bbe9"; + version = "0.1.2"; + sha256 = "7ec32a367056ba3a5f7af81c14c9d91547c83339077ebe56f06a1d3522782a99"; libraryHaskellDepends = [ base servant ]; testHaskellDepends = [ base servant tasty tasty-hspec ]; homepage = "https://github.com/tfausak/lackey#readme"; @@ -129841,8 +130149,8 @@ self: { }: mkDerivation { pname = "language-javascript"; - version = "0.5.14.3"; - sha256 = "2d899f89aea6f6bd5a4dc1eddb7f58d58754e25655c515e2966ca75fb3d4cf22"; + version = "0.5.14.6"; + sha256 = "a15fb579434a08d9d77b7730f1fedf6918597d815b4172fcf11e8e40eedea2bf"; libraryHaskellDepends = [ array base blaze-builder bytestring containers mtl utf8-string ]; @@ -129852,31 +130160,29 @@ self: { QuickCheck test-framework test-framework-hunit utf8-light utf8-string ]; - jailbreak = true; - doCheck = false; homepage = "http://github.com/erikd/language-javascript"; description = "Parser for JavaScript"; license = stdenv.lib.licenses.bsd3; }) {}; - "language-javascript_0_5_14_4" = callPackage + "language-javascript_0_6_0_1" = callPackage ({ mkDerivation, alex, array, base, blaze-builder, bytestring - , Cabal, containers, happy, HUnit, mtl, QuickCheck, test-framework - , test-framework-hunit, utf8-light, utf8-string + , Cabal, containers, happy, hspec, mtl, QuickCheck, text + , utf8-light, utf8-string }: mkDerivation { pname = "language-javascript"; - version = "0.5.14.4"; - sha256 = "c439750a88b2ae1f7f8e42b7e81f17f294e05bdba4c97b909c4c75946d8295af"; + version = "0.6.0.1"; + sha256 = "99d9f92ba8bdab7a4f33e639dfbf572404b0e308f9fb565768d8110ed388305f"; libraryHaskellDepends = [ - array base blaze-builder bytestring containers mtl utf8-string + array base blaze-builder bytestring containers mtl text utf8-string ]; libraryToolDepends = [ alex happy ]; testHaskellDepends = [ - array base blaze-builder bytestring Cabal containers HUnit mtl - QuickCheck test-framework test-framework-hunit utf8-light - utf8-string + array base blaze-builder bytestring Cabal containers hspec mtl + QuickCheck utf8-light utf8-string ]; + jailbreak = true; homepage = "http://github.com/erikd/language-javascript"; description = "Parser for JavaScript"; license = stdenv.lib.licenses.bsd3; @@ -147916,15 +148222,15 @@ self: { }) {}; "nemesis" = callPackage - ({ mkDerivation, air, air-th, base, containers, directory, dlist - , Glob, mtl, process, time + ({ mkDerivation, base, containers, directory, dlist, Glob, lens + , mtl, process, time }: mkDerivation { pname = "nemesis"; - version = "2015.5.4"; - sha256 = "511a5e927c340f5d5d2e351e1921271421410b27e6be707b4e8ea18092e82e91"; + version = "2016.3.19"; + sha256 = "a72583758c5ca2fc769171155c8371bda4f654add0f6de1065790177ed138635"; libraryHaskellDepends = [ - air air-th base containers directory dlist Glob mtl process time + base containers directory dlist Glob lens mtl process time ]; homepage = "http://github.com/nfjinjing/nemesis"; description = "a task management tool for Haskell"; @@ -149781,6 +150087,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "network-uri_2_6_1_0" = callPackage + ({ mkDerivation, base, deepseq, HUnit, parsec, test-framework + , test-framework-hunit, test-framework-quickcheck2 + }: + mkDerivation { + pname = "network-uri"; + version = "2.6.1.0"; + sha256 = "423e0a2351236f3fcfd24e39cdbc38050ec2910f82245e69ca72a661f7fc47f0"; + libraryHaskellDepends = [ base deepseq parsec ]; + testHaskellDepends = [ + base HUnit test-framework test-framework-hunit + test-framework-quickcheck2 + ]; + homepage = "https://github.com/haskell/network-uri"; + description = "URI manipulation"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "network-uri-static" = callPackage ({ mkDerivation, base, doctest, network-uri, template-haskell }: mkDerivation { @@ -151470,8 +151795,8 @@ self: { }: mkDerivation { pname = "octane"; - version = "0.4.1"; - sha256 = "52792d83198460ebf8de89cbd2b6d0519708a7358c936b09c0b698886d7e5496"; + version = "0.4.2"; + sha256 = "e187f7f44316d87b69028b41cfdcd5991c76459a2d3f3092d0c6d509605996ea"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -151800,6 +152125,7 @@ self: { homepage = "http://code.google.com/p/omega/"; description = "A purely functional programming language and a proof system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "omnicodec" = callPackage @@ -155008,6 +155334,40 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "pandoc-citeproc_0_9_1_1" = callPackage + ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring + , containers, data-default, directory, filepath, hs-bibutils, mtl + , old-locale, pandoc, pandoc-types, parsec, process, rfc5051 + , setenv, split, syb, tagsoup, temporary, text, time + , unordered-containers, vector, xml-conduit, yaml + }: + mkDerivation { + pname = "pandoc-citeproc"; + version = "0.9.1.1"; + sha256 = "15c89a9aa6bce4efd6b728ea16151eb6390cad0495eb82c50cbac490591c8f86"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring containers data-default directory filepath + hs-bibutils mtl old-locale pandoc pandoc-types parsec rfc5051 + setenv split syb tagsoup text time unordered-containers vector + xml-conduit yaml + ]; + executableHaskellDepends = [ + aeson aeson-pretty attoparsec base bytestring containers directory + filepath pandoc pandoc-types process syb temporary text vector yaml + ]; + testHaskellDepends = [ + aeson base bytestring directory filepath pandoc pandoc-types + process temporary text yaml + ]; + doCheck = false; + homepage = "https://github.com/jgm/pandoc-citeproc"; + description = "Supports using pandoc with citeproc"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "pandoc-citeproc-preamble" = callPackage ({ mkDerivation, base, directory, filepath, pandoc-types, process }: @@ -169831,8 +170191,8 @@ self: { }: mkDerivation { pname = "ratel"; - version = "0.1.1"; - sha256 = "ec6d1f3b5b2bebe85086046026469db7e5433fe5394bb97c4f724030ef8e791a"; + version = "0.1.2"; + sha256 = "fb84658a310ff52cdff01b2186989929a6deb5e4cd1ed6877357302c3c09fcc1"; libraryHaskellDepends = [ aeson base bytestring case-insensitive containers http-client http-client-tls http-types text uuid @@ -169849,8 +170209,8 @@ self: { }: mkDerivation { pname = "ratel-wai"; - version = "0.1.0"; - sha256 = "3047004b1953bd0a7d1132144fd1aa13870ed9736c965ebf1b4f706e3202b429"; + version = "0.1.1"; + sha256 = "687dde2f720a53d17d60fa3b91bac1bb12b5dd896b5d8603d6f5cfbe1502614c"; libraryHaskellDepends = [ base bytestring case-insensitive containers http-client ratel wai ]; @@ -170920,6 +171280,25 @@ self: { license = "unknown"; }) {}; + "redis-resp_0_4_0" = callPackage + ({ mkDerivation, attoparsec, base, bytestring + , bytestring-conversion, containers, dlist, double-conversion + , operational, semigroups, split, transformers + }: + mkDerivation { + pname = "redis-resp"; + version = "0.4.0"; + sha256 = "8bc0d592843e05c37a3fda22255daca74f1c17c4e4a7951531accd45cd2a9232"; + libraryHaskellDepends = [ + attoparsec base bytestring bytestring-conversion containers dlist + double-conversion operational semigroups split transformers + ]; + homepage = "https://gitlab.com/twittner/redis-resp/"; + description = "REdis Serialization Protocol (RESP) implementation"; + license = stdenv.lib.licenses.mpl20; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "redis-simple" = callPackage ({ mkDerivation, base, binary, bytestring, redis }: mkDerivation { @@ -171875,8 +172254,8 @@ self: { }: mkDerivation { pname = "regex-pderiv"; - version = "0.1.4"; - sha256 = "05de6d0794c4515c6f5dc340d9bf7b4ea8c59eb4592306c9f0342ff268a4df39"; + version = "0.2.0"; + sha256 = "e42dc7036dcba32203aa301b082598d62bfb26c90ed24312a38cc693a4cf4bba"; libraryHaskellDepends = [ base bitset bytestring containers deepseq ghc-prim mtl parallel parsec regex-base @@ -173135,8 +173514,8 @@ self: { }: mkDerivation { pname = "repa-scalar"; - version = "4.2.0.3"; - sha256 = "1e8eeb7b9785602e6d93ff8a04537e1169454b8612042cd433256855d881777d"; + version = "4.2.1.1"; + sha256 = "bdaa0994af4acc9c8e5a4431da10ca44f4bd28b9e81b5e854f2b69f4a437c34a"; libraryHaskellDepends = [ base bytestring double-conversion primitive time vector ]; @@ -173380,6 +173759,23 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "reqcatcher" = callPackage + ({ mkDerivation, base, http-client, http-types, HUnit, lens + , network, tasty, tasty-hunit, text, wai, warp, wreq + }: + mkDerivation { + pname = "reqcatcher"; + version = "0.1.0.0"; + sha256 = "75d70008df0589e4455b5932d09cfb098dd9aee0006dab8516d0483562d59151"; + libraryHaskellDepends = [ base http-types network text wai warp ]; + testHaskellDepends = [ + base http-client http-types HUnit lens tasty tasty-hunit wai wreq + ]; + homepage = "http://github.com/hiratara/hs-reqcatcher"; + description = "A local http server to catch the HTTP redirect"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "request-monad" = callPackage ({ mkDerivation, base, free, mtl, transformers }: mkDerivation { @@ -181139,7 +181535,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant" = callPackage + "servant_0_4_4_6" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring , bytestring-conversion, case-insensitive, directory, doctest , filemanip, filepath, hspec, http-media, http-types, network-uri @@ -181165,9 +181561,10 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant_0_4_4_7" = callPackage + "servant" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring , bytestring-conversion, case-insensitive, directory, doctest , filemanip, filepath, hspec, http-media, http-types, network-uri @@ -181191,6 +181588,32 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs"; license = stdenv.lib.licenses.bsd3; + }) {}; + + "servant_0_5" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring + , bytestring-conversion, case-insensitive, directory, doctest + , filemanip, filepath, hspec, http-api-data, http-media, http-types + , network-uri, QuickCheck, quickcheck-instances, string-conversions + , text, url, vault + }: + mkDerivation { + pname = "servant"; + version = "0.5"; + sha256 = "b83ca161d81c0c62150d000266549fc6b5a09f7ecc15f597b7f0ae8bcc77caf5"; + libraryHaskellDepends = [ + aeson attoparsec base base-compat bytestring bytestring-conversion + case-insensitive http-api-data http-media http-types network-uri + string-conversions text vault + ]; + testHaskellDepends = [ + aeson attoparsec base bytestring directory doctest filemanip + filepath hspec QuickCheck quickcheck-instances string-conversions + text url + ]; + homepage = "http://haskell-servant.github.io/"; + description = "A family of combinators for defining webservices APIs"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -181237,7 +181660,29 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "servant-blaze" = callPackage + "servant-JuicyPixels_0_3_0_1" = callPackage + ({ mkDerivation, base, bytestring, http-media, JuicyPixels, servant + , servant-server, wai, warp + }: + mkDerivation { + pname = "servant-JuicyPixels"; + version = "0.3.0.1"; + sha256 = "39f3c934d727ef2d811e515533e2150a1281f155553b983911f36974d7b3adb1"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring http-media JuicyPixels servant + ]; + executableHaskellDepends = [ + base JuicyPixels servant servant-server wai warp + ]; + homepage = "https://github.com/tvh/servant-JuicyPixels"; + description = "Servant support for JuicyPixels"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-blaze_0_4_4_6" = callPackage ({ mkDerivation, base, blaze-html, http-media, servant }: mkDerivation { pname = "servant-blaze"; @@ -181247,9 +181692,10 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "Blaze-html support for servant"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-blaze_0_4_4_7" = callPackage + "servant-blaze" = callPackage ({ mkDerivation, base, blaze-html, http-media, servant }: mkDerivation { pname = "servant-blaze"; @@ -181259,6 +181705,19 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "Blaze-html support for servant"; license = stdenv.lib.licenses.bsd3; + }) {}; + + "servant-blaze_0_5" = callPackage + ({ mkDerivation, base, blaze-html, http-media, servant }: + mkDerivation { + pname = "servant-blaze"; + version = "0.5"; + sha256 = "d450aa2bbec21208fa9ae7e3e7f799b5447573cf8ba26874a79b109963e0f46c"; + libraryHaskellDepends = [ base blaze-html http-media servant ]; + jailbreak = true; + homepage = "http://haskell-servant.github.io/"; + description = "Blaze-html support for servant"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -181266,9 +181725,10 @@ self: { ({ mkDerivation, base, cassava, http-media, servant, vector }: mkDerivation { pname = "servant-cassava"; - version = "0.4.4.7"; - sha256 = "397b1074e274a2db974e8298eee6cfadb61541aa18e4821c4c44bbb88d27889c"; + version = "0.5"; + sha256 = "57156e80c8bf4f04fe9fdcc61f3f117f14e9b0966915f3ad1e997ee02b654699"; libraryHaskellDepends = [ base cassava http-media servant vector ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "Servant CSV content-type for cassava"; license = stdenv.lib.licenses.bsd3; @@ -181408,7 +181868,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-client" = callPackage + "servant-client_0_4_4_6" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq , either, exceptions, hspec, http-client, http-client-tls , http-media, http-types, HUnit, network, network-uri, QuickCheck @@ -181432,9 +181892,10 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "automatical derivation of querying functions for servant webservices"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-client_0_4_4_7" = callPackage + "servant-client" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq , either, exceptions, hspec, http-client, http-client-tls , http-media, http-types, HUnit, network, network-uri, QuickCheck @@ -181458,6 +181919,35 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "automatical derivation of querying functions for servant webservices"; license = stdenv.lib.licenses.bsd3; + }) {}; + + "servant-client_0_5" = 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.5"; + sha256 = "2433324deff198fcc61c5027538f1df27ccf9be341baec3a55940d3c4325f696"; + 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.github.io/"; + description = "automatical derivation of querying functions for servant webservices"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -181600,7 +182090,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-docs" = callPackage + "servant-docs_0_4_4_6" = callPackage ({ mkDerivation, aeson, base, bytestring, bytestring-conversion , case-insensitive, hashable, hspec, http-media, http-types, lens , servant, string-conversions, text, unordered-containers @@ -181626,9 +182116,10 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "generate API docs for your servant webservice"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-docs_0_4_4_7" = callPackage + "servant-docs" = callPackage ({ mkDerivation, aeson, base, bytestring, bytestring-conversion , case-insensitive, hashable, hspec, http-media, http-types, lens , servant, string-conversions, text, unordered-containers @@ -181654,6 +182145,36 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "generate API docs for your servant webservice"; license = stdenv.lib.licenses.bsd3; + }) {}; + + "servant-docs_0_5" = 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.5"; + sha256 = "2faa28f837628dcdc13f34ab178abf190fcf04d506eb45be64a47d11246d748a"; + 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.github.io/"; + description = "generate API docs for your servant webservice"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -181701,7 +182222,7 @@ self: { description = "Automatically derive Elm functions to query servant webservices"; license = stdenv.lib.licenses.bsd3; broken = true; - }) {elm-export = null; servant-foreign = null;}; + }) {elm-export = null;}; "servant-examples" = callPackage ({ mkDerivation, aeson, base, bytestring, directory, either @@ -181728,6 +182249,19 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "servant-foreign" = callPackage + ({ mkDerivation, base, hspec, http-types, lens, servant, text }: + mkDerivation { + pname = "servant-foreign"; + version = "0.5"; + sha256 = "108d9858820226260b5237b3bb213e29e2c5f3b0d2091e7ef846862997a497a1"; + 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; + }) {}; + "servant-github" = callPackage ({ mkDerivation, aeson, base, either, hspec, http-link-header , QuickCheck, servant, servant-client, text, transformers @@ -181891,7 +182425,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-jquery" = callPackage + "servant-jquery_0_4_4_6" = callPackage ({ mkDerivation, aeson, base, charset, filepath, hspec , hspec-expectations, language-ecmascript, lens, servant , servant-server, stm, text, transformers, warp @@ -181912,9 +182446,10 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "Automatically derive (jquery) javascript functions to query servant webservices"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-jquery_0_4_4_7" = callPackage + "servant-jquery" = callPackage ({ mkDerivation, aeson, base, charset, filepath, hspec , hspec-expectations, language-ecmascript, lens, servant , servant-server, stm, text, transformers, warp @@ -181935,44 +182470,50 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "Automatically derive (jquery) javascript functions to query servant webservices"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-js" = callPackage + ({ mkDerivation, aeson, base, base-compat, charset, filepath, hspec + , hspec-expectations, language-ecmascript, lens, servant + , servant-foreign, servant-server, stm, text, transformers, warp + }: + mkDerivation { + pname = "servant-js"; + version = "0.5"; + sha256 = "78a573a81d40ad659ed0c3097a138236ace7e6d7e7d889af64195165ebae0c18"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base base-compat charset lens servant-foreign text + ]; + executableHaskellDepends = [ + aeson base filepath lens servant servant-server stm transformers + warp + ]; + testHaskellDepends = [ + base base-compat hspec hspec-expectations language-ecmascript lens + servant text + ]; + jailbreak = true; + homepage = "http://haskell-servant.github.io/"; + description = "Automatically derive javascript functions to query servant webservices"; + license = stdenv.lib.licenses.bsd3; }) {}; "servant-lucid" = callPackage ({ mkDerivation, base, http-media, lucid, servant }: mkDerivation { pname = "servant-lucid"; - version = "0.4.4.7"; - sha256 = "2458d8ebda8b76a23574cfa5074e439f4ed5d52fe0186355d07ae6a94b278f28"; + version = "0.5"; + sha256 = "87cfb2fb1b4a00e649b0c418ee56a461fe1528f804be442d0e2fc7872dc298f2"; libraryHaskellDepends = [ base http-media lucid servant ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "Servant support for lucid"; license = stdenv.lib.licenses.bsd3; }) {}; "servant-mock" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-types, QuickCheck - , servant, servant-server, transformers, wai, warp - }: - mkDerivation { - pname = "servant-mock"; - version = "0.4.4.6"; - sha256 = "eaf6d4b7635bc0549c2d1fba1e4b6d5130281880e345180f0f78cf78ba7a0665"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring http-types QuickCheck servant servant-server - transformers wai - ]; - executableHaskellDepends = [ - aeson base QuickCheck servant-server warp - ]; - homepage = "http://github.com/haskell-servant/servant"; - description = "Derive a mock server for free from your servant API types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "servant-mock_0_4_4_7" = callPackage ({ mkDerivation, aeson, base, bytestring, http-types, QuickCheck , servant, servant-server, transformers, wai, warp }: @@ -181992,6 +182533,33 @@ self: { homepage = "http://github.com/haskell-servant/servant"; description = "Derive a mock server for free from your servant API types"; license = stdenv.lib.licenses.bsd3; + }) {}; + + "servant-mock_0_5" = 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.5"; + sha256 = "c508bf76282b6e4656d710b64d761c065ad06787388a3bcac2204d99f3f328ca"; + 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 + ]; + 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; }) {}; @@ -182299,7 +182867,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-server" = callPackage + "servant-server_0_4_4_6" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring , bytestring-conversion, directory, doctest, either, exceptions , filemanip, filepath, hspec, hspec-wai, http-types, mmorph, mtl @@ -182328,9 +182896,10 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs and serving them"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-server_0_4_4_7" = callPackage + "servant-server" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring , bytestring-conversion, directory, doctest, either, exceptions , filemanip, filepath, hspec, hspec-wai, http-types, mmorph, mtl @@ -182359,6 +182928,42 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs and serving them"; license = stdenv.lib.licenses.bsd3; + }) {}; + + "servant-server_0_5" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base-compat + , base64-bytestring, bytestring, bytestring-conversion, containers + , directory, doctest, exceptions, filemanip, filepath, hspec + , hspec-wai, http-api-data, http-types, mmorph, mtl, network + , network-uri, parsec, QuickCheck, safe, servant + , should-not-typecheck, split, string-conversions, system-filepath + , temporary, text, transformers, transformers-compat, wai + , wai-app-static, wai-extra, warp, word8 + }: + mkDerivation { + pname = "servant-server"; + version = "0.5"; + sha256 = "c7a7485edca3029e75b49470f1dfc00d40616352c8a89c3917c6ee76d4326d46"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson attoparsec base base-compat base64-bytestring bytestring + containers filepath http-api-data http-types mmorph mtl network + network-uri safe servant split string-conversions system-filepath + text transformers transformers-compat wai wai-app-static warp word8 + ]; + executableHaskellDepends = [ aeson base servant text wai warp ]; + testHaskellDepends = [ + aeson base 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.github.io/"; + description = "A family of combinators for defining webservices APIs and serving them"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -184631,7 +185236,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "shortcut-links" = callPackage + "shortcut-links_0_4_1_0" = callPackage ({ mkDerivation, base, text }: mkDerivation { pname = "shortcut-links"; @@ -184641,9 +185246,10 @@ self: { homepage = "http://github.com/aelve/shortcut-links"; description = "Link shortcuts for use in text markup"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "shortcut-links_0_4_2_0" = callPackage + "shortcut-links" = callPackage ({ mkDerivation, base, text }: mkDerivation { pname = "shortcut-links"; @@ -184653,7 +185259,6 @@ self: { homepage = "http://github.com/aelve/shortcut-links"; description = "Link shortcuts for use in text markup"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shorten-strings" = callPackage @@ -186472,6 +187077,20 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "sleep" = callPackage + ({ mkDerivation, base, time }: + mkDerivation { + pname = "sleep"; + version = "0.1.0.0"; + sha256 = "ce74c6970b5d83bb92ddf75783fce4ce6d3976cf69c31d18385171787cf80895"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base time ]; + executableHaskellDepends = [ base time ]; + description = "zZzzZz"; + license = stdenv.lib.licenses.gpl2; + }) {}; + "slice-cpp-gen" = callPackage ({ mkDerivation, base, bytestring, cmdargs, containers, directory , filepath, language-slice, MissingH @@ -194116,7 +194735,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "streaming-bytestring" = callPackage + "streaming-bytestring_0_1_4_0" = callPackage ({ mkDerivation, base, bytestring, deepseq, exceptions, mmorph, mtl , resourcet, streaming, transformers, transformers-base }: @@ -194131,6 +194750,24 @@ self: { homepage = "https://github.com/michaelt/streaming-bytestring"; description = "effectful byte steams, or: bytestring io done right"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "streaming-bytestring" = callPackage + ({ mkDerivation, base, bytestring, deepseq, exceptions, mmorph, mtl + , resourcet, streaming, transformers, transformers-base + }: + mkDerivation { + pname = "streaming-bytestring"; + version = "0.1.4.2"; + sha256 = "476bd7694b07c48742f7e93e30cb5e618ee2711c0828b640b94c797e63bcb33c"; + libraryHaskellDepends = [ + base bytestring deepseq exceptions mmorph mtl resourcet streaming + transformers transformers-base + ]; + homepage = "https://github.com/michaelt/streaming-bytestring"; + description = "effectful byte steams, or: bytestring io done right"; + license = stdenv.lib.licenses.bsd3; }) {}; "streaming-commons_0_1_7_3" = callPackage @@ -195093,20 +195730,20 @@ self: { "strive" = callPackage ({ mkDerivation, aeson, base, bytestring, data-default, gpolyline - , hlint, http-conduit, http-types, markdown-unlit, template-haskell - , text, time, transformers + , http-conduit, http-types, markdown-unlit, template-haskell, text + , time, transformers }: mkDerivation { pname = "strive"; - version = "2.2.0"; - sha256 = "558042448e7694f893cba63b1191a8868b2d819fce3a1a54ac5309f6d9e0878a"; + version = "2.2.1"; + sha256 = "eeecc39037562bf656349d6e42b52870859d7b2be72deb81bd7b8bb72d70fca5"; libraryHaskellDepends = [ aeson base bytestring data-default gpolyline http-conduit http-types template-haskell text time transformers ]; - testHaskellDepends = [ base bytestring hlint markdown-unlit time ]; - homepage = "http://taylor.fausak.me/strive/"; - description = "A Haskell client for the Strava V3 API"; + testHaskellDepends = [ base bytestring markdown-unlit time ]; + homepage = "https://github.com/tfausak/strive#readme"; + description = "A client for the Strava V3 API"; license = stdenv.lib.licenses.mit; }) {}; @@ -196193,6 +196830,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "svg-tree_0_4_2" = callPackage + ({ mkDerivation, attoparsec, base, bytestring, containers + , JuicyPixels, lens, linear, mtl, scientific, text, transformers + , vector, xml + }: + mkDerivation { + pname = "svg-tree"; + version = "0.4.2"; + sha256 = "9564f33d166af1fa3d611fb0b04fe9cd729dfe23b81a124ab14514085f737b64"; + revision = "1"; + editedCabalFile = "44363aad52e09d592887852965cf0a07fb8f865d72c2832129dc9b39db9353b3"; + libraryHaskellDepends = [ + attoparsec base bytestring containers JuicyPixels lens linear mtl + scientific text transformers vector xml + ]; + description = "SVG file loader and serializer"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "svg2q" = callPackage ({ mkDerivation, base, haskell98, language-c, pretty, svgutils, syb , xml @@ -196210,6 +196867,7 @@ self: { homepage = "http://www.informatik.uni-kiel.de/~jgr/svg2q"; description = "Code generation tool for Quartz code from a SVG"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "svgcairo" = callPackage @@ -198110,6 +198768,20 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "tagged-timers" = callPackage + ({ mkDerivation, base, time, transformers, unordered-containers }: + mkDerivation { + pname = "tagged-timers"; + version = "0.1.0.0"; + sha256 = "0156e746aee65704b630dc32617db4d756fb8abd680633e495a4fa38674dda77"; + libraryHaskellDepends = [ + base time transformers unordered-containers + ]; + homepage = "http://github.com/ucsd-progsys/tagged-timers"; + description = "Simple wrappers for timing IO actions (single-threaded)"; + license = stdenv.lib.licenses.mit; + }) {}; + "tagged-transformer" = callPackage ({ mkDerivation, base, comonad, contravariant, distributive , exceptions, mtl, reflection, semigroupoids, tagged @@ -198999,6 +199671,24 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "tasty-groundhog-converters" = callPackage + ({ mkDerivation, aeson, base, bimap, bytestring, containers + , groundhog, groundhog-converters, groundhog-sqlite, groundhog-th + , tasty, tasty-hunit, tasty-quickcheck + }: + mkDerivation { + pname = "tasty-groundhog-converters"; + version = "0.1.0"; + sha256 = "86c5ca80f529b1b9e39a10e11dee3e2d42ddfda765637ecbc8465ebf4e6dab23"; + libraryHaskellDepends = [ + aeson base bimap bytestring containers groundhog + groundhog-converters groundhog-sqlite groundhog-th tasty + tasty-hunit tasty-quickcheck + ]; + description = "Tasty Tests for groundhog converters"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "tasty-hspec_1_1" = callPackage ({ mkDerivation, base, hspec, hspec-core, QuickCheck, random, tasty , tasty-quickcheck, tasty-smallcheck @@ -201095,6 +201785,31 @@ self: { license = "GPL"; }) {}; + "texmath_0_8_5" = callPackage + ({ mkDerivation, base, bytestring, containers, directory, filepath + , mtl, network-uri, pandoc-types, parsec, process, split, syb + , temporary, text, utf8-string, xml + }: + mkDerivation { + pname = "texmath"; + version = "0.8.5"; + sha256 = "6a1897f0ea4f24246425d12e3ed80a790a1677160199b2ea7ecfab787cc61db5"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers mtl pandoc-types parsec syb xml + ]; + executableHaskellDepends = [ network-uri ]; + testHaskellDepends = [ + base bytestring directory filepath process split temporary text + utf8-string xml + ]; + homepage = "http://github.com/jgm/texmath"; + description = "Conversion between formats used to represent mathematics"; + license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "texrunner" = callPackage ({ mkDerivation, attoparsec, base, bytestring, directory, filepath , HUnit, io-streams, lens, mtl, process, temporary, test-framework @@ -201252,7 +201967,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "text" = callPackage + "text_1_2_2_0" = callPackage ({ mkDerivation, array, base, binary, bytestring, deepseq , directory, ghc-prim, HUnit, integer-gmp, QuickCheck , quickcheck-unicode, random, test-framework, test-framework-hunit @@ -201274,9 +201989,10 @@ self: { homepage = "https://github.com/bos/text"; description = "An efficient packed Unicode text type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "text_1_2_2_1" = callPackage + "text" = callPackage ({ mkDerivation, array, base, binary, bytestring, deepseq , directory, ghc-prim, HUnit, integer-gmp, QuickCheck , quickcheck-unicode, random, test-framework, test-framework-hunit @@ -201298,7 +202014,6 @@ self: { homepage = "https://github.com/bos/text"; description = "An efficient packed Unicode text type"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text-and-plots" = callPackage @@ -213262,18 +213977,17 @@ self: { }) {}; "vivid" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq - , hashable, mtl, network, split, stm + ({ mkDerivation, base, binary, bytestring, containers, filepath + , hashable, MonadRandom, mtl, network, process, random + , random-shuffle, split, stm, time, transformers }: mkDerivation { pname = "vivid"; - version = "0.1.0.3"; - sha256 = "a884a88d96cff6ada34d83bf5bcda9d351953e635d858f1a246bb94ec594930c"; - revision = "1"; - editedCabalFile = "de2442ab5d53f8044c99cd0489281bf902ef6615028be780e0df937ae60266da"; + version = "0.2.0.3"; + sha256 = "c8fbee45579182303011e32979673f2a823653e97a36967842a2c8842f4898e8"; libraryHaskellDepends = [ - base binary bytestring containers deepseq hashable mtl network - split stm + base binary bytestring containers filepath hashable MonadRandom mtl + network process random random-shuffle split stm time transformers ]; description = "Sound synthesis with SuperCollider"; license = "GPL"; @@ -218824,7 +219538,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "webdriver" = callPackage + "webdriver_0_8_1" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring , bytestring, data-default-class, directory, directory-tree , exceptions, filepath, http-client, http-types, lifted-base @@ -218847,9 +219561,10 @@ self: { homepage = "https://github.com/kallisti-dev/hs-webdriver"; description = "a Haskell client for the Selenium WebDriver protocol"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "webdriver_0_8_2" = callPackage + "webdriver" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring , bytestring, data-default-class, directory, directory-tree , exceptions, filepath, http-client, http-types, lifted-base @@ -218871,7 +219586,6 @@ self: { homepage = "https://github.com/kallisti-dev/hs-webdriver"; description = "a Haskell client for the Selenium WebDriver protocol"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "webdriver-angular_0_1_7" = callPackage From 5c740539a889298ff285afc86584231d608e2893 Mon Sep 17 00:00:00 2001 From: Maxwell Date: Fri, 18 Mar 2016 13:04:56 -0400 Subject: [PATCH 386/678] ansifilter: init at 1.15 --- lib/maintainers.nix | 1 + pkgs/tools/text/ansifilter/default.nix | 27 ++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 3 files changed, 30 insertions(+) create mode 100644 pkgs/tools/text/ansifilter/default.nix diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 0b5883f291e..498f0c21439 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -12,6 +12,7 @@ abbradar = "Nikolay Amiantov "; aboseley = "Adam Boseley "; adev = "Adrien Devresse "; + Adjective-Object = "Maxwell Huang-Hobbs "; aespinosa = "Allan Espinosa "; aflatter = "Alexander Flatter "; aforemny = "Alexander Foremny "; diff --git a/pkgs/tools/text/ansifilter/default.nix b/pkgs/tools/text/ansifilter/default.nix new file mode 100644 index 00000000000..e47369f4755 --- /dev/null +++ b/pkgs/tools/text/ansifilter/default.nix @@ -0,0 +1,27 @@ +{ fetchurl, stdenv, pkgconfig, boost, lua }: +let version = "1.15"; + pkgsha = "65dc20cc1a03d4feba990f830186404c90462d599e5f4b37610d4d822d67aec4"; +in stdenv.mkDerivation { + name = "ansifilter-${version}"; + buildInputs = [ + pkgconfig boost lua + ]; + src = fetchurl { + url = "http://www.andre-simon.de/zip/ansifilter-${version}.tar.bz2"; + sha256 = pkgsha; + }; + meta = { + description = "Tool to convert ANSI to other formats"; + longDescription = '' + Tool to remove ANSI or convert them to another format + (HTML, TeX, LaTeX, RTF, Pango or BBCode) + ''; + + license = stdenv.lib.licenses.gpl1; + maintainers = [ stdenv.lib.maintainers.Adjective-Object ]; + }; + + makeFlags="PREFIX=$(out) conf_dir=$(out)/etc/ansifilter/"; + +} + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c540ff849c8..8d0c7bc1632 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -540,6 +540,8 @@ let analog = callPackage ../tools/admin/analog {}; + ansifilter = callPackage ../tools/text/ansifilter {}; + apktool = callPackage ../development/tools/apktool { buildTools = androidenv.buildTools; }; From 75c90fff3952ca90a1b6ee35a8efc6ab6ea6a8b5 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Sun, 20 Mar 2016 15:31:57 -0500 Subject: [PATCH 387/678] squid: 3.5.1 -> 3.5.15 for CVE-2016-2571 --- pkgs/servers/squid/squids.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/squid/squids.nix b/pkgs/servers/squid/squids.nix index 35aea7aa130..948621de35b 100644 --- a/pkgs/servers/squid/squids.nix +++ b/pkgs/servers/squid/squids.nix @@ -53,10 +53,10 @@ rec { }; squid35 = squid30.merge rec { - name = "squid-3.5.1"; + name = "squid-3.5.15"; src = args.fetchurl { url = "http://www.squid-cache.org/Versions/v3/3.5/${name}.tar.bz2"; - sha256 = "0rfv1v5vkk7l08v4j16l0lz2grrzd8qf2n25i73qd7c8rgwd6a3x"; + sha256 = "1cgy6ffyarqd35plqmqi3mrsp0941c6n55pr3zavp07ksj46wgzm"; }; buildInputs = [openldap pam db cyrus_sasl libcap expat libxml2 libtool openssl]; From 133af7750ed5d422f9da5f5048ef7b267d267491 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Sun, 20 Mar 2016 15:38:30 -0500 Subject: [PATCH 388/678] squids: Remove unsupported versions of squid. --- pkgs/servers/squid/default.nix | 24 ++++++++++++ pkgs/servers/squid/squids.nix | 67 --------------------------------- pkgs/top-level/all-packages.nix | 5 +-- 3 files changed, 26 insertions(+), 70 deletions(-) create mode 100644 pkgs/servers/squid/default.nix delete mode 100644 pkgs/servers/squid/squids.nix diff --git a/pkgs/servers/squid/default.nix b/pkgs/servers/squid/default.nix new file mode 100644 index 00000000000..2831423d123 --- /dev/null +++ b/pkgs/servers/squid/default.nix @@ -0,0 +1,24 @@ +{ fetchurl, stdenv, perl, lib, openldap, pam, db, cyrus_sasl, libcap, +expat, libxml2, libtool, openssl}: +stdenv.mkDerivation rec { + name = "squid-3.5.15"; + src = fetchurl { + url = "http://www.squid-cache.org/Versions/v3/3.5/${name}.tar.bz2"; + sha256 = "1cgy6ffyarqd35plqmqi3mrsp0941c6n55pr3zavp07ksj46wgzm"; + }; + buildInputs = [perl openldap pam db cyrus_sasl libcap expat libxml2 + libtool openssl]; + configureFlags = [ + "--enable-ipv6" + "--disable-strict-error-checking" + "--disable-arch-native" + "--with-openssl" + "--enable-ssl-crtd" + ]; + + meta = { + description = "a caching proxy for the Web supporting HTTP, HTTPS, FTP, and more"; + homepage = "http://www.squid-cache.org"; + license = stdenv.lib.licenses.gpl2; + }; +} diff --git a/pkgs/servers/squid/squids.nix b/pkgs/servers/squid/squids.nix deleted file mode 100644 index 948621de35b..00000000000 --- a/pkgs/servers/squid/squids.nix +++ /dev/null @@ -1,67 +0,0 @@ -args @ { fetchurl, stdenv, perl, lib, composableDerivation -, openldap, pam, db, cyrus_sasl, kerberos, libcap, expat, libxml2, libtool -, openssl, ... }: with args; -let edf = composableDerivation.edf; in -rec { - squid30 = composableDerivation.composableDerivation {} { - name = "squid-3.0-stable26"; - - buildInputs = [perl]; - - src = args.fetchurl { - url = http://www.squid-cache.org/Versions/v3/3.0/squid-3.0.STABLE26.tar.bz2; - sha256 = "3e54ae3ad09870203862f0856c7d0cca16a85f62d5012085009003ee3d5467b4"; - }; - - configureFlags = ["--enable-ipv6" "--disable-strict-error-checking" "--disable-arch-native"]; - - meta = { - description = "http-proxy"; - homepage = "http://www.squid-cache.org"; - license = stdenv.lib.licenses.gpl2; - }; - - }; - - squid31 = squid30.merge { - name = "squid-3.1.23"; - src = args.fetchurl { - url = http://www.squid-cache.org/Versions/v3/3.1/squid-3.1.23.tar.bz2; - sha256 = "13g4y0gg48xnlzrvpymb08gh25xi50y383faapkxws7i7v94305s"; - }; - }; - - squid32 = squid30.merge rec { - name = "squid-3.2.13"; - src = args.fetchurl { - url = "http://www.squid-cache.org/Versions/v3/3.2/${name}.tar.bz2"; - sha256 = "0dafqv00dr3nyrm9k47d6r7gv2r3f9hjd1ykl3kkvjca11r4n54j"; - }; - buildInputs = [openldap pam db cyrus_sasl libcap expat libxml2 - libtool openssl]; - }; - - squid34 = squid30.merge rec { - name = "squid-3.4.11"; - src = args.fetchurl { - url = "http://www.squid-cache.org/Versions/v3/3.4/${name}.tar.bz2"; - sha256 = "0p9dbsz541cpcc88albwpgq15jgpczv12j9b9g5xw6d3i977qm1h"; - }; - buildInputs = [openldap pam db cyrus_sasl libcap expat libxml2 - libtool openssl]; - configureFlags = ["--enable-ssl" "--enable-ssl-crtd"]; - }; - - squid35 = squid30.merge rec { - name = "squid-3.5.15"; - src = args.fetchurl { - url = "http://www.squid-cache.org/Versions/v3/3.5/${name}.tar.bz2"; - sha256 = "1cgy6ffyarqd35plqmqi3mrsp0941c6n55pr3zavp07ksj46wgzm"; - }; - buildInputs = [openldap pam db cyrus_sasl libcap expat libxml2 - libtool openssl]; - configureFlags = ["--with-openssl" "--enable-ssl-crtd"]; - }; - - latest = squid35; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9729e2945d3..89d7c6f4a27 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9984,8 +9984,7 @@ let spawn_fcgi = callPackage ../servers/http/spawn-fcgi { }; - squids = recurseIntoAttrs (callPackages ../servers/squid/squids.nix {}); - squid = squids.squid31; # has ipv6 support + squid = callPackage ../servers/squid { }; sslh = callPackage ../servers/sslh { }; @@ -15837,7 +15836,7 @@ let }; scotch = callPackage ../applications/science/math/scotch { }; - + msieve = callPackage ../applications/science/math/msieve { }; weka = callPackage ../applications/science/math/weka { }; From d1d922b6b9200827539428ce1702cf857f9378ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Mon, 21 Mar 2016 11:58:31 -0300 Subject: [PATCH 389/678] FileHandle-Unget: init at 0.1628 --- pkgs/top-level/perl-packages.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 2436e396a04..af4c83f50b7 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -4831,6 +4831,21 @@ let self = _self // overrides; _self = with self; { }; }; + FileHandleUnget = buildPerlPackage rec { + name = "FileHandle-Unget-0.1628"; + src = fetchurl { + url = "mirror://cpan/authors/id/D/DC/DCOPPIT/${name}.tar.gz"; + sha256 = "9ef4eb765ddfdc35b350905d8dd0a1e12139eabc586652811bfab41972100fdf"; + }; + buildInputs = [ FileSlurp URI ]; + meta = { + homepage = https://github.com/coppit/filehandle-unget/; + description = "FileHandle which supports multi-byte unget"; + license = stdenv.lib.licenses.gpl2; + maintainers = with maintainers; [ romildo ]; + }; + }; + FileHomeDir = buildPerlPackage { name = "File-HomeDir-1.00"; src = fetchurl { From 66399d464b838e89de5f70d1169bd8f84c531e1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Mon, 21 Mar 2016 11:59:37 -0300 Subject: [PATCH 390/678] Mail-Mbox-MessageParser: init at 1.5105 --- pkgs/top-level/perl-packages.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index af4c83f50b7..07a2cc0fbfe 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -7092,6 +7092,22 @@ let self = _self // overrides; _self = with self; { inherit fetchurl buildPerlPackage stdenv DBDmysql; }; + MailMboxMessageParser = buildPerlPackage rec { + name = "Mail-Mbox-MessageParser-1.5105"; + src = fetchurl { + url = "mirror://cpan/authors/id/D/DC/DCOPPIT/${name}.tar.gz"; + sha256 = "641edd8b7ab74de671ab4931311413c1bd037a1c3eaa0a0c97451cd7b104f2d8"; + }; + buildInputs = [ FileSlurp TextDiff URI ]; + propagatedBuildInputs = [ FileHandleUnget ]; + meta = { + homepage = https://github.com/coppit/mail-mbox-messageparser; + description = "A fast and simple mbox folder reader"; + license = stdenv.lib.licenses.gpl2; + maintainers = with maintainers; [ romildo ]; + }; + }; + MailDKIM = buildPerlPackage rec { name = "Mail-DKIM-0.40"; src = fetchurl { From c0c321cf4877f324f707ce794ead644f4fc52eb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Mon, 21 Mar 2016 12:04:25 -0300 Subject: [PATCH 391/678] grepmail: init at 5.3104 --- pkgs/top-level/perl-packages.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 07a2cc0fbfe..bcb118ed68f 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -5348,6 +5348,22 @@ let self = _self // overrides; _self = with self; { }; }; + grepmail = buildPerlPackage rec { + name = "grepmail-5.3104"; + src = fetchurl { + url = "mirror://cpan/authors/id/D/DC/DCOPPIT/${name}.tar.gz"; + sha256 = "7969e569ec54b2f569a5af56ac4d884c630ad850974658219b0b6953e97b5d3d"; + }; + buildInputs = [ FileSlurp URI ]; + propagatedBuildInputs = [ DateManip DigestMD5 MailMboxMessageParser TimeDate ]; + meta = { + homepage = https://github.com/coppit/grepmail; + description = "Search mailboxes for mail matching a regular expression"; + license = stdenv.lib.licenses.gpl2; + maintainers = with maintainers; [ romildo ]; + }; + }; + GrowlGNTP = buildPerlModule rec { name = "Growl-GNTP-0.20"; src = fetchurl { From a95583e7fd157ea9ef51f32a2e437be301ca751e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Mon, 21 Mar 2016 12:08:04 -0300 Subject: [PATCH 392/678] grepm: init at 0.6 --- pkgs/applications/search/grepm/default.nix | 33 ++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 35 insertions(+) create mode 100644 pkgs/applications/search/grepm/default.nix diff --git a/pkgs/applications/search/grepm/default.nix b/pkgs/applications/search/grepm/default.nix new file mode 100644 index 00000000000..99c149b79d9 --- /dev/null +++ b/pkgs/applications/search/grepm/default.nix @@ -0,0 +1,33 @@ +{ stdenv, fetchurl, perlPackages, mutt }: + +stdenv.mkDerivation rec { + name = "grepm-${version}"; + version = "0.6"; + + src = fetchurl { + url = "http://www.barsnick.net/sw/grepm"; + sha256 = "0ppprhfw06779hz1b10qvq62gsw73shccsav982dyi6xmqb6jqji"; + }; + + phases = [ "installPhase" ]; + + buildInputs = [ perlPackages.grepmail mutt ]; + + installPhase = '' + mkdir -p $out/bin + cp -a $src $out/bin/grepm + chmod +x $out/bin/grepm + sed -i \ + -e "s:^grepmail:${perlPackages.grepmail}/bin/grepmail:" \ + -e "s:^\( *\)mutt:\1${mutt}/bin/mutt:" \ + $out/bin/grepm + ''; + + meta = with stdenv.lib; { + description = "Wrapper for grepmail utilizing mutt"; + homepage = http://www.barsnick.net/sw/grepm.html; + license = licenses.free; + platforms = platforms.unix; + maintainers = [ maintainers.romildo ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9729e2945d3..f21b3086610 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12318,6 +12318,8 @@ let grass = callPackage ../applications/gis/grass { }; + grepm = callPackage ../applications/search/grepm { }; + grip = callPackage ../applications/misc/grip { inherit (gnome) libgnome libgnomeui vte; }; From 4d305102e03ede5dd34dbed830c7cc360af1a97f Mon Sep 17 00:00:00 2001 From: aszlig Date: Mon, 21 Mar 2016 16:11:23 +0100 Subject: [PATCH 393/678] google-chrome: Fix fetching upstream binary Commit aa097946d226aabbe77623800a825b3ee74180c4 only fixed evaluation. Ssince 37dbd62 however, the fetchurl call is already implied so just changing the path will still result in fetchurl (fetchurl ...), so let's drop the outer fetchurl. Signed-off-by: aszlig Cc: @msteen, @benley --- pkgs/applications/networking/browsers/google-chrome/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/browsers/google-chrome/default.nix b/pkgs/applications/networking/browsers/google-chrome/default.nix index 65f740f6a0f..eb51fa5c102 100644 --- a/pkgs/applications/networking/browsers/google-chrome/default.nix +++ b/pkgs/applications/networking/browsers/google-chrome/default.nix @@ -59,7 +59,7 @@ in stdenv.mkDerivation rec { name = "google-chrome-${version}"; - src = fetchurl binary; + src = binary; buildInputs = [ env patchelf ]; From e2cbf68786f288417f99d4a2ddc30c66ba5a807c Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 21 Mar 2016 16:15:21 +0100 Subject: [PATCH 394/678] docker: keep using btrfs-progs 4.4.1 Fixes https://hydra.nixos.org/build/33510211. --- pkgs/tools/filesystems/btrfs-progs/4.4.1.nix | 31 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 5 +++- 2 files changed, 35 insertions(+), 1 deletion(-) create mode 100644 pkgs/tools/filesystems/btrfs-progs/4.4.1.nix diff --git a/pkgs/tools/filesystems/btrfs-progs/4.4.1.nix b/pkgs/tools/filesystems/btrfs-progs/4.4.1.nix new file mode 100644 index 00000000000..afafa4ec174 --- /dev/null +++ b/pkgs/tools/filesystems/btrfs-progs/4.4.1.nix @@ -0,0 +1,31 @@ +{ stdenv, fetchurl, pkgconfig, attr, acl, zlib, libuuid, e2fsprogs, lzo +, asciidoc, xmlto, docbook_xml_dtd_45, docbook_xsl, libxslt +}: + +let version = "4.4.1"; in + +stdenv.mkDerivation rec { + name = "btrfs-progs-${version}"; + + src = fetchurl { + url = "mirror://kernel/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v${version}.tar.xz"; + sha256 = "1z5882zx9jx02vyg067siws0irsl8pg37myx17hr4imn9ypf6r4r"; + }; + + buildInputs = [ + pkgconfig attr acl zlib libuuid e2fsprogs lzo + asciidoc xmlto docbook_xml_dtd_45 docbook_xsl libxslt + ]; + + # gcc bug with -O1 on ARM with gcc 4.8 + # This should be fine on all platforms so apply universally + patchPhase = "sed -i s/-O1/-O2/ configure"; + + meta = with stdenv.lib; { + description = "Utilities for the btrfs filesystem"; + homepage = https://btrfs.wiki.kernel.org/; + license = licenses.gpl2; + maintainers = with maintainers; [ nckx raskin wkennington ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9729e2945d3..8d8a007525a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11935,7 +11935,10 @@ let dmtx-utils = callPackage (callPackage ../tools/graphics/dmtx-utils) { }; - docker = callPackage ../applications/virtualization/docker { go = go_1_4; }; + docker = callPackage ../applications/virtualization/docker { + btrfs-progs = callPackage ../tools/filesystems/btrfs-progs/4.4.1.nix { }; + go = go_1_4; + }; docker-gc = callPackage ../applications/virtualization/docker/gc.nix { }; From 883f73f39d32c0acda63a20465601eedac34c5f2 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Mon, 21 Mar 2016 16:23:03 +0000 Subject: [PATCH 395/678] rspamd: 1.1.3 -> 1.2.0 --- pkgs/servers/mail/rspamd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/mail/rspamd/default.nix b/pkgs/servers/mail/rspamd/default.nix index bd4f3db3ab5..f3156afd97a 100644 --- a/pkgs/servers/mail/rspamd/default.nix +++ b/pkgs/servers/mail/rspamd/default.nix @@ -6,13 +6,13 @@ in stdenv.mkDerivation rec { name = "rspamd-${version}"; - version = "1.1.3"; + version = "1.2.0"; src = fetchFromGitHub { owner = "vstakhov"; repo = "rspamd"; rev = version; - sha256 = "0mvh812a91yqynmcpv159dmkipx72fwg7rgscq7virzphchkbzvj"; + sha256 = "00d9c9b8w6j0ls1w08bfghn4635as779b45vhhlv1f5wfzhxz6a1"; }; nativeBuildInputs = [ cmake pkgconfig perl ]; From bd37facd1ee6ee984216ff8af7b5baa377db1db8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edward=20Tj=C3=B6rnhammar?= Date: Mon, 21 Mar 2016 18:06:53 +0100 Subject: [PATCH 396/678] python33Packages.acd_cli: don't use sqlalchemy7 --- pkgs/top-level/python-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 70e78f2cc6b..a8e30995336 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -234,7 +234,7 @@ in modules // { sha256 = "1ywimbisgb5g7xl9nrfwcm7dv3j8fsrjfp7bxb3l58zbsrzj6z2s"; }; - propagatedBuildInputs = with self; [ appdirs colorama dateutil requests2 requests_toolbelt sqlalchemy7 ]; + propagatedBuildInputs = with self; [ appdirs colorama dateutil requests2 requests_toolbelt sqlalchemy ]; makeWrapperArgs = [ "--prefix LIBFUSE_PATH : ${pkgs.fuse}/lib/libfuse.so" ]; From 9ba1afb94b3f5dda8bb171c56a7f60d15689b495 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 21 Mar 2016 18:28:08 +0100 Subject: [PATCH 397/678] libav: drop unused version 9. --- pkgs/development/libraries/libav/default.nix | 1 - pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libav/default.nix b/pkgs/development/libraries/libav/default.nix index 5b6e9c024b5..4d5563adab0 100644 --- a/pkgs/development/libraries/libav/default.nix +++ b/pkgs/development/libraries/libav/default.nix @@ -27,7 +27,6 @@ with { inherit (stdenv.lib) optional optionals; }; let result = { libav_0_8 = libavFun "0.8.17" "31ace2daeb8c105deed9cd3476df47318d417714"; - libav_9 = libavFun "9.18" "e10cde4587c4d4d3bb11d30c7b47e953664cd714"; libav_11 = libavFun "11.6" "2296cbd7afe98591eb164cebe436dcb5582efc9d"; }; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8d8a007525a..7a9d4da264e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7333,7 +7333,7 @@ let libav = libav_11; # branch 11 is API-compatible with branch 10 libav_all = callPackage ../development/libraries/libav { }; - inherit (libav_all) libav_0_8 libav_9 libav_11; + inherit (libav_all) libav_0_8 libav_11; libavc1394 = callPackage ../development/libraries/libavc1394 { }; From 74f04dc83c016386ef87c0b82b91fa42780192a0 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Mon, 21 Mar 2016 19:55:25 +0100 Subject: [PATCH 398/678] stumpwm: Pass through the sbcl and lispPackages used --- pkgs/applications/window-managers/stumpwm/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/applications/window-managers/stumpwm/default.nix b/pkgs/applications/window-managers/stumpwm/default.nix index 88faae64be7..c47a464a4fc 100644 --- a/pkgs/applications/window-managers/stumpwm/default.nix +++ b/pkgs/applications/window-managers/stumpwm/default.nix @@ -67,6 +67,10 @@ stdenv.mkDerivation rec { echo ${xdpyinfo} > $out/nix-support/xdpyinfo ''; + passthru = { + inherit sbcl lispPackages; + }; + meta = with stdenv.lib; { description = "A tiling window manager for X11"; homepage = https://github.com/stumpwm/; From db6dff75bd8905e7f7c7c679d5dc6680f65e5ae0 Mon Sep 17 00:00:00 2001 From: Mitch Tishmack Date: Mon, 21 Mar 2016 14:05:01 -0500 Subject: [PATCH 399/678] htop: fix build on darwin --- pkgs/tools/system/htop/default.nix | 7 +++++-- pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/system/htop/default.nix b/pkgs/tools/system/htop/default.nix index 46547aa45fd..9301107d2db 100644 --- a/pkgs/tools/system/htop/default.nix +++ b/pkgs/tools/system/htop/default.nix @@ -1,4 +1,5 @@ -{ fetchurl, stdenv, ncurses }: +{ lib, fetchurl, stdenv, ncurses, +IOKit }: stdenv.mkDerivation rec { name = "htop-${version}"; @@ -9,7 +10,9 @@ stdenv.mkDerivation rec { url = "http://hisham.hm/htop/releases/${version}/${name}.tar.gz"; }; - buildInputs = [ ncurses ]; + buildInputs = + [ ncurses ] ++ + lib.optionals stdenv.isDarwin [ IOKit ]; meta = with stdenv.lib; { description = "An interactive process viewer for Linux"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index da6fca3a81a..10800fbb2a7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10309,7 +10309,9 @@ let hostapd = callPackage ../os-specific/linux/hostapd { }; - htop = callPackage ../tools/system/htop { }; + htop = callPackage ../tools/system/htop { + inherit (darwin) IOKit; + }; # GNU/Hurd core packages. gnu = recurseIntoAttrs (callPackage ../os-specific/gnu { From 1a9b272c0946ff1d30bba0effb949d5e16dcf5c4 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Mon, 21 Mar 2016 04:09:04 +0100 Subject: [PATCH 400/678] nss: 3.22.2 -> 3.23 (security) Fixes CVE-2016-1950. See: https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.23_release_notes --- .../libraries/nss/85_security_load.patch | 47 ++++++++++--------- pkgs/development/libraries/nss/default.nix | 6 +-- 2 files changed, 28 insertions(+), 25 deletions(-) diff --git a/pkgs/development/libraries/nss/85_security_load.patch b/pkgs/development/libraries/nss/85_security_load.patch index 3e51e290887..632cc418425 100644 --- a/pkgs/development/libraries/nss/85_security_load.patch +++ b/pkgs/development/libraries/nss/85_security_load.patch @@ -1,7 +1,8 @@ -diff -ru nss-3.16-orig/nss/cmd/shlibsign/shlibsign.c nss-3.16/nss/cmd/shlibsign/shlibsign.c ---- nss-3.16-orig/nss/cmd/shlibsign/shlibsign.c 2014-03-14 21:31:59.000000000 +0100 -+++ nss-3.16/nss/cmd/shlibsign/shlibsign.c 2014-04-22 14:50:31.340743655 +0200 -@@ -852,6 +852,8 @@ +diff --git a/nss/cmd/shlibsign/shlibsign.c b/nss/cmd/shlibsign/shlibsign.c +index 63a4836..a128c1d 100644 +--- a/nss/cmd/shlibsign/shlibsign.c ++++ b/nss/cmd/shlibsign/shlibsign.c +@@ -862,6 +862,8 @@ int main(int argc, char **argv) libname = PR_GetLibraryName(NULL, "softokn3"); assert(libname != NULL); lib = PR_LoadLibrary(libname); @@ -10,21 +11,22 @@ diff -ru nss-3.16-orig/nss/cmd/shlibsign/shlibsign.c nss-3.16/nss/cmd/shlibsign/ assert(lib != NULL); PR_FreeLibraryName(libname); -Only in nss-3.16/nss/cmd/shlibsign: shlibsign.c.orig -diff -ru nss-3.16-orig/nss/coreconf/config.mk nss-3.16/nss/coreconf/config.mk ---- nss-3.16-orig/nss/coreconf/config.mk 2014-03-14 21:31:59.000000000 +0100 -+++ nss-3.16/nss/coreconf/config.mk 2014-04-22 14:50:51.302731097 +0200 -@@ -188,3 +188,6 @@ - - # Hide old, deprecated, TLS cipher suite names when building NSS - DEFINES += -DSSL_DISABLE_DEPRECATED_CIPHER_SUITE_NAMES +diff --git a/nss/coreconf/config.mk b/nss/coreconf/config.mk +index 61d757b..b58a98b 100644 +--- a/nss/coreconf/config.mk ++++ b/nss/coreconf/config.mk +@@ -205,3 +205,6 @@ $(error Setting NSS_ENABLE_TLS_1_3 and NSS_DISABLE_ECC isn't a good idea.) + endif + DEFINES += -DNSS_ENABLE_TLS_1_3 + endif + +# Nix specific stuff. +DEFINES += -DNIX_NSS_LIBDIR=\"$(out)/lib/\" -diff -ru nss-3.16-orig/nss/lib/pk11wrap/pk11load.c nss-3.16/nss/lib/pk11wrap/pk11load.c ---- nss-3.16-orig/nss/lib/pk11wrap/pk11load.c 2014-03-14 21:31:59.000000000 +0100 -+++ nss-3.16/nss/lib/pk11wrap/pk11load.c 2014-04-22 14:50:22.164749330 +0200 -@@ -406,6 +406,13 @@ +diff --git a/nss/lib/pk11wrap/pk11load.c b/nss/lib/pk11wrap/pk11load.c +index 5c5d2ca..026e528 100644 +--- a/nss/lib/pk11wrap/pk11load.c ++++ b/nss/lib/pk11wrap/pk11load.c +@@ -429,6 +429,13 @@ secmod_LoadPKCS11Module(SECMODModule *mod, SECMODModule **oldModule) { * unload the library if anything goes wrong from here on out... */ library = PR_LoadLibrary(mod->dllName); @@ -38,10 +40,11 @@ diff -ru nss-3.16-orig/nss/lib/pk11wrap/pk11load.c nss-3.16/nss/lib/pk11wrap/pk1 mod->library = (void *)library; if (library == NULL) { -diff -ru nss-3.16-orig/nss/lib/util/secload.c nss-3.16/nss/lib/util/secload.c ---- nss-3.16-orig/nss/lib/util/secload.c 2014-03-14 21:31:59.000000000 +0100 -+++ nss-3.16/nss/lib/util/secload.c 2014-04-22 14:50:31.342743654 +0200 -@@ -69,9 +69,14 @@ +diff --git a/nss/lib/util/secload.c b/nss/lib/util/secload.c +index eb8a9ec..f94f67d 100644 +--- a/nss/lib/util/secload.c ++++ b/nss/lib/util/secload.c +@@ -69,9 +69,14 @@ loader_LoadLibInReferenceDir(const char *referencePath, const char *name) /* Remove the trailing filename from referencePath and add the new one */ c = strrchr(referencePath, PR_GetDirectorySeparator()); @@ -57,7 +60,7 @@ diff -ru nss-3.16-orig/nss/lib/util/secload.c nss-3.16/nss/lib/util/secload.c if (fullName) { memcpy(fullName, referencePath, referencePathSize); strcpy(fullName + referencePathSize, name); -@@ -81,6 +86,11 @@ +@@ -81,6 +86,11 @@ loader_LoadLibInReferenceDir(const char *referencePath, const char *name) #endif libSpec.type = PR_LibSpec_Pathname; libSpec.value.pathname = fullName; @@ -69,7 +72,7 @@ diff -ru nss-3.16-orig/nss/lib/util/secload.c nss-3.16/nss/lib/util/secload.c dlh = PR_LoadLibraryWithFlags(libSpec, PR_LD_NOW | PR_LD_LOCAL #ifdef PR_LD_ALT_SEARCH_PATH /* allow library's dependencies to be found in the same directory -@@ -88,6 +98,10 @@ +@@ -88,6 +98,10 @@ loader_LoadLibInReferenceDir(const char *referencePath, const char *name) | PR_LD_ALT_SEARCH_PATH #endif ); diff --git a/pkgs/development/libraries/nss/default.nix b/pkgs/development/libraries/nss/default.nix index 060aa20967f..e8be7299952 100644 --- a/pkgs/development/libraries/nss/default.nix +++ b/pkgs/development/libraries/nss/default.nix @@ -11,11 +11,11 @@ let in stdenv.mkDerivation rec { name = "nss-${version}"; - version = "3.22.2"; + version = "3.23"; src = fetchurl { - url = "http://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_22_2_RTM/src/${name}.tar.gz"; - sha256 = "0l1n5mwgqkcwfh10hizdv0vfj6gg9i4zip021wh33b17qn3r5m07"; + url = "http://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_23_RTM/src/${name}.tar.gz"; + sha256 = "1kqidv91icq96m9m8zx50n7px08km2l88458rkgyjwcn3kiq7cwl"; }; buildInputs = [ nspr perl zlib sqlite ]; From 806f71370c1f966b77b7bee7fe109ca8acfcb381 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Mon, 21 Mar 2016 21:28:19 +0100 Subject: [PATCH 401/678] amuleGui: fix build See #13559 --- pkgs/tools/networking/p2p/amule/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/p2p/amule/default.nix b/pkgs/tools/networking/p2p/amule/default.nix index 45a73924758..d091af62446 100644 --- a/pkgs/tools/networking/p2p/amule/default.nix +++ b/pkgs/tools/networking/p2p/amule/default.nix @@ -3,9 +3,10 @@ , httpServer ? false # build web interface for the daemon , client ? false # build amule remote gui , fetchurl, stdenv, zlib, wxGTK, perl, cryptopp, libupnp, gettext, libpng ? null -, pkgconfig, makeWrapper }: +, pkgconfig, makeWrapper, libX11 ? null }: assert httpServer -> libpng != null; +assert client -> libX11 != null; with stdenv; let # Enable/Disable Feature @@ -21,7 +22,8 @@ mkDerivation rec { buildInputs = [ zlib wxGTK perl cryptopp libupnp gettext pkgconfig makeWrapper ] - ++ lib.optional httpServer libpng; + ++ lib.optional httpServer libpng + ++ lib.optional client libX11; patches = [ ./gcc47.patch ]; # from Gentoo From 6c05554b8560c9992afb5996c7d0e1a1f590f50c Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 21 Mar 2016 15:36:39 -0500 Subject: [PATCH 402/678] emacsPackagesNg: remove compatibility cl-lib ELPA has the compatibility library cl-lib-0.5 which interferes with the builtin cl-lib-1.0. --- .../applications/editors/emacs-modes/elpa-packages.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/elpa-packages.nix b/pkgs/applications/editors/emacs-modes/elpa-packages.nix index 7fc8a06644f..29cb586484a 100644 --- a/pkgs/applications/editors/emacs-modes/elpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/elpa-packages.nix @@ -35,11 +35,11 @@ self: }; overrides = { - # These packages require emacs-25 - el-search = markBroken super.el-search; - iterators = markBroken super.iterators; - midi-kbd = markBroken super.midi-kbd; - stream = markBroken super.stream; + el-search = markBroken super.el-search; # requires emacs-25 + iterators = markBroken super.iterators; # requires emacs-25 + midi-kbd = markBroken super.midi-kbd; # requires emacs-25 + stream = markBroken super.stream; # requires emacs-25 + cl-lib = null; # builtin }; elpaPackages = super // overrides; From fbdcbaf25c197cc71e1e2276306f50d4e8b966c4 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Mon, 21 Mar 2016 22:06:13 +0100 Subject: [PATCH 403/678] horst: 2015-07-22 -> 2016-03-15 --- pkgs/tools/networking/horst/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/networking/horst/default.nix b/pkgs/tools/networking/horst/default.nix index 0f18534d200..4a756711e8e 100644 --- a/pkgs/tools/networking/horst/default.nix +++ b/pkgs/tools/networking/horst/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "horst-${version}"; - version = "git-2015-07-22"; + version = "git-2016-03-15"; src = fetchFromGitHub { owner = "br101"; repo = "horst"; - rev = "b62fc20b98690061522a431cb278d989e21141d8"; - sha256 = "176yma8v2bsab2ypgmgzvjg0bsbnk9sga3xpwkx33mwm6q79kd6g"; + rev = "9d5c2f387607ac1c174b59497557b8985cdb788b"; + sha256 = "0a4ixc9xbc818hw7rai24i1y8nqq2aqxqd938ax89ik4pfd2w3l0"; }; nativeBuildInputs = [ pkgconfig ]; From b40a25b9224a36ab5e45a81813e35a50d9e0df20 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Mon, 21 Mar 2016 21:15:50 +0000 Subject: [PATCH 404/678] scribus: 1.4.5 -> 1.4.6 --- pkgs/applications/office/scribus/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/office/scribus/default.nix b/pkgs/applications/office/scribus/default.nix index 720a07afcfa..d592e149588 100644 --- a/pkgs/applications/office/scribus/default.nix +++ b/pkgs/applications/office/scribus/default.nix @@ -3,11 +3,11 @@ , zlib, libpng, xorg, cairo, podofo, aspell, boost, cmake }: stdenv.mkDerivation rec { - name = "scribus-1.4.5"; + name = "scribus-1.4.6"; src = fetchurl { - url = "mirror://sourceforge/scribus/scribus/${name}.tar.bz2"; - sha256 = "1644ym79q7a1m5xf3xl1wf4kdk870np911jmpqdv2syjc42nyw4z"; + url = "mirror://sourceforge/scribus/scribus/${name}.tar.xz"; + sha256 = "16m1g38dig37ag0zxjx3wk1rxx9xxzjqfc7prj89rp4y1m83dqr1"; }; enableParallelBuilding = true; From bf9f211ae39f05c57913e368ba19a5a724f2eb1f Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 22 Mar 2016 00:52:40 +0100 Subject: [PATCH 405/678] whois: 5.2.10 -> 5.2.11 --- pkgs/tools/networking/whois/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/whois/default.nix b/pkgs/tools/networking/whois/default.nix index bab487f5fab..cf755b35491 100644 --- a/pkgs/tools/networking/whois/default.nix +++ b/pkgs/tools/networking/whois/default.nix @@ -1,14 +1,14 @@ { stdenv, fetchFromGitHub, perl, gettext }: stdenv.mkDerivation rec { - version = "5.2.10"; + version = "5.2.11"; name = "whois-${version}"; src = fetchFromGitHub { owner = "rfc1036"; repo = "whois"; rev = "v${version}"; - sha256 = "0fqxbys3ssyplh70wjs83jsljqhmrnjic02ayaznw9m9l6fzhkkr"; + sha256 = "0yjzssy1nfj314hqbhfjljpb74c5aqvx5pbpsba5qsx7rrwy7n4z"; }; buildInputs = [ perl gettext ]; From c0a35241f0a54f3859564b66ea71d4901ab2978f Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 22 Mar 2016 00:58:51 +0100 Subject: [PATCH 406/678] mcelog: 133 -> 134 trigger: Avoid warning from earlier merge --- pkgs/development/interpreters/guile/default.nix | 2 ++ pkgs/os-specific/linux/mcelog/default.nix | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/guile/default.nix b/pkgs/development/interpreters/guile/default.nix index c4634de5d3f..5e2883f9fb3 100644 --- a/pkgs/development/interpreters/guile/default.nix +++ b/pkgs/development/interpreters/guile/default.nix @@ -40,6 +40,8 @@ # don't have "libgcc_s.so.1" on darwin LDFLAGS = stdenv.lib.optionalString (!stdenv.isDarwin) "-lgcc_s"; + configureFlags = [ "--with-libreadline-prefix" ]; + postInstall = '' wrapProgram $out/bin/guile-snarf --prefix PATH : "${gawk}/bin" diff --git a/pkgs/os-specific/linux/mcelog/default.nix b/pkgs/os-specific/linux/mcelog/default.nix index a30558092c3..40368d1c08f 100644 --- a/pkgs/os-specific/linux/mcelog/default.nix +++ b/pkgs/os-specific/linux/mcelog/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { name = "mcelog-${version}"; - version = "133"; + version = "134"; src = fetchFromGitHub { - sha256 = "1qj9jz67bd834sgqcxhyhn9fzxg8y9vfw7gmza5ikmjm6yi6mmfr"; + sha256 = "1kah9fcbc8m7sncylcd2n4xcbm5dwgyzplm3d7zwgkdg6xgxjlc7"; rev = "v${version}"; repo = "mcelog"; owner = "andikleen"; From b2f92582fba10d5e15a0234656ab343ea5edccaf Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 22 Mar 2016 01:15:40 +0100 Subject: [PATCH 407/678] uhd: 3.7.0 -> 3.9.3 --- pkgs/development/tools/misc/uhd/default.nix | 25 ++++++++++++--------- pkgs/top-level/all-packages.nix | 4 +--- 2 files changed, 16 insertions(+), 13 deletions(-) diff --git a/pkgs/development/tools/misc/uhd/default.nix b/pkgs/development/tools/misc/uhd/default.nix index 67ef086941e..786a7d8cdb5 100644 --- a/pkgs/development/tools/misc/uhd/default.nix +++ b/pkgs/development/tools/misc/uhd/default.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchurl, cmake, pkgconfig, python, cheetahTemplate, orc, libusb1, boost }: +{ stdenv, fetchurl, fetchFromGitHub, cmake, pkgconfig +, python, pythonPackages, orc, libusb1, boost }: # You need these udev rules to not have to run as root (copied from # ${uhd}/share/uhd/utils/uhd-usrp.rules): @@ -8,29 +9,33 @@ stdenv.mkDerivation rec { name = "uhd-${version}"; - version = "3.7.0"; + version = "3.9.3"; # UHD seems to use three different version number styles: x.y.z, xxx_yyy_zzz # and xxx.yyy.zzz. Hrmpf... - src = fetchurl { - name = "${name}.tar.gz"; - url = "https://github.com/EttusResearch/uhd/archive/release_003_007_000.tar.gz"; - sha256 = "0x9imfy63s6wlbilr2n82c15nd33ix0mbap0q1xwh2pj1mk4d5jk"; + src = fetchFromGitHub { + owner = "EttusResearch"; + repo = "uhd"; + rev = "release_003_009_003"; + sha256 = "0nbm8nrjd0l8jj1wq0kkgd8pifzysdyc7pvraq16m0dc01mr638h"; }; + enableParallelBuilding = true; + cmakeFlags = "-DLIBUSB_INCLUDE_DIRS=${libusb1}/include/libusb-1.0"; - buildInputs = [ cmake pkgconfig python cheetahTemplate orc libusb1 boost ]; + nativeBuildInputs = [ cmake pkgconfig ]; + buildInputs = [ python pythonPackages.pyramid_mako orc libusb1 boost ]; # Build only the host software preConfigure = "cd host"; # Firmware images are downloaded (pre-built) - uhdImagesName = "uhd-images_003.007.000-release"; + uhdImagesName = "uhd-images_003.007.003-release"; uhdImagesSrc = fetchurl { url = "http://files.ettus.com/binaries/maint_images/archive/${uhdImagesName}.tar.gz"; - sha256 = "0vb0rc5ji8n6l6ycvd7pbazxzm0ihvkmqm77jflqrd3kky8r722d"; + sha256 = "1pv5c5902041494z0jfw623ca29pvylrw5klybbhklvn5wwlr6cv"; }; postPhases = [ "installFirmware" ]; @@ -51,6 +56,6 @@ stdenv.mkDerivation rec { homepage = http://ettus-apps.sourcerepo.com/redmine/ettus/projects/uhd/wiki; license = licenses.gpl3Plus; platforms = platforms.linux; - maintainers = [ maintainers.bjornfor ]; + maintainers = with maintainers; [ bjornfor fpletz ]; }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 10800fbb2a7..e36ba59f86b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6328,9 +6328,7 @@ let texi2html = callPackage ../development/tools/misc/texi2html { }; - uhd = callPackage ../development/tools/misc/uhd { - boost = boost155; - }; + uhd = callPackage ../development/tools/misc/uhd { }; uisp = callPackage ../development/tools/misc/uisp { }; From 441f8a84c07741e4f76b5517378f7e94992c0295 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 22 Mar 2016 01:16:53 +0100 Subject: [PATCH 408/678] gnuradio: 3.7.8.1 -> 3.7.9.1 --- pkgs/applications/misc/gnuradio/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/gnuradio/default.nix b/pkgs/applications/misc/gnuradio/default.nix index ab02238606a..734ffee51e2 100644 --- a/pkgs/applications/misc/gnuradio/default.nix +++ b/pkgs/applications/misc/gnuradio/default.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { name = "gnuradio-${version}"; - version = "3.7.8.1"; + version = "3.7.9.1"; src = fetchurl { url = "http://gnuradio.org/releases/gnuradio/${name}.tar.gz"; - sha256 = "1ap5gbgisnbny3jbnm2i5wm2sy6qkbhz747av3sjxp2z12fz81l4"; + sha256 = "0zlnxyqq3dyrg0nz2hpydlhyzv26vlkdavs8w01k448lxkqz01lw"; }; buildInputs = [ @@ -39,6 +39,8 @@ stdenv.mkDerivation rec { cheetahTemplate numpy scipy matplotlib pyqt4 pygtk wxPython pyopengl ]; + enableParallelBuilding = true; + preConfigure = '' export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -Wno-unused-variable" ''; @@ -72,6 +74,6 @@ stdenv.mkDerivation rec { homepage = http://www.gnuradio.org; license = licenses.gpl3; platforms = platforms.linux; - maintainers = [ maintainers.bjornfor ]; + maintainers = with maintainers; [ bjornfor fpletz ]; }; } From 29275f9740283a7feee649ba29ef55ef88d2da93 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 22 Mar 2016 01:17:27 +0100 Subject: [PATCH 409/678] gqrx: 2.3.2 -> 2.5.3 --- pkgs/applications/misc/gqrx/default.nix | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/pkgs/applications/misc/gqrx/default.nix b/pkgs/applications/misc/gqrx/default.nix index d3e61da4fab..d30b6b8e8f9 100644 --- a/pkgs/applications/misc/gqrx/default.nix +++ b/pkgs/applications/misc/gqrx/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qt4, gnuradio, boost, gnuradio-osmosdr +{ stdenv, fetchFromGitHub, qt4, gnuradio, boost, gnuradio-osmosdr # drivers (optional): , rtl-sdr, hackrf , pulseaudioSupport ? true, libpulseaudio @@ -8,11 +8,13 @@ assert pulseaudioSupport -> libpulseaudio != null; stdenv.mkDerivation rec { name = "gqrx-${version}"; - version = "2.3.2"; + version = "2.5.3"; - src = fetchurl { - url = "mirror://sourceforge/project/gqrx/${version}/${name}.tar.xz"; - sha256 = "1vfqqa976xlbapqkpc9nka364zydvsy18xiwfqjy015kpasshdz1"; + src = fetchFromGitHub { + owner = "csete"; + repo = "gqrx"; + rev = "v${version}"; + sha256 = "02pavd1kc0gsnrl18bfa01r2f3j4j05zly4a8zwss9yrsgf8432x"; }; buildInputs = [ @@ -21,12 +23,14 @@ stdenv.mkDerivation rec { configurePhase = ''qmake PREFIX="$out"''; + enableParallelBuilding = true; + postInstall = '' mkdir -p "$out/share/applications" mkdir -p "$out/share/icons" cp gqrx.desktop "$out/share/applications/" - cp icons/gqrx.svg "$out/share/icons/" + cp resources/icons/gqrx.svg "$out/share/icons/" ''; meta = with stdenv.lib; { @@ -42,6 +46,6 @@ stdenv.mkDerivation rec { # it's currently unknown which version of the BSD license that is. license = licenses.gpl3Plus; platforms = platforms.linux; # should work on Darwin / OS X too - maintainers = with maintainers; [ bjornfor the-kenny ]; + maintainers = with maintainers; [ bjornfor the-kenny fpletz ]; }; } From f03993366e38bde45f5464a9223073229b77014a Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 22 Mar 2016 02:11:25 +0100 Subject: [PATCH 410/678] fail2ban: 0.9.3 -> 0.9.4 --- pkgs/tools/security/fail2ban/default.nix | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/pkgs/tools/security/fail2ban/default.nix b/pkgs/tools/security/fail2ban/default.nix index 9443eac01da..c886b10e220 100644 --- a/pkgs/tools/security/fail2ban/default.nix +++ b/pkgs/tools/security/fail2ban/default.nix @@ -1,19 +1,18 @@ -{ stdenv, fetchzip, python, pythonPackages, unzip, gamin }: +{ stdenv, fetchFromGitHub, python, pythonPackages, gamin }: -let version = "0.9.3"; in +let version = "0.9.4"; in pythonPackages.buildPythonApplication { name = "fail2ban-${version}"; namePrefix = ""; - src = fetchzip { - name = "fail2ban-${version}-src"; - url = "https://github.com/fail2ban/fail2ban/archive/${version}.tar.gz"; - sha256 = "1pwgr56i6l6wh2ap8b5vknxgsscfzjqy2nmd1c3vzdii5kf72j0f"; + src = fetchFromGitHub { + owner = "fail2ban"; + repo = "fail2ban"; + rev = version; + sha256 = "1m8gqj35kwrn30rqwd488sgakaisz22xa5v9llvz6gwf4f7ps0a9"; }; - buildInputs = [ unzip ]; - propagatedBuildInputs = [ python.modules.sqlite3 gamin ] ++ (stdenv.lib.optional stdenv.isLinux pythonPackages.systemd); @@ -48,7 +47,7 @@ pythonPackages.buildPythonApplication { homepage = http://www.fail2ban.org/; description = "A program that scans log files for repeated failing login attempts and bans IP addresses"; license = licenses.gpl2Plus; - maintainers = with maintainers; [ eelco lovek323 ]; + maintainers = with maintainers; [ eelco lovek323 fpletz ]; platforms = platforms.linux ++ platforms.darwin; }; } From be30ba8e0eabbc2483122ddf9d5911484df3a578 Mon Sep 17 00:00:00 2001 From: Ryan Trinkle Date: Mon, 21 Mar 2016 23:26:18 -0400 Subject: [PATCH 411/678] nix-prefetch-scripts: make nix-prefetch-git report fetchSubmodules in its JSON output Previously, nix-prefetch-git would report the same JSON whether submodules were being fetched or not; with this change, the --fetch-submodules option will cause the JSON output to include "fetchSubmodules": true, so that fetchgit (builtins.fromJSON (builtins.readFile ./path/to/output.json)) will work. --- pkgs/build-support/fetchgit/nix-prefetch-git | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/build-support/fetchgit/nix-prefetch-git b/pkgs/build-support/fetchgit/nix-prefetch-git index 2c9d61504ed..2af01ee5373 100755 --- a/pkgs/build-support/fetchgit/nix-prefetch-git +++ b/pkgs/build-support/fetchgit/nix-prefetch-git @@ -327,7 +327,12 @@ print_results() { echo "{" echo " \"url\": \"$url\"," echo " \"rev\": \"$fullRev\"," - echo " \"$hashType\": \"$hash\"" + echo -n " \"$hashType\": \"$hash\"" + if test -n "$fetchSubmodules"; then + echo "," + echo -n " \"fetchSubmodules\": true" + fi + echo "" echo "}" fi } From ead287939b77b31954adea9554c18ca01dbd8e55 Mon Sep 17 00:00:00 2001 From: Cole Mickens Date: Mon, 21 Mar 2016 20:46:24 -0700 Subject: [PATCH 412/678] plex: plexpass: 0.9.16.2.1827 -> 0.9.16.3.1840 --- pkgs/servers/plex/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/plex/default.nix b/pkgs/servers/plex/default.nix index 672e441875a..11f1bc4a988 100644 --- a/pkgs/servers/plex/default.nix +++ b/pkgs/servers/plex/default.nix @@ -5,9 +5,9 @@ let plexpkg = if enablePlexPass then { - version = "0.9.16.0.1754"; - vsnHash = "23623fb"; - sha256 = "0yn5bqpgz28ig6y3qw3zxzm8gfvwaw7nh5krmav8h1ryws98cc6g"; + version = "0.9.16.3.1840"; + vsnHash = "cece46d"; + sha256 = "0p1rnia18a67h05f7l7smkpry1ldkpdkyvs9fgrqpay3w0jfk9gd"; } else { version = "0.9.15.6.1714"; vsnHash = "7be11e1"; From eddb7a55f8e04ee418f721c0353c46eddf42178d Mon Sep 17 00:00:00 2001 From: Slawomir Gonet Date: Tue, 22 Mar 2016 08:38:50 +0100 Subject: [PATCH 413/678] utox: 0.5.0 -> 0.7.0, libtoxcore: 20160131 -> 20160319 --- .../networking/instant-messengers/utox/default.nix | 4 ++-- pkgs/development/libraries/libtoxcore/new-api/default.nix | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/utox/default.nix b/pkgs/applications/networking/instant-messengers/utox/default.nix index 55ec1560c5e..0ae0cca5991 100644 --- a/pkgs/applications/networking/instant-messengers/utox/default.nix +++ b/pkgs/applications/networking/instant-messengers/utox/default.nix @@ -3,13 +3,13 @@ stdenv.mkDerivation rec { name = "utox-${version}"; - version = "0.5.0"; + version = "0.7.0"; src = fetchFromGitHub { owner = "GrayHatter"; repo = "uTox"; rev = "v${version}"; - sha256 = "074wa0np8hyqwy9xqgyyds94pdfv2i1jh019m98d8apxc5vn36wk"; + sha256 = "1md8fw6zqd3giskd89i56dgrsl83vn27xwr8k22263wkj1fxxw4c"; }; buildInputs = [ pkgconfig libtoxcore-dev dbus libvpx libX11 openal freetype diff --git a/pkgs/development/libraries/libtoxcore/new-api/default.nix b/pkgs/development/libraries/libtoxcore/new-api/default.nix index 5bb0427f181..9702fbd02da 100644 --- a/pkgs/development/libraries/libtoxcore/new-api/default.nix +++ b/pkgs/development/libraries/libtoxcore/new-api/default.nix @@ -2,13 +2,13 @@ , libvpx, check, libconfig, pkgconfig }: stdenv.mkDerivation rec { - name = "tox-core-dev-20160131"; + name = "tox-core-dev-20160319"; src = fetchFromGitHub { owner = "irungentoo"; repo = "toxcore"; - rev = "94cc8b11ff473064526737936f64b6f9a19c239d"; - sha256 = "0njara08p5vmhs6kp04b7gxw8l6xrlmwnlb76n2g96v0rn0i9k2w"; + rev = "532629d486e3361c7d8d95b38293cc7d61dc4ee5"; + sha256 = "0x8mjrjiafgia9vy7w4zhfzicr2fljx8xgm2ppi4kva2r2z1wm2f"; }; NIX_LDFLAGS = "-lgcc_s"; From fdc0edff3e5fa0f900e3b296ec3c0285b9708115 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Tue, 22 Mar 2016 08:41:10 -0300 Subject: [PATCH 414/678] gnome-terminal: refactor wrapping variables in binaries --- .../3.18/core/gnome-terminal/default.nix | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.18/core/gnome-terminal/default.nix b/pkgs/desktops/gnome-3/3.18/core/gnome-terminal/default.nix index 3bbb25ca5c1..052a16affdc 100644 --- a/pkgs/desktops/gnome-3/3.18/core/gnome-terminal/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/gnome-terminal/default.nix @@ -1,27 +1,22 @@ { stdenv, fetchurl, pkgconfig, cairo, libxml2, gnome3, pango , gnome_doc_utils, intltool, libX11, which, libuuid, vala -, desktop_file_utils, itstool, makeWrapper, appdata-tools }: +, desktop_file_utils, itstool, wrapGAppsHook, appdata-tools }: stdenv.mkDerivation rec { inherit (import ./src.nix fetchurl) name src; buildInputs = [ gnome3.gtk gnome3.gsettings_desktop_schemas gnome3.vte appdata-tools - gnome3.dconf itstool makeWrapper gnome3.nautilus vala ]; + gnome3.dconf itstool gnome3.nautilus vala ]; - nativeBuildInputs = [ pkgconfig intltool gnome_doc_utils which libuuid libxml2 desktop_file_utils ]; + nativeBuildInputs = [ pkgconfig intltool gnome_doc_utils which libuuid libxml2 + desktop_file_utils wrapGAppsHook ]; # FIXME: enable for gnome3 configureFlags = [ "--disable-search-provider" "--disable-migration" ]; - preFixup = '' - for f in "$out/libexec/gnome-terminal-server"; do - wrapProgram "$f" \ - --prefix XDG_DATA_DIRS : "$out/share:$GSETTINGS_SCHEMAS_PATH" \ - --prefix GIO_EXTRA_MODULES : "${gnome3.dconf}/lib/gio/modules" - done - ''; - meta = with stdenv.lib; { + description = "The GNOME Terminal Emulator"; + homepage = https://wiki.gnome.org/Apps/Terminal/; platforms = platforms.linux; maintainers = gnome3.maintainers; }; From 23b9d037dee4b847b90697bbcc1235d1847473ba Mon Sep 17 00:00:00 2001 From: zimbatm Date: Tue, 22 Mar 2016 12:08:45 +0000 Subject: [PATCH 415/678] quassel: fix sources Fixes changes after #14080 where the updated hash was missing. Put the source in a common file so there is only one place to update. --- .../networking/irc/quassel/default.nix | 8 ++------ .../applications/networking/irc/quassel/qt-5.nix | 16 ++-------------- .../networking/irc/quassel/source.nix | 9 +++++++++ 3 files changed, 13 insertions(+), 20 deletions(-) create mode 100644 pkgs/applications/networking/irc/quassel/source.nix diff --git a/pkgs/applications/networking/irc/quassel/default.nix b/pkgs/applications/networking/irc/quassel/default.nix index 0c89b002f47..f48309d0b04 100644 --- a/pkgs/applications/networking/irc/quassel/default.nix +++ b/pkgs/applications/networking/irc/quassel/default.nix @@ -22,17 +22,13 @@ assert !buildClient -> !withKDE; # KDE is used by the client only let edf = flag: feature: [("-D" + feature + (if flag then "=ON" else "=OFF"))]; + source = import ./source.nix { inherit fetchurl; }; in with stdenv; mkDerivation rec { + inherit (source) src version; - version = "0.12.3"; name = "quassel${tag}-${version}"; - src = fetchurl { - url = "http://quassel-irc.org/pub/quassel-${version}.tar.bz2"; - sha256 = "15vqjiw38mifvnc95bhvy0zl23xxldkwg2byx9xqbyw8rfgggmkb"; - }; - enableParallelBuilding = true; buildInputs = diff --git a/pkgs/applications/networking/irc/quassel/qt-5.nix b/pkgs/applications/networking/irc/quassel/qt-5.nix index f401cace06e..c80624ac051 100644 --- a/pkgs/applications/networking/irc/quassel/qt-5.nix +++ b/pkgs/applications/networking/irc/quassel/qt-5.nix @@ -33,25 +33,13 @@ assert !buildClient -> !withKDE; # KDE is used by the client only let edf = flag: feature: [("-D" + feature + (if flag then "=ON" else "=OFF"))]; + source = import ./source.nix { inherit fetchurl; }; in with stdenv; mkDerivation rec { + inherit (source) src version; - version = "0.12.3"; name = "quassel${tag}-${version}"; - src = fetchurl { - url = "http://quassel-irc.org/pub/quassel-${version}.tar.bz2"; - sha256 = "15vqjiw38mifvnc95bhvy0zl23xxldkwg2byx9xqbyw8rfgggmkb"; - }; - - patches = [ - # fix build with Qt 5.5 - (fetchurl { - url = "https://github.com/quassel/quassel/commit/078477395aaec1edee90922037ebc8a36b072d90.patch"; - sha256 = "1njwnay7pjjw0g7m0x5cwvck8xcznc7jbdfyhbrd121nc7jgpbc5"; - }) - ]; - enableParallelBuilding = true; buildInputs = diff --git a/pkgs/applications/networking/irc/quassel/source.nix b/pkgs/applications/networking/irc/quassel/source.nix new file mode 100644 index 00000000000..17d12b575d7 --- /dev/null +++ b/pkgs/applications/networking/irc/quassel/source.nix @@ -0,0 +1,9 @@ +{ fetchurl }: + +rec { + version = "0.12.3"; + src = fetchurl { + url = "http://quassel-irc.org/pub/quassel-${version}.tar.bz2"; + sha256 = "0d6lwf6qblj1ia5j9mjy112zrmpbbg9mmxgscbgxiqychldyjgjd"; + }; +} From 3e2495be57712cfdfa7817f1c0b761c0ee315442 Mon Sep 17 00:00:00 2001 From: Jakob Gillich Date: Sun, 20 Mar 2016 16:44:50 -0400 Subject: [PATCH 416/678] rustcMaster: 2016-02-25 -> 2016-03-22 --- pkgs/development/compilers/rustc/head.nix | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/pkgs/development/compilers/rustc/head.nix b/pkgs/development/compilers/rustc/head.nix index 66730cf855a..bb67b88c478 100644 --- a/pkgs/development/compilers/rustc/head.nix +++ b/pkgs/development/compilers/rustc/head.nix @@ -2,11 +2,11 @@ { stdenv, callPackage }: callPackage ./generic.nix { - shortVersion = "2016-02-22"; + shortVersion = "2016-03-22"; isRelease = false; forceBundledLLVM = true; - srcRev = "d1f422ec280b881b8236c5d173103bc799e1590e"; - srcSha = "b0753045ae438c0869d37f429fe84451dcacc4b2ab9413d34bf29fde94fde462"; + srcRev = "6cc502c986d42da407e26a49d4f09f21d3072fcb"; + srcSha = "096lsc8irh9a7w494yaji28kzy9frs2myqrfyj0fzbxkvs3yfhzz"; /* Rust is bootstrapped from an earlier built version. We need to fetch these earlier versions, which vary per platform. @@ -15,14 +15,13 @@ callPackage ./generic.nix { with the set you want at the top. */ - snapshotHashLinux686 = "a09c4a4036151d0cb28e265101669731600e01f2"; - snapshotHashLinux64 = "97e2a5eb8904962df8596e95d6e5d9b574d73bf4"; - snapshotHashDarwin686 = "ca52d2d3ba6497ed007705ee3401cf7efc136ca1"; - snapshotHashDarwin64 = "3c44ffa18f89567c2b81f8d695e711c86d81ffc7"; - snapshotDate = "2015-12-18"; - snapshotRev = "3391630"; + snapshotHashLinux686 = "0e0e4448b80d0a12b75485795244bb3857a0a7ef"; + snapshotHashLinux64 = "1273b6b6aed421c9e40c59f366d0df6092ec0397"; + snapshotHashDarwin686 = "9f9c0b4a2db09acbce54b792fb8839a735585565"; + snapshotHashDarwin64 = "52570f6fd915b0210a9be98cfc933148e16a75f8"; + snapshotDate = "2016-03-18"; + snapshotRev = "235d774"; patches = [ ./patches/remove-uneeded-git.patch ] ++ stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch; } - From a9326f6f345c79fa29f428410ed256763c4fd263 Mon Sep 17 00:00:00 2001 From: Jakob Gillich Date: Sun, 20 Mar 2016 16:46:23 -0400 Subject: [PATCH 417/678] cargoMaster: 2016-02-25 -> 2016-03-22 --- pkgs/development/tools/build-managers/cargo/head.nix | 8 ++++---- .../tools/build-managers/cargo/snapshot.nix | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/pkgs/development/tools/build-managers/cargo/head.nix b/pkgs/development/tools/build-managers/cargo/head.nix index 298177296a6..570e96eedeb 100644 --- a/pkgs/development/tools/build-managers/cargo/head.nix +++ b/pkgs/development/tools/build-managers/cargo/head.nix @@ -5,7 +5,7 @@ with rustPlatform; with ((import ./common.nix) { inherit stdenv rustc; - version = "2016-02-25"; + version = "2016-03-20"; }); buildRustPackage rec { @@ -14,11 +14,11 @@ buildRustPackage rec { # Needs to use fetchgit instead of fetchFromGitHub to fetch submodules src = fetchgit { url = "git://github.com/rust-lang/cargo"; - rev = "e7212896dc1b182493a0252a2a126db8be067153"; - sha256 = "1qbic7gp7cpihi40kfv3kagja8zsngica8sq9jcm9czb6ba44dsa"; + rev = "132b82d75f607dcb1116b8d44fe60f202f1eb110"; + sha256 = "0kx2m0p45zr0ils2ax19sr32cibjppgwj8xvsgrfvzvlnc540xpl"; }; - depsSha256 = "1xfpj1233p4314j6jmip0jjl5m3kj2wbac1ll3yvh7383zb83i1s"; + depsSha256 = "19d2fl5p92108a0yjpix0qxdc23jy122xc87k69hk0pwwxa92l3a"; buildInputs = [ file curl pkgconfig python openssl cmake zlib makeWrapper ]; diff --git a/pkgs/development/tools/build-managers/cargo/snapshot.nix b/pkgs/development/tools/build-managers/cargo/snapshot.nix index 6dbe1e727d3..4a779cc456e 100644 --- a/pkgs/development/tools/build-managers/cargo/snapshot.nix +++ b/pkgs/development/tools/build-managers/cargo/snapshot.nix @@ -2,7 +2,7 @@ /* Cargo binary snapshot */ -let snapshotDate = "2015-06-17"; +let snapshotDate = "2016-01-31"; in with ((import ./common.nix) { @@ -11,13 +11,13 @@ with ((import ./common.nix) { }); let snapshotHash = if stdenv.system == "i686-linux" - then "g2h9l35123r72hqdwayd9h79kspfb4y9" + then "7e2f9c82e1af5aa43ef3ee2692b985a5f2398f0a" else if stdenv.system == "x86_64-linux" - then "fnx2rf1j8zvrplcc7xzf89czn0hf3397" + then "4c03a3fd2474133c7ad6d8bb5f6af9915ca5292a" else if stdenv.system == "i686-darwin" - then "3viz3fi2jx18qjwrc90nfhm9cik59my6" + then "4d84d31449a5926f9e7ceb344540d6e5ea530b88" else if stdenv.system == "x86_64-darwin" - then "h2bf3db4vwz5cjjkn98lxayivdc6dflp" + then "f8baef5b0b3e6f9825be1f1709594695ac0f0abc" else throw "no snapshot for platform ${stdenv.system}"; snapshotName = "cargo-nightly-${platform}.tar.gz"; in From f215a71c6ce1c80500f298f5a17748068ec51a32 Mon Sep 17 00:00:00 2001 From: Jakob Gillich Date: Sun, 20 Mar 2016 16:46:47 -0400 Subject: [PATCH 418/678] rustPackages: 2016-03-10 -> 2016-03-22 --- pkgs/top-level/rust-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/rust-packages.nix b/pkgs/top-level/rust-packages.nix index 3acd9c4843d..2b3b98dba63 100644 --- a/pkgs/top-level/rust-packages.nix +++ b/pkgs/top-level/rust-packages.nix @@ -7,15 +7,15 @@ { runCommand, fetchFromGitHub, git }: let - version = "2016-03-10"; - rev = "5e78a14c1b82522e019586687f7dbfd36ce67fa5"; + version = "2016-03-22"; + rev = "f28cdedb698cf76f513fb4514b5ed2892ec89b2f"; src = fetchFromGitHub { inherit rev; owner = "rust-lang"; repo = "crates.io-index"; - sha256 = "0hzhfhlv8qbqb5nm9id36dlzvhalhlrh2k82ks67ap4mdcs3c650"; + sha256 = "05j43pgdlf554y9r781xdc5la55anwiq6k7vml9icak699ywfxqq"; }; in From 56bd6be2cf76bfed7146e48fe0f5d0361064b809 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Tue, 22 Mar 2016 11:30:37 +0100 Subject: [PATCH 419/678] Fixing vxl build with gcc 5. --- pkgs/development/libraries/vxl/default.nix | 3 ++- pkgs/development/libraries/vxl/gcc5.patch | 15 +++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/libraries/vxl/gcc5.patch diff --git a/pkgs/development/libraries/vxl/default.nix b/pkgs/development/libraries/vxl/default.nix index b03b9a876a0..725a0bdfcea 100644 --- a/pkgs/development/libraries/vxl/default.nix +++ b/pkgs/development/libraries/vxl/default.nix @@ -20,12 +20,13 @@ stdenv.mkDerivation { enableParallelBuilding = true; + patches = [ ./gcc5.patch ]; + meta = { description = "C++ Libraries for Computer Vision Research and Implementation"; homepage = http://vxl.sourceforge.net/; license = "VXL License"; maintainers = with stdenv.lib.maintainers; [viric]; platforms = with stdenv.lib.platforms; linux; - broken = true; # requires fix for gcc 5: https://lists.fedoraproject.org/pipermail/scm-commits/Week-of-Mon-20150216/1511118.html }; } diff --git a/pkgs/development/libraries/vxl/gcc5.patch b/pkgs/development/libraries/vxl/gcc5.patch new file mode 100644 index 00000000000..4660f9e8f48 --- /dev/null +++ b/pkgs/development/libraries/vxl/gcc5.patch @@ -0,0 +1,15 @@ +https://lists.fedoraproject.org/pipermail/scm-commits/Week-of-Mon-20150216/1511118.html + +--- vxl-git4e07960/vcl/vcl_compiler.h~ 2012-11-02 12:08:21.000000000 +0100 ++++ vxl-git4e07960/vcl/vcl_compiler.h 2015-02-15 13:50:46.376329878 +0100 +@@ -119,6 +119,10 @@ + # else + # define VCL_GCC_40 + # endif ++# elif (__GNUC__== 5) ++// pretend GCC 5 to be GCC 4 ++# define VCL_GCC_4 ++# define VCL_GCC_41 + # else + # error "Dunno about this gcc" + # endif From 40b05382397ed448c76e30ab034669da12d970f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Mon, 21 Mar 2016 21:54:09 +0100 Subject: [PATCH 420/678] Update linux raspberry-pi to 4.1.y. I could boot it in pi2; I don't know if I needed new firmware files in /boot. --- pkgs/os-specific/linux/kernel/linux-rpi.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-rpi.nix b/pkgs/os-specific/linux/kernel/linux-rpi.nix index 320d4994cf2..777662718af 100644 --- a/pkgs/os-specific/linux/kernel/linux-rpi.nix +++ b/pkgs/os-specific/linux/kernel/linux-rpi.nix @@ -2,17 +2,17 @@ let - rev = "fe4a83540ec73dfc298f16f027277355470ea9a0"; + rev = "f4b20d47d7df7927967fcd524324b145cfc9e2f9"; in import ./generic.nix (args // rec { - version = "3.18.y-${rev}"; + version = "4.1.y-${rev}"; - modDirVersion = "3.18.7"; + modDirVersion = "4.1.20-v7"; src = fetchurl { url = "https://api.github.com/repos/raspberrypi/linux/tarball/${rev}"; name = "linux-raspberrypi-${version}.tar.gz"; - sha256 = "05gq40f038hxjqd3sdb1914g2bzw533dyxy59sgdpybs8801x2vb"; + sha256 = "0x17hlbi7lpmmnp24dnkync5gzj57j84j0nlrcv1lv9fahjkqsm2"; }; features.iwlwifi = true; From bd58b895e05d889960d915751611468ad77220b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Tue, 22 Mar 2016 15:00:36 +0100 Subject: [PATCH 421/678] Making ffmpeg friendly for arm. --- pkgs/development/libraries/ffmpeg/generic.nix | 29 +++++++++++-------- 1 file changed, 17 insertions(+), 12 deletions(-) diff --git a/pkgs/development/libraries/ffmpeg/generic.nix b/pkgs/development/libraries/ffmpeg/generic.nix index 1113db5c136..d8f785fb7e5 100644 --- a/pkgs/development/libraries/ffmpeg/generic.nix +++ b/pkgs/development/libraries/ffmpeg/generic.nix @@ -1,11 +1,13 @@ { stdenv, fetchurl, pkgconfig, perl, texinfo, yasm , alsaLib, bzip2, fontconfig, freetype, gnutls, libiconv, lame, libass, libogg -, libtheora, libva, libvdpau, libvorbis, libvpx, lzma, libpulseaudio, SDL, soxr +, libtheora, libva, libvorbis, libvpx, lzma, libpulseaudio, soxr , x264, xvidcore, zlib , openglSupport ? false, mesa ? null # Build options , runtimeCpuDetectBuild ? true # Detect CPU capabilities at runtime , multithreadBuild ? true # Multithreading via pthreads/win32 threads +, sdlSupport ? !stdenv.isArm, SDL ? null +, vdpauSupport ? !stdenv.isArm, libvdpau ? null # Developer options , debugDeveloper ? false , optimizationsDeveloper ? true @@ -39,7 +41,7 @@ */ let - inherit (stdenv) icCygwin isDarwin isFreeBSD isLinux; + inherit (stdenv) icCygwin isDarwin isFreeBSD isLinux isArm; inherit (stdenv.lib) optional optionals enableFeature; cmpVer = builtins.compareVersions; @@ -51,8 +53,8 @@ let # Version specific fix verFix = withoutFix: fixVer: withFix: if reqMatch fixVer then withFix else withoutFix; - # Disable dependency that needs fixes before it will work on Darwin - disDarwinFix = origArg: minVer: fixArg: if (isDarwin && reqMin minVer) then fixArg else origArg; + # Disable dependency that needs fixes before it will work on Darwin or Arm + disDarwinOrArmFix = origArg: minVer: fixArg: if ((isDarwin || isArm) && reqMin minVer) then fixArg else origArg; in assert openglSupport -> mesa != null; @@ -117,11 +119,11 @@ stdenv.mkDerivation rec { (ifMinVer "0.6" (enableFeature (isLinux || isFreeBSD) "vaapi")) "--enable-vdpau" "--enable-libvorbis" - (disDarwinFix (ifMinVer "0.6" "--enable-libvpx") "0.6" "--disable-libvpx") + (disDarwinOrArmFix (ifMinVer "0.6" "--enable-libvpx") "0.6" "--disable-libvpx") (ifMinVer "2.4" "--enable-lzma") (ifMinVer "2.2" (enableFeature openglSupport "opengl")) - (disDarwinFix (ifMinVer "0.9" "--enable-libpulse") "0.9" "--disable-libpulse") - (ifMinVer "2.5" "--enable-sdl") # Only configurable since 2.5, auto detected before then + (disDarwinOrArmFix (ifMinVer "0.9" "--enable-libpulse") "0.9" "--disable-libpulse") + (ifMinVer "2.5" (if sdlSupport then "--enable-sdl" else "")) # Only configurable since 2.5, auto detected before then (ifMinVer "1.2" "--enable-libsoxr") "--enable-libx264" "--enable-libxvid" @@ -141,10 +143,13 @@ stdenv.mkDerivation rec { bzip2 fontconfig freetype gnutls libiconv lame libass libogg libtheora libvdpau libvorbis lzma SDL soxr x264 xvidcore zlib ] ++ optional openglSupport mesa - ++ optionals (!isDarwin) [ libvpx libpulseaudio ] # Need to be fixed on Darwin - ++ optional (isLinux || isFreeBSD) libva + ++ optionals (!isDarwin && !isArm) [ libvpx libpulseaudio ] # Need to be fixed on Darwin and ARM + ++ optional ((isLinux || isFreeBSD) && !isArm) libva ++ optional isLinux alsaLib - ++ optional isDarwin Cocoa; + ++ optional isDarwin Cocoa + ++ optional vdpauSupport libvdpau + ++ optional sdlSupport SDL; + enableParallelBuilding = true; @@ -178,8 +183,8 @@ stdenv.mkDerivation rec { }; passthru = { - vaapiSupport = if reqMin "0.6" && (isLinux || isFreeBSD) then true else false; - vdpauSupport = true; + vaapiSupport = if reqMin "0.6" && ((isLinux || isFreeBSD) && !isArm) then true else false; + inherit vdpauSupport; }; meta = with stdenv.lib; { From aa4d43810731600cca3b605f1cd8c4d0b52d2c19 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Tue, 22 Mar 2016 00:30:29 +0100 Subject: [PATCH 422/678] afterstep: pin gcc to version 4.9 See https://hydra.nixos.org/build/33238876/nixlog/1/raw --- 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 adb1de837e0..325dd5c00c6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11377,6 +11377,7 @@ let afterstep = callPackage ../applications/window-managers/afterstep { fltk = fltk13; gtk = gtk2; + stdenv = overrideCC stdenv gcc49; }; alchemy = callPackage ../applications/graphics/alchemy { }; From 92261129ea4664413324290b32d7a188b38baf73 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Tue, 22 Mar 2016 01:36:36 +0100 Subject: [PATCH 423/678] archimedes: pin gcc to version 4.9 https://hydra.nixos.org/build/33241446/nixlog/1/raw --- 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 325dd5c00c6..34776a2b535 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15263,7 +15263,9 @@ let motif = lesstif; }; - archimedes = callPackage ../applications/science/electronics/archimedes { }; + archimedes = callPackage ../applications/science/electronics/archimedes { + stdenv = overrideCC stdenv gcc49; + }; emboss = callPackage ../applications/science/biology/emboss { }; From 2bb151f91b94bae61ec59a52faf66018a7287a26 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Mon, 21 Mar 2016 21:46:14 +0100 Subject: [PATCH 424/678] atftp: fix build by using gcc49 See #13559 --- pkgs/tools/networking/atftp/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/networking/atftp/default.nix b/pkgs/tools/networking/atftp/default.nix index eda7f716876..5fff72a3b07 100644 --- a/pkgs/tools/networking/atftp/default.nix +++ b/pkgs/tools/networking/atftp/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchurl, readline, tcp_wrappers, pcre, makeWrapper }: +{ lib, stdenv, fetchurl, readline, tcp_wrappers, pcre, makeWrapper, gcc }: assert stdenv.isLinux; assert stdenv.cc.isGNU; let @@ -15,7 +15,7 @@ stdenv.mkDerivation { url = "mirror://debian/pool/main/a/atftp/atftp_${version}.dfsg.orig.tar.gz"; sha256 = "0nd5dl14d6z5abgcbxcn41rfn3syza6s57bbgh4aq3r9cxdmz08q"; }; - buildInputs = [ readline tcp_wrappers pcre makeWrapper ]; + buildInputs = [ readline tcp_wrappers pcre makeWrapper gcc ]; patches = [ debianPatch ]; postInstall = '' wrapProgram $out/sbin/atftpd --prefix LD_LIBRARY_PATH : ${stdenv.cc.cc}/lib${if stdenv.system == "x86_64-linux" then "64" else ""} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 34776a2b535..c41bce9cc18 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -660,7 +660,9 @@ let at = callPackage ../tools/system/at { }; - atftp = callPackage ../tools/networking/atftp {}; + atftp = callPackage ../tools/networking/atftp { + gcc = gcc49; + }; autogen = callPackage ../development/tools/misc/autogen { }; From 891fd356d77522dcf1dfbd3e0e45f9b26ba1dcc3 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Mon, 21 Mar 2016 21:40:40 +0100 Subject: [PATCH 425/678] avarice: fix build by using gcc49 See #13559 --- pkgs/development/tools/misc/avarice/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/misc/avarice/default.nix b/pkgs/development/tools/misc/avarice/default.nix index e2c4c89e998..eb81b7136f3 100644 --- a/pkgs/development/tools/misc/avarice/default.nix +++ b/pkgs/development/tools/misc/avarice/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, perl, libusb }: +{ stdenv, fetchurl, pkgconfig, gcc, perl, libusb }: stdenv.mkDerivation rec { @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { sha256 = "0jhh1h1k5b41v2ycq8kn43nkrkh0b9l7xjmw38rak871g3z3hix1"; }; - buildInputs = [ pkgconfig perl libusb ]; + buildInputs = [ pkgconfig gcc perl libusb ]; meta = { license = stdenv.lib.licenses.gpl2; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c41bce9cc18..f7cdd5dde47 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5717,7 +5717,9 @@ let avrdude = callPackage ../development/tools/misc/avrdude { }; - avarice = callPackage ../development/tools/misc/avarice { }; + avarice = callPackage ../development/tools/misc/avarice { + gcc = gcc49; + }; babeltrace = callPackage ../development/tools/misc/babeltrace { }; From 416f10528a64515f20715001bdfdcdf2c1b9b7fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Tue, 22 Mar 2016 13:31:41 -0300 Subject: [PATCH 426/678] dconf-editor: refactor wrapping variables in binaries --- .../gnome-3/3.18/core/dconf-editor/default.nix | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.18/core/dconf-editor/default.nix b/pkgs/desktops/gnome-3/3.18/core/dconf-editor/default.nix index 5b2b055fe66..bf39965bf77 100644 --- a/pkgs/desktops/gnome-3/3.18/core/dconf-editor/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/dconf-editor/default.nix @@ -1,16 +1,13 @@ { stdenv, fetchurl, vala, libxslt, pkgconfig, glib, dbus_glib, gnome3 -, libxml2, intltool, docbook_xsl_ns, docbook_xsl, makeWrapper }: +, libxml2, intltool, docbook_xsl_ns, docbook_xsl, wrapGAppsHook }: stdenv.mkDerivation rec { inherit (import ./src.nix fetchurl) name src; - buildInputs = [ vala libxslt pkgconfig glib dbus_glib gnome3.gtk libxml2 gnome3.defaultIconTheme - intltool docbook_xsl docbook_xsl_ns makeWrapper gnome3.dconf ]; + nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; - preFixup = '' - wrapProgram "$out/bin/dconf-editor" \ - --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" - ''; + buildInputs = [ vala libxslt glib dbus_glib gnome3.gtk libxml2 gnome3.defaultIconTheme + intltool docbook_xsl docbook_xsl_ns gnome3.dconf ]; meta = with stdenv.lib; { platforms = platforms.linux; From 02b20eecc2ad99ee5e3f23d2e67be40592c70f45 Mon Sep 17 00:00:00 2001 From: Jakob Gillich Date: Tue, 22 Mar 2016 17:33:06 +0100 Subject: [PATCH 427/678] rustfmt: 2016-02-15 -> 2016-03-22 --- pkgs/development/tools/rust/rustfmt/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/development/tools/rust/rustfmt/default.nix b/pkgs/development/tools/rust/rustfmt/default.nix index 28c88d6c15a..55e721306ce 100644 --- a/pkgs/development/tools/rust/rustfmt/default.nix +++ b/pkgs/development/tools/rust/rustfmt/default.nix @@ -3,15 +3,17 @@ with rustPlatform; buildRustPackage rec { - name = "rustfmt-git-2016-02-15"; + name = "rustfmt-${version}"; + version = "2016-03-22"; + src = fetchFromGitHub { owner = "rust-lang-nursery"; repo = "rustfmt"; - rev = "65bc5c242de86f0651b34fd913ca338a880696e8"; - sha256 = "02rdim0y5zg1r2zkfy6kj53idlbdybf3ckardbjsvdna5idc1hpz"; + rev = "ca757183fedf8e89286372b91ca074c11d99c4f4"; + sha256 = "0ngg5m002hwwmsqy9wr50dj3l3zgwk39701wzszm3nrhz6x13dmj"; }; - depsSha256 = "1297vy5sgiq4xqdm27pa8f99qiwrl15hb2r1dydzgk7n4iqyir6c"; + depsSha256 = "0mg4z197iiwjlgqs5izacld25cr11qi3bcrqq204f0jzrnj3y8ag"; meta = with stdenv.lib; { description = "A tool for formatting Rust code according to style guidelines"; From 768b9d852d32c8cf8ce439bda91276176cea6a7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Tue, 22 Mar 2016 13:35:28 -0300 Subject: [PATCH 428/678] eog: refactor wrapping variables in binaries --- pkgs/desktops/gnome-3/3.18/core/eog/default.nix | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.18/core/eog/default.nix b/pkgs/desktops/gnome-3/3.18/core/eog/default.nix index fff901142dc..5f36f25e095 100644 --- a/pkgs/desktops/gnome-3/3.18/core/eog/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/eog/default.nix @@ -1,20 +1,15 @@ { fetchurl, stdenv, intltool, pkgconfig, itstool, libxml2, libjpeg, gnome3 -, shared_mime_info, makeWrapper, librsvg, libexif }: +, shared_mime_info, wrapGAppsHook, librsvg, libexif }: stdenv.mkDerivation rec { inherit (import ./src.nix fetchurl) name src; + nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; + buildInputs = with gnome3; - [ intltool pkgconfig itstool libxml2 libjpeg gtk glib libpeas makeWrapper librsvg - gsettings_desktop_schemas shared_mime_info adwaita-icon-theme gnome_desktop libexif ]; - - preFixup = '' - wrapProgram "$out/bin/eog" \ - --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \ - --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ - --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:${shared_mime_info}/share:${gnome3.adwaita-icon-theme}/share:${gnome3.gtk}/share:$out/share:$GSETTINGS_SCHEMAS_PATH" - - ''; + [ intltool itstool libxml2 libjpeg gtk glib libpeas librsvg + gsettings_desktop_schemas shared_mime_info adwaita-icon-theme + gnome_desktop libexif dconf ]; meta = with stdenv.lib; { homepage = https://wiki.gnome.org/Apps/EyeOfGnome; From e4d8d4d234597cd5bc92776b7119fef8a1c388e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Tue, 22 Mar 2016 13:37:37 -0300 Subject: [PATCH 429/678] evince: refactor wrapping variables in binaries --- .../gnome-3/3.18/core/evince/default.nix | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.18/core/evince/default.nix b/pkgs/desktops/gnome-3/3.18/core/evince/default.nix index 3220e906064..3229d10104d 100644 --- a/pkgs/desktops/gnome-3/3.18/core/evince/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/evince/default.nix @@ -1,6 +1,6 @@ { fetchurl, stdenv, pkgconfig, intltool, perl, perlXMLParser, libxml2 , glib, gtk3, pango, atk, gdk_pixbuf, shared_mime_info, itstool, gnome3 -, poppler, ghostscriptX, djvulibre, libspectre, libsecret , makeWrapper +, poppler, ghostscriptX, djvulibre, libspectre, libsecret , wrapGAppsHook , librsvg, gobjectIntrospection , recentListSize ? null # 5 is not enough, allow passing a different number , supportXPS ? false # Open XML Paper Specification via libgxps @@ -9,13 +9,15 @@ stdenv.mkDerivation rec { inherit (import ./src.nix fetchurl) name src; + nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; + buildInputs = [ - pkgconfig intltool perl perlXMLParser libxml2 + intltool perl perlXMLParser libxml2 glib gtk3 pango atk gdk_pixbuf gobjectIntrospection itstool gnome3.adwaita-icon-theme gnome3.libgnome_keyring gnome3.gsettings_desktop_schemas poppler ghostscriptX djvulibre libspectre - makeWrapper libsecret librsvg gnome3.adwaita-icon-theme + libsecret librsvg gnome3.adwaita-icon-theme gnome3.dconf ] ++ stdenv.lib.optional supportXPS gnome3.libgxps; configureFlags = [ @@ -37,15 +39,6 @@ stdenv.mkDerivation rec { sed -i 's/\(if (++n_items == \)5\(.*\)/\1${builtins.toString recentListSize}\2/' shell/ev-window.c ''; - preFixup = '' - # Tell Glib/GIO about the MIME info directory, which is used - # by `g_file_info_get_content_type ()'. - wrapProgram "$out/bin/evince" \ - --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ - --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:${gtk3}/share:${shared_mime_info}/share:$out/share:$GSETTINGS_SCHEMAS_PATH" - - ''; - doCheck = false; # would need pythonPackages.dogTail, which is missing meta = with stdenv.lib; { From 877a08b7d5b7a50779539d6d41b81c7a80162a5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Tue, 22 Mar 2016 13:39:27 -0300 Subject: [PATCH 430/678] gnome-calculator: refactor wrapping variables in binaries --- .../gnome-3/3.18/core/gnome-calculator/default.nix | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.18/core/gnome-calculator/default.nix b/pkgs/desktops/gnome-3/3.18/core/gnome-calculator/default.nix index 7ca66863d86..fef820010af 100644 --- a/pkgs/desktops/gnome-3/3.18/core/gnome-calculator/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/gnome-calculator/default.nix @@ -1,5 +1,5 @@ { stdenv, intltool, fetchurl, pkgconfig, libxml2 -, bash, gtk3, glib, makeWrapper +, bash, gtk3, glib, wrapGAppsHook , itstool, gnome3, librsvg, gdk_pixbuf, mpfr, gmp }: stdenv.mkDerivation rec { @@ -9,16 +9,12 @@ stdenv.mkDerivation rec { propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; - buildInputs = [ bash pkgconfig gtk3 glib intltool itstool + nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; + + buildInputs = [ bash gtk3 glib intltool itstool libxml2 gnome3.gtksourceview mpfr gmp gdk_pixbuf gnome3.defaultIconTheme librsvg - gnome3.gsettings_desktop_schemas makeWrapper ]; - - preFixup = '' - wrapProgram "$out/bin/gnome-calculator" \ - --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ - --prefix XDG_DATA_DIRS : "${gnome3.gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" - ''; + gnome3.gsettings_desktop_schemas gnome3.dconf ]; meta = with stdenv.lib; { homepage = https://wiki.gnome.org/action/show/Apps/Calculator; From 4fc7fa9d1d852065ff70d291e9748c410583b367 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Tue, 22 Mar 2016 13:41:14 -0300 Subject: [PATCH 431/678] nautilus: refactor wrapping variables in binaries --- .../gnome-3/3.18/core/nautilus/default.nix | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.18/core/nautilus/default.nix b/pkgs/desktops/gnome-3/3.18/core/nautilus/default.nix index ff9f847d3cd..e8fc41df9c0 100644 --- a/pkgs/desktops/gnome-3/3.18/core/nautilus/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/nautilus/default.nix @@ -1,21 +1,15 @@ { stdenv, fetchurl, pkgconfig, libxml2, dbus_glib, shared_mime_info, libexif , gtk, gnome3, libunique, intltool, gobjectIntrospection -, libnotify, makeWrapper, exempi, librsvg, tracker }: +, libnotify, wrapGAppsHook, exempi, librsvg, tracker }: stdenv.mkDerivation rec { inherit (import ./src.nix fetchurl) name src; - buildInputs = [ pkgconfig libxml2 dbus_glib shared_mime_info libexif gtk libunique intltool exempi librsvg - gnome3.gnome_desktop gnome3.adwaita-icon-theme - gnome3.gsettings_desktop_schemas libnotify makeWrapper tracker ]; + nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; - preFixup = '' - wrapProgram "$out/bin/nautilus" \ - --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \ - --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ - --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:$out/share" \ - --suffix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" - ''; + buildInputs = [ libxml2 dbus_glib shared_mime_info libexif gtk libunique intltool exempi librsvg + gnome3.gnome_desktop gnome3.adwaita-icon-theme + gnome3.gsettings_desktop_schemas gnome3.dconf libnotify tracker ]; patches = [ ./extension_dir.patch ]; From 5fe5a777e4583fb39d71787e2f3c050ec4835fb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Tue, 22 Mar 2016 13:42:50 -0300 Subject: [PATCH 432/678] file-roller: refactor wrapping variables in binaries --- .../gnome-3/3.18/apps/file-roller/default.nix | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.18/apps/file-roller/default.nix b/pkgs/desktops/gnome-3/3.18/apps/file-roller/default.nix index 4e35676f3cb..df90c7b2977 100644 --- a/pkgs/desktops/gnome-3/3.18/apps/file-roller/default.nix +++ b/pkgs/desktops/gnome-3/3.18/apps/file-roller/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, glib, pkgconfig, gnome3, intltool, itstool, libxml2, libarchive -, attr, bzip2, acl, makeWrapper, librsvg, gdk_pixbuf }: +, attr, bzip2, acl, wrapGAppsHook, librsvg, gdk_pixbuf }: stdenv.mkDerivation rec { inherit (import ./src.nix fetchurl) name src; @@ -7,14 +7,11 @@ stdenv.mkDerivation rec { # TODO: support nautilus # it tries to create {nautilus}/lib/nautilus/extensions-3.0/libnautilus-fileroller.so - buildInputs = [ glib pkgconfig gnome3.gtk intltool itstool libxml2 libarchive - gnome3.defaultIconTheme attr bzip2 acl gdk_pixbuf librsvg - makeWrapper ]; + nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; - preFixup = '' - wrapProgram "$out/bin/file-roller" \ - --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH:$out/share" - ''; + buildInputs = [ glib gnome3.gtk intltool itstool libxml2 libarchive + gnome3.defaultIconTheme attr bzip2 acl gdk_pixbuf librsvg + gnome3.dconf ]; meta = with stdenv.lib; { homepage = https://wiki.gnome.org/Apps/FileRoller; From c326507dbec53e0ac33795edf4fd95c0f64aedca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Tue, 22 Mar 2016 13:49:49 -0300 Subject: [PATCH 433/678] gedit: refactor wrapping variables in binaries --- pkgs/desktops/gnome-3/3.18/apps/gedit/default.nix | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.18/apps/gedit/default.nix b/pkgs/desktops/gnome-3/3.18/apps/gedit/default.nix index 6cff4bdee48..6c852ddae5c 100644 --- a/pkgs/desktops/gnome-3/3.18/apps/gedit/default.nix +++ b/pkgs/desktops/gnome-3/3.18/apps/gedit/default.nix @@ -1,6 +1,6 @@ { stdenv, intltool, fetchurl, enchant, isocodes , pkgconfig, gtk3, glib -, bash, makeWrapper, itstool, libsoup, libxml2 +, bash, wrapGAppsHook, itstool, libsoup, libxml2 , gnome3, librsvg, gdk_pixbuf, file }: stdenv.mkDerivation rec { @@ -8,19 +8,17 @@ stdenv.mkDerivation rec { propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; - buildInputs = [ pkgconfig gtk3 glib intltool itstool enchant isocodes + nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; + + buildInputs = [ gtk3 glib intltool itstool enchant isocodes gdk_pixbuf gnome3.defaultIconTheme librsvg libsoup gnome3.libpeas gnome3.gtksourceview libxml2 - gnome3.gsettings_desktop_schemas makeWrapper file ]; + gnome3.gsettings_desktop_schemas gnome3.dconf file ]; enableParallelBuilding = true; preFixup = '' - wrapProgram "$out/bin/gedit" \ - --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ - --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \ - --prefix LD_LIBRARY_PATH : "${gnome3.libpeas}/lib:${gnome3.gtksourceview}/lib" \ - --prefix XDG_DATA_DIRS : "${gnome3.gnome_themes_standard}/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" + gappsWrapperArgs+=(--prefix LD_LIBRARY_PATH : "${gnome3.libpeas}/lib:${gnome3.gtksourceview}/lib") ''; meta = with stdenv.lib; { From 5b642fb8dbdade03635a59589339a43bab50cde6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Tue, 22 Mar 2016 13:52:39 -0300 Subject: [PATCH 434/678] epiphany: refactor wrapping variables in binaries --- .../gnome-3/3.18/core/epiphany/default.nix | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.18/core/epiphany/default.nix b/pkgs/desktops/gnome-3/3.18/core/epiphany/default.nix index ff21da4a28c..322dd3bedac 100644 --- a/pkgs/desktops/gnome-3/3.18/core/epiphany/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/epiphany/default.nix @@ -1,5 +1,5 @@ { stdenv, intltool, fetchurl, pkgconfig, gtk3, glib, nspr, icu -, bash, makeWrapper, gnome3, libwnck3, libxml2, libxslt, libtool +, bash, wrapGAppsHook, gnome3, libwnck3, libxml2, libxslt, libtool , webkitgtk, libsoup, glib_networking, libsecret, gnome_desktop, libnotify, p11_kit , sqlite, gcr, avahi, nss, isocodes, itstool, file, which , gdk_pixbuf, librsvg, gnome_common }: @@ -12,27 +12,18 @@ stdenv.mkDerivation rec { propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; - nativeBuildInputs = [ pkgconfig file ]; + nativeBuildInputs = [ pkgconfig file wrapGAppsHook ]; buildInputs = [ gtk3 glib intltool libwnck3 libxml2 libxslt pkgconfig file webkitgtk libsoup libsecret gnome_desktop libnotify libtool sqlite isocodes nss itstool p11_kit nspr icu gnome3.yelp_tools gdk_pixbuf gnome3.defaultIconTheme librsvg which gnome_common - gcr avahi gnome3.gsettings_desktop_schemas makeWrapper ]; + gcr avahi gnome3.gsettings_desktop_schemas gnome3.dconf ]; NIX_CFLAGS_COMPILE = "-I${nspr}/include/nspr -I${nss}/include/nss -I${glib}/include/gio-unix-2.0"; enableParallelBuilding = true; - preFixup = '' - for f in $out/bin/* $out/libexec/*; do - wrapProgram "$f" \ - --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ - --prefix GIO_EXTRA_MODULES : "${glib_networking}/lib/gio/modules" \ - --prefix XDG_DATA_DIRS : "${gnome3.gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" - done - ''; - meta = with stdenv.lib; { homepage = https://wiki.gnome.org/Apps/Epiphany; description = "WebKit based web browser for GNOME"; From beabbc228c09f3cadeac0902b3daa6132768637b Mon Sep 17 00:00:00 2001 From: Corey Farwell Date: Tue, 22 Mar 2016 15:10:08 -0400 Subject: [PATCH 435/678] Fetch setuptools from PyPi via HTTPS. --- pkgs/development/python-modules/setuptools/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/setuptools/default.nix b/pkgs/development/python-modules/setuptools/default.nix index 74624063ba3..a924a1f3b85 100644 --- a/pkgs/development/python-modules/setuptools/default.nix +++ b/pkgs/development/python-modules/setuptools/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { version = "19.4"; # 18.4 and up breaks python34Packages.characteristic and many others src = fetchurl { - url = "http://pypi.python.org/packages/source/s/setuptools/${shortName}.tar.gz"; + url = "https://pypi.python.org/packages/source/s/setuptools/${shortName}.tar.gz"; sha256 = "214bf29933f47cf25e6faa569f710731728a07a19cae91ea64f826051f68a8cf"; }; From 50ee78afa8fcfc564dad1ef4a3608edca3082183 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Tue, 22 Mar 2016 20:37:03 +0100 Subject: [PATCH 436/678] expose bootstrapped-pip in pythonPackages --- 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 a8e30995336..da81848ecc8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -15,8 +15,10 @@ let callPackage = pkgs.newScope self; + bootstrapped-pip = callPackage ../development/python-modules/bootstrapped-pip { }; + buildPythonPackage = makeOverridable (callPackage ../development/python-modules/generic { - bootstrapped-pip = callPackage ../development/python-modules/bootstrapped-pip { }; + inherit bootstrapped-pip; }); buildPythonApplication = args: buildPythonPackage ({namePrefix="";} // args ); @@ -40,7 +42,7 @@ let in modules // { - inherit python isPy26 isPy27 isPy33 isPy34 isPy35 isPyPy isPy3k pythonName buildPythonPackage buildPythonApplication; + inherit python bootstrapped-pip isPy26 isPy27 isPy33 isPy34 isPy35 isPyPy isPy3k pythonName buildPythonPackage buildPythonApplication; # helpers From 74ef06dab6fc312c000fb05309b901ac79b61a56 Mon Sep 17 00:00:00 2001 From: Jakob Gillich Date: Tue, 22 Mar 2016 17:33:32 +0100 Subject: [PATCH 437/678] exa: 2016-02-15 -> 2016-03-22 --- pkgs/tools/misc/exa/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/misc/exa/default.nix b/pkgs/tools/misc/exa/default.nix index 8518a7331b9..af6f70e2f5c 100644 --- a/pkgs/tools/misc/exa/default.nix +++ b/pkgs/tools/misc/exa/default.nix @@ -4,15 +4,15 @@ with rustPlatform; buildRustPackage rec { name = "exa-${version}"; - version = "2016-02-15"; + version = "2016-03-22"; - depsSha256 = "1925nhpfph82wn755zf2nmad24f1hzbxq60gpva9sic6rnap4c1x"; + depsSha256 = "18anwh235kzziq6z7md8f3rl2xl4l9d4ivsqw9grkb7yivd5j0jk"; src = fetchFromGitHub { owner = "ogham"; repo = "exa"; - rev = "252eba484476369bb966fb1af7f739732b968fc0"; - sha256 = "1smyy32z44zgmhyhlbjaxcgfnlbcwz7am9225yppqfdsiqqgdybf"; + rev = "8805ce9e3bcd4b56f8811a686dd56c47202cdbab"; + sha256 = "0dkvk0rsf068as6zcd01p7959rdjzm26mlkpid6z0j168gp4kh4q"; }; nativeBuildInputs = [ cmake ]; From 5759b447dc45d1f003da66549974432490dea0db Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 22 Mar 2016 21:33:31 +0100 Subject: [PATCH 438/678] opensubdiv: 3.0.3 -> 3.0.4 --- pkgs/development/libraries/opensubdiv/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/opensubdiv/default.nix b/pkgs/development/libraries/opensubdiv/default.nix index 91ebc7cc661..c9bf9a72503 100644 --- a/pkgs/development/libraries/opensubdiv/default.nix +++ b/pkgs/development/libraries/opensubdiv/default.nix @@ -3,13 +3,13 @@ }: stdenv.mkDerivation { - name = "opensubdiv-3.0.3"; + name = "opensubdiv-3.0.4"; src = fetchFromGitHub { owner = "PixarAnimationStudios"; repo = "OpenSubdiv"; - rev = "v3_0_3"; - sha256 = "1pd7xsz4lx5l2hdixfgqx9yijchw108wqkvxj78rbblkkawvqhmx"; + rev = "v3_0_4"; + sha256 = "14ylpzk4121gi3fl02dwmqjp5sbaqpkm4gd0lh6jijccdih0xsc0"; }; patches = From 4f47fe2f9c861ad8edb9fa290f876312b49226ac Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 22 Mar 2016 21:33:44 +0100 Subject: [PATCH 439/678] blender: 2.76b -> 2.77 --- pkgs/applications/misc/blender/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 8 +++++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/misc/blender/default.nix b/pkgs/applications/misc/blender/default.nix index 0b9cbe02999..7eb30bf76dc 100644 --- a/pkgs/applications/misc/blender/default.nix +++ b/pkgs/applications/misc/blender/default.nix @@ -10,11 +10,11 @@ with lib; stdenv.mkDerivation rec { - name = "blender-2.76b"; + name = "blender-2.77"; src = fetchurl { url = "http://download.blender.org/source/${name}.tar.gz"; - sha256 = "0pb0mlj4vj0iir528ifqq67nsh3ca1942933d9cwlbpcja2jm1dx"; + sha256 = "0aynm249xgrnm6h5hlp9x40ww0hn391d9ka2mg9mmqrdzhih286n"; }; buildInputs = diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 486583a2a1a..b9f2b9575e6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8410,7 +8410,9 @@ let }; }; - opensubdiv = callPackage ../development/libraries/opensubdiv { }; + opensubdiv = callPackage ../development/libraries/opensubdiv { + cudatoolkit = cudatoolkit75; + }; openwsman = callPackage ../development/libraries/openwsman {}; @@ -11690,8 +11692,8 @@ let bleachbit = callPackage ../applications/misc/bleachbit { }; blender = callPackage ../applications/misc/blender { - cudatoolkit = cudatoolkit7; - python = python34; + cudatoolkit = cudatoolkit75; + python = python35; }; bluefish = callPackage ../applications/editors/bluefish { From ff60350eb9ee1dda77b376f3f485f48fb7c8dfed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Tue, 22 Mar 2016 21:59:01 +0100 Subject: [PATCH 440/678] ensureNewerSourcesHook: fix problems with symlinks Fixes #14043. Now symlinks themselves are touched instead of their targets. --- 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 f7cdd5dde47..7e4beba0af8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -264,7 +264,7 @@ let postUnpackHooks+=(_ensureNewerSources) _ensureNewerSources() { '${findutils}/bin/find' "$sourceRoot" \ - '!' -newermt '${year}-01-01' -exec touch -d '${year}-01-02' '{}' '+' + '!' -newermt '${year}-01-01' -exec touch -h -d '${year}-01-02' '{}' '+' } ''); From 662bca47c1785949f928da4e44663dc248586c50 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Tue, 22 Mar 2016 11:58:26 +0000 Subject: [PATCH 441/678] s3gof3r: init at 0.5.0 --- pkgs/top-level/all-packages.nix | 2 ++ pkgs/top-level/go-packages.nix | 10 ++++++++++ 2 files changed, 12 insertions(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 486583a2a1a..18bcdde3316 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3182,6 +3182,8 @@ let s3cmd = callPackage ../tools/networking/s3cmd { }; + s3gof3r = goPackages.s3gof3r.bin // { outputs = [ "bin" ]; }; + s6Dns = callPackage ../tools/networking/s6-dns { }; s6LinuxUtils = callPackage ../os-specific/linux/s6-linux-utils { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 5ba499d3e39..9fa0f453391 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -3303,6 +3303,16 @@ let sha256 = "0g9fj10xnxcv034c8hpcgbhswv6as0d8l176c5nfgh1lh6klmmzc"; }; + s3gof3r = buildFromGitHub rec { + owner = "rlmcpherson"; + repo = "s3gof3r"; + rev = "v${version}"; + version = "0.5.0"; + sha256 = "10banc8hnhxpsdmlkf9nc5fjkh1349bgpd9k7lggw3yih1rvmh7k"; + disabled = isGo14; + propagatedBuildInputs = [ go-flags ]; + }; + sandblast = buildGoPackage rec { rev = "694d24817b9b7b8bacb6d458b7989b30d7fe3555"; name = "sandblast-${stdenv.lib.strings.substring 0 7 rev}"; From b7f50b493cb1892c9079e1a684050c613c1f2bec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Tue, 22 Mar 2016 21:21:53 +0000 Subject: [PATCH 442/678] flow: 0.18.1 -> 0.22.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit 15761b0520383a816d250b4301982e9d088be14b) Signed-off-by: Domen Kožar --- pkgs/development/tools/analysis/flow/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/analysis/flow/default.nix b/pkgs/development/tools/analysis/flow/default.nix index 938f6e9c2b9..e0802f9850b 100644 --- a/pkgs/development/tools/analysis/flow/default.nix +++ b/pkgs/development/tools/analysis/flow/default.nix @@ -3,13 +3,13 @@ with lib; stdenv.mkDerivation rec { - version = "0.18.1"; + version = "0.22.1"; name = "flow-${version}"; src = fetchFromGitHub { owner = "facebook"; repo = "flow"; rev = "v${version}"; - sha256 = "00pmrk577p6ngqif4rvhwybb4gyw70vsgxcxxwj995dg4hf196s1"; + sha256 = "11d04g8rvjv2q79pmrjjx8lmmm1ix8kih7wc0adln0ap5123ph46"; }; installPhase = '' From 59ba0fb295fab5a7970da57eb293a70d749f33c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Tue, 22 Mar 2016 21:24:23 +0000 Subject: [PATCH 443/678] nix-exec: use stable Nix --- pkgs/top-level/all-packages.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b9f2b9575e6..1ec511dbace 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5451,8 +5451,6 @@ let nix-exec = callPackage ../development/interpreters/nix-exec { git = gitMinimal; - - nix = nixUnstable; }; octave = callPackage ../development/interpreters/octave { From ba78130c21568d94ca4fddb5e9048194fd541945 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Tue, 22 Mar 2016 21:39:38 +0000 Subject: [PATCH 444/678] remove elrangR15 and riak 1.3.0 as they're outdated MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit 4452a68425e4eaf9db95e0fc5ac8474a2b19bc71) Signed-off-by: Domen Kožar --- nixos/tests/riak.nix | 2 +- pkgs/development/interpreters/erlang/R15.nix | 69 -------------------- pkgs/servers/nosql/riak/1.3.1.nix | 65 ------------------ pkgs/top-level/all-packages.nix | 4 +- 4 files changed, 2 insertions(+), 138 deletions(-) delete mode 100644 pkgs/development/interpreters/erlang/R15.nix delete mode 100644 pkgs/servers/nosql/riak/1.3.1.nix diff --git a/nixos/tests/riak.nix b/nixos/tests/riak.nix index f36d12bdb2c..18d028232ac 100644 --- a/nixos/tests/riak.nix +++ b/nixos/tests/riak.nix @@ -7,7 +7,7 @@ import ./make-test.nix { { services.riak.enable = true; - services.riak.package = pkgs.riak2; + services.riak.package = pkgs.riak; }; }; diff --git a/pkgs/development/interpreters/erlang/R15.nix b/pkgs/development/interpreters/erlang/R15.nix deleted file mode 100644 index 137bae6e461..00000000000 --- a/pkgs/development/interpreters/erlang/R15.nix +++ /dev/null @@ -1,69 +0,0 @@ -{ stdenv, fetchurl, perl, gnum4, ncurses, openssl -, makeWrapper, gnused, gawk -, wxSupport ? false, mesa ? null, wxGTK ? null, xorg ? null }: - -assert wxSupport -> mesa != null && wxGTK != null && xorg != null; - -let version = "15B03"; in - -stdenv.mkDerivation { - name = "erlang-" + version; - - src = fetchurl { - url = "http://www.erlang.org/download/otp_src_R15B03-1.tar.gz"; - sha256 = "4bccac86dd76aec050252e44276a0283a0df9218e6470cf042a9b9f9dfc9476c"; - }; - - buildInputs = - [ perl gnum4 ncurses openssl - makeWrapper - ] ++ stdenv.lib.optional wxSupport [ mesa wxGTK xorg.libX11 ]; - - patchPhase = '' sed -i "s@/bin/rm@rm@" lib/odbc/configure erts/configure ''; - - preConfigure = '' - export HOME=$PWD/../ - sed -e s@/bin/pwd@pwd@g -i otp_build - ''; - - configureFlags = "--with-ssl=${openssl}"; - - postInstall = let - manpages = fetchurl { - url = "http://www.erlang.org/download/otp_doc_man_R${version}.tar.gz"; - sha256 = "0sqamzbd7qyz3klgl9vm1qvl0rhsfd1dx485pb0m2185qvw02nha"; - }; - in '' - 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 - postFixup = '' - wrapProgram $out/lib/erlang/bin/erl --prefix PATH ":" "${gnused}/bin/" - wrapProgram $out/lib/erlang/bin/start_erl --prefix PATH ":" "${gnused}/bin/:${gawk}/bin" - ''; - - setupHook = ./setup-hook.sh; - - meta = { - homepage = "http://www.erlang.org/"; - description = "Programming language used for massively scalable soft real-time systems"; - - longDescription = '' - Erlang is a programming language used to build massively scalable - soft real-time systems with requirements on high availability. - Some of its uses are in telecoms, banking, e-commerce, computer - telephony and instant messaging. Erlang's runtime system has - built-in support for concurrency, distribution and fault - tolerance. - ''; - - platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; - }; -} diff --git a/pkgs/servers/nosql/riak/1.3.1.nix b/pkgs/servers/nosql/riak/1.3.1.nix deleted file mode 100644 index df85044b8d1..00000000000 --- a/pkgs/servers/nosql/riak/1.3.1.nix +++ /dev/null @@ -1,65 +0,0 @@ -{ stdenv, fetchurl, fetchFromGitHub, unzip, erlangR15}: - -let - srcs = { - riak = fetchurl { - url = "http://s3.amazonaws.com/downloads.basho.com/riak/1.3/1.3.1/riak-1.3.1.tar.gz"; - sha256 = "a69093fc5df1b79f58645048b9571c755e00c3ca14dfd27f9f1cae2c6e628f01"; - }; - leveldb = fetchFromGitHub { - owner = "basho"; - repo = "leveldb"; - rev = "1.3.1"; - sha256 = "1jvv260ic38657y4lwwcvzmhah8xai594xy19r28gkzlpra1lnbb"; - }; - }; -in -stdenv.mkDerivation rec { - name = "riak-1.3.1"; - - buildInputs = [unzip erlangR15]; - - src = srcs.riak; - - patches = [ ./riak-1.3.1.patch ./riak-admin-1.3.1.patch ]; - - postUnpack = '' - mkdir -p $sourceRoot/deps/eleveldb/c_src/leveldb - cp -r ${srcs.leveldb}/* $sourceRoot/deps/eleveldb/c_src/leveldb - chmod 755 -R $sourceRoot/deps/eleveldb/c_src/leveldb - pushd $sourceRoot/deps/ - mkdir riaknostic/deps - cp -R lager riaknostic/deps - cp -R getopt riaknostic/deps - cp -R meck riaknostic/deps - popd - patchShebangs . - ''; - - buildPhase = '' - make rel - ''; - - doCheck = false; - - installPhase = '' - mkdir $out - mv rel/riak/etc rel/riak/riak-etc - mkdir -p rel/riak/etc - mv rel/riak/riak-etc rel/riak/etc/riak - mv rel/riak/* $out - ''; - - meta = { - maintainers = [ stdenv.lib.maintainers.orbitz ]; - description = "Dynamo inspired NoSQL DB by Basho"; - longDescription = '' - This patches the riak and riak-admin scripts to work better in Nix. - Rather than the scripts using their own location to determine where - the data, log, and etc directories should live, the scripts expect - RIAK_DATA_DIR, RIAK_LOG_DIR, and RIAK_ETC_DIR to be defined - and use those. - ''; - platforms = stdenv.lib.platforms.all; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b1b39b90134..c7e58a733a4 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5324,7 +5324,6 @@ let clooj = callPackage ../development/interpreters/clojure/clooj.nix { }; erlangR14 = callPackage ../development/interpreters/erlang/R14.nix { }; - erlangR15 = callPackage ../development/interpreters/erlang/R15.nix { }; erlangR16 = callPackage ../development/interpreters/erlang/R16.nix { }; erlangR16_odbc = callPackage ../development/interpreters/erlang/R16.nix { odbcSupport = true; }; erlangR17 = callPackage ../development/interpreters/erlang/R17.nix { }; @@ -9802,8 +9801,7 @@ let sasl = cyrus_sasl; }; - riak = callPackage ../servers/nosql/riak/1.3.1.nix { }; - riak2 = callPackage ../servers/nosql/riak/2.1.1.nix { }; + riak = callPackage ../servers/nosql/riak/2.1.1.nix { }; influxdb = (callPackage ../servers/nosql/influxdb { }).bin // { outputs = [ "bin" ]; }; From 587fbb5b158b92ed7ed47737aab0c126bd225f87 Mon Sep 17 00:00:00 2001 From: Derek Gonyeo Date: Tue, 22 Mar 2016 14:59:55 -0700 Subject: [PATCH 445/678] rkt: v1.1.0 -> v1.2.0 --- pkgs/applications/virtualization/rkt/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/virtualization/rkt/default.nix b/pkgs/applications/virtualization/rkt/default.nix index 713928eafed..4845d0b6065 100644 --- a/pkgs/applications/virtualization/rkt/default.nix +++ b/pkgs/applications/virtualization/rkt/default.nix @@ -9,7 +9,7 @@ let stage1Flavours = [ "coreos" "fly" "host" ]; in stdenv.mkDerivation rec { - version = "1.1.0"; + version = "1.2.0"; name = "rkt-${version}"; BUILDDIR="build-${name}"; @@ -17,7 +17,7 @@ in stdenv.mkDerivation rec { rev = "v${version}"; owner = "coreos"; repo = "rkt"; - sha256 = "1pl5gbfd9wr8nh2h249g7sjs31jz21g24mw375zki9gdhhnpn570"; + sha256 = "0icsrh118mm3rabbcr0gd3b22m5rizdbqlrfp9d79g591p7bjh38"; }; stage1BaseImage = fetchurl { From 00db6a67f1a0d4b1604b050397115f9bb41727af Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Tue, 22 Mar 2016 22:04:39 +0000 Subject: [PATCH 446/678] oh-my-zsh: 2016-03-11 -> 2016-03-19 --- pkgs/shells/oh-my-zsh/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/shells/oh-my-zsh/default.nix b/pkgs/shells/oh-my-zsh/default.nix index 715c5ab767b..e8c0aef8c78 100644 --- a/pkgs/shells/oh-my-zsh/default.nix +++ b/pkgs/shells/oh-my-zsh/default.nix @@ -7,12 +7,12 @@ stdenv.mkDerivation rec { name = "oh-my-zsh-git-${version}"; - version = "2016-03-11"; + version = "2016-03-19"; src = fetchgit { url = "https://github.com/robbyrussell/oh-my-zsh"; - rev = "83cf8dc16f51babbb0193c5b97e568739c1f40de"; - sha256 = "0lxs7c89c7ib7a1rfsdpc30gxi2q35mapcv2q44rlclv26nikkjv"; + rev = "8ac1859f377b5292597f11f5973bae1ebc8e2dce"; + sha256 = "1zq3rps1jqw1gmhqsmcz38c0c1mk5d3z3n8m34v8k5zsfh5y4bha"; }; phases = "installPhase"; From 49e53e67010fdd954f24348d8d7af299eb462d2b Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Tue, 22 Mar 2016 18:20:16 -0400 Subject: [PATCH 447/678] nix-exec: bump for new nix --- pkgs/development/interpreters/nix-exec/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/nix-exec/default.nix b/pkgs/development/interpreters/nix-exec/default.nix index 44c2a56d4fc..ad585f085db 100644 --- a/pkgs/development/interpreters/nix-exec/default.nix +++ b/pkgs/development/interpreters/nix-exec/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, pkgconfig, nix, git }: let - version = "4.1.3"; + version = "4.1.5"; in stdenv.mkDerivation { name = "nix-exec-${version}"; src = fetchurl { url = "https://github.com/shlevy/nix-exec/releases/download/v${version}/nix-exec-${version}.tar.xz"; - sha256 = "0zhydidxj7dvgvszrlzwb0wj4s7xb42kdmn0fv5c7jz3nvnhdykp"; + sha256 = "1npy1did5ysacshclpfxihgh5bc0i9jqmvgxi1fp8prhcdhall9m"; }; buildInputs = [ pkgconfig nix git ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c7e58a733a4..a1f7a3fd320 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5451,6 +5451,8 @@ let mujs = callPackage ../development/interpreters/mujs { }; nix-exec = callPackage ../development/interpreters/nix-exec { + nix = nixUnstable; + git = gitMinimal; }; From 3b718bd5a034c0dbf08924e3209d32e8779176dd Mon Sep 17 00:00:00 2001 From: Rickard Nilsson Date: Wed, 23 Mar 2016 00:17:50 +0100 Subject: [PATCH 448/678] rt: 4.2.12 -> 4.4.0 --- pkgs/servers/rt/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/rt/default.nix b/pkgs/servers/rt/default.nix index 253f90e68ef..77b7c6d4f26 100644 --- a/pkgs/servers/rt/default.nix +++ b/pkgs/servers/rt/default.nix @@ -3,12 +3,12 @@ stdenv.mkDerivation rec { name = "rt-${version}"; - version = "4.2.12"; + version = "4.4.0"; src = fetchurl { url = "https://download.bestpractical.com/pub/rt/release/${name}.tar.gz"; - sha256 = "0r3jhgfwwhhk654zag42mrai85yrliw9sc0kgabwjvbh173204p2"; + sha256 = "1hgz50fxv9zdcngww083aqh8vzyk148lm7mcivxflpnsqfw3696x"; }; patches = [ ./override-generated.patch ]; From 18b35bd7417368cebacefea4a10c920a8e5516c4 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Wed, 23 Mar 2016 01:05:50 +0100 Subject: [PATCH 449/678] cataclysm-dda: build recipe enhancements & gcc5 support - Remove redundant platform check; meta.platforms is sufficient - Use postPatch rather than override patchPhase entirely - Strip -Werror - Move build-time only dependencies to nativeBuildInputs This also fixes gcc5 build, which fails due to a deprecated-declarations warning (see https://hydra.nixos.org/build/33117020/nixlog/2/raw). --- pkgs/games/cataclysm-dda/default.nix | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/pkgs/games/cataclysm-dda/default.nix b/pkgs/games/cataclysm-dda/default.nix index ed4aed35e11..3956c994531 100644 --- a/pkgs/games/cataclysm-dda/default.nix +++ b/pkgs/games/cataclysm-dda/default.nix @@ -1,15 +1,7 @@ { fetchFromGitHub, stdenv, makeWrapper, pkgconfig, ncurses, lua, SDL2, SDL2_image, SDL2_ttf, SDL2_mixer, freetype, gettext }: -let architecture = - if stdenv.system == "i686-linux" then - "linux32" - else if stdenv.system == "x86_64-linux" then - "linux64" - else - abort "currently only linux 32-bit and 64-bit are supported"; - -in stdenv.mkDerivation rec { +stdenv.mkDerivation rec { version = "0.C"; name = "cataclysm-dda-${version}"; @@ -20,13 +12,15 @@ in stdenv.mkDerivation rec { sha256 = "03sdzsk4qdq99qckq0axbsvg1apn6xizscd8pwp5w6kq2fyj5xkv"; }; - buildInputs = [ makeWrapper pkgconfig ncurses lua SDL2 SDL2_image SDL2_ttf SDL2_mixer freetype gettext ]; + nativeBuildInputs = [ makeWrapper pkgconfig ]; - patchPhase = '' + buildInputs = [ ncurses lua SDL2 SDL2_image SDL2_ttf SDL2_mixer freetype gettext ]; + + postPatch = '' patchShebangs . - substituteAllInPlace lang/compile_mo.sh \ - --replace msgfmt ${gettext}/msgfmt - sed -i -e 's|DATA_PREFIX=$(PREFIX)/share/cataclysm-dda/|DATA_PREFIX=$(PREFIX)/share/|g' Makefile + sed -i Makefile \ + -e 's,-Werror,,g' \ + -e 's,\(DATA_PREFIX=$(PREFIX)/share/\)cataclysm-dda/,\1,g' ''; makeFlags = "PREFIX=$(out) LUA=1 TILES=1 SOUND=1 RELEASE=1 USE_HOME_DIR=1"; From 0547fd247f9960eeffd01973c55ed99112a57205 Mon Sep 17 00:00:00 2001 From: Charles Strahan Date: Tue, 22 Mar 2016 21:39:45 -0400 Subject: [PATCH 450/678] go-1.6: fix the build One of the test scripts dynamically creates and executes a bash script, which attempts to use `/usr/bin/env bash`. This patches the file to use the stdenv's shell instead. Otherwise, the only way this could have worked was by building go_1_6 outside of the sandbox. --- pkgs/development/compilers/go/1.6.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/compilers/go/1.6.nix b/pkgs/development/compilers/go/1.6.nix index 122f0d336f7..e941910a41b 100644 --- a/pkgs/development/compilers/go/1.6.nix +++ b/pkgs/development/compilers/go/1.6.nix @@ -46,6 +46,11 @@ stdenv.mkDerivation rec { cd go patchShebangs ./ # replace /bin/bash + # This script produces another script at run time, + # and thus it is not corrected by patchShebangs. + substituteInPlace misc/cgo/testcarchive/test.bash \ + --replace '#!/usr/bin/env bash' '#!${stdenv.shell}' + # Disabling the 'os/http/net' tests (they want files not available in # chroot builds) rm src/net/{listen,parse}_test.go From bb63c6a4c45556dbe284d40b8c088ccb37bb7cec Mon Sep 17 00:00:00 2001 From: Ryan Artecona Date: Tue, 22 Mar 2016 21:07:30 -0400 Subject: [PATCH 451/678] gobjectIntrospection: fix darwin build Stop using obsolete `otool` package, preferring `cctools` (which includes otool), on darwin. Remove autoconf & automake from reqs, as they were unused. Fixes #12670 --- .../libraries/gobject-introspection/default.nix | 9 ++++----- pkgs/top-level/all-packages.nix | 1 + 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/gobject-introspection/default.nix b/pkgs/development/libraries/gobject-introspection/default.nix index 0f828653858..959abc44d24 100644 --- a/pkgs/development/libraries/gobject-introspection/default.nix +++ b/pkgs/development/libraries/gobject-introspection/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, glib, flex, bison, pkgconfig, libffi, python -, libintlOrEmpty, autoconf, automake, otool +, libintlOrEmpty, cctools , substituteAll, nixStoreDir ? builtins.storeDir }: # now that gobjectIntrospection creates large .gir files (eg gtk3 case) @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { buildInputs = [ flex bison pkgconfig python ] ++ libintlOrEmpty - ++ stdenv.lib.optional stdenv.isDarwin otool; + ++ stdenv.lib.optional stdenv.isDarwin cctools; propagatedBuildInputs = [ libffi glib ]; - # Tests depend on cairo, which is undesirable (it pulls in lots of - # other dependencies). + # The '--disable-tests' flag is no longer recognized, so can be safely removed + # next time this package changes. configureFlags = [ "--disable-tests" ]; preConfigure = '' @@ -45,7 +45,6 @@ stdenv.mkDerivation rec { homepage = http://live.gnome.org/GObjectIntrospection; maintainers = with maintainers; [ lovek323 urkud lethalman ]; platforms = platforms.unix; - broken = stdenv.isDarwin; longDescription = '' GObject introspection is a middleware layer between C libraries (using diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f1b1977d4ab..26e33e9c62f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6934,6 +6934,7 @@ let gobjectIntrospection = callPackage ../development/libraries/gobject-introspection { nixStoreDir = config.nix.storeDir or builtins.storeDir; + inherit (darwin) cctools; }; goocanvas = callPackage ../development/libraries/goocanvas { }; From 587ae0f63fb8d8338bd85a615b70328d32c0594c Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Tue, 22 Mar 2016 20:49:27 -0500 Subject: [PATCH 452/678] zam-plugins: sha256 changed --- pkgs/applications/audio/zam-plugins/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/audio/zam-plugins/default.nix b/pkgs/applications/audio/zam-plugins/default.nix index 48f559dfd86..0710e7f942a 100644 --- a/pkgs/applications/audio/zam-plugins/default.nix +++ b/pkgs/applications/audio/zam-plugins/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { url = "https://github.com/zamaudio/zam-plugins.git"; deepClone = true; rev = "91fe56931a3e57b80f18c740d2dde6b44f962aee"; - sha256 = "0n29zxg4l2m3jsnfw6q2alyzaw7ibbv9nvk57k07sv3lh2yy3f30"; + sha256 = "1s0s028h3z3pfd4qvi63fsg6bv33bvz0p5fbmbmhypzqjlx6mlkb"; }; buildInputs = [ boost libX11 mesa liblo libjack2 ladspaH lv2 pkgconfig rubberband libsndfile ]; From 29cf3ecd78166fa1affd6a8202080ceb0b6dfcd2 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Tue, 22 Mar 2016 21:01:19 -0500 Subject: [PATCH 453/678] slic3r: Add ModuleBuild to BuildInputs, due to http://hydra.nixos.org/build/33298227/nixlog/1 --- pkgs/applications/misc/slic3r/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/misc/slic3r/default.nix b/pkgs/applications/misc/slic3r/default.nix index 1a5fa03c54c..5dd9795fba0 100644 --- a/pkgs/applications/misc/slic3r/default.nix +++ b/pkgs/applications/misc/slic3r/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { EncodeLocale MathClipper ExtUtilsXSpp threads MathConvexHullMonotoneChain MathGeometryVoronoi MathPlanePath Moo IOStringy ClassXSAccessor Wx GrowlGNTP NetDBus ImportInto XMLSAX - ExtUtilsMakeMaker OpenGL WxGLCanvas + ExtUtilsMakeMaker OpenGL WxGLCanvas ModuleBuild ]; desktopItem = makeDesktopItem { From 927aaecbcb35ec98db904e8d977b37d05e3a31d2 Mon Sep 17 00:00:00 2001 From: Mitchell Pleune Date: Tue, 22 Mar 2016 22:06:37 -0400 Subject: [PATCH 454/678] iodined service: wantedBy ip-up.target When iodined tries to start before any interface other than loopback has an ip, iodined fails. Wait for ip-up.target The above is because of the following: in iodined's code: src/common.c line 157 the flag AI_ADDRCONFIG is passed as a flag to getaddrinfo. Iodine uses the function get_addr(char *host, int port, int addr_family, int flags, struct sockaddr_storage *out); to get address information via getaddrinfo(). Within get_addr, the flag AI_ADDRCONFIG is forced. What this flag does, is cause getaddrinfo to return "Name or service not known" as an error explicitly if no ip has been assigned to the computer. see getaddrinfo(3) Wait for an ip before starting iodined. --- nixos/modules/services/networking/iodined.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nixos/modules/services/networking/iodined.nix b/nixos/modules/services/networking/iodined.nix index 6bfe62e6261..20d371c4e2d 100644 --- a/nixos/modules/services/networking/iodined.nix +++ b/nixos/modules/services/networking/iodined.nix @@ -64,8 +64,7 @@ in systemd.services.iodined = { description = "iodine, ip over dns daemon"; - after = [ "network.target" ]; - wantedBy = [ "multi-user.target" ]; + wantedBy = [ "ip-up.target" ]; serviceConfig.ExecStart = "${pkgs.iodine}/sbin/iodined -f -u ${iodinedUser} ${cfg.extraConfig} ${cfg.ip} ${cfg.domain}"; }; From ef2f2de53a4737febdd85ccd9ebcab926d2a4830 Mon Sep 17 00:00:00 2001 From: Sheena Artrip Date: Tue, 22 Mar 2016 01:35:20 -0400 Subject: [PATCH 455/678] mednaffe: init at 0.8 --- pkgs/misc/emulators/mednaffe/default.nix | 28 ++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 30 insertions(+) create mode 100644 pkgs/misc/emulators/mednaffe/default.nix diff --git a/pkgs/misc/emulators/mednaffe/default.nix b/pkgs/misc/emulators/mednaffe/default.nix new file mode 100644 index 00000000000..7777e73d337 --- /dev/null +++ b/pkgs/misc/emulators/mednaffe/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchFromGitHub, pkgconfig, gtk2, mednafen }: + +stdenv.mkDerivation rec { + + version = "0.8"; + name = "mednaffe-${version}"; + + src = fetchFromGitHub { + repo = "mednaffe"; + owner = "AmatCoder"; + rev = "v${version}"; + sha256 = "1j4py4ih14fa6dv0hka03rs4mq19ir83qkbxsz3695a4phmip0jr"; + }; + + prePatch = '' + substituteInPlace src/mednaffe.c --replace "binpath = NULL" "binpath = \"${mednafen}/bin/mednafen\"" + ''; + + buildInputs = [ pkgconfig gtk2 mednafen ]; + + meta = with stdenv.lib; { + description = "A GTK based frontend for mednafen"; + homepage = https://github.com/AmatCoder/mednaffe; + license = licenses.gpl3; + maintainers = [ maintainers.sheenobu ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 486583a2a1a..c2a68176ebb 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2428,6 +2428,8 @@ let mednafen-server = callPackage ../misc/emulators/mednafen/server.nix { }; + mednaffe = callPackage ../misc/emulators/mednaffe/default.nix { }; + megacli = callPackage ../tools/misc/megacli { }; megatools = callPackage ../tools/networking/megatools { }; From 037e815787abbb0955ea3d954794e0eac0493bc2 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Tue, 22 Mar 2016 01:40:04 +0100 Subject: [PATCH 456/678] arangodb: fix gcc5 build https://hydra.nixos.org/build/33263863/nixlog/1/raw --- pkgs/servers/nosql/arangodb/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/servers/nosql/arangodb/default.nix b/pkgs/servers/nosql/arangodb/default.nix index 4ff12f630c9..7ccd29bc783 100644 --- a/pkgs/servers/nosql/arangodb/default.nix +++ b/pkgs/servers/nosql/arangodb/default.nix @@ -15,6 +15,8 @@ stdenv.mkDerivation rec { openssl zlib python gyp go readline ]; + NIX_CFLAGS_COMPILE = "-Wno-error=strict-overflow"; + configureFlagsArray = [ "--with-openssl-lib=${openssl}/lib" ]; patchPhase = '' From 7fb57383fcb786e1f8f2a177af9f2b5630f70596 Mon Sep 17 00:00:00 2001 From: Sheena Artrip Date: Wed, 23 Mar 2016 01:17:16 -0400 Subject: [PATCH 457/678] i3: 4.11 -> 4.12 --- pkgs/applications/window-managers/i3/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/window-managers/i3/default.nix b/pkgs/applications/window-managers/i3/default.nix index 0833fde8c9e..ada6e8e742e 100644 --- a/pkgs/applications/window-managers/i3/default.nix +++ b/pkgs/applications/window-managers/i3/default.nix @@ -5,11 +5,11 @@ stdenv.mkDerivation rec { name = "i3-${version}"; - version = "4.11"; + version = "4.12"; src = fetchurl { url = "http://i3wm.org/downloads/${name}.tar.bz2"; - sha256 = "0bwqklb6irgjmgvj7mlyz4brr4lggfm3zqmvclvxcbyrzc31xkkq"; + sha256 = "1d3q3lgpjbkmcwzjhp0dfr0jq847silcfg087slcnj95ikh1r7p1"; }; buildInputs = [ From 7fe888e521fc523b77b1a4208b12c858d127e457 Mon Sep 17 00:00:00 2001 From: Greyson Fischer Date: Tue, 22 Mar 2016 16:05:02 -0400 Subject: [PATCH 458/678] slack: init at 2.0.1 --- .../instant-messengers/slack/default.nix | 85 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 87 insertions(+) create mode 100644 pkgs/applications/networking/instant-messengers/slack/default.nix diff --git a/pkgs/applications/networking/instant-messengers/slack/default.nix b/pkgs/applications/networking/instant-messengers/slack/default.nix new file mode 100644 index 00000000000..c6e550b5e8f --- /dev/null +++ b/pkgs/applications/networking/instant-messengers/slack/default.nix @@ -0,0 +1,85 @@ +{ stdenv, fetchurl, dpkg +, alsaLib, atk, cairo, cups, dbus, expat, fontconfig, freetype, glib, gnome +, libnotify, nspr, nss, systemd, xorg }: + +let + + version = "2.0.1"; + + rpath = stdenv.lib.makeSearchPath "lib" [ + alsaLib + atk + cairo + cups + dbus + expat + fontconfig + freetype + glib + gnome.GConf + gnome.gdk_pixbuf + gnome.gtk + gnome.pango + libnotify + nspr + nss + systemd + + xorg.libX11 + xorg.libXcomposite + xorg.libXcursor + xorg.libXdamage + xorg.libXext + xorg.libXfixes + xorg.libXi + xorg.libXrandr + xorg.libXrender + xorg.libXtst + ] + ":${stdenv.cc.cc}/lib64"; + + src = + if stdenv.system == "x86_64-linux" then + fetchurl { + url = "https://slack-ssb-updates.global.ssl.fastly.net/linux_releases/slack-desktop-${version}-amd64.deb"; + sha256 = "12d84e61ba366cc5bac105b3f9930f2dfdd64c1e5fabbb08a6877e1c98bfb9c7"; + } + else + throw "Slack is not supported on ${stdenv.system}"; + +in stdenv.mkDerivation { + name = "slack-${version}"; + + inherit src; + + buildInputs = [ dpkg ]; + unpackPhase = "true"; + buildCommand = '' + mkdir -p $out + dpkg -x $src $out + cp -av $out/usr/* $out + rm -rf $out/usr + + # Otherwise it looks "suspicious" + chmod -R g-w $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 ${rpath}:$out/share/slack $file || true + done + + # Fix the symlink + rm $out/bin/slack + ln -s $out/share/slack/slack $out/bin/slack + + # Fix the desktop link + substituteInPlace $out/share/applications/slack.desktop \ + --replace /usr/share/slack/slack $out/share/slack/slack + ''; + + meta = with stdenv.lib; { + description = "Desktop client for Slack"; + homepage = "https://slack.com"; + license = licenses.unfree; + platforms = [ "x86_64-linux" ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 26175c4e6d2..4e34a6d4aa0 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12685,6 +12685,8 @@ let hydrogen = callPackage ../applications/audio/hydrogen { }; + slack = callPackage ../applications/networking/instant-messengers/slack { }; + spectrwm = callPackage ../applications/window-managers/spectrwm { }; wlc = callPackage ../development/libraries/wlc { }; From 6da0a54d2b6a8c1c06b04778edd711d0d620200d Mon Sep 17 00:00:00 2001 From: Michael Fellinger Date: Wed, 23 Mar 2016 10:05:52 +0100 Subject: [PATCH 459/678] zsh-navigation-tools: include znt-* functions --- pkgs/tools/misc/zsh-navigation-tools/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/misc/zsh-navigation-tools/default.nix b/pkgs/tools/misc/zsh-navigation-tools/default.nix index ae4774c0e12..8074f78db50 100644 --- a/pkgs/tools/misc/zsh-navigation-tools/default.nix +++ b/pkgs/tools/misc/zsh-navigation-tools/default.nix @@ -16,6 +16,7 @@ stdenv.mkDerivation rec { installPhase = '' mkdir -p $out/share/zsh/site-functions/ cp n-* $out/share/zsh/site-functions/ + cp znt-* $out/share/zsh/site-functions/ ''; meta = with stdenv.lib; { From 719fceba10a08d1444daa495e7e110d5d861d20e Mon Sep 17 00:00:00 2001 From: "Matthias C. M. Troffaes" Date: Wed, 23 Mar 2016 09:15:21 +0000 Subject: [PATCH 460/678] wolfssl: 3.8.0 -> 3.9.0 --- pkgs/development/libraries/wolfssl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/wolfssl/default.nix b/pkgs/development/libraries/wolfssl/default.nix index 31ac49a2ce4..3e534a8b955 100644 --- a/pkgs/development/libraries/wolfssl/default.nix +++ b/pkgs/development/libraries/wolfssl/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "wolfssl-${version}"; - version = "3.8.0"; + version = "3.9.0"; src = fetchFromGitHub { owner = "wolfSSL"; repo = "wolfssl"; rev = "v${version}"; - sha256 = "0vc2120a9gfxg3rv018ch1g84ia2cpplcqbpy8v6vpfb79rn1nf5"; + sha256 = "0j4la9936jcy2fam1x5wplbslqa4zjnrk4wyipkbwz9m8cxg0n6v"; }; nativeBuildInputs = [ autoreconfHook ]; From 524310d29e5846252ce0f787ea4dae022adaa3f4 Mon Sep 17 00:00:00 2001 From: Octavian Cerna Date: Sun, 20 Mar 2016 22:06:28 +0200 Subject: [PATCH 461/678] hhvm: 3.6.0 -> 3.12.1 --- pkgs/development/compilers/hhvm/default.nix | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/pkgs/development/compilers/hhvm/default.nix b/pkgs/development/compilers/hhvm/default.nix index 817b20af9c4..d976b6edab8 100644 --- a/pkgs/development/compilers/hhvm/default.nix +++ b/pkgs/development/compilers/hhvm/default.nix @@ -3,18 +3,18 @@ , expat, libcap, oniguruma, libdwarf, libmcrypt, tbb, gperftools, glog, libkrb5 , bzip2, openldap, readline, libelf, uwimap, binutils, cyrus_sasl, pam, libpng , libxslt, ocaml, freetype, gdb, git, perl, mariadb, gmp, libyaml, libedit -, libvpx, imagemagick, fribidi +, libvpx, imagemagick, fribidi, gperf }: stdenv.mkDerivation rec { name = "hhvm-${version}"; - version = "3.6.0"; + version = "3.12.1"; # use git version since we need submodules src = fetchgit { url = "https://github.com/facebook/hhvm.git"; - rev = "6ef13f20da20993dc8bab9eb103f73568618d3e8"; - sha256 = "29a2d4b56cfd348b199d8f90b4e4b07de85dfb2ef1538479cd1e84f5bc1fbf96"; + rev = "f516f1bb9046218f89885a220354c19dda6d8f4d"; + sha256 = "1jdw6j394z7ksg4wdcnm7lkcs7iam5myx6k18w8hr595s1dfk3sj"; fetchSubmodules = true; }; @@ -23,10 +23,10 @@ stdenv.mkDerivation rec { libevent gd curl libxml2 icu flex bison openssl zlib php expat libcap oniguruma libdwarf libmcrypt tbb gperftools bzip2 openldap readline libelf uwimap binutils cyrus_sasl pam glog libpng libxslt ocaml libkrb5 - gmp libyaml libedit libvpx imagemagick fribidi + gmp libyaml libedit libvpx imagemagick fribidi gperf ]; - enableParallelBuilding = false; + enableParallelBuilding = true; dontUseCmakeBuildDir = true; NIX_LDFLAGS = "-lpam -L${pam}/lib"; MYSQL_INCLUDE_DIR="${mariadb}/include/mysql"; @@ -40,8 +40,12 @@ stdenv.mkDerivation rec { --replace /bin/bash ${stdenv.shell} substituteInPlace ./configure \ --replace "/usr/bin/env bash" ${stdenv.shell} - sed '1i#include ' \ - -i ./third-party/mcrouter/mcrouter/lib/fibers/TimeoutController.h + perl -pi -e 's/([ \t(])(isnan|isinf)\(/$1std::$2(/g' \ + hphp/runtime/base/*.cpp \ + hphp/runtime/ext/std/*.cpp \ + hphp/runtime/ext_zend_compat/php-src/main/*.cpp \ + hphp/runtime/ext_zend_compat/php-src/main/*.h + patchShebangs . ''; cmakeFlags = [ "-DCMAKE_BUILD_TYPE=Release" ]; From 40e9dff04a4a61b6fde13d3fc32ddd46f1ad3d7e Mon Sep 17 00:00:00 2001 From: zimbatm Date: Fri, 18 Mar 2016 19:47:19 +0000 Subject: [PATCH 462/678] nix-prefetch-git: fix url_to_name heuristic The function wasn't checking that *all* of the characters where [a-z0-9]. Fixes #13921 --- pkgs/build-support/fetchgit/nix-prefetch-git | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/build-support/fetchgit/nix-prefetch-git b/pkgs/build-support/fetchgit/nix-prefetch-git index 2af01ee5373..9352757ea80 100755 --- a/pkgs/build-support/fetchgit/nix-prefetch-git +++ b/pkgs/build-support/fetchgit/nix-prefetch-git @@ -118,7 +118,7 @@ url_to_name(){ # basename removes the / and .git suffixes local base=$(basename "$url" .git) - if [[ $ref =~ [a-z0-9]+ ]]; then + if [[ $ref =~ ^[a-z0-9]+$ ]]; then echo "$base-${ref:0:7}" else echo $base From 72bcff71fe403659077fe685994dc30121822409 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sun, 20 Mar 2016 23:32:57 +0100 Subject: [PATCH 463/678] clementineFree: fix gcc5 build Uses gcc switches that are no longer valid. Also strip -Werror for good measure. See https://hydra.nixos.org/build/33277865/nixlog/1/raw --- pkgs/applications/audio/clementine/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/applications/audio/clementine/default.nix b/pkgs/applications/audio/clementine/default.nix index c9b16b65267..cf58dffef02 100644 --- a/pkgs/applications/audio/clementine/default.nix +++ b/pkgs/applications/audio/clementine/default.nix @@ -50,6 +50,12 @@ let name = "clementine-free-${version}"; inherit patches src buildInputs; enableParallelBuilding = true; + postPatch = '' + sed -i src/CMakeLists.txt \ + -e 's,-Werror,,g' \ + -e 's,-Wno-unknown-warning-option,,g' \ + -e 's,-Wno-unused-private-field,,g' + ''; meta = with stdenv.lib; { homepage = "http://www.clementine-player.org"; description = "A multiplatform music player"; From d43da3c4886a396885f9aa2b051fc5909346b3bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Wed, 23 Mar 2016 12:14:31 +0000 Subject: [PATCH 464/678] Pin hydra-www and hydra-queue-runner uids MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit hydra user is already pinned, this is needed due to https://github.com/NixOS/nixpkgs/issues/14148 (cherry picked from commit 0858ece1ad0bd281d2332c40f9fd08005e04a3c5) Signed-off-by: Domen Kožar --- nixos/modules/misc/ids.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/misc/ids.nix b/nixos/modules/misc/ids.nix index d0914df9c28..46c288f9296 100644 --- a/nixos/modules/misc/ids.nix +++ b/nixos/modules/misc/ids.nix @@ -256,6 +256,8 @@ nntp-proxy = 232; mjpg-streamer = 233; radicale = 234; + hydra-queue-runner = 235; + hydra-www = 236; # When adding a uid, make sure it doesn't match an existing gid. And don't use uids above 399! From 5dab370d7779b0e372da00dcd262c64c2d8b58eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Wed, 23 Mar 2016 13:30:50 +0100 Subject: [PATCH 465/678] Remove Guix. --- .../tools/package-management/guix/default.nix | 69 ------------------- pkgs/top-level/all-packages.nix | 4 -- 2 files changed, 73 deletions(-) delete mode 100644 pkgs/tools/package-management/guix/default.nix diff --git a/pkgs/tools/package-management/guix/default.nix b/pkgs/tools/package-management/guix/default.nix deleted file mode 100644 index 1d5d995a189..00000000000 --- a/pkgs/tools/package-management/guix/default.nix +++ /dev/null @@ -1,69 +0,0 @@ -{ fetchurl, stdenv, guile, libgcrypt, sqlite, bzip2, pkgconfig }: - -let - # Getting the bootstrap Guile binary. This is normally performed by Guix's build system. - base_url = arch: - "http://alpha.gnu.org/gnu/guix/bootstrap/${arch}-linux/20130105/guile-2.0.7.tar.xz"; - boot_guile = { - i686 = fetchurl { - url = base_url "i686"; - sha256 = "f9a7c6f4c556eaafa2a69bcf07d4ffbb6682ea831d4c9da9ba095aca3ccd217c"; - }; - x86_64 = fetchurl { - url = base_url "x86_64"; - sha256 = "bc43210dcd146d242bef4d354b0aeac12c4ef3118c07502d17ffa8d49e15aa2c"; - }; - }; -in stdenv.mkDerivation rec { - name = "guix-0.3"; - - src = fetchurl { - url = "ftp://alpha.gnu.org/gnu/guix/${name}.tar.gz"; - sha256 = "0xpfdmlfkkpmgrb8lpaqs5wxx31m4jslajs6b9waz5wp91zk7fix"; - }; - - configureFlags = - [ "--localstatedir=/nix/var" - "--with-libgcrypt-prefix=${libgcrypt}" - ]; - - preBuild = - # Copy the bootstrap Guile tarballs like Guix's makefile normally does. - '' cp -v "${boot_guile.i686}" gnu/packages/bootstrap/i686-linux/guile-2.0.7.tar.xz - cp -v "${boot_guile.x86_64}" gnu/packages/bootstrap/x86_64-linux/guile-2.0.7.tar.xz - ''; - - nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ guile libgcrypt sqlite bzip2 ]; - - doCheck = true; - enableParallelBuilding = true; - - meta = { - description = "Functional package manager with a Scheme interface"; - - longDescription = '' - GNU Guix is a purely functional package manager for the GNU system, and a distribution thereof. - - In addition to standard package management features, Guix supports - transactional upgrades and roll-backs, unprivileged package management, - per-user profiles, and garbage collection. - - It provides Guile Scheme APIs, including high-level embedded - domain-specific languages (EDSLs), to describe how packages are built - and composed. - - A user-land free software distribution for GNU/Linux comes as part of - Guix. - - Guix is based on the Nix package manager. - ''; - - license = stdenv.lib.licenses.gpl3Plus; - - maintainers = [ ]; - platforms = stdenv.lib.platforms.linux; - - homepage = http://www.gnu.org/software/guix; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4e34a6d4aa0..0304193cd79 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16048,10 +16048,6 @@ let gnuk-unstable = callPackage ../misc/gnuk/unstable.nix { }; gnuk-git = callPackage ../misc/gnuk/git.nix { }; - guix = callPackage ../tools/package-management/guix { - libgcrypt = libgcrypt_1_5; - }; - gxemul = callPackage ../misc/emulators/gxemul { }; hatari = callPackage ../misc/emulators/hatari { }; From 1972c5aa1707df1ab710996c0887318136cccb03 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Wed, 23 Mar 2016 13:54:58 +0100 Subject: [PATCH 466/678] clisp: fix i686 build Requires -falign-functions=4 See https://hydra.nixos.org/build/33256640/nixlog/1/raw --- pkgs/development/interpreters/clisp/2.44.1.nix | 2 +- pkgs/development/interpreters/clisp/default.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/clisp/2.44.1.nix b/pkgs/development/interpreters/clisp/2.44.1.nix index 66f53831374..682978a5ac8 100644 --- a/pkgs/development/interpreters/clisp/2.44.1.nix +++ b/pkgs/development/interpreters/clisp/2.44.1.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { cd builddir ''; - NIX_CFLAGS_COMPILE="-O0"; + NIX_CFLAGS_COMPILE = "-O0 ${stdenv.lib.optionalString (!stdenv.is64bit) "-falign-functions=4"}"; # TODO : make mod-check fails doCheck = false; diff --git a/pkgs/development/interpreters/clisp/default.nix b/pkgs/development/interpreters/clisp/default.nix index b8af3f6d747..919c3771bc5 100644 --- a/pkgs/development/interpreters/clisp/default.nix +++ b/pkgs/development/interpreters/clisp/default.nix @@ -53,7 +53,7 @@ stdenv.mkDerivation rec { clx/new-clx bindings/glibc pcre rawsock wildcard zlib ''; - NIX_CFLAGS_COMPILE="-O0"; + NIX_CFLAGS_COMPILE = "-O0 ${stdenv.lib.optionalString (!stdenv.is64bit) "-falign-functions=4"}"; # TODO : make mod-check fails doCheck = false; From 3f6023dd167712df8448d1d26074eabc906f7156 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Wed, 23 Mar 2016 08:04:36 -0500 Subject: [PATCH 467/678] codeblocks: ad libX11 build dependency to fix hydra build http://hydra.nixos.org/build/33296816/nixlog/1 --- pkgs/applications/editors/codeblocks/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/codeblocks/default.nix b/pkgs/applications/editors/codeblocks/default.nix index 53b7b5750a0..3243dbf9f50 100644 --- a/pkgs/applications/editors/codeblocks/default.nix +++ b/pkgs/applications/editors/codeblocks/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, autoconf, automake, libtool, pkgconfig, file, zip, wxGTK, gtk -, contribPlugins ? false, hunspell, gamin, boost +, contribPlugins ? false, hunspell, gamin, boost, libX11 }: with { inherit (stdenv.lib) optionalString optional optionals; }; @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { sha256 = "044njhps4cm1ijfdyr5f9wjyd0vblhrz9b4603ma52wcdq25093p"; }; - buildInputs = [ automake autoconf libtool pkgconfig file zip wxGTK gtk ] + buildInputs = [ automake autoconf libtool pkgconfig file zip wxGTK gtk libX11 ] ++ optionals contribPlugins [ hunspell gamin boost ]; enableParallelBuilding = true; patches = [ ./writable-projects.patch ]; From 776c827842ac50b39205674a9e2469d42e87024e Mon Sep 17 00:00:00 2001 From: Ryan Artecona Date: Wed, 23 Mar 2016 09:13:00 -0400 Subject: [PATCH 468/678] otool: remove The `otool` binary is provided by the `cctools` package (and `binutils`) on darwin, which is properly packaged and compiled from source. This old standalone `otool` was simply a symlink to `/usr/bin/otool`, which notably depended on the user having already installed the Command Line Tools via XCode, and would fail dependent builds if they hadn't. --- pkgs/os-specific/darwin/otool/default.nix | 39 ----------------------- pkgs/top-level/all-packages.nix | 2 -- 2 files changed, 41 deletions(-) delete mode 100644 pkgs/os-specific/darwin/otool/default.nix diff --git a/pkgs/os-specific/darwin/otool/default.nix b/pkgs/os-specific/darwin/otool/default.nix deleted file mode 100644 index 671e51542d0..00000000000 --- a/pkgs/os-specific/darwin/otool/default.nix +++ /dev/null @@ -1,39 +0,0 @@ -{ stdenv }: - -assert stdenv.isDarwin; -/* this tool only exists on darwin - NOTE: it might make sense to compile this from source (maybe it even works for non-darwin) - I see cctools source is under GPL2+ as well as APSL 2.0 - http://opensource.apple.com/release/developer-tools-46/ -*/ - -stdenv.mkDerivation { - name = "otool"; - - src = "/usr/bin/otool"; - - unpackPhase = "true"; - configurePhase = "true"; - buildPhase = "true"; - - installPhase = '' - mkdir -p "$out/bin" - ln -s $src "$out/bin" - ''; - - meta = with stdenv.lib; { - description = "Object file displaying tool"; - homepage = https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man1/otool.1.html; - license = with licenses; [ apsl20 gpl2Plus ]; - maintainers = with maintainers; [ lovek323 ]; - platforms = platforms.darwin; - - longDescription = '' - The otool command displays specified parts of object files or libraries. - If the, -m option is not used, the file arguments may be of the form - libx.a(foo.o), to request information about only that object file and not - the entire library. - ''; - }; -} - diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index fa31c10745e..20a1bb31ed7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -633,8 +633,6 @@ let lastpass-cli = callPackage ../tools/security/lastpass-cli { }; - otool = callPackage ../os-specific/darwin/otool { }; - pass = callPackage ../tools/security/pass { }; oracle-instantclient = callPackage ../development/libraries/oracle-instantclient { }; From 40b396a7a41d13475720e3568199f4f56d65f03b Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 23 Mar 2016 13:28:14 +0100 Subject: [PATCH 469/678] kexectools: 2.0.11 -> 2.0.12 --- pkgs/os-specific/linux/kexectools/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kexectools/default.nix b/pkgs/os-specific/linux/kexectools/default.nix index 2199524154d..d7d79b0257d 100644 --- a/pkgs/os-specific/linux/kexectools/default.nix +++ b/pkgs/os-specific/linux/kexectools/default.nix @@ -2,14 +2,14 @@ stdenv.mkDerivation rec { name = "kexec-tools-${version}"; - version = "2.0.11"; + version = "2.0.12"; src = fetchurl { urls = [ "mirror://kernel/linux/utils/kernel/kexec/${name}.tar.xz" "http://horms.net/projects/kexec/kexec-tools/${name}.tar.xz" ]; - sha256 = "1qrfka9xvy77k0rg3k0cf7xai0f9vpgsbs4l3bs8r4nvzy37j2di"; + sha256 = "03cj7w2l5fqn72xfhl4q6z0zbziwkp9bfn0gs7gaf9i44jv6gkhl"; }; buildInputs = [ zlib ]; From 7ca1e18932d72a53c2655dca6984836a1a498338 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophane=20Hufschmitt?= Date: Tue, 8 Mar 2016 17:11:17 +0100 Subject: [PATCH 470/678] pythonPackages.green: init at 2.3.0 --- pkgs/top-level/python-packages.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 6e3cb7bd57c..7274cb519fd 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -26053,4 +26053,23 @@ in modules // { }; + green = buildPythonPackage rec { + name = "green-${version}"; + version = "2.3.0"; + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/g/green/${name}.tar.gz"; + sha256 = "1888khfl9yxb8yfxq9b48dxwplqlxx8s0l530z5j7c6bx74v08b4"; + }; + + propagatedBuildInputs = with self; [ termstyle colorama ]; + buildInputs = with self; [ mock ]; + + meta = { + description = "python test runner"; + homepage = "https://github.com/CleanCut/green"; + licence = licenses.mit; + }; + + }; + } From ea0e09b7743deeeb05936e934aa6e8a971bf6d96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophane=20Hufschmitt?= Date: Mon, 7 Mar 2016 16:33:57 +0100 Subject: [PATCH 471/678] pythonPackages.topydo: init at 0.9 --- 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 7274cb519fd..e2a14257c5a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -26069,7 +26069,30 @@ in modules // { homepage = "https://github.com/CleanCut/green"; licence = licenses.mit; }; + }; + topydo = buildPythonPackage rec { + name = "topydo-${version}"; + version = "0.9"; + disabled = (!isPy3k); + + src = pkgs.fetchFromGitHub { + owner = "bram85"; + repo = "topydo"; + rev = version; + sha256 = "0vmfr2cxn3r5zc0c4q3a94xy1r0cv177b9zrm9hkkjcmhgq42s3h"; + }; + + propagatedBuildInputs = with self; [ arrow icalendar ]; + buildInputs = with self; [ mock freezegun coverage pkgs.glibcLocales ]; + + LC_ALL="en_US.UTF-8"; + }; + + meta = { + description = "A cli todo application compatible with the todo.txt format"; + homepage = "https://github.com/bram85/topydo"; + license = license.gpl3; }; } From 27eac5313ef3ac98e88207589d5699155f66cb28 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Tue, 15 Mar 2016 15:47:39 +0100 Subject: [PATCH 472/678] gcl: fix gcc5 build Apply patch from Gentoo --- pkgs/development/compilers/gcl/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/compilers/gcl/default.nix b/pkgs/development/compilers/gcl/default.nix index 25b1599fbea..1cbae9b81f5 100644 --- a/pkgs/development/compilers/gcl/default.nix +++ b/pkgs/development/compilers/gcl/default.nix @@ -16,6 +16,11 @@ stdenv.mkDerivation rec { url = "http://gnu.spinellicreations.com/gcl/${name}.tar.gz"; }; + patches = [(fetchurl { + url = https://gitweb.gentoo.org/repo/gentoo.git/plain/dev-lisp/gcl/files/gcl-2.6.12-gcc5.patch; + sha256 = "00jbsn0qp8ki2w7dx8caha7g2hr9076xa6bg48j3qqqncff93zdh"; + })]; + buildInputs = [ mpfr m4 binutils emacs gmp libX11 xproto inputproto libXi From 9ed00ff086166b4ae7e0fe393942132da7525c75 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Wed, 23 Mar 2016 15:07:05 +0100 Subject: [PATCH 473/678] gcl: gcc5 build: enforce old inline semantics for now; will be fixed in the next upstream release --- pkgs/development/compilers/gcl/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/compilers/gcl/default.nix b/pkgs/development/compilers/gcl/default.nix index 1cbae9b81f5..cf5b862646e 100644 --- a/pkgs/development/compilers/gcl/default.nix +++ b/pkgs/development/compilers/gcl/default.nix @@ -43,6 +43,8 @@ stdenv.mkDerivation rec { # sed -re "s@/bin/cat@$(which cat)@g" -i configure */configure # sed -re "s@if test -d /proc/self @if false @" -i configure # sed -re 's^([ \t])cpp ^\1cpp -I${stdenv.cc.cc}/include -I${stdenv.cc.libc}/include ^g' -i makefile + + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -fgnu89-inline" ''; /* doConfigure should be removed if not needed */ From a4d5f496035ccc68dd74ccb6a49d8f6f0a83efbc Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Wed, 23 Mar 2016 15:18:03 +0100 Subject: [PATCH 474/678] tweak: init at 3.20 --- pkgs/applications/editors/tweak/default.nix | 21 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 23 insertions(+) create mode 100644 pkgs/applications/editors/tweak/default.nix diff --git a/pkgs/applications/editors/tweak/default.nix b/pkgs/applications/editors/tweak/default.nix new file mode 100644 index 00000000000..5ebe4672cab --- /dev/null +++ b/pkgs/applications/editors/tweak/default.nix @@ -0,0 +1,21 @@ +{ stdenv, fetchurl, ncurses }: + +stdenv.mkDerivation rec { + name = "tweak-${version}"; + version = "3.02"; + + src = fetchurl { + url = "http://www.chiark.greenend.org.uk/~sgtatham/tweak/${name}.tar.gz"; + sha256 = "06js54pr5hwpwyxj77zs5s40n5aqvaw48dkj7rid2d47pyqijk2v"; + }; + + buildInputs = [ ncurses ]; + preBuild = "substituteInPlace Makefile --replace '$(DESTDIR)/usr/local' $out"; + + meta = with stdenv.lib; { + description = "An efficient hex editor"; + homepage = "http://www.chiark.greenend.org.uk/~sgtatham/tweak"; + license = licenses.mit; + platform = platforms.unix; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index fa31c10745e..3d3f009e294 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6335,6 +6335,8 @@ let texi2html = callPackage ../development/tools/misc/texi2html { }; + tweak = callPackage ../applications/editors/tweak { }; + uhd = callPackage ../development/tools/misc/uhd { }; uisp = callPackage ../development/tools/misc/uisp { }; From aba56e7f595c10d62f7b280f18699f0ba2828876 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Wed, 23 Mar 2016 09:17:22 -0500 Subject: [PATCH 475/678] vacuum: port to mkDerivation, add zlib for hydra failure --- .../instant-messengers/vacuum/default.nix | 66 ++++++------------- 1 file changed, 20 insertions(+), 46 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/vacuum/default.nix b/pkgs/applications/networking/instant-messengers/vacuum/default.nix index 205c21adab4..d7798273e7c 100644 --- a/pkgs/applications/networking/instant-messengers/vacuum/default.nix +++ b/pkgs/applications/networking/instant-messengers/vacuum/default.nix @@ -1,56 +1,30 @@ -x@{builderDefsPackage +{ stdenv, lib, fetchurl , qt4, openssl , xproto, libX11, libXScrnSaver, scrnsaverproto - , xz - , ...}: -builderDefsPackage -(a : -let - helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++ - []; + , xz, zlib +}: +stdenv.mkDerivation rec { + name = "vacuum-im-${version}"; + version = "1.2.4"; - buildInputs = map (n: builtins.getAttr n x) - (builtins.attrNames (builtins.removeAttrs x helperArgNames)); - sourceInfo = rec { - version="1.2.4"; - baseName="vacuum-im"; - name="${baseName}-${version}"; - url="https://googledrive.com/host/0B7A5K_290X8-d1hjQmJaSGZmTTA/vacuum-1.2.4.tar.gz"; - sha256="10qxpfbbaagqcalhk0nagvi5irbbz5hk31w19lba8hxf6pfylrhf"; - }; -in -rec { - src = a.fetchurl { - url = sourceInfo.url; - sha256 = sourceInfo.sha256; + src = fetchurl { + url = "https://googledrive.com/host/0B7A5K_290X8-d1hjQmJaSGZmTTA/vacuum-${version}.tar.gz"; + sha256 = "10qxpfbbaagqcalhk0nagvi5irbbz5hk31w19lba8hxf6pfylrhf"; }; - inherit (sourceInfo) name version; - inherit buildInputs; + buildInputs = [ + qt4 openssl xproto libX11 libXScrnSaver scrnsaverproto xz zlib + ]; - /* doConfigure should be removed if not needed */ - phaseNames = ["addInputs" "doQMake" "doMakeInstall"]; - - doQMake = a.fullDepEntry ('' + configurePhase = '' qmake INSTALL_PREFIX=$out -recursive vacuum.pro - '') ["doUnpack" "addInputs"]; - - meta = { + ''; + + meta = with stdenv.lib; { description = "An XMPP client fully composed of plugins"; - maintainers = with a.lib.maintainers; - [ - raskin - ]; - platforms = with a.lib.platforms; - linux; - license = with a.lib.licenses; - gpl3; + maintainers = [ maintainers.raskin ]; + platforms = platforms.linux; + license = licenses.gpl3; homepage = "http://code.google.com/p/vacuum-im/"; }; - passthru = { - updateInfo = { - downloadPage = "http://code.google.com/p/vacuum-im/downloads/list?can=2&q=&colspec=Filename"; - }; - }; -}) x - +} From 61fc93b4327d774661148ac7e0117fa84fea7b8f Mon Sep 17 00:00:00 2001 From: Arseniy Seroka Date: Wed, 23 Mar 2016 19:22:35 +0300 Subject: [PATCH 476/678] telegram-purple: init at 2016-03-17 --- .../telegram-purple/default.nix | 38 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/applications/networking/instant-messengers/pidgin-plugins/telegram-purple/default.nix diff --git a/pkgs/applications/networking/instant-messengers/pidgin-plugins/telegram-purple/default.nix b/pkgs/applications/networking/instant-messengers/pidgin-plugins/telegram-purple/default.nix new file mode 100644 index 00000000000..b04673a5d6a --- /dev/null +++ b/pkgs/applications/networking/instant-messengers/pidgin-plugins/telegram-purple/default.nix @@ -0,0 +1,38 @@ +{ stdenv, fetchgit, pkgconfig, pidgin, libwebp, libgcrypt, gettext } : + +let + version = "2016-03-17"; +in +stdenv.mkDerivation rec { + name = "telegram-purple-${version}"; + + src = fetchgit { + url = "https://github.com/majn/telegram-purple"; + rev = "ee2a6fb740fe9580336e4af9a153b845bc715927"; + sha256 = "10y99rclxbpbmmyiapn4vk1d7yjwmg7v1wb4jlz678qkvcni3nv7"; + }; + + nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ pidgin libwebp libgcrypt gettext ]; + + preConfigure = '' + sed -i "s|/etc/telegram-purple/server.tglpub|$out/lib/pidgin/server.tglpub|g" telegram-purple.c + ''; + + installPhase = '' + mkdir -p $out/lib/pidgin/ + cp bin/*.so $out/lib/pidgin/ + cp tg-server.tglpub $out/lib/pidgin/server.tglpub + mkdir -p $out/pixmaps/pidgin/protocols/{16,22,48} + cp imgs/telegram16.png $out/pixmaps/pidgin/protocols/16 + cp imgs/telegram22.png $out/pixmaps/pidgin/protocols/22 + cp imgs/telegram48.png $out/pixmaps/pidgin/protocols/48 + ''; + + meta = { + homepage = https://github.com/majn/telegram-purple; + description = "Telegram for Pidgin / libpurple"; + license = stdenv.lib.licenses.gpl2; + maintainers = stdenv.lib.maintainers.jagajaga; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3d3f009e294..7c868f631db 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13445,6 +13445,8 @@ let purple-vk-plugin = callPackage ../applications/networking/instant-messengers/pidgin-plugins/purple-vk-plugin { }; + telegram-purple = callPackage ../applications/networking/instant-messengers/pidgin-plugins/telegram-purple { }; + toxprpl = callPackage ../applications/networking/instant-messengers/pidgin-plugins/tox-prpl { }; pidgin-opensteamworks = callPackage ../applications/networking/instant-messengers/pidgin-plugins/pidgin-opensteamworks { }; From 7fc24dfd21e39a61faff949fcb73170d80dc09df Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 23 Mar 2016 18:11:42 +0100 Subject: [PATCH 477/678] stdenv-darwin: Fix dependency on bootstrapTools Commit 2040a9ac574fffd36fe20130897ccec2d5928827 changed the order of $PATH elements, causing initialpath to appear after buildInputs. Thus gnugrep ended up depending on bin/sh from bootstrapTools, rather than from pkgs.bash. The fix is to provide pkgs.bash via buildInputs rather than initialPath. http://hydra.nixos.org/build/33276697 --- pkgs/stdenv/darwin/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/stdenv/darwin/default.nix b/pkgs/stdenv/darwin/default.nix index fa6bb55009d..e73e3969253 100644 --- a/pkgs/stdenv/darwin/default.nix +++ b/pkgs/stdenv/darwin/default.nix @@ -55,8 +55,7 @@ in rec { stageFun = step: last: {shell ? "${bootstrapTools}/bin/sh", overrides ? (pkgs: {}), extraPreHook ? "", - extraBuildInputs ? with last.pkgs; [ xz darwin.CF libcxx ], - extraInitialPath ? [], + extraBuildInputs, allowedRequisites ? null}: let thisStdenv = import ../generic { @@ -85,7 +84,7 @@ in rec { ${commonPreHook} ${extraPreHook} ''; - initialPath = extraInitialPath ++ [ bootstrapTools ]; + initialPath = [ bootstrapTools ]; fetchurlBoot = import ../../build-support/fetchurl { stdenv = stage0.stdenv; curl = bootstrapTools; @@ -174,6 +173,8 @@ in rec { export PATH_LOCALE=${pkgs.darwin.locale}/share/locale ''; + extraBuildInputs = with pkgs; [ xz darwin.CF libcxx ]; + allowedRequisites = [ bootstrapTools ] ++ (with pkgs; [ xz libcxx libcxxabi icu ]) ++ @@ -203,9 +204,10 @@ in rec { # enables patchShebangs above. Unfortunately, patchShebangs ignores our $SHELL setting # and instead goes by $PATH, which happens to contain bootstrapTools. So it goes and # patches our shebangs back to point at bootstrapTools. This makes sure bash comes first. - extraInitialPath = [ pkgs.bash ]; + extraBuildInputs = with pkgs; [ xz darwin.CF libcxx pkgs.bash ]; extraPreHook = '' + export PATH=${pkgs.bash}/bin:$PATH export PATH_LOCALE=${pkgs.darwin.locale}/share/locale ''; @@ -236,7 +238,7 @@ in rec { stage4 = with stage3; stageFun 4 stage3 { shell = "${pkgs.bash}/bin/bash"; - extraInitialPath = [ pkgs.bash ]; + extraBuildInputs = with pkgs; [ xz darwin.CF libcxx pkgs.bash ]; extraPreHook = '' export PATH_LOCALE=${pkgs.darwin.locale}/share/locale ''; From 1e5d6e584d88b3ff7ceb64affb6fb8de45a97ede Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 22 Mar 2016 13:00:11 +0100 Subject: [PATCH 478/678] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20160308-3-g8057d11 using the following inputs: - Nixpkgs: https://github.com/NixOS/nixpkgs/commit/9da84a6af0c25e599de1ce80da223cb1176eb37e - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/1e26fd18769cf4f943d4d92f659668b32cbfc85c - LTS Haskell: https://github.com/fpco/lts-haskell/commit/6c45757bda6547fb7bb847982c4b50b41bc31c07 - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/d8a2cae77932579034f28ce11e4bfed4db1aa65a --- .../haskell-modules/configuration-lts-0.0.nix | 12 + .../haskell-modules/configuration-lts-0.1.nix | 12 + .../haskell-modules/configuration-lts-0.2.nix | 12 + .../haskell-modules/configuration-lts-0.3.nix | 12 + .../haskell-modules/configuration-lts-0.4.nix | 12 + .../haskell-modules/configuration-lts-0.5.nix | 12 + .../haskell-modules/configuration-lts-0.6.nix | 12 + .../haskell-modules/configuration-lts-0.7.nix | 12 + .../haskell-modules/configuration-lts-1.0.nix | 12 + .../haskell-modules/configuration-lts-1.1.nix | 12 + .../configuration-lts-1.10.nix | 12 + .../configuration-lts-1.11.nix | 12 + .../configuration-lts-1.12.nix | 12 + .../configuration-lts-1.13.nix | 12 + .../configuration-lts-1.14.nix | 13 + .../configuration-lts-1.15.nix | 13 + .../haskell-modules/configuration-lts-1.2.nix | 12 + .../haskell-modules/configuration-lts-1.4.nix | 12 + .../haskell-modules/configuration-lts-1.5.nix | 12 + .../haskell-modules/configuration-lts-1.7.nix | 12 + .../haskell-modules/configuration-lts-1.8.nix | 12 + .../haskell-modules/configuration-lts-1.9.nix | 12 + .../haskell-modules/configuration-lts-2.0.nix | 13 + .../haskell-modules/configuration-lts-2.1.nix | 13 + .../configuration-lts-2.10.nix | 15 + .../configuration-lts-2.11.nix | 15 + .../configuration-lts-2.12.nix | 15 + .../configuration-lts-2.13.nix | 15 + .../configuration-lts-2.14.nix | 15 + .../configuration-lts-2.15.nix | 15 + .../configuration-lts-2.16.nix | 15 + .../configuration-lts-2.17.nix | 15 + .../configuration-lts-2.18.nix | 15 + .../configuration-lts-2.19.nix | 15 + .../haskell-modules/configuration-lts-2.2.nix | 13 + .../configuration-lts-2.20.nix | 15 + .../configuration-lts-2.21.nix | 15 + .../configuration-lts-2.22.nix | 16 + .../haskell-modules/configuration-lts-2.3.nix | 13 + .../haskell-modules/configuration-lts-2.4.nix | 14 + .../haskell-modules/configuration-lts-2.5.nix | 14 + .../haskell-modules/configuration-lts-2.6.nix | 14 + .../haskell-modules/configuration-lts-2.7.nix | 15 + .../haskell-modules/configuration-lts-2.8.nix | 15 + .../haskell-modules/configuration-lts-2.9.nix | 15 + .../haskell-modules/configuration-lts-3.0.nix | 18 + .../haskell-modules/configuration-lts-3.1.nix | 18 + .../configuration-lts-3.10.nix | 18 + .../configuration-lts-3.11.nix | 18 + .../configuration-lts-3.12.nix | 18 + .../configuration-lts-3.13.nix | 18 + .../configuration-lts-3.14.nix | 18 + .../configuration-lts-3.15.nix | 18 + .../configuration-lts-3.16.nix | 18 + .../configuration-lts-3.17.nix | 18 + .../configuration-lts-3.18.nix | 21 + .../configuration-lts-3.19.nix | 21 + .../haskell-modules/configuration-lts-3.2.nix | 18 + .../configuration-lts-3.20.nix | 21 + .../configuration-lts-3.21.nix | 22 + .../configuration-lts-3.22.nix | 22 + .../haskell-modules/configuration-lts-3.3.nix | 18 + .../haskell-modules/configuration-lts-3.4.nix | 18 + .../haskell-modules/configuration-lts-3.5.nix | 18 + .../haskell-modules/configuration-lts-3.6.nix | 18 + .../haskell-modules/configuration-lts-3.7.nix | 18 + .../haskell-modules/configuration-lts-3.8.nix | 18 + .../haskell-modules/configuration-lts-3.9.nix | 18 + .../haskell-modules/configuration-lts-4.0.nix | 90 + .../haskell-modules/configuration-lts-4.1.nix | 90 + .../haskell-modules/configuration-lts-4.2.nix | 92 + .../haskell-modules/configuration-lts-5.0.nix | 94 + .../haskell-modules/configuration-lts-5.1.nix | 95 + .../haskell-modules/configuration-lts-5.2.nix | 95 + .../haskell-modules/configuration-lts-5.3.nix | 98 + .../haskell-modules/configuration-lts-5.4.nix | 99 + .../haskell-modules/configuration-lts-5.5.nix | 99 + .../haskell-modules/configuration-lts-5.6.nix | 99 + .../haskell-modules/configuration-lts-5.7.nix | 100 + .../haskell-modules/configuration-lts-5.8.nix | 100 + .../haskell-modules/configuration-lts-5.9.nix | 7904 +++++++++++++++++ .../haskell-modules/hackage-packages.nix | 2549 +++++- 82 files changed, 12389 insertions(+), 247 deletions(-) create mode 100644 pkgs/development/haskell-modules/configuration-lts-5.9.nix diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index 961115b9ac7..c9da1311f70 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -1261,6 +1261,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1268,6 +1269,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1279,10 +1281,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1291,6 +1295,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1302,6 +1307,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -2423,8 +2429,10 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2654,6 +2662,7 @@ self: super: { "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"; @@ -3459,6 +3468,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_0_3"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -6873,6 +6883,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8566,6 +8577,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index b429e6ac01c..d89ef60d7b0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -1261,6 +1261,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1268,6 +1269,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1279,10 +1281,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1291,6 +1295,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1302,6 +1307,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -2423,8 +2429,10 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2654,6 +2662,7 @@ self: super: { "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"; @@ -3459,6 +3468,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_0_3"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -6873,6 +6883,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8566,6 +8577,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index fc8cd6d2d4d..cad9603a921 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -1261,6 +1261,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1268,6 +1269,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1279,10 +1281,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1291,6 +1295,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1302,6 +1307,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -2423,8 +2429,10 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2654,6 +2662,7 @@ self: super: { "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"; @@ -3459,6 +3468,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_0_3"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -6873,6 +6883,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8566,6 +8577,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index 9b92aa8f595..b89f8824820 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -1261,6 +1261,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1268,6 +1269,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1279,10 +1281,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1291,6 +1295,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1302,6 +1307,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -2423,8 +2429,10 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2654,6 +2662,7 @@ self: super: { "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"; @@ -3459,6 +3468,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_0_3"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -6873,6 +6883,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8566,6 +8577,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index db78ab232e6..be8230c08b4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -1261,6 +1261,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1268,6 +1269,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1279,10 +1281,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1291,6 +1295,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1302,6 +1307,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -2423,8 +2429,10 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2653,6 +2661,7 @@ self: super: { "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"; @@ -3458,6 +3467,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_0_4"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -6870,6 +6880,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8562,6 +8573,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 532add4cd02..bc551fd25eb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -1261,6 +1261,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1268,6 +1269,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1279,10 +1281,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1291,6 +1295,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1302,6 +1307,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -2423,8 +2429,10 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2653,6 +2661,7 @@ self: super: { "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"; @@ -3458,6 +3467,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_0_4"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -6870,6 +6880,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8562,6 +8573,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 0610fec8d09..b02eb0fcf77 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -1260,6 +1260,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1267,6 +1268,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1278,10 +1280,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1290,6 +1294,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1301,6 +1306,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -2422,8 +2428,10 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2652,6 +2660,7 @@ self: super: { "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"; @@ -3457,6 +3466,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_0_4"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -6868,6 +6878,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8559,6 +8570,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index 9568063360a..597b2a1b016 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -1260,6 +1260,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1267,6 +1268,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1278,10 +1280,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1290,6 +1294,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1301,6 +1306,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -2422,8 +2428,10 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2652,6 +2660,7 @@ self: super: { "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"; @@ -3457,6 +3466,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_0_4"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -6868,6 +6878,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8559,6 +8570,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index af09d2ebb12..b1eb20a0c0c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -1257,6 +1257,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1264,6 +1265,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1275,10 +1277,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1287,6 +1291,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1298,6 +1303,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -2415,8 +2421,10 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2645,6 +2653,7 @@ self: super: { "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"; @@ -3449,6 +3458,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_0_4"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -6859,6 +6869,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8547,6 +8558,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index 971e8ec125b..8e90ce43394 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -1257,6 +1257,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1264,6 +1265,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1275,10 +1277,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1287,6 +1291,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1298,6 +1303,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -2413,8 +2419,10 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2643,6 +2651,7 @@ self: super: { "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"; @@ -3446,6 +3455,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -6852,6 +6862,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8535,6 +8546,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 9ff44166cf6..d9792486944 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -1256,6 +1256,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1263,6 +1264,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1274,10 +1276,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1286,6 +1290,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1297,6 +1302,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -2409,8 +2415,10 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2639,6 +2647,7 @@ self: super: { "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"; @@ -3438,6 +3447,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -6832,6 +6842,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8508,6 +8519,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index 9daa2e0d88f..13f9773ae78 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -1256,6 +1256,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1263,6 +1264,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1274,10 +1276,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1286,6 +1290,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1297,6 +1302,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -2409,8 +2415,10 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2639,6 +2647,7 @@ self: super: { "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"; @@ -3437,6 +3446,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -6828,6 +6838,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8504,6 +8515,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index b64f6435917..5a83f25146e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -1256,6 +1256,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1263,6 +1264,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1274,10 +1276,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1286,6 +1290,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1297,6 +1302,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -2409,8 +2415,10 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2639,6 +2647,7 @@ self: super: { "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"; @@ -3437,6 +3446,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -6827,6 +6837,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8502,6 +8513,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 74c45de31d8..43400835689 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -1256,6 +1256,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1263,6 +1264,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1274,10 +1276,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1286,6 +1290,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1297,6 +1302,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -2409,8 +2415,10 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2639,6 +2647,7 @@ self: super: { "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"; @@ -3437,6 +3446,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -6826,6 +6836,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8500,6 +8511,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 86e17e82e5a..25257b8dc39 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -1255,6 +1255,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1262,6 +1263,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1273,10 +1275,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1285,6 +1289,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1296,6 +1301,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -2406,8 +2412,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2636,6 +2644,7 @@ self: super: { "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"; @@ -3434,6 +3443,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_1"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -5173,6 +5183,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -6821,6 +6832,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8494,6 +8506,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index 9f43f3360b1..cf5543200ca 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -1254,6 +1254,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1261,6 +1262,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1272,10 +1274,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1284,6 +1288,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1295,6 +1300,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -2404,8 +2410,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2633,6 +2641,7 @@ self: super: { "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"; @@ -3430,6 +3439,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -5169,6 +5179,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -6815,6 +6826,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8485,6 +8497,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index dde44a825b6..6a8b3174699 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -1257,6 +1257,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1264,6 +1265,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1275,10 +1277,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1287,6 +1291,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1298,6 +1303,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -2411,8 +2417,10 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2641,6 +2649,7 @@ self: super: { "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"; @@ -3444,6 +3453,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -6848,6 +6858,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8529,6 +8540,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index cfcc24d57f4..49544f96644 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -1256,6 +1256,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1263,6 +1264,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1274,10 +1276,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1286,6 +1290,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1297,6 +1302,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -2410,8 +2416,10 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2640,6 +2648,7 @@ self: super: { "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"; @@ -3442,6 +3451,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -6844,6 +6854,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8524,6 +8535,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index e41aa563323..ef3ff854fb7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -1256,6 +1256,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1263,6 +1264,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1274,10 +1276,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1286,6 +1290,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1297,6 +1302,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -2409,8 +2415,10 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2639,6 +2647,7 @@ self: super: { "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"; @@ -3441,6 +3450,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -6843,6 +6853,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8522,6 +8533,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index 3fa8844fc05..72e1bc84717 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -1256,6 +1256,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1263,6 +1264,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1274,10 +1276,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1286,6 +1290,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1297,6 +1302,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -2409,8 +2415,10 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2639,6 +2647,7 @@ self: super: { "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"; @@ -3441,6 +3450,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -6838,6 +6848,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8517,6 +8528,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index 9851a0e9978..097804f2e5b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -1256,6 +1256,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1263,6 +1264,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1274,10 +1276,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1286,6 +1290,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1297,6 +1302,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -2409,8 +2415,10 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2639,6 +2647,7 @@ self: super: { "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"; @@ -3439,6 +3448,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -6834,6 +6844,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8512,6 +8523,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index 7fb9b211bd6..d7c625d14a9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -1256,6 +1256,7 @@ self: super: { "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; "amazonka-cloudhsm" = dontDistribute super."amazonka-cloudhsm"; @@ -1263,6 +1264,7 @@ self: super: { "amazonka-cloudsearch-domains" = dontDistribute super."amazonka-cloudsearch-domains"; "amazonka-cloudtrail" = dontDistribute super."amazonka-cloudtrail"; "amazonka-cloudwatch" = dontDistribute super."amazonka-cloudwatch"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = dontDistribute super."amazonka-cloudwatch-logs"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; @@ -1274,10 +1276,12 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = dontDistribute super."amazonka-ec2"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = dontDistribute super."amazonka-ecs"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; @@ -1286,6 +1290,7 @@ self: super: { "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; @@ -1297,6 +1302,7 @@ self: super: { "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -2409,8 +2415,10 @@ self: super: { "crypto-random" = doDistribute super."crypto-random_0_0_8"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2639,6 +2647,7 @@ self: super: { "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"; @@ -3438,6 +3447,7 @@ self: super: { "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -6833,6 +6843,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8511,6 +8522,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index 59d84aac27f..2b90f02d5ce 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -1248,6 +1248,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_3_1"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_3"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_3"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_3"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_3"; @@ -1255,6 +1256,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_3"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_3"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_3"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_3"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_3"; @@ -1266,10 +1268,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_3"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_3"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_3"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_3"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_3"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_3"; @@ -1278,6 +1282,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_3"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_3"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_3"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_3"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_3"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_3"; @@ -1289,6 +1294,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_3"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_3"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_3"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_3"; @@ -2391,8 +2397,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_1"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2620,6 +2628,7 @@ self: super: { "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"; @@ -3415,6 +3424,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_0"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -5142,6 +5152,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -6770,6 +6781,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8432,6 +8444,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index d7343eeb751..e77c10ab6d5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -1248,6 +1248,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_3_1"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_3"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_3"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_3"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_3"; @@ -1255,6 +1256,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_3"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_3"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_3"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_3"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_3"; @@ -1266,10 +1268,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_3"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_3"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_3"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_3"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_3"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_3"; @@ -1278,6 +1282,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_3"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_3"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_3"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_3"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_3"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_3"; @@ -1289,6 +1294,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_3"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_3"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_3"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_3"; @@ -2390,8 +2396,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_1"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2619,6 +2627,7 @@ self: super: { "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"; @@ -3414,6 +3423,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_0"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -5141,6 +5151,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -6769,6 +6780,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8431,6 +8443,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index 3b92642e2fe..f6a24a76554 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -1243,6 +1243,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_4"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_4"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_4"; @@ -1250,6 +1251,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_4"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_4"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_4"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_4"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; @@ -1261,10 +1263,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_4"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_4"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_4"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_4"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_4"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_4"; @@ -1273,6 +1277,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_4"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_4"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_4"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_4"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_4"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; @@ -1284,6 +1289,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_4"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_4"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_4"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_4"; @@ -2378,8 +2384,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2606,6 +2614,7 @@ self: super: { "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"; @@ -3397,6 +3406,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_2"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -5117,6 +5127,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5622,6 +5633,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -6043,6 +6055,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6736,6 +6749,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8385,6 +8399,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index ef206543d6d..2a007512714 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -1242,6 +1242,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_4"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_4"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_4"; @@ -1249,6 +1250,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_4"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_4"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_4"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_4"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; @@ -1260,10 +1262,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_4"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_4"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_4"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_4"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_4"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_4"; @@ -1272,6 +1276,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_4"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_4"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_4"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_4"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_4"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; @@ -1283,6 +1288,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_4"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_4"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_4"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_4"; @@ -2377,8 +2383,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2605,6 +2613,7 @@ self: super: { "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"; @@ -3396,6 +3405,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_2"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -5113,6 +5123,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "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 +5629,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -6038,6 +6050,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6730,6 +6743,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8376,6 +8390,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index ec3792fe4df..3394d5ef7dc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -1242,6 +1242,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_4"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_4"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_4"; @@ -1249,6 +1250,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_4"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_4"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_4"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_4"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; @@ -1260,10 +1262,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_4"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_4"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_4"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_4"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_4"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_4"; @@ -1272,6 +1276,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_4"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_4"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_4"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_4"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_4"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; @@ -1283,6 +1288,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_4"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_4"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_4"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_4"; @@ -2377,8 +2383,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2605,6 +2613,7 @@ self: super: { "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"; @@ -3396,6 +3405,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_2"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -5113,6 +5123,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "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 +5629,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -6038,6 +6050,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6730,6 +6743,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8375,6 +8389,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index a8851a733ba..ae17d545047 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -1242,6 +1242,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1249,6 +1250,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1260,10 +1262,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1272,6 +1276,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1283,6 +1288,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2377,8 +2383,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2605,6 +2613,7 @@ self: super: { "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"; @@ -3396,6 +3405,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_2"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -5111,6 +5121,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "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 +5627,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -6036,6 +6048,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6728,6 +6741,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8373,6 +8387,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index 191eef3e922..6b385fddc20 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -1241,6 +1241,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1248,6 +1249,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1259,10 +1261,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1271,6 +1275,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1282,6 +1287,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2376,8 +2382,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2604,6 +2612,7 @@ self: super: { "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"; @@ -3394,6 +3403,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_2"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -5108,6 +5118,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5613,6 +5624,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -6033,6 +6045,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6725,6 +6738,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8369,6 +8383,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index d324d6ca8e2..9741068da6a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -1241,6 +1241,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1248,6 +1249,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1259,10 +1261,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1271,6 +1275,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1282,6 +1287,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2376,8 +2382,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2604,6 +2612,7 @@ self: super: { "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"; @@ -3393,6 +3402,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_2"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -5107,6 +5117,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5612,6 +5623,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -6031,6 +6043,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6723,6 +6736,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8366,6 +8380,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index c3def68d85a..bd4d9405987 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -1241,6 +1241,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1248,6 +1249,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1259,10 +1261,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1271,6 +1275,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1282,6 +1287,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2374,8 +2380,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2602,6 +2610,7 @@ self: super: { "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"; @@ -3389,6 +3398,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_2"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -5103,6 +5113,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5607,6 +5618,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -6026,6 +6038,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6718,6 +6731,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8361,6 +8375,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index cf6510c45c4..c0c87abdd24 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -1241,6 +1241,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1248,6 +1249,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1259,10 +1261,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1271,6 +1275,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1282,6 +1287,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2372,8 +2378,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2600,6 +2608,7 @@ self: super: { "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"; @@ -3385,6 +3394,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -5099,6 +5109,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5603,6 +5614,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -6022,6 +6034,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6713,6 +6726,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8356,6 +8370,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index a8293634e83..49efa4f5029 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -1241,6 +1241,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1248,6 +1249,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1259,10 +1261,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1271,6 +1275,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1282,6 +1287,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2371,8 +2377,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2599,6 +2607,7 @@ self: super: { "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"; @@ -3383,6 +3392,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -5097,6 +5107,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5601,6 +5612,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -6019,6 +6031,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6710,6 +6723,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8352,6 +8366,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index 13e4fa4f5d2..cb52dff2a14 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -1241,6 +1241,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1248,6 +1249,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1259,10 +1261,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1271,6 +1275,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1282,6 +1287,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2371,8 +2377,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2599,6 +2607,7 @@ self: super: { "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"; @@ -3382,6 +3391,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -5096,6 +5106,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5599,6 +5610,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -6017,6 +6029,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6708,6 +6721,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8349,6 +8363,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index d524e2e2a43..dc237483868 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -1247,6 +1247,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_3_1"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_3"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_3"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_3"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_3"; @@ -1254,6 +1255,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_3"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_3"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_3"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_3"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_3"; @@ -1265,10 +1267,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_3"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_3"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_3"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_3"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_3"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_3"; @@ -1277,6 +1281,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_3"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_3"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_3"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_3"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_3"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_3"; @@ -1288,6 +1293,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_3"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_3"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_3"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_3"; @@ -2387,8 +2393,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_1"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2616,6 +2624,7 @@ self: super: { "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"; @@ -3411,6 +3420,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_0"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -5138,6 +5148,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -6766,6 +6777,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8428,6 +8440,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index 8ddde714521..d47bba0680b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -1241,6 +1241,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1248,6 +1249,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1259,10 +1261,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1271,6 +1275,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1282,6 +1287,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2370,8 +2376,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2598,6 +2606,7 @@ self: super: { "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"; @@ -3381,6 +3390,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -5095,6 +5105,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5598,6 +5609,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -6016,6 +6028,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6706,6 +6719,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8346,6 +8360,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index 4ff92862a67..89cef688391 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -1241,6 +1241,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1248,6 +1249,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1259,10 +1261,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1271,6 +1275,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1282,6 +1287,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2370,8 +2376,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2598,6 +2606,7 @@ self: super: { "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"; @@ -3381,6 +3390,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -5095,6 +5105,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5598,6 +5609,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -6016,6 +6028,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6705,6 +6718,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8345,6 +8359,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index b8064f7ebc7..0aefafc1ffd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -1241,6 +1241,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1248,6 +1249,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1259,10 +1261,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1271,6 +1275,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1282,6 +1287,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2370,8 +2376,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2598,6 +2606,7 @@ self: super: { "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"; @@ -3381,6 +3390,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -5094,6 +5104,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5597,6 +5608,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5707,6 +5719,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -6014,6 +6027,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6703,6 +6717,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8343,6 +8358,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index 1a95699c9a3..6220c374bfb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -1247,6 +1247,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_3_1"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_3"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_3"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_3"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_3"; @@ -1254,6 +1255,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_3"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_3"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_3"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_3"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_3"; @@ -1265,10 +1267,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_3"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_3"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_3"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_3"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_3"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_3"; @@ -1277,6 +1281,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_3"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_3"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_3"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_3"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_3"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_3"; @@ -1288,6 +1293,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_3"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_3"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_3"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_3"; @@ -2387,8 +2393,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2616,6 +2624,7 @@ self: super: { "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"; @@ -3410,6 +3419,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_0"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -5136,6 +5146,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -6764,6 +6775,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8426,6 +8438,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index af966d99b80..5c73d66545d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -1247,6 +1247,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_4"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_4"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_4"; @@ -1254,6 +1255,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_4"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_4"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_4"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_4"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; @@ -1265,10 +1267,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_4"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_4"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_4"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_4"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_4"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_4"; @@ -1277,6 +1281,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_4"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_4"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_4"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_4"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_4"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; @@ -1288,6 +1293,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_4"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_4"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_4"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_4"; @@ -2386,8 +2392,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2615,6 +2623,7 @@ self: super: { "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"; @@ -3409,6 +3418,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_0"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -5135,6 +5145,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5644,6 +5655,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -6761,6 +6773,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8422,6 +8435,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index 0e26411d135..72e7b32ca88 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -1247,6 +1247,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_4"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_4"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_4"; @@ -1254,6 +1255,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_4"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_4"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_4"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_4"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; @@ -1265,10 +1267,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_4"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_4"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_4"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_4"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_4"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_4"; @@ -1277,6 +1281,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_4"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_4"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_4"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_4"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_4"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; @@ -1288,6 +1293,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_4"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_4"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_4"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_4"; @@ -2385,8 +2391,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2614,6 +2622,7 @@ self: super: { "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"; @@ -3408,6 +3417,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_0"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -5134,6 +5144,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "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 +5654,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -6760,6 +6772,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8421,6 +8434,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index f90d3caf5b0..0918e62bfe4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -1245,6 +1245,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_4"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_4"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_4"; @@ -1252,6 +1253,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_4"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_4"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_4"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_4"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; @@ -1263,10 +1265,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_4"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_4"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_4"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_4"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_4"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_4"; @@ -1275,6 +1279,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_4"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_4"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_4"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_4"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_4"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; @@ -1286,6 +1291,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_4"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_4"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_4"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_4"; @@ -2382,8 +2388,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2611,6 +2619,7 @@ self: super: { "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"; @@ -3405,6 +3414,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_0"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -5129,6 +5139,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5638,6 +5649,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -6754,6 +6766,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8413,6 +8426,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index c2512dd8289..034e5683da8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -1244,6 +1244,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_4"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_4"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_4"; @@ -1251,6 +1252,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_4"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_4"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_4"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_4"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; @@ -1262,10 +1264,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_4"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_4"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_4"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_4"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_4"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_4"; @@ -1274,6 +1278,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_4"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_4"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_4"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_4"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_4"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; @@ -1285,6 +1290,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_4"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_4"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_4"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_4"; @@ -2381,8 +2387,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2610,6 +2618,7 @@ self: super: { "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"; @@ -3404,6 +3413,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_0"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -5128,6 +5138,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5637,6 +5648,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -6058,6 +6070,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6753,6 +6766,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8412,6 +8426,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index 2625754e479..305c04fb3c5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -1243,6 +1243,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_4"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_4"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_4"; @@ -1250,6 +1251,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_4"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_4"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_4"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_4"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; @@ -1261,10 +1263,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_4"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_4"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_4"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_4"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_4"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_4"; @@ -1273,6 +1277,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_4"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_4"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_4"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_4"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_4"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; @@ -1284,6 +1289,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_4"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_4"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_4"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_4"; @@ -2380,8 +2386,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2609,6 +2617,7 @@ self: super: { "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"; @@ -3402,6 +3411,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_0"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -5126,6 +5136,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "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 +5646,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -6056,6 +6068,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6751,6 +6764,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8406,6 +8420,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index dddccaa020d..08dd4690cd5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -1243,6 +1243,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_4"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_4"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_4"; @@ -1250,6 +1251,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_4"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_4"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_4"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_4"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; @@ -1261,10 +1263,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_4"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_4"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_4"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_4"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_4"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_4"; @@ -1273,6 +1277,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_4"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_4"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_4"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_4"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_4"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; @@ -1284,6 +1289,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_4"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_4"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_4"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_4"; @@ -2378,8 +2384,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2607,6 +2615,7 @@ self: super: { "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"; @@ -3398,6 +3407,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_0"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -5120,6 +5130,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "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 +5638,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -6048,6 +6060,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_1"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6742,6 +6755,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = dontDistribute super."purescript"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -8393,6 +8407,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index 0330afe8b60..cecacc26564 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -1218,6 +1218,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1225,6 +1226,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1236,10 +1238,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1248,6 +1252,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1259,6 +1264,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2312,8 +2318,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2537,6 +2545,7 @@ self: super: { "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"; @@ -3297,6 +3306,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -4958,6 +4968,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; @@ -4977,6 +4988,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5458,6 +5470,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5564,6 +5577,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5860,6 +5874,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6531,6 +6546,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_2_0"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -7905,6 +7921,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -8140,6 +8157,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 1ab556b7abb..49508950cf8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -1217,6 +1217,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1224,6 +1225,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1235,10 +1237,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1247,6 +1251,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1258,6 +1263,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2311,8 +2317,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2536,6 +2544,7 @@ self: super: { "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"; @@ -3294,6 +3303,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -4955,6 +4965,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; @@ -4974,6 +4985,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5454,6 +5466,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5560,6 +5573,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5855,6 +5869,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6525,6 +6540,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_3_0"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -7898,6 +7914,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -8133,6 +8150,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index f6541f1dbe8..f770300e82a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -1214,6 +1214,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1221,6 +1222,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1232,10 +1234,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1244,6 +1248,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1255,6 +1260,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2299,8 +2305,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2524,6 +2532,7 @@ self: super: { "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"; @@ -3272,6 +3281,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -4924,6 +4934,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4942,6 +4953,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5417,6 +5429,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5522,6 +5535,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5813,6 +5827,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6475,6 +6490,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_4_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -7836,6 +7852,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -8070,6 +8087,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index ea41bee191e..4e9aef73398 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -1214,6 +1214,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1221,6 +1222,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1232,10 +1234,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1244,6 +1248,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1255,6 +1260,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2298,8 +2304,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2523,6 +2531,7 @@ self: super: { "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"; @@ -3270,6 +3279,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -4922,6 +4932,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4940,6 +4951,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5415,6 +5427,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5520,6 +5533,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5811,6 +5825,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6472,6 +6487,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_4_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -7832,6 +7848,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -8066,6 +8083,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index a2cb1c392c1..ec110da66b8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -1214,6 +1214,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1221,6 +1222,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1232,10 +1234,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1244,6 +1248,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1255,6 +1260,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2297,8 +2303,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2522,6 +2530,7 @@ self: super: { "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"; @@ -3269,6 +3278,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -4920,6 +4930,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4938,6 +4949,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5413,6 +5425,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5518,6 +5531,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5809,6 +5823,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6469,6 +6484,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_5_3"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -7827,6 +7843,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -8061,6 +8078,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index 60657c671eb..9b7a4f2e275 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -1214,6 +1214,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1221,6 +1222,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1232,10 +1234,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1244,6 +1248,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1255,6 +1260,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2297,8 +2303,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2522,6 +2530,7 @@ self: super: { "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"; @@ -3269,6 +3278,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -4919,6 +4929,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4937,6 +4948,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5411,6 +5423,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5516,6 +5529,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5807,6 +5821,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6466,6 +6481,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_5_4"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -7824,6 +7840,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -8058,6 +8075,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index 3211293d1b5..b9763756337 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -1212,6 +1212,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1219,6 +1220,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1230,10 +1232,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1242,6 +1246,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1253,6 +1258,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2293,8 +2299,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2518,6 +2526,7 @@ self: super: { "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"; @@ -3263,6 +3272,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -4912,6 +4922,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4930,6 +4941,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5404,6 +5416,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5509,6 +5522,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5800,6 +5814,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6459,6 +6474,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_5_4"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -7817,6 +7833,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -8051,6 +8068,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index 8256caaa1cd..c5bded5316d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -1212,6 +1212,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1219,6 +1220,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1230,10 +1232,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1242,6 +1246,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1253,6 +1258,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2293,8 +2299,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2518,6 +2526,7 @@ self: super: { "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"; @@ -3263,6 +3272,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -4909,6 +4919,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4927,6 +4938,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5401,6 +5413,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5506,6 +5519,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5797,6 +5811,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6456,6 +6471,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -7813,6 +7829,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -8047,6 +8064,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index 0d27d140905..d281aa02494 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -1211,6 +1211,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1218,6 +1219,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1229,10 +1231,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1241,6 +1245,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1252,6 +1257,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2292,8 +2298,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2517,6 +2525,7 @@ self: super: { "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"; @@ -3261,6 +3270,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -4906,6 +4916,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4924,6 +4935,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5396,6 +5408,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5501,6 +5514,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5792,6 +5806,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6450,6 +6465,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -7803,6 +7819,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -8037,6 +8054,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index 18bceff62c1..ce0d7dec08a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -1211,6 +1211,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1218,6 +1219,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1229,10 +1231,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1241,6 +1245,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1252,6 +1257,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2291,8 +2297,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2516,6 +2524,7 @@ self: super: { "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"; @@ -3260,6 +3269,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -4903,6 +4913,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4921,6 +4932,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5392,6 +5404,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5497,6 +5510,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5787,6 +5801,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6445,6 +6460,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -7798,6 +7814,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -8032,6 +8049,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index 5d6f883d97d..f7a4b59f04a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -1211,6 +1211,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1218,6 +1219,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1229,10 +1231,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1241,6 +1245,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1252,6 +1257,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2290,8 +2296,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2515,6 +2523,7 @@ self: super: { "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"; @@ -3259,6 +3268,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -4295,6 +4305,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -4896,6 +4907,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4914,6 +4926,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5385,6 +5398,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5490,6 +5504,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5780,6 +5795,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6400,6 +6416,8 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -6435,6 +6453,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -7787,6 +7806,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -8021,6 +8041,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix index 0a87d9d8b96..7a9e647ce82 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -1210,6 +1210,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1217,6 +1218,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1228,10 +1230,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1240,6 +1244,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1251,6 +1256,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2284,8 +2290,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2509,6 +2517,7 @@ self: super: { "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"; @@ -3253,6 +3262,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -4287,6 +4297,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -4886,6 +4897,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4904,6 +4916,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5374,6 +5387,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5479,6 +5493,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5768,6 +5783,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6388,6 +6404,8 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -6423,6 +6441,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -7774,6 +7793,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -8008,6 +8028,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 0d368f7c309..16ef6d6d76a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -1216,6 +1216,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1223,6 +1224,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1234,10 +1236,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1246,6 +1250,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1257,6 +1262,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2309,8 +2315,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2534,6 +2542,7 @@ self: super: { "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"; @@ -3291,6 +3300,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -4951,6 +4961,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; @@ -4970,6 +4981,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5448,6 +5460,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5554,6 +5567,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5849,6 +5863,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6518,6 +6533,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_3_0"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -7889,6 +7905,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -8124,6 +8141,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix index ab130ff9cf7..1879d93b0ea 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -1209,6 +1209,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1216,6 +1217,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1227,10 +1229,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1239,6 +1243,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1250,6 +1255,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2283,8 +2289,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2508,6 +2516,7 @@ self: super: { "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"; @@ -3252,6 +3261,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -4286,6 +4296,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -4885,6 +4896,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4903,6 +4915,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5373,6 +5386,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5478,6 +5492,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5767,6 +5782,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6387,6 +6403,8 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -6422,6 +6440,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -7771,6 +7790,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -8005,6 +8025,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix index 8f81ba847b3..b8eb05d327f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix @@ -1209,6 +1209,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1216,6 +1217,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1227,10 +1229,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1239,6 +1243,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1250,6 +1255,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2282,8 +2288,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2507,6 +2515,7 @@ self: super: { "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"; @@ -3249,6 +3258,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3722,6 +3732,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_1"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -4282,6 +4293,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -4879,6 +4891,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4897,6 +4910,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5367,6 +5381,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5472,6 +5487,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5760,6 +5776,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6378,6 +6395,8 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -6413,6 +6432,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -7755,6 +7775,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -7988,6 +8009,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix index bc3de3682f2..fb4ecde4d26 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix @@ -1209,6 +1209,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1216,6 +1217,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1227,10 +1229,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1239,6 +1243,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1250,6 +1255,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2282,8 +2288,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2507,6 +2515,7 @@ self: super: { "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"; @@ -3247,6 +3256,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3720,6 +3730,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_1"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -4279,6 +4290,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -4873,6 +4885,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4891,6 +4904,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5361,6 +5375,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5466,6 +5481,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5754,6 +5770,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6372,6 +6389,8 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -6407,6 +6426,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -7749,6 +7769,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -7982,6 +8003,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index 2713d7267d2..6f8e23e743a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -1216,6 +1216,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1223,6 +1224,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1234,10 +1236,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1246,6 +1250,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1257,6 +1262,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2308,8 +2314,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2533,6 +2541,7 @@ self: super: { "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"; @@ -3289,6 +3298,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -4948,6 +4958,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; @@ -4967,6 +4978,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5445,6 +5457,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5551,6 +5564,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5846,6 +5860,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6515,6 +6530,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_4_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -7883,6 +7899,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -8118,6 +8135,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index 1a186297dae..1941ccba96c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -1216,6 +1216,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1223,6 +1224,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1234,10 +1236,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1246,6 +1250,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1257,6 +1262,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2308,8 +2314,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2533,6 +2541,7 @@ self: super: { "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"; @@ -3289,6 +3298,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -4948,6 +4958,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; @@ -4967,6 +4978,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5445,6 +5457,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5551,6 +5564,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5846,6 +5860,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6515,6 +6530,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_4_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -7882,6 +7898,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -8117,6 +8134,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index 5d78a259e50..f5521156bae 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -1216,6 +1216,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1223,6 +1224,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1234,10 +1236,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1246,6 +1250,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1257,6 +1262,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2307,8 +2313,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2532,6 +2540,7 @@ self: super: { "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"; @@ -3287,6 +3296,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -4942,6 +4952,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_2"; @@ -4961,6 +4972,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5439,6 +5451,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5545,6 +5558,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5839,6 +5853,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6506,6 +6521,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_4_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -7870,6 +7886,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -8105,6 +8122,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index 1159c93ff33..4ddff009619 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -1216,6 +1216,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1223,6 +1224,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1234,10 +1236,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1246,6 +1250,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1257,6 +1262,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2307,8 +2313,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2532,6 +2540,7 @@ self: super: { "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"; @@ -3286,6 +3295,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -4939,6 +4949,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4957,6 +4968,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5433,6 +5445,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5539,6 +5552,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5832,6 +5846,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6499,6 +6514,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_4_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -7863,6 +7879,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -8097,6 +8114,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index 4f0e8f9b158..40ee047b318 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -1216,6 +1216,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1223,6 +1224,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1234,10 +1236,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1246,6 +1250,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1257,6 +1262,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2304,8 +2310,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2529,6 +2537,7 @@ self: super: { "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"; @@ -3283,6 +3292,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -4935,6 +4945,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4953,6 +4964,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5429,6 +5441,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5535,6 +5548,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5828,6 +5842,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6493,6 +6508,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_4_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -7856,6 +7872,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -8090,6 +8107,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index 516315bb8d6..626f1b391f5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -1216,6 +1216,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1223,6 +1224,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1234,10 +1236,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1246,6 +1250,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1257,6 +1262,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2302,8 +2308,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2527,6 +2535,7 @@ self: super: { "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"; @@ -3277,6 +3286,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -4929,6 +4939,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4947,6 +4958,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5422,6 +5434,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5527,6 +5540,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5820,6 +5834,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6484,6 +6499,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_4_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -7846,6 +7862,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -8080,6 +8097,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index a89ad287182..5d6ede96ceb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -1214,6 +1214,7 @@ self: super: { "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; @@ -1221,6 +1222,7 @@ self: super: { "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; @@ -1232,10 +1234,12 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; @@ -1244,6 +1248,7 @@ self: super: { "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; @@ -1255,6 +1260,7 @@ self: super: { "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -2299,8 +2305,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2524,6 +2532,7 @@ self: super: { "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"; @@ -3273,6 +3282,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_3"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -4925,6 +4935,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4943,6 +4954,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5418,6 +5430,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5523,6 +5536,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = dontDistribute super."modify-fasta"; @@ -5816,6 +5830,7 @@ self: super: { "network-transport-tcp" = dontDistribute super."network-transport-tcp"; "network-transport-tests" = dontDistribute super."network-transport-tests"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6479,6 +6494,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_4_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -7841,6 +7857,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tinytemplate" = dontDistribute super."tinytemplate"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; @@ -8075,6 +8092,7 @@ self: super: { "unification-fd" = dontDistribute super."unification-fd"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix index 6fee3441372..fc77f9db7e3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix @@ -1180,6 +1180,75 @@ self: super: { "amazon-emailer" = dontDistribute super."amazon-emailer"; "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_13_0"; "amqp-conduit" = dontDistribute super."amqp-conduit"; @@ -2158,8 +2227,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2378,6 +2449,7 @@ self: super: { "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"; @@ -3099,6 +3171,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_2_0_0"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3560,6 +3633,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_1"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -4099,6 +4173,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -4428,9 +4503,11 @@ self: super: { "ifcxt" = dontDistribute super."ifcxt"; "iff" = dontDistribute super."iff"; "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_6_1"; "ige-mac-integration" = dontDistribute super."ige-mac-integration"; "igraph" = dontDistribute super."igraph"; "igrf" = dontDistribute super."igrf"; + "ihaskell" = doDistribute super."ihaskell_0_8_3_0"; "ihaskell-display" = dontDistribute super."ihaskell-display"; "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; @@ -4537,6 +4614,7 @@ self: super: { "ipprint" = dontDistribute super."ipprint"; "iptables-helpers" = dontDistribute super."iptables-helpers"; "iptadmin" = dontDistribute super."iptadmin"; + "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; "irc-bytestring" = dontDistribute super."irc-bytestring"; "irc-client" = doDistribute super."irc-client_0_2_5_0"; "irc-colors" = dontDistribute super."irc-colors"; @@ -4657,6 +4735,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4675,6 +4754,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5140,6 +5220,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5242,6 +5323,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = doDistribute super."modify-fasta_0_8_0_4"; @@ -5517,6 +5599,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6107,6 +6190,8 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -6142,6 +6227,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6661,6 +6747,7 @@ self: super: { "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_6"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; @@ -7426,6 +7513,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; "tiphys" = dontDistribute super."tiphys"; @@ -7649,6 +7737,7 @@ self: super: { "unicoder" = dontDistribute super."unicoder"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8162,6 +8251,7 @@ self: super: { "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; "yhccore" = dontDistribute super."yhccore"; + "yi" = doDistribute super."yi_0_12_3"; "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix index 762fa239896..878c376c2b1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix @@ -1178,6 +1178,75 @@ self: super: { "amazon-emailer" = dontDistribute super."amazon-emailer"; "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_13_0"; "amqp-conduit" = dontDistribute super."amqp-conduit"; @@ -2156,8 +2225,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2376,6 +2447,7 @@ self: super: { "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"; @@ -3093,6 +3165,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_2_0_0"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3554,6 +3627,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_1"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -4092,6 +4166,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -4418,9 +4493,11 @@ self: super: { "ifcxt" = dontDistribute super."ifcxt"; "iff" = dontDistribute super."iff"; "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_6_1"; "ige-mac-integration" = dontDistribute super."ige-mac-integration"; "igraph" = dontDistribute super."igraph"; "igrf" = dontDistribute super."igrf"; + "ihaskell" = doDistribute super."ihaskell_0_8_3_0"; "ihaskell-display" = dontDistribute super."ihaskell-display"; "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; @@ -4525,6 +4602,7 @@ self: super: { "ipprint" = dontDistribute super."ipprint"; "iptables-helpers" = dontDistribute super."iptables-helpers"; "iptadmin" = dontDistribute super."iptadmin"; + "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; "irc-bytestring" = dontDistribute super."irc-bytestring"; "irc-client" = doDistribute super."irc-client_0_2_5_0"; "irc-colors" = dontDistribute super."irc-colors"; @@ -4645,6 +4723,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4663,6 +4742,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5125,6 +5205,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5227,6 +5308,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = doDistribute super."modify-fasta_0_8_0_4"; @@ -5502,6 +5584,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6090,6 +6173,8 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -6125,6 +6210,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6644,6 +6730,7 @@ self: super: { "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_6"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; @@ -7409,6 +7496,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; "tiphys" = dontDistribute super."tiphys"; @@ -7631,6 +7719,7 @@ self: super: { "unicoder" = dontDistribute super."unicoder"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8143,6 +8232,7 @@ self: super: { "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; "yhccore" = dontDistribute super."yhccore"; + "yi" = doDistribute super."yi_0_12_3"; "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix index 51ea3c83744..b9823de37b1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix @@ -1129,6 +1129,7 @@ self: super: { "air-spec" = dontDistribute super."air-spec"; "air-th" = dontDistribute super."air-th"; "airbrake" = dontDistribute super."airbrake"; + "airship" = doDistribute super."airship_0_4_3_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; "aivika-experiment" = dontDistribute super."aivika-experiment"; @@ -1173,6 +1174,75 @@ self: super: { "amazon-emailer" = dontDistribute super."amazon-emailer"; "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_13_0"; "amqp-conduit" = dontDistribute super."amqp-conduit"; @@ -2145,8 +2215,10 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptol" = doDistribute super."cryptol_2_2_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2364,6 +2436,7 @@ self: super: { "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"; @@ -2400,6 +2473,7 @@ self: super: { "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; + "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_5"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; @@ -3075,6 +3149,7 @@ self: super: { "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-eot" = dontDistribute super."generics-eot"; "generics-sop" = doDistribute super."generics-sop_0_2_0_0"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3533,6 +3608,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_1"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -4066,6 +4142,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -4387,9 +4464,11 @@ self: super: { "ifcxt" = dontDistribute super."ifcxt"; "iff" = dontDistribute super."iff"; "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_6_1"; "ige-mac-integration" = dontDistribute super."ige-mac-integration"; "igraph" = dontDistribute super."igraph"; "igrf" = dontDistribute super."igrf"; + "ihaskell" = doDistribute super."ihaskell_0_8_3_0"; "ihaskell-display" = dontDistribute super."ihaskell-display"; "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; @@ -4492,6 +4571,7 @@ self: super: { "ipprint" = dontDistribute super."ipprint"; "iptables-helpers" = dontDistribute super."iptables-helpers"; "iptadmin" = dontDistribute super."iptadmin"; + "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; "irc-bytestring" = dontDistribute super."irc-bytestring"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; @@ -4611,6 +4691,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4629,6 +4710,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5090,6 +5172,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5192,6 +5275,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = doDistribute super."modify-fasta_0_8_0_4"; @@ -5464,6 +5548,7 @@ self: super: { "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -6049,6 +6134,8 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -6084,6 +6171,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6598,6 +6686,7 @@ self: super: { "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_6"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; @@ -7356,6 +7445,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; "tiphys" = dontDistribute super."tiphys"; @@ -7578,6 +7668,7 @@ self: super: { "unicoder" = dontDistribute super."unicoder"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -8087,6 +8178,7 @@ self: super: { "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; "yhccore" = dontDistribute super."yhccore"; + "yi" = doDistribute super."yi_0_12_3"; "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix index 12348a49d16..4840cb24ec7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix @@ -1115,6 +1115,7 @@ self: super: { "air-spec" = dontDistribute super."air-spec"; "air-th" = dontDistribute super."air-th"; "airbrake" = dontDistribute super."airbrake"; + "airship" = doDistribute super."airship_0_4_3_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; "aivika-experiment" = dontDistribute super."aivika-experiment"; @@ -1159,6 +1160,75 @@ self: super: { "amazon-emailer" = dontDistribute super."amazon-emailer"; "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_13_0"; "amqp-conduit" = dontDistribute super."amqp-conduit"; @@ -2110,7 +2180,9 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2325,6 +2397,7 @@ self: super: { "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"; @@ -2361,6 +2434,7 @@ self: super: { "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; + "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_5"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; @@ -2464,6 +2538,7 @@ self: super: { "dominion" = dontDistribute super."dominion"; "domplate" = dontDistribute super."domplate"; "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = doDistribute super."dotenv_0_1_0_9"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; "dotnet-timespan" = dontDistribute super."dotnet-timespan"; @@ -3020,6 +3095,7 @@ self: super: { "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-sop" = doDistribute super."generics-sop_0_2_0_0"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3470,6 +3546,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_1"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -4002,6 +4079,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -4320,9 +4398,11 @@ self: super: { "ifcxt" = dontDistribute super."ifcxt"; "iff" = dontDistribute super."iff"; "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_6_1"; "ige-mac-integration" = dontDistribute super."ige-mac-integration"; "igraph" = dontDistribute super."igraph"; "igrf" = dontDistribute super."igrf"; + "ihaskell" = doDistribute super."ihaskell_0_8_3_0"; "ihaskell-display" = dontDistribute super."ihaskell-display"; "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; @@ -4424,6 +4504,7 @@ self: super: { "ipprint" = dontDistribute super."ipprint"; "iptables-helpers" = dontDistribute super."iptables-helpers"; "iptadmin" = dontDistribute super."iptadmin"; + "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; "irc-bytestring" = dontDistribute super."irc-bytestring"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; @@ -4543,6 +4624,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4560,6 +4642,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5017,6 +5100,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5114,6 +5198,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = doDistribute super."modify-fasta_0_8_0_4"; @@ -5383,6 +5468,7 @@ self: super: { "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5588,6 +5674,7 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_9"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; @@ -5957,6 +6044,8 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -5991,6 +6080,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6498,6 +6588,7 @@ self: super: { "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_6"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; @@ -7241,6 +7332,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; "tiphys" = dontDistribute super."tiphys"; @@ -7459,6 +7551,7 @@ self: super: { "unicoder" = dontDistribute super."unicoder"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -7964,6 +8057,7 @@ self: super: { "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; "yhccore" = dontDistribute super."yhccore"; + "yi" = doDistribute super."yi_0_12_3"; "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix index bc39b5bcfab..92e71fcf820 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix @@ -123,6 +123,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_5"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -1113,6 +1114,7 @@ self: super: { "air-spec" = dontDistribute super."air-spec"; "air-th" = dontDistribute super."air-th"; "airbrake" = dontDistribute super."airbrake"; + "airship" = doDistribute super."airship_0_4_3_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; "aivika-experiment" = dontDistribute super."aivika-experiment"; @@ -1157,6 +1159,75 @@ self: super: { "amazon-emailer" = dontDistribute super."amazon-emailer"; "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; "ampersand" = dontDistribute super."ampersand"; "amqp-conduit" = dontDistribute super."amqp-conduit"; "amrun" = dontDistribute super."amrun"; @@ -2101,7 +2172,9 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2315,6 +2388,7 @@ self: super: { "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"; @@ -2351,6 +2425,7 @@ self: super: { "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; + "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_5"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; @@ -2454,6 +2529,7 @@ self: super: { "dominion" = dontDistribute super."dominion"; "domplate" = dontDistribute super."domplate"; "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = doDistribute super."dotenv_0_1_0_9"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; "dotnet-timespan" = dontDistribute super."dotnet-timespan"; @@ -3010,6 +3086,7 @@ self: super: { "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-sop" = doDistribute super."generics-sop_0_2_0_0"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3460,6 +3537,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_1"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3992,6 +4070,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -4309,9 +4388,11 @@ self: super: { "ifcxt" = dontDistribute super."ifcxt"; "iff" = dontDistribute super."iff"; "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_6_1"; "ige-mac-integration" = dontDistribute super."ige-mac-integration"; "igraph" = dontDistribute super."igraph"; "igrf" = dontDistribute super."igrf"; + "ihaskell" = doDistribute super."ihaskell_0_8_3_0"; "ihaskell-display" = dontDistribute super."ihaskell-display"; "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; @@ -4413,6 +4494,7 @@ self: super: { "ipprint" = dontDistribute super."ipprint"; "iptables-helpers" = dontDistribute super."iptables-helpers"; "iptadmin" = dontDistribute super."iptadmin"; + "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; "irc-bytestring" = dontDistribute super."irc-bytestring"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; @@ -4532,6 +4614,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4549,6 +4632,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -5006,6 +5090,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5103,6 +5188,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modify-fasta" = doDistribute super."modify-fasta_0_8_0_4"; @@ -5370,6 +5456,7 @@ self: super: { "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5575,6 +5662,7 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_9"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; @@ -5944,6 +6032,8 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -5978,6 +6068,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6483,6 +6574,7 @@ self: super: { "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_6"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; @@ -7225,6 +7317,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; "tiphys" = dontDistribute super."tiphys"; @@ -7443,6 +7536,7 @@ self: super: { "unicoder" = dontDistribute super."unicoder"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -7946,6 +8040,7 @@ self: super: { "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; "yhccore" = dontDistribute super."yhccore"; + "yi" = doDistribute super."yi_0_12_3"; "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix index ae4557e9d5f..aed97a6ebe3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix @@ -123,6 +123,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_5"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -1112,6 +1113,7 @@ self: super: { "air-spec" = dontDistribute super."air-spec"; "air-th" = dontDistribute super."air-th"; "airbrake" = dontDistribute super."airbrake"; + "airship" = doDistribute super."airship_0_4_3_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; "aivika-experiment" = dontDistribute super."aivika-experiment"; @@ -1156,6 +1158,75 @@ self: super: { "amazon-emailer" = dontDistribute super."amazon-emailer"; "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; "ampersand" = dontDistribute super."ampersand"; "amqp-conduit" = dontDistribute super."amqp-conduit"; "amrun" = dontDistribute super."amrun"; @@ -2100,7 +2171,9 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2314,6 +2387,7 @@ self: super: { "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"; @@ -2350,6 +2424,7 @@ self: super: { "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; + "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_5"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; @@ -2452,6 +2527,7 @@ self: super: { "dominion" = dontDistribute super."dominion"; "domplate" = dontDistribute super."domplate"; "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = doDistribute super."dotenv_0_1_0_9"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; "dotnet-timespan" = dontDistribute super."dotnet-timespan"; @@ -3005,6 +3081,7 @@ self: super: { "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; "generics-sop" = doDistribute super."generics-sop_0_2_0_0"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3453,6 +3530,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_1"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3985,6 +4063,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -4301,9 +4380,11 @@ self: super: { "ifcxt" = dontDistribute super."ifcxt"; "iff" = dontDistribute super."iff"; "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_6_1"; "ige-mac-integration" = dontDistribute super."ige-mac-integration"; "igraph" = dontDistribute super."igraph"; "igrf" = dontDistribute super."igrf"; + "ihaskell" = doDistribute super."ihaskell_0_8_3_0"; "ihaskell-display" = dontDistribute super."ihaskell-display"; "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; @@ -4404,6 +4485,7 @@ self: super: { "ipprint" = dontDistribute super."ipprint"; "iptables-helpers" = dontDistribute super."iptables-helpers"; "iptadmin" = dontDistribute super."iptadmin"; + "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; "irc-bytestring" = dontDistribute super."irc-bytestring"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; @@ -4523,6 +4605,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4540,6 +4623,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4997,6 +5081,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5093,6 +5178,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modsplit" = dontDistribute super."modsplit"; @@ -5355,6 +5441,7 @@ self: super: { "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5560,6 +5647,7 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_9"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; @@ -5925,6 +6013,8 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -5958,6 +6048,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6461,6 +6552,7 @@ self: super: { "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_6"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; @@ -7202,6 +7294,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; "tiphys" = dontDistribute super."tiphys"; @@ -7420,6 +7513,7 @@ self: super: { "unicoder" = dontDistribute super."unicoder"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -7923,6 +8017,7 @@ self: super: { "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; "yhccore" = dontDistribute super."yhccore"; + "yi" = doDistribute super."yi_0_12_3"; "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix index d477235227a..ae84f153d46 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix @@ -123,6 +123,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_5"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -1107,6 +1108,7 @@ self: super: { "air-spec" = dontDistribute super."air-spec"; "air-th" = dontDistribute super."air-th"; "airbrake" = dontDistribute super."airbrake"; + "airship" = doDistribute super."airship_0_4_3_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; "aivika-experiment" = dontDistribute super."aivika-experiment"; @@ -1151,6 +1153,75 @@ self: super: { "amazon-emailer" = dontDistribute super."amazon-emailer"; "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; "ampersand" = dontDistribute super."ampersand"; "amqp-conduit" = dontDistribute super."amqp-conduit"; "amrun" = dontDistribute super."amrun"; @@ -2088,7 +2159,9 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2301,6 +2374,7 @@ self: super: { "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"; @@ -2337,6 +2411,7 @@ self: super: { "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; + "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_5"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; @@ -2438,6 +2513,7 @@ self: super: { "dominion" = dontDistribute super."dominion"; "domplate" = dontDistribute super."domplate"; "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = doDistribute super."dotenv_0_1_0_9"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; "dotnet-timespan" = dontDistribute super."dotnet-timespan"; @@ -2983,6 +3059,7 @@ self: super: { "generic-tree" = dontDistribute super."generic-tree"; "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3430,6 +3507,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_1"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3962,6 +4040,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -4278,9 +4357,11 @@ self: super: { "ifcxt" = dontDistribute super."ifcxt"; "iff" = dontDistribute super."iff"; "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_6_1"; "ige-mac-integration" = dontDistribute super."ige-mac-integration"; "igraph" = dontDistribute super."igraph"; "igrf" = dontDistribute super."igrf"; + "ihaskell" = doDistribute super."ihaskell_0_8_3_0"; "ihaskell-display" = dontDistribute super."ihaskell-display"; "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; @@ -4380,6 +4461,7 @@ self: super: { "ipprint" = dontDistribute super."ipprint"; "iptables-helpers" = dontDistribute super."iptables-helpers"; "iptadmin" = dontDistribute super."iptadmin"; + "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; "irc-bytestring" = dontDistribute super."irc-bytestring"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; @@ -4499,6 +4581,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4516,6 +4599,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4971,6 +5055,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5065,6 +5150,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modsplit" = dontDistribute super."modsplit"; @@ -5327,6 +5413,7 @@ self: super: { "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; "network-transport-tests" = doDistribute super."network-transport-tests_0_2_2_0"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5526,11 +5613,13 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagerduty" = doDistribute super."pagerduty_0_0_6"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palette" = doDistribute super."palette_0_1_0_2"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_9"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; @@ -5894,6 +5983,8 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -5927,6 +6018,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6426,6 +6518,7 @@ self: super: { "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_6"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; @@ -7048,6 +7141,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_4_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; @@ -7161,6 +7255,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; "tiphys" = dontDistribute super."tiphys"; @@ -7379,6 +7474,7 @@ self: super: { "unicoder" = dontDistribute super."unicoder"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -7827,6 +7923,7 @@ self: super: { "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; + "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_1_7"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; @@ -7877,6 +7974,7 @@ self: super: { "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; "yhccore" = dontDistribute super."yhccore"; + "yi" = doDistribute super."yi_0_12_3"; "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.4.nix b/pkgs/development/haskell-modules/configuration-lts-5.4.nix index a6a4b891672..d6d80574547 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.4.nix @@ -123,6 +123,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_5"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -1105,6 +1106,7 @@ self: super: { "air-spec" = dontDistribute super."air-spec"; "air-th" = dontDistribute super."air-th"; "airbrake" = dontDistribute super."airbrake"; + "airship" = doDistribute super."airship_0_4_3_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; "aivika-experiment" = dontDistribute super."aivika-experiment"; @@ -1149,6 +1151,75 @@ self: super: { "amazon-emailer" = dontDistribute super."amazon-emailer"; "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; "ampersand" = dontDistribute super."ampersand"; "amqp-conduit" = dontDistribute super."amqp-conduit"; "amrun" = dontDistribute super."amrun"; @@ -2084,7 +2155,9 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2297,6 +2370,7 @@ self: super: { "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"; @@ -2332,6 +2406,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; @@ -2429,6 +2504,7 @@ self: super: { "dominion" = dontDistribute super."dominion"; "domplate" = dontDistribute super."domplate"; "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = doDistribute super."dotenv_0_1_0_9"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; "dotnet-timespan" = dontDistribute super."dotnet-timespan"; @@ -2971,6 +3047,7 @@ self: super: { "generic-tree" = dontDistribute super."generic-tree"; "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3417,6 +3494,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_1"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3457,6 +3535,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"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3945,6 +4024,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -4260,9 +4340,11 @@ self: super: { "ifcxt" = dontDistribute super."ifcxt"; "iff" = dontDistribute super."iff"; "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_6_1"; "ige-mac-integration" = dontDistribute super."ige-mac-integration"; "igraph" = dontDistribute super."igraph"; "igrf" = dontDistribute super."igrf"; + "ihaskell" = doDistribute super."ihaskell_0_8_3_0"; "ihaskell-display" = dontDistribute super."ihaskell-display"; "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; @@ -4362,6 +4444,7 @@ self: super: { "ipprint" = dontDistribute super."ipprint"; "iptables-helpers" = dontDistribute super."iptables-helpers"; "iptadmin" = dontDistribute super."iptadmin"; + "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; "irc-bytestring" = dontDistribute super."irc-bytestring"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; @@ -4481,6 +4564,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4498,6 +4582,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4951,6 +5036,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5042,6 +5128,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modsplit" = dontDistribute super."modsplit"; @@ -5299,6 +5386,7 @@ self: super: { "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5498,10 +5586,12 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagerduty" = doDistribute super."pagerduty_0_0_6"; "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"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; @@ -5864,6 +5954,8 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -5897,6 +5989,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6395,6 +6488,7 @@ self: super: { "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_6"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; @@ -7016,6 +7110,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_4_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; @@ -7129,6 +7224,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; "tiphys" = dontDistribute super."tiphys"; @@ -7346,6 +7442,7 @@ self: super: { "unicoder" = dontDistribute super."unicoder"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -7792,6 +7889,7 @@ self: super: { "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; + "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_1_7"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; @@ -7842,6 +7940,7 @@ self: super: { "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; "yhccore" = dontDistribute super."yhccore"; + "yi" = doDistribute super."yi_0_12_3"; "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.5.nix b/pkgs/development/haskell-modules/configuration-lts-5.5.nix index 886993043d6..53be2667b40 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.5.nix @@ -123,6 +123,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_5"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -1105,6 +1106,7 @@ self: super: { "air-spec" = dontDistribute super."air-spec"; "air-th" = dontDistribute super."air-th"; "airbrake" = dontDistribute super."airbrake"; + "airship" = doDistribute super."airship_0_4_3_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; "aivika-experiment" = dontDistribute super."aivika-experiment"; @@ -1149,6 +1151,75 @@ self: super: { "amazon-emailer" = dontDistribute super."amazon-emailer"; "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; "ampersand" = dontDistribute super."ampersand"; "amqp-conduit" = dontDistribute super."amqp-conduit"; "amrun" = dontDistribute super."amrun"; @@ -2080,7 +2151,9 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2293,6 +2366,7 @@ self: super: { "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"; @@ -2328,6 +2402,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; @@ -2425,6 +2500,7 @@ self: super: { "dominion" = dontDistribute super."dominion"; "domplate" = dontDistribute super."domplate"; "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = doDistribute super."dotenv_0_1_0_9"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; "dotnet-timespan" = dontDistribute super."dotnet-timespan"; @@ -2967,6 +3043,7 @@ self: super: { "generic-tree" = dontDistribute super."generic-tree"; "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_4"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3413,6 +3490,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_1"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3453,6 +3531,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"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3939,6 +4018,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -4254,9 +4334,11 @@ self: super: { "ifcxt" = dontDistribute super."ifcxt"; "iff" = dontDistribute super."iff"; "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_6_1"; "ige-mac-integration" = dontDistribute super."ige-mac-integration"; "igraph" = dontDistribute super."igraph"; "igrf" = dontDistribute super."igrf"; + "ihaskell" = doDistribute super."ihaskell_0_8_3_0"; "ihaskell-display" = dontDistribute super."ihaskell-display"; "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; @@ -4356,6 +4438,7 @@ self: super: { "ipprint" = dontDistribute super."ipprint"; "iptables-helpers" = dontDistribute super."iptables-helpers"; "iptadmin" = dontDistribute super."iptadmin"; + "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; "irc-bytestring" = dontDistribute super."irc-bytestring"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; @@ -4474,6 +4557,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4491,6 +4575,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4943,6 +5028,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5034,6 +5120,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modsplit" = dontDistribute super."modsplit"; @@ -5291,6 +5378,7 @@ self: super: { "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5490,10 +5578,12 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagerduty" = doDistribute super."pagerduty_0_0_6"; "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"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; @@ -5856,6 +5946,8 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -5889,6 +5981,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6387,6 +6480,7 @@ self: super: { "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_6"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; @@ -7008,6 +7102,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_4_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; @@ -7121,6 +7216,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; "tiphys" = dontDistribute super."tiphys"; @@ -7338,6 +7434,7 @@ self: super: { "unicoder" = dontDistribute super."unicoder"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -7780,6 +7877,7 @@ self: super: { "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; + "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_1_7"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; @@ -7830,6 +7928,7 @@ self: super: { "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; "yhccore" = dontDistribute super."yhccore"; + "yi" = doDistribute super."yi_0_12_3"; "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.6.nix b/pkgs/development/haskell-modules/configuration-lts-5.6.nix index b907b94428c..156a21a6ba8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.6.nix @@ -123,6 +123,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_5"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -1104,6 +1105,7 @@ self: super: { "air-spec" = dontDistribute super."air-spec"; "air-th" = dontDistribute super."air-th"; "airbrake" = dontDistribute super."airbrake"; + "airship" = doDistribute super."airship_0_4_3_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; "aivika-experiment" = dontDistribute super."aivika-experiment"; @@ -1148,6 +1150,75 @@ self: super: { "amazon-emailer" = dontDistribute super."amazon-emailer"; "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; "ampersand" = dontDistribute super."ampersand"; "amqp-conduit" = dontDistribute super."amqp-conduit"; "amrun" = dontDistribute super."amrun"; @@ -2069,7 +2140,9 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2282,6 +2355,7 @@ self: super: { "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"; @@ -2317,6 +2391,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; @@ -2414,6 +2489,7 @@ self: super: { "dominion" = dontDistribute super."dominion"; "domplate" = dontDistribute super."domplate"; "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = doDistribute super."dotenv_0_1_0_9"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; "dotnet-timespan" = dontDistribute super."dotnet-timespan"; @@ -2954,6 +3030,7 @@ self: super: { "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3398,6 +3475,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_1"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3438,6 +3516,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"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3921,6 +4000,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -4235,9 +4315,11 @@ self: super: { "ifcxt" = dontDistribute super."ifcxt"; "iff" = dontDistribute super."iff"; "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_6_1"; "ige-mac-integration" = dontDistribute super."ige-mac-integration"; "igraph" = dontDistribute super."igraph"; "igrf" = dontDistribute super."igrf"; + "ihaskell" = doDistribute super."ihaskell_0_8_3_0"; "ihaskell-display" = dontDistribute super."ihaskell-display"; "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; @@ -4337,6 +4419,7 @@ self: super: { "ipprint" = dontDistribute super."ipprint"; "iptables-helpers" = dontDistribute super."iptables-helpers"; "iptadmin" = dontDistribute super."iptadmin"; + "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; "irc-bytestring" = dontDistribute super."irc-bytestring"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; @@ -4455,6 +4538,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4472,6 +4556,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4922,6 +5007,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5013,6 +5099,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modsplit" = dontDistribute super."modsplit"; @@ -5269,6 +5356,7 @@ self: super: { "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5468,10 +5556,12 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagerduty" = doDistribute super."pagerduty_0_0_6"; "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"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; @@ -5832,6 +5922,8 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -5865,6 +5957,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6362,6 +6455,7 @@ self: super: { "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_6"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; @@ -6981,6 +7075,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_4_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; @@ -7094,6 +7189,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; "tiphys" = dontDistribute super."tiphys"; @@ -7310,6 +7406,7 @@ self: super: { "unicoder" = dontDistribute super."unicoder"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -7749,6 +7846,7 @@ self: super: { "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; + "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_1_7"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; @@ -7799,6 +7897,7 @@ self: super: { "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; "yhccore" = dontDistribute super."yhccore"; + "yi" = doDistribute super."yi_0_12_3"; "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.7.nix b/pkgs/development/haskell-modules/configuration-lts-5.7.nix index 9c24e438cd7..3bf116e7058 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.7.nix @@ -123,6 +123,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_5"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -1104,6 +1105,7 @@ self: super: { "air-spec" = dontDistribute super."air-spec"; "air-th" = dontDistribute super."air-th"; "airbrake" = dontDistribute super."airbrake"; + "airship" = doDistribute super."airship_0_4_3_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; "aivika-experiment" = dontDistribute super."aivika-experiment"; @@ -1148,6 +1150,75 @@ self: super: { "amazon-emailer" = dontDistribute super."amazon-emailer"; "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; "ampersand" = dontDistribute super."ampersand"; "amqp-conduit" = dontDistribute super."amqp-conduit"; "amrun" = dontDistribute super."amrun"; @@ -2065,7 +2136,9 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2278,6 +2351,7 @@ self: super: { "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"; @@ -2313,6 +2387,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; @@ -2410,6 +2485,7 @@ self: super: { "dominion" = dontDistribute super."dominion"; "domplate" = dontDistribute super."domplate"; "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = doDistribute super."dotenv_0_1_0_9"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; "dotnet-timespan" = dontDistribute super."dotnet-timespan"; @@ -2950,6 +3026,7 @@ self: super: { "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3394,6 +3471,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_1"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3434,6 +3512,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"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3763,6 +3842,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -3915,6 +3995,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -4228,9 +4309,11 @@ self: super: { "ifcxt" = dontDistribute super."ifcxt"; "iff" = dontDistribute super."iff"; "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_6_1"; "ige-mac-integration" = dontDistribute super."ige-mac-integration"; "igraph" = dontDistribute super."igraph"; "igrf" = dontDistribute super."igrf"; + "ihaskell" = doDistribute super."ihaskell_0_8_3_0"; "ihaskell-display" = dontDistribute super."ihaskell-display"; "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; @@ -4330,6 +4413,7 @@ self: super: { "ipprint" = dontDistribute super."ipprint"; "iptables-helpers" = dontDistribute super."iptables-helpers"; "iptadmin" = dontDistribute super."iptadmin"; + "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; "irc-bytestring" = dontDistribute super."irc-bytestring"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; @@ -4448,6 +4532,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4465,6 +4550,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4915,6 +5001,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5005,6 +5092,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modsplit" = dontDistribute super."modsplit"; @@ -5261,6 +5349,7 @@ self: super: { "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5460,10 +5549,12 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagerduty" = doDistribute super."pagerduty_0_0_6"; "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"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; @@ -5821,6 +5912,8 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -5854,6 +5947,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6350,6 +6444,7 @@ self: super: { "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_6"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; @@ -6967,6 +7062,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_4_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; @@ -7080,6 +7176,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; "tiphys" = dontDistribute super."tiphys"; @@ -7293,6 +7390,7 @@ self: super: { "unicoder" = dontDistribute super."unicoder"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -7732,6 +7830,7 @@ self: super: { "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; + "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_1_7"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; @@ -7782,6 +7881,7 @@ self: super: { "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; "yhccore" = dontDistribute super."yhccore"; + "yi" = doDistribute super."yi_0_12_3"; "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.8.nix b/pkgs/development/haskell-modules/configuration-lts-5.8.nix index cb9856fd33b..60bcd23a8ca 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.8.nix @@ -123,6 +123,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_5"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -1104,6 +1105,7 @@ self: super: { "air-spec" = dontDistribute super."air-spec"; "air-th" = dontDistribute super."air-th"; "airbrake" = dontDistribute super."airbrake"; + "airship" = doDistribute super."airship_0_4_3_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; "aivika-experiment" = dontDistribute super."aivika-experiment"; @@ -1148,6 +1150,75 @@ self: super: { "amazon-emailer" = dontDistribute super."amazon-emailer"; "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; "ampersand" = dontDistribute super."ampersand"; "amqp-conduit" = dontDistribute super."amqp-conduit"; "amrun" = dontDistribute super."amrun"; @@ -2064,7 +2135,9 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -2277,6 +2350,7 @@ self: super: { "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"; @@ -2312,6 +2386,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; @@ -2409,6 +2484,7 @@ self: super: { "dominion" = dontDistribute super."dominion"; "domplate" = dontDistribute super."domplate"; "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = doDistribute super."dotenv_0_1_0_9"; "dotfs" = dontDistribute super."dotfs"; "dotgen" = dontDistribute super."dotgen"; "dotnet-timespan" = dontDistribute super."dotnet-timespan"; @@ -2948,6 +3024,7 @@ self: super: { "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3392,6 +3469,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_1"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3432,6 +3510,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"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3761,6 +3840,7 @@ self: super: { "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_3"; "hint-server" = dontDistribute super."hint-server"; "hinvaders" = dontDistribute super."hinvaders"; "hinze-streams" = dontDistribute super."hinze-streams"; @@ -3913,6 +3993,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -4226,9 +4307,11 @@ self: super: { "ifcxt" = dontDistribute super."ifcxt"; "iff" = dontDistribute super."iff"; "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_6_1"; "ige-mac-integration" = dontDistribute super."ige-mac-integration"; "igraph" = dontDistribute super."igraph"; "igrf" = dontDistribute super."igrf"; + "ihaskell" = doDistribute super."ihaskell_0_8_3_0"; "ihaskell-display" = dontDistribute super."ihaskell-display"; "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; @@ -4328,6 +4411,7 @@ self: super: { "ipprint" = dontDistribute super."ipprint"; "iptables-helpers" = dontDistribute super."iptables-helpers"; "iptadmin" = dontDistribute super."iptadmin"; + "ipython-kernel" = doDistribute super."ipython-kernel_0_8_3_0"; "irc-bytestring" = dontDistribute super."irc-bytestring"; "irc-colors" = dontDistribute super."irc-colors"; "irc-core" = dontDistribute super."irc-core"; @@ -4446,6 +4530,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kangaroo" = dontDistribute super."kangaroo"; @@ -4463,6 +4548,7 @@ self: super: { "kbq-gu" = dontDistribute super."kbq-gu"; "kd-tree" = dontDistribute super."kd-tree"; "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; "keera-callbacks" = dontDistribute super."keera-callbacks"; "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; @@ -4913,6 +4999,7 @@ self: super: { "maxsharing" = dontDistribute super."maxsharing"; "maybe-justify" = dontDistribute super."maybe-justify"; "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; "mbox-tools" = dontDistribute super."mbox-tools"; "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; "mcmc-samplers" = dontDistribute super."mcmc-samplers"; @@ -5003,6 +5090,7 @@ self: super: { "mmtl" = dontDistribute super."mmtl"; "mmtl-base" = dontDistribute super."mmtl-base"; "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; "modsplit" = dontDistribute super."modsplit"; @@ -5259,6 +5347,7 @@ self: super: { "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; + "network-uri" = doDistribute super."network-uri_2_6_0_3"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; "network-websocket" = dontDistribute super."network-websocket"; @@ -5458,10 +5547,12 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagerduty" = doDistribute super."pagerduty_0_0_6"; "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"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; @@ -5819,6 +5910,8 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -5852,6 +5945,7 @@ self: super: { "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; "pure-zlib" = dontDistribute super."pure-zlib"; "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -6348,6 +6442,7 @@ self: super: { "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_6"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; @@ -6965,6 +7060,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_4_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_2_0"; "text-and-plots" = dontDistribute super."text-and-plots"; @@ -7078,6 +7174,7 @@ self: super: { "timezone-olson-th" = dontDistribute super."timezone-olson-th"; "timing-convenience" = dontDistribute super."timing-convenience"; "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; "tip-lib" = dontDistribute super."tip-lib"; "tiphys" = dontDistribute super."tiphys"; @@ -7291,6 +7388,7 @@ self: super: { "unicoder" = dontDistribute super."unicoder"; "uniform-io" = dontDistribute super."uniform-io"; "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; "union-find-array" = dontDistribute super."union-find-array"; "union-map" = dontDistribute super."union-map"; "unique" = dontDistribute super."unique"; @@ -7728,6 +7826,7 @@ self: super: { "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; + "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_1_7"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; @@ -7778,6 +7877,7 @@ self: super: { "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; "yhccore" = dontDistribute super."yhccore"; + "yi" = doDistribute super."yi_0_12_3"; "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.9.nix b/pkgs/development/haskell-modules/configuration-lts-5.9.nix new file mode 100644 index 00000000000..30de9ab9147 --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-5.9.nix @@ -0,0 +1,7904 @@ +{ pkgs }: + +with import ./lib.nix { inherit pkgs; }; + +self: super: { + + # core libraries provided by the compiler + Cabal = null; + array = null; + base = null; + bin-package-db = null; + binary = null; + bytestring = null; + containers = null; + deepseq = null; + directory = null; + filepath = null; + ghc-prim = null; + hoopl = null; + hpc = null; + integer-gmp = null; + pretty = null; + process = null; + rts = null; + template-haskell = null; + time = null; + transformers = null; + unix = null; + + # lts-5.9 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"; + "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-executable" = dontDistribute super."Agda-executable"; + "AhoCorasick" = dontDistribute super."AhoCorasick"; + "AlgorithmW" = dontDistribute super."AlgorithmW"; + "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms"; + "Allure" = dontDistribute super."Allure"; + "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter"; + "Animas" = dontDistribute super."Animas"; + "Annotations" = dontDistribute super."Annotations"; + "Ansi2Html" = dontDistribute super."Ansi2Html"; + "ApplePush" = dontDistribute super."ApplePush"; + "AppleScript" = dontDistribute super."AppleScript"; + "ApproxFun-hs" = dontDistribute super."ApproxFun-hs"; + "ArrayRef" = dontDistribute super."ArrayRef"; + "ArrowVHDL" = dontDistribute super."ArrowVHDL"; + "AspectAG" = dontDistribute super."AspectAG"; + "AttoBencode" = dontDistribute super."AttoBencode"; + "AttoJson" = dontDistribute super."AttoJson"; + "Attrac" = dontDistribute super."Attrac"; + "Aurochs" = dontDistribute super."Aurochs"; + "AutoForms" = dontDistribute super."AutoForms"; + "AvlTree" = dontDistribute super."AvlTree"; + "BASIC" = dontDistribute super."BASIC"; + "BCMtools" = dontDistribute super."BCMtools"; + "BNFC" = dontDistribute super."BNFC"; + "BNFC-meta" = dontDistribute super."BNFC-meta"; + "Baggins" = dontDistribute super."Baggins"; + "Bang" = dontDistribute super."Bang"; + "Barracuda" = dontDistribute super."Barracuda"; + "Befunge93" = dontDistribute super."Befunge93"; + "BenchmarkHistory" = dontDistribute super."BenchmarkHistory"; + "BerkeleyDB" = dontDistribute super."BerkeleyDB"; + "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; + "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BigPixel" = dontDistribute super."BigPixel"; + "Binpack" = dontDistribute super."Binpack"; + "Biobase" = dontDistribute super."Biobase"; + "BiobaseBlast" = dontDistribute super."BiobaseBlast"; + "BiobaseDotP" = dontDistribute super."BiobaseDotP"; + "BiobaseFR3D" = dontDistribute super."BiobaseFR3D"; + "BiobaseFasta" = dontDistribute super."BiobaseFasta"; + "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; + "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; + "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; + "BiobaseTurner" = dontDistribute super."BiobaseTurner"; + "BiobaseTypes" = dontDistribute super."BiobaseTypes"; + "BiobaseVienna" = dontDistribute super."BiobaseVienna"; + "BiobaseXNA" = dontDistribute super."BiobaseXNA"; + "BirdPP" = dontDistribute super."BirdPP"; + "BitSyntax" = dontDistribute super."BitSyntax"; + "Bitly" = dontDistribute super."Bitly"; + "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_5"; + "BluePrintCSS" = dontDistribute super."BluePrintCSS"; + "Blueprint" = dontDistribute super."Blueprint"; + "Bookshelf" = dontDistribute super."Bookshelf"; + "Bravo" = dontDistribute super."Bravo"; + "BufferedSocket" = dontDistribute super."BufferedSocket"; + "Buster" = dontDistribute super."Buster"; + "CBOR" = dontDistribute super."CBOR"; + "CC-delcont" = dontDistribute super."CC-delcont"; + "CC-delcont-alt" = dontDistribute super."CC-delcont-alt"; + "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe"; + "CC-delcont-exc" = dontDistribute super."CC-delcont-exc"; + "CC-delcont-ref" = dontDistribute super."CC-delcont-ref"; + "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf"; + "CCA" = dontDistribute super."CCA"; + "CHXHtml" = dontDistribute super."CHXHtml"; + "CLASE" = dontDistribute super."CLASE"; + "CLI" = dontDistribute super."CLI"; + "CMCompare" = dontDistribute super."CMCompare"; + "CMQ" = dontDistribute super."CMQ"; + "COrdering" = dontDistribute super."COrdering"; + "CPBrainfuck" = dontDistribute super."CPBrainfuck"; + "CPL" = dontDistribute super."CPL"; + "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage"; + "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules"; + "CSPM-Frontend" = dontDistribute super."CSPM-Frontend"; + "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter"; + "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog"; + "CSPM-cspm" = dontDistribute super."CSPM-cspm"; + "CTRex" = dontDistribute super."CTRex"; + "CV" = dontDistribute super."CV"; + "CabalSearch" = dontDistribute super."CabalSearch"; + "Capabilities" = dontDistribute super."Capabilities"; + "Cardinality" = dontDistribute super."Cardinality"; + "CarneadesDSL" = dontDistribute super."CarneadesDSL"; + "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; + "Cascade" = dontDistribute super."Cascade"; + "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; + "Chart-diagrams" = dontDistribute super."Chart-diagrams"; + "Chart-gtk" = dontDistribute super."Chart-gtk"; + "Chart-simple" = dontDistribute super."Chart-simple"; + "CheatSheet" = dontDistribute super."CheatSheet"; + "Checked" = dontDistribute super."Checked"; + "Chitra" = dontDistribute super."Chitra"; + "ChristmasTree" = dontDistribute super."ChristmasTree"; + "CirruParser" = dontDistribute super."CirruParser"; + "ClassLaws" = dontDistribute super."ClassLaws"; + "ClassyPrelude" = dontDistribute super."ClassyPrelude"; + "Clean" = dontDistribute super."Clean"; + "Clipboard" = dontDistribute super."Clipboard"; + "Coadjute" = dontDistribute super."Coadjute"; + "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; + "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; + "Combinatorrent" = dontDistribute super."Combinatorrent"; + "Command" = dontDistribute super."Command"; + "Commando" = dontDistribute super."Commando"; + "ComonadSheet" = dontDistribute super."ComonadSheet"; + "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; + "Concurrential" = dontDistribute super."Concurrential"; + "Condor" = dontDistribute super."Condor"; + "ConfigFileTH" = dontDistribute super."ConfigFileTH"; + "Configger" = dontDistribute super."Configger"; + "Configurable" = dontDistribute super."Configurable"; + "ConsStream" = dontDistribute super."ConsStream"; + "Conscript" = dontDistribute super."Conscript"; + "ConstraintKinds" = dontDistribute super."ConstraintKinds"; + "Consumer" = dontDistribute super."Consumer"; + "ContArrow" = dontDistribute super."ContArrow"; + "ContextAlgebra" = dontDistribute super."ContextAlgebra"; + "Contract" = dontDistribute super."Contract"; + "Control-Engine" = dontDistribute super."Control-Engine"; + "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass"; + "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2"; + "CoreDump" = dontDistribute super."CoreDump"; + "CoreErlang" = dontDistribute super."CoreErlang"; + "CoreFoundation" = dontDistribute super."CoreFoundation"; + "Coroutine" = dontDistribute super."Coroutine"; + "CouchDB" = dontDistribute super."CouchDB"; + "Craft3e" = dontDistribute super."Craft3e"; + "Crypto" = dontDistribute super."Crypto"; + "CurryDB" = dontDistribute super."CurryDB"; + "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DBlimited" = dontDistribute super."DBlimited"; + "DBus" = dontDistribute super."DBus"; + "DCFL" = dontDistribute super."DCFL"; + "DMuCheck" = dontDistribute super."DMuCheck"; + "DOM" = dontDistribute super."DOM"; + "DP" = dontDistribute super."DP"; + "DPM" = dontDistribute super."DPM"; + "DSA" = dontDistribute super."DSA"; + "DSH" = dontDistribute super."DSH"; + "DSTM" = dontDistribute super."DSTM"; + "DTC" = dontDistribute super."DTC"; + "Dangerous" = dontDistribute super."Dangerous"; + "Dao" = dontDistribute super."Dao"; + "DarcsHelpers" = dontDistribute super."DarcsHelpers"; + "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent"; + "Data-Rope" = dontDistribute super."Data-Rope"; + "DataTreeView" = dontDistribute super."DataTreeView"; + "Deadpan-DDP" = dontDistribute super."Deadpan-DDP"; + "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers"; + "DecisionTree" = dontDistribute super."DecisionTree"; + "DeepArrow" = dontDistribute super."DeepArrow"; + "DefendTheKing" = dontDistribute super."DefendTheKing"; + "DescriptiveKeys" = dontDistribute super."DescriptiveKeys"; + "Dflow" = dontDistribute super."Dflow"; + "DifferenceLogic" = dontDistribute super."DifferenceLogic"; + "DifferentialEvolution" = dontDistribute super."DifferentialEvolution"; + "Digit" = dontDistribute super."Digit"; + "DigitalOcean" = dontDistribute super."DigitalOcean"; + "DimensionalHash" = dontDistribute super."DimensionalHash"; + "DirectSound" = dontDistribute super."DirectSound"; + "DisTract" = dontDistribute super."DisTract"; + "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem"; + "Dish" = dontDistribute super."Dish"; + "Dist" = dontDistribute super."Dist"; + "DistanceTransform" = dontDistribute super."DistanceTransform"; + "DistanceUnits" = dontDistribute super."DistanceUnits"; + "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment"; + "DocTest" = dontDistribute super."DocTest"; + "Docs" = dontDistribute super."Docs"; + "DrHylo" = dontDistribute super."DrHylo"; + "DrIFT" = dontDistribute super."DrIFT"; + "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized"; + "Dung" = dontDistribute super."Dung"; + "Dust" = dontDistribute super."Dust"; + "Dust-crypto" = dontDistribute super."Dust-crypto"; + "Dust-tools" = dontDistribute super."Dust-tools"; + "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap"; + "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp"; + "DysFRP" = dontDistribute super."DysFRP"; + "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; + "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; + "EEConfig" = dontDistribute super."EEConfig"; + "EdisonAPI" = dontDistribute super."EdisonAPI"; + "EdisonCore" = dontDistribute super."EdisonCore"; + "EditTimeReport" = dontDistribute super."EditTimeReport"; + "EitherT" = dontDistribute super."EitherT"; + "Elm" = dontDistribute super."Elm"; + "Emping" = dontDistribute super."Emping"; + "Encode" = dontDistribute super."Encode"; + "EnumContainers" = dontDistribute super."EnumContainers"; + "EnumMap" = dontDistribute super."EnumMap"; + "Eq" = dontDistribute super."Eq"; + "EqualitySolver" = dontDistribute super."EqualitySolver"; + "EsounD" = dontDistribute super."EsounD"; + "EstProgress" = dontDistribute super."EstProgress"; + "EtaMOO" = dontDistribute super."EtaMOO"; + "Etage" = dontDistribute super."Etage"; + "Etage-Graph" = dontDistribute super."Etage-Graph"; + "Eternal10Seconds" = dontDistribute super."Eternal10Seconds"; + "Etherbunny" = dontDistribute super."Etherbunny"; + "EuroIT" = dontDistribute super."EuroIT"; + "Euterpea" = dontDistribute super."Euterpea"; + "EventSocket" = dontDistribute super."EventSocket"; + "Extra" = dontDistribute super."Extra"; + "FComp" = dontDistribute super."FComp"; + "FM-SBLEX" = dontDistribute super."FM-SBLEX"; + "FModExRaw" = dontDistribute super."FModExRaw"; + "FPretty" = dontDistribute super."FPretty"; + "FTGL" = dontDistribute super."FTGL"; + "FTGL-bytestring" = dontDistribute super."FTGL-bytestring"; + "FTPLine" = dontDistribute super."FTPLine"; + "Facts" = dontDistribute super."Facts"; + "FailureT" = dontDistribute super."FailureT"; + "FastxPipe" = dontDistribute super."FastxPipe"; + "FermatsLastMargin" = dontDistribute super."FermatsLastMargin"; + "FerryCore" = dontDistribute super."FerryCore"; + "Feval" = dontDistribute super."Feval"; + "FieldTrip" = dontDistribute super."FieldTrip"; + "FileManip" = dontDistribute super."FileManip"; + "FileManipCompat" = dontDistribute super."FileManipCompat"; + "FilePather" = dontDistribute super."FilePather"; + "FileSystem" = dontDistribute super."FileSystem"; + "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo"; + "Finance-Treasury" = dontDistribute super."Finance-Treasury"; + "FiniteMap" = dontDistribute super."FiniteMap"; + "FirstOrderTheory" = dontDistribute super."FirstOrderTheory"; + "FixedPoint-simple" = dontDistribute super."FixedPoint-simple"; + "Flippi" = dontDistribute super."Flippi"; + "Focus" = dontDistribute super."Focus"; + "Folly" = dontDistribute super."Folly"; + "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; + "ForkableT" = dontDistribute super."ForkableT"; + "FormalGrammars" = dontDistribute super."FormalGrammars"; + "Foster" = dontDistribute super."Foster"; + "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; + "Fractaler" = dontDistribute super."Fractaler"; + "Frank" = dontDistribute super."Frank"; + "FreeTypeGL" = dontDistribute super."FreeTypeGL"; + "FunGEn" = dontDistribute super."FunGEn"; + "Fungi" = dontDistribute super."Fungi"; + "GA" = dontDistribute super."GA"; + "GGg" = dontDistribute super."GGg"; + "GHood" = dontDistribute super."GHood"; + "GLFW" = dontDistribute super."GLFW"; + "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; + "GLFW-task" = dontDistribute super."GLFW-task"; + "GLHUI" = dontDistribute super."GLHUI"; + "GLM" = dontDistribute super."GLM"; + "GLMatrix" = dontDistribute super."GLMatrix"; + "GLUtil" = dontDistribute super."GLUtil"; + "GPX" = dontDistribute super."GPX"; + "GPipe-Collada" = dontDistribute super."GPipe-Collada"; + "GPipe-Examples" = dontDistribute super."GPipe-Examples"; + "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad"; + "GTALib" = dontDistribute super."GTALib"; + "Gamgine" = dontDistribute super."Gamgine"; + "Ganymede" = dontDistribute super."Ganymede"; + "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration"; + "GeBoP" = dontDistribute super."GeBoP"; + "GenI" = dontDistribute super."GenI"; + "GenSmsPdu" = dontDistribute super."GenSmsPdu"; + "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe"; + "GenussFold" = dontDistribute super."GenussFold"; + "GeoIp" = dontDistribute super."GeoIp"; + "GeocoderOpenCage" = dontDistribute super."GeocoderOpenCage"; + "Geodetic" = dontDistribute super."Geodetic"; + "GeomPredicates" = dontDistribute super."GeomPredicates"; + "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE"; + "GiST" = dontDistribute super."GiST"; + "Gifcurry" = dontDistribute super."Gifcurry"; + "GiveYouAHead" = dontDistribute super."GiveYouAHead"; + "GlomeTrace" = dontDistribute super."GlomeTrace"; + "GlomeVec" = dontDistribute super."GlomeVec"; + "GlomeView" = dontDistribute super."GlomeView"; + "GoogleChart" = dontDistribute super."GoogleChart"; + "GoogleDirections" = dontDistribute super."GoogleDirections"; + "GoogleSB" = dontDistribute super."GoogleSB"; + "GoogleSuggest" = dontDistribute super."GoogleSuggest"; + "GoogleTranslate" = dontDistribute super."GoogleTranslate"; + "GotoT-transformers" = dontDistribute super."GotoT-transformers"; + "GrammarProducts" = dontDistribute super."GrammarProducts"; + "Graph500" = dontDistribute super."Graph500"; + "GraphHammer" = dontDistribute super."GraphHammer"; + "GraphHammer-examples" = dontDistribute super."GraphHammer-examples"; + "Graphalyze" = dontDistribute super."Graphalyze"; + "Grempa" = dontDistribute super."Grempa"; + "GroteTrap" = dontDistribute super."GroteTrap"; + "Grow" = dontDistribute super."Grow"; + "GrowlNotify" = dontDistribute super."GrowlNotify"; + "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics"; + "GtkGLTV" = dontDistribute super."GtkGLTV"; + "GtkTV" = dontDistribute super."GtkTV"; + "GuiHaskell" = dontDistribute super."GuiHaskell"; + "GuiTV" = dontDistribute super."GuiTV"; + "HARM" = dontDistribute super."HARM"; + "HAppS-Data" = dontDistribute super."HAppS-Data"; + "HAppS-IxSet" = dontDistribute super."HAppS-IxSet"; + "HAppS-Server" = dontDistribute super."HAppS-Server"; + "HAppS-State" = dontDistribute super."HAppS-State"; + "HAppS-Util" = dontDistribute super."HAppS-Util"; + "HAppSHelpers" = dontDistribute super."HAppSHelpers"; + "HCL" = dontDistribute super."HCL"; + "HCard" = dontDistribute super."HCard"; + "HDBC-mysql" = dontDistribute super."HDBC-mysql"; + "HDBC-odbc" = dontDistribute super."HDBC-odbc"; + "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore"; + "HDBC-session" = dontDistribute super."HDBC-session"; + "HDRUtils" = dontDistribute super."HDRUtils"; + "HERA" = dontDistribute super."HERA"; + "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; + "HFuse" = dontDistribute super."HFuse"; + "HGL" = dontDistribute super."HGL"; + "HGamer3D" = dontDistribute super."HGamer3D"; + "HGamer3D-API" = dontDistribute super."HGamer3D-API"; + "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio"; + "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding"; + "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding"; + "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding"; + "HGamer3D-Common" = dontDistribute super."HGamer3D-Common"; + "HGamer3D-Data" = dontDistribute super."HGamer3D-Data"; + "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding"; + "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI"; + "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D"; + "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem"; + "HGamer3D-Network" = dontDistribute super."HGamer3D-Network"; + "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding"; + "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding"; + "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding"; + "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding"; + "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent"; + "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire"; + "HGraphStorage" = dontDistribute super."HGraphStorage"; + "HHDL" = dontDistribute super."HHDL"; + "HJScript" = dontDistribute super."HJScript"; + "HJVM" = dontDistribute super."HJVM"; + "HJavaScript" = dontDistribute super."HJavaScript"; + "HLearn-algebra" = dontDistribute super."HLearn-algebra"; + "HLearn-approximation" = dontDistribute super."HLearn-approximation"; + "HLearn-classification" = dontDistribute super."HLearn-classification"; + "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; + "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HListPP" = dontDistribute super."HListPP"; + "HLogger" = dontDistribute super."HLogger"; + "HMM" = dontDistribute super."HMM"; + "HMap" = dontDistribute super."HMap"; + "HNM" = dontDistribute super."HNM"; + "HODE" = dontDistribute super."HODE"; + "HOpenCV" = dontDistribute super."HOpenCV"; + "HPath" = dontDistribute super."HPath"; + "HPi" = dontDistribute super."HPi"; + "HPlot" = dontDistribute super."HPlot"; + "HPong" = dontDistribute super."HPong"; + "HROOT" = dontDistribute super."HROOT"; + "HROOT-core" = dontDistribute super."HROOT-core"; + "HROOT-graf" = dontDistribute super."HROOT-graf"; + "HROOT-hist" = dontDistribute super."HROOT-hist"; + "HROOT-io" = dontDistribute super."HROOT-io"; + "HROOT-math" = dontDistribute super."HROOT-math"; + "HRay" = dontDistribute super."HRay"; + "HSFFIG" = dontDistribute super."HSFFIG"; + "HSGEP" = dontDistribute super."HSGEP"; + "HSH" = dontDistribute super."HSH"; + "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSlippyMap" = dontDistribute super."HSlippyMap"; + "HSmarty" = dontDistribute super."HSmarty"; + "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; + "HSvm" = dontDistribute super."HSvm"; + "HTTP-Simple" = dontDistribute super."HTTP-Simple"; + "HTab" = dontDistribute super."HTab"; + "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit-Diff" = dontDistribute super."HUnit-Diff"; + "HUnit-Plus" = dontDistribute super."HUnit-Plus"; + "HUnit-approx" = dontDistribute super."HUnit-approx"; + "HXMPP" = dontDistribute super."HXMPP"; + "HXQ" = dontDistribute super."HXQ"; + "HaLeX" = dontDistribute super."HaLeX"; + "HaMinitel" = dontDistribute super."HaMinitel"; + "HaPy" = dontDistribute super."HaPy"; + "HaTeX-meta" = dontDistribute super."HaTeX-meta"; + "HaTeX-qq" = dontDistribute super."HaTeX-qq"; + "HaVSA" = dontDistribute super."HaVSA"; + "Hach" = dontDistribute super."Hach"; + "HackMail" = dontDistribute super."HackMail"; + "Haggressive" = dontDistribute super."Haggressive"; + "HandlerSocketClient" = dontDistribute super."HandlerSocketClient"; + "Hangman" = dontDistribute super."Hangman"; + "HarmTrace" = dontDistribute super."HarmTrace"; + "HarmTrace-Base" = dontDistribute super."HarmTrace-Base"; + "HasGP" = dontDistribute super."HasGP"; + "Haschoo" = dontDistribute super."Haschoo"; + "Hashell" = dontDistribute super."Hashell"; + "HaskRel" = dontDistribute super."HaskRel"; + "HaskellForMaths" = dontDistribute super."HaskellForMaths"; + "HaskellLM" = dontDistribute super."HaskellLM"; + "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellTorrent" = dontDistribute super."HaskellTorrent"; + "HaskellTutorials" = dontDistribute super."HaskellTutorials"; + "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; + "Hawk" = dontDistribute super."Hawk"; + "Hayoo" = dontDistribute super."Hayoo"; + "Hclip" = dontDistribute super."Hclip"; + "Hedi" = dontDistribute super."Hedi"; + "HerbiePlugin" = dontDistribute super."HerbiePlugin"; + "Hermes" = dontDistribute super."Hermes"; + "Hieroglyph" = dontDistribute super."Hieroglyph"; + "HiggsSet" = dontDistribute super."HiggsSet"; + "Hipmunk" = dontDistribute super."Hipmunk"; + "HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; + "Hish" = dontDistribute super."Hish"; + "Histogram" = dontDistribute super."Histogram"; + "Hmpf" = dontDistribute super."Hmpf"; + "Hoed" = dontDistribute super."Hoed"; + "HoleyMonoid" = dontDistribute super."HoleyMonoid"; + "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution"; + "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce"; + "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine"; + "Holumbus-Storage" = dontDistribute super."Holumbus-Storage"; + "Homology" = dontDistribute super."Homology"; + "HongoDB" = dontDistribute super."HongoDB"; + "HostAndPort" = dontDistribute super."HostAndPort"; + "Hricket" = dontDistribute super."Hricket"; + "Hs2lib" = dontDistribute super."Hs2lib"; + "HsASA" = dontDistribute super."HsASA"; + "HsHaruPDF" = dontDistribute super."HsHaruPDF"; + "HsHyperEstraier" = dontDistribute super."HsHyperEstraier"; + "HsJudy" = dontDistribute super."HsJudy"; + "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system"; + "HsParrot" = dontDistribute super."HsParrot"; + "HsPerl5" = dontDistribute super."HsPerl5"; + "HsSVN" = dontDistribute super."HsSVN"; + "HsTools" = dontDistribute super."HsTools"; + "Hsed" = dontDistribute super."Hsed"; + "Hsmtlib" = dontDistribute super."Hsmtlib"; + "HueAPI" = dontDistribute super."HueAPI"; + "HulkImport" = dontDistribute super."HulkImport"; + "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres"; + "IDynamic" = dontDistribute super."IDynamic"; + "IFS" = dontDistribute super."IFS"; + "INblobs" = dontDistribute super."INblobs"; + "IOR" = dontDistribute super."IOR"; + "IORefCAS" = dontDistribute super."IORefCAS"; + "IOSpec" = dontDistribute super."IOSpec"; + "IcoGrid" = dontDistribute super."IcoGrid"; + "Imlib" = dontDistribute super."Imlib"; + "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; + "IndentParser" = dontDistribute super."IndentParser"; + "IndexedList" = dontDistribute super."IndexedList"; + "InfixApplicative" = dontDistribute super."InfixApplicative"; + "Interpolation" = dontDistribute super."Interpolation"; + "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "Irc" = dontDistribute super."Irc"; + "IrrHaskell" = dontDistribute super."IrrHaskell"; + "IsNull" = dontDistribute super."IsNull"; + "JSON-Combinator" = dontDistribute super."JSON-Combinator"; + "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples"; + "JSONb" = dontDistribute super."JSONb"; + "JYU-Utils" = dontDistribute super."JYU-Utils"; + "JackMiniMix" = dontDistribute super."JackMiniMix"; + "Javasf" = dontDistribute super."Javasf"; + "Javav" = dontDistribute super."Javav"; + "JsContracts" = dontDistribute super."JsContracts"; + "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JunkDB" = dontDistribute super."JunkDB"; + "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; + "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables"; + "JustParse" = dontDistribute super."JustParse"; + "KMP" = dontDistribute super."KMP"; + "KSP" = dontDistribute super."KSP"; + "Kalman" = dontDistribute super."Kalman"; + "KdTree" = dontDistribute super."KdTree"; + "Ketchup" = dontDistribute super."Ketchup"; + "KiCS" = dontDistribute super."KiCS"; + "KiCS-debugger" = dontDistribute super."KiCS-debugger"; + "KiCS-prophecy" = dontDistribute super."KiCS-prophecy"; + "Kleislify" = dontDistribute super."Kleislify"; + "Konf" = dontDistribute super."Konf"; + "Kriens" = dontDistribute super."Kriens"; + "KyotoCabinet" = dontDistribute super."KyotoCabinet"; + "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; + "LDAP" = dontDistribute super."LDAP"; + "LRU" = dontDistribute super."LRU"; + "LTree" = dontDistribute super."LTree"; + "LambdaCalculator" = dontDistribute super."LambdaCalculator"; + "LambdaHack" = dontDistribute super."LambdaHack"; + "LambdaINet" = dontDistribute super."LambdaINet"; + "LambdaNet" = dontDistribute super."LambdaNet"; + "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; + "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdajudge" = dontDistribute super."Lambdajudge"; + "Lambdaya" = dontDistribute super."Lambdaya"; + "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; + "Lastik" = dontDistribute super."Lastik"; + "Lattices" = dontDistribute super."Lattices"; + "Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2"; + "LazyVault" = dontDistribute super."LazyVault"; + "Level0" = dontDistribute super."Level0"; + "LibClang" = dontDistribute super."LibClang"; + "Limit" = dontDistribute super."Limit"; + "LinearSplit" = dontDistribute super."LinearSplit"; + "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; + "LinkChecker" = dontDistribute super."LinkChecker"; + "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; + "ListZipper" = dontDistribute super."ListZipper"; + "Logic" = dontDistribute super."Logic"; + "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; + "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI"; + "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network"; + "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes"; + "LslPlus" = dontDistribute super."LslPlus"; + "Lucu" = dontDistribute super."Lucu"; + "MASMGen" = dontDistribute super."MASMGen"; + "MC-Fold-DP" = dontDistribute super."MC-Fold-DP"; + "MHask" = dontDistribute super."MHask"; + "MSQueue" = dontDistribute super."MSQueue"; + "MTGBuilder" = dontDistribute super."MTGBuilder"; + "MagicHaskeller" = dontDistribute super."MagicHaskeller"; + "MailchimpSimple" = dontDistribute super."MailchimpSimple"; + "MaybeT" = dontDistribute super."MaybeT"; + "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf"; + "MaybeT-transformers" = dontDistribute super."MaybeT-transformers"; + "MazesOfMonad" = dontDistribute super."MazesOfMonad"; + "MeanShift" = dontDistribute super."MeanShift"; + "Measure" = dontDistribute super."Measure"; + "MetaHDBC" = dontDistribute super."MetaHDBC"; + "MetaObject" = dontDistribute super."MetaObject"; + "Metrics" = dontDistribute super."Metrics"; + "Mhailist" = dontDistribute super."Mhailist"; + "Michelangelo" = dontDistribute super."Michelangelo"; + "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator"; + "MiniAgda" = dontDistribute super."MiniAgda"; + "MissingK" = dontDistribute super."MissingK"; + "MissingM" = dontDistribute super."MissingM"; + "MissingPy" = dontDistribute super."MissingPy"; + "Modulo" = dontDistribute super."Modulo"; + "Moe" = dontDistribute super."Moe"; + "MoeDict" = dontDistribute super."MoeDict"; + "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl"; + "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign"; + "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; + "MonadCompose" = dontDistribute super."MonadCompose"; + "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; + "MonadStack" = dontDistribute super."MonadStack"; + "Monadius" = dontDistribute super."Monadius"; + "Monaris" = dontDistribute super."Monaris"; + "Monatron" = dontDistribute super."Monatron"; + "Monatron-IO" = dontDistribute super."Monatron-IO"; + "Monocle" = dontDistribute super."Monocle"; + "MorseCode" = dontDistribute super."MorseCode"; + "MuCheck" = dontDistribute super."MuCheck"; + "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit"; + "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec"; + "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck"; + "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck"; + "Munkres" = dontDistribute super."Munkres"; + "Munkres-simple" = dontDistribute super."Munkres-simple"; + "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid"; + "MyPrimes" = dontDistribute super."MyPrimes"; + "NGrams" = dontDistribute super."NGrams"; + "NTRU" = dontDistribute super."NTRU"; + "NXT" = dontDistribute super."NXT"; + "NXTDSL" = dontDistribute super."NXTDSL"; + "NanoProlog" = dontDistribute super."NanoProlog"; + "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets"; + "NaturalSort" = dontDistribute super."NaturalSort"; + "NearContextAlgebra" = dontDistribute super."NearContextAlgebra"; + "Neks" = dontDistribute super."Neks"; + "NestedFunctor" = dontDistribute super."NestedFunctor"; + "NestedSampling" = dontDistribute super."NestedSampling"; + "NetSNMP" = dontDistribute super."NetSNMP"; + "NewBinary" = dontDistribute super."NewBinary"; + "Ninjas" = dontDistribute super."Ninjas"; + "NoSlow" = dontDistribute super."NoSlow"; + "NoTrace" = dontDistribute super."NoTrace"; + "Noise" = dontDistribute super."Noise"; + "Nomyx" = dontDistribute super."Nomyx"; + "Nomyx-Core" = dontDistribute super."Nomyx-Core"; + "Nomyx-Language" = dontDistribute super."Nomyx-Language"; + "Nomyx-Rules" = dontDistribute super."Nomyx-Rules"; + "Nomyx-Web" = dontDistribute super."Nomyx-Web"; + "NonEmpty" = dontDistribute super."NonEmpty"; + "NonEmptyList" = dontDistribute super."NonEmptyList"; + "NumLazyByteString" = dontDistribute super."NumLazyByteString"; + "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; + "Numbers" = dontDistribute super."Numbers"; + "Nussinov78" = dontDistribute super."Nussinov78"; + "Nutri" = dontDistribute super."Nutri"; + "OGL" = dontDistribute super."OGL"; + "OSM" = dontDistribute super."OSM"; + "OTP" = dontDistribute super."OTP"; + "Object" = dontDistribute super."Object"; + "ObjectIO" = dontDistribute super."ObjectIO"; + "Obsidian" = dontDistribute super."Obsidian"; + "OddWord" = dontDistribute super."OddWord"; + "Omega" = dontDistribute super."Omega"; + "OneTuple" = dontDistribute super."OneTuple"; + "OpenAFP" = dontDistribute super."OpenAFP"; + "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils"; + "OpenAL" = dontDistribute super."OpenAL"; + "OpenCL" = dontDistribute super."OpenCL"; + "OpenCLRaw" = dontDistribute super."OpenCLRaw"; + "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; + "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw21" = dontDistribute super."OpenGLRaw21"; + "OpenSCAD" = dontDistribute super."OpenSCAD"; + "OpenVG" = dontDistribute super."OpenVG"; + "OpenVGRaw" = dontDistribute super."OpenVGRaw"; + "Operads" = dontDistribute super."Operads"; + "OptDir" = dontDistribute super."OptDir"; + "OrPatterns" = dontDistribute super."OrPatterns"; + "OrchestrateDB" = dontDistribute super."OrchestrateDB"; + "OrderedBits" = dontDistribute super."OrderedBits"; + "Ordinals" = dontDistribute super."Ordinals"; + "PArrows" = dontDistribute super."PArrows"; + "PBKDF2" = dontDistribute super."PBKDF2"; + "PCLT" = dontDistribute super."PCLT"; + "PCLT-DB" = dontDistribute super."PCLT-DB"; + "PDBtools" = dontDistribute super."PDBtools"; + "PTQ" = dontDistribute super."PTQ"; + "PUH-Project" = dontDistribute super."PUH-Project"; + "PageIO" = dontDistribute super."PageIO"; + "Paillier" = dontDistribute super."Paillier"; + "PandocAgda" = dontDistribute super."PandocAgda"; + "Paraiso" = dontDistribute super."Paraiso"; + "Parry" = dontDistribute super."Parry"; + "ParsecTools" = dontDistribute super."ParsecTools"; + "ParserFunction" = dontDistribute super."ParserFunction"; + "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; + "PasswordGenerator" = dontDistribute super."PasswordGenerator"; + "PastePipe" = dontDistribute super."PastePipe"; + "Pathfinder" = dontDistribute super."Pathfinder"; + "Peano" = dontDistribute super."Peano"; + "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; + "PerfectHash" = dontDistribute super."PerfectHash"; + "PermuteEffects" = dontDistribute super."PermuteEffects"; + "Phsu" = dontDistribute super."Phsu"; + "Pipe" = dontDistribute super."Pipe"; + "Piso" = dontDistribute super."Piso"; + "PlayHangmanGame" = dontDistribute super."PlayHangmanGame"; + "PlayingCards" = dontDistribute super."PlayingCards"; + "Plot-ho-matic" = dontDistribute super."Plot-ho-matic"; + "PlslTools" = dontDistribute super."PlslTools"; + "Plural" = dontDistribute super."Plural"; + "Pollutocracy" = dontDistribute super."Pollutocracy"; + "PortFusion" = dontDistribute super."PortFusion"; + "PortMidi" = dontDistribute super."PortMidi"; + "PostgreSQL" = dontDistribute super."PostgreSQL"; + "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; + "Printf-TH" = dontDistribute super."Printf-TH"; + "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; + "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; + "PropLogic" = dontDistribute super."PropLogic"; + "Proper" = dontDistribute super."Proper"; + "ProxN" = dontDistribute super."ProxN"; + "Pugs" = dontDistribute super."Pugs"; + "Pup-Events" = dontDistribute super."Pup-Events"; + "Pup-Events-Client" = dontDistribute super."Pup-Events-Client"; + "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo"; + "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; + "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; + "QIO" = dontDistribute super."QIO"; + "QuadEdge" = dontDistribute super."QuadEdge"; + "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; + "QuickAnnotate" = dontDistribute super."QuickAnnotate"; + "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; + "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; + "QuickCheck-safe" = dontDistribute super."QuickCheck-safe"; + "QuickPlot" = dontDistribute super."QuickPlot"; + "Quickson" = dontDistribute super."Quickson"; + "R-pandoc" = dontDistribute super."R-pandoc"; + "RANSAC" = dontDistribute super."RANSAC"; + "RBTree" = dontDistribute super."RBTree"; + "RESTng" = dontDistribute super."RESTng"; + "RFC1751" = dontDistribute super."RFC1751"; + "RJson" = dontDistribute super."RJson"; + "RMP" = dontDistribute super."RMP"; + "RNAFold" = dontDistribute super."RNAFold"; + "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; + "RNAdesign" = dontDistribute super."RNAdesign"; + "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = doDistribute super."RNAlien_1_0_0"; + "RNAwolf" = dontDistribute super."RNAwolf"; + "Raincat" = dontDistribute super."Raincat"; + "Random123" = dontDistribute super."Random123"; + "RandomDotOrg" = dontDistribute super."RandomDotOrg"; + "Randometer" = dontDistribute super."Randometer"; + "Range" = dontDistribute super."Range"; + "Ranged-sets" = dontDistribute super."Ranged-sets"; + "Ranka" = dontDistribute super."Ranka"; + "Rasenschach" = dontDistribute super."Rasenschach"; + "Redmine" = dontDistribute super."Redmine"; + "Ref" = dontDistribute super."Ref"; + "Referees" = dontDistribute super."Referees"; + "RepLib" = dontDistribute super."RepLib"; + "ReplicateEffects" = dontDistribute super."ReplicateEffects"; + "ReviewBoard" = dontDistribute super."ReviewBoard"; + "RichConditional" = dontDistribute super."RichConditional"; + "RollingDirectory" = dontDistribute super."RollingDirectory"; + "RoyalMonad" = dontDistribute super."RoyalMonad"; + "RxHaskell" = dontDistribute super."RxHaskell"; + "SBench" = dontDistribute super."SBench"; + "SConfig" = dontDistribute super."SConfig"; + "SDL" = dontDistribute super."SDL"; + "SDL-gfx" = dontDistribute super."SDL-gfx"; + "SDL-image" = dontDistribute super."SDL-image"; + "SDL-mixer" = dontDistribute super."SDL-mixer"; + "SDL-mpeg" = dontDistribute super."SDL-mpeg"; + "SDL-ttf" = dontDistribute super."SDL-ttf"; + "SDL2-ttf" = dontDistribute super."SDL2-ttf"; + "SFML" = dontDistribute super."SFML"; + "SFML-control" = dontDistribute super."SFML-control"; + "SFont" = dontDistribute super."SFont"; + "SG" = dontDistribute super."SG"; + "SGdemo" = dontDistribute super."SGdemo"; + "SHA2" = dontDistribute super."SHA2"; + "SMTPClient" = dontDistribute super."SMTPClient"; + "SNet" = dontDistribute super."SNet"; + "SQLDeps" = dontDistribute super."SQLDeps"; + "STL" = dontDistribute super."STL"; + "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = dontDistribute super."SVGFonts"; + "SVGPath" = dontDistribute super."SVGPath"; + "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; + "SableCC2Hs" = dontDistribute super."SableCC2Hs"; + "Safe" = dontDistribute super."Safe"; + "Salsa" = dontDistribute super."Salsa"; + "Saturnin" = dontDistribute super."Saturnin"; + "SciFlow" = dontDistribute super."SciFlow"; + "ScratchFs" = dontDistribute super."ScratchFs"; + "Scurry" = dontDistribute super."Scurry"; + "Semantique" = dontDistribute super."Semantique"; + "Semigroup" = dontDistribute super."Semigroup"; + "SeqAlign" = dontDistribute super."SeqAlign"; + "SessionLogger" = dontDistribute super."SessionLogger"; + "ShellCheck" = dontDistribute super."ShellCheck"; + "Shellac" = dontDistribute super."Shellac"; + "Shellac-compatline" = dontDistribute super."Shellac-compatline"; + "Shellac-editline" = dontDistribute super."Shellac-editline"; + "Shellac-haskeline" = dontDistribute super."Shellac-haskeline"; + "Shellac-readline" = dontDistribute super."Shellac-readline"; + "ShowF" = dontDistribute super."ShowF"; + "Shrub" = dontDistribute super."Shrub"; + "Shu-thing" = dontDistribute super."Shu-thing"; + "SimpleAES" = dontDistribute super."SimpleAES"; + "SimpleEA" = dontDistribute super."SimpleEA"; + "SimpleGL" = dontDistribute super."SimpleGL"; + "SimpleH" = dontDistribute super."SimpleH"; + "SimpleLog" = dontDistribute super."SimpleLog"; + "SimpleServer" = dontDistribute super."SimpleServer"; + "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; + "Smooth" = dontDistribute super."Smooth"; + "SmtLib" = dontDistribute super."SmtLib"; + "Snusmumrik" = dontDistribute super."Snusmumrik"; + "SoOSiM" = dontDistribute super."SoOSiM"; + "SoccerFun" = dontDistribute super."SoccerFun"; + "SoccerFunGL" = dontDistribute super."SoccerFunGL"; + "Sonnex" = dontDistribute super."Sonnex"; + "SourceGraph" = dontDistribute super."SourceGraph"; + "Southpaw" = dontDistribute super."Southpaw"; + "SpaceInvaders" = dontDistribute super."SpaceInvaders"; + "SpacePrivateers" = dontDistribute super."SpacePrivateers"; + "SpinCounter" = dontDistribute super."SpinCounter"; + "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; + "SpreadsheetML" = dontDistribute super."SpreadsheetML"; + "Sprig" = dontDistribute super."Sprig"; + "Stasis" = dontDistribute super."Stasis"; + "StateVar-transformer" = dontDistribute super."StateVar-transformer"; + "StatisticalMethods" = dontDistribute super."StatisticalMethods"; + "Stomp" = dontDistribute super."Stomp"; + "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; + "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "StrappedTemplates" = dontDistribute super."StrappedTemplates"; + "StrategyLib" = dontDistribute super."StrategyLib"; + "Stream" = dontDistribute super."Stream"; + "StrictBench" = dontDistribute super."StrictBench"; + "SuffixStructures" = dontDistribute super."SuffixStructures"; + "SybWidget" = dontDistribute super."SybWidget"; + "SyntaxMacros" = dontDistribute super."SyntaxMacros"; + "Sysmon" = dontDistribute super."Sysmon"; + "TBC" = dontDistribute super."TBC"; + "TBit" = dontDistribute super."TBit"; + "THEff" = dontDistribute super."THEff"; + "TTTAS" = dontDistribute super."TTTAS"; + "TV" = dontDistribute super."TV"; + "TYB" = dontDistribute super."TYB"; + "TableAlgebra" = dontDistribute super."TableAlgebra"; + "Tables" = dontDistribute super."Tables"; + "Tablify" = dontDistribute super."Tablify"; + "Tainted" = dontDistribute super."Tainted"; + "Takusen" = dontDistribute super."Takusen"; + "Tape" = dontDistribute super."Tape"; + "TeaHS" = dontDistribute super."TeaHS"; + "Tensor" = dontDistribute super."Tensor"; + "TernaryTrees" = dontDistribute super."TernaryTrees"; + "TestExplode" = dontDistribute super."TestExplode"; + "Theora" = dontDistribute super."Theora"; + "Thingie" = dontDistribute super."Thingie"; + "ThreadObjects" = dontDistribute super."ThreadObjects"; + "Thrift" = dontDistribute super."Thrift"; + "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe"; + "TicTacToe" = dontDistribute super."TicTacToe"; + "TigerHash" = dontDistribute super."TigerHash"; + "TimePiece" = dontDistribute super."TimePiece"; + "TinyLaunchbury" = dontDistribute super."TinyLaunchbury"; + "TinyURL" = dontDistribute super."TinyURL"; + "Titim" = dontDistribute super."Titim"; + "Top" = dontDistribute super."Top"; + "Tournament" = dontDistribute super."Tournament"; + "TraceUtils" = dontDistribute super."TraceUtils"; + "TransformersStepByStep" = dontDistribute super."TransformersStepByStep"; + "Transhare" = dontDistribute super."Transhare"; + "TreeCounter" = dontDistribute super."TreeCounter"; + "TreeStructures" = dontDistribute super."TreeStructures"; + "TreeT" = dontDistribute super."TreeT"; + "Treiber" = dontDistribute super."Treiber"; + "TrendGraph" = dontDistribute super."TrendGraph"; + "TrieMap" = dontDistribute super."TrieMap"; + "Twofish" = dontDistribute super."Twofish"; + "TypeClass" = dontDistribute super."TypeClass"; + "TypeCompose" = dontDistribute super."TypeCompose"; + "TypeIlluminator" = dontDistribute super."TypeIlluminator"; + "TypeNat" = dontDistribute super."TypeNat"; + "TypingTester" = dontDistribute super."TypingTester"; + "UISF" = dontDistribute super."UISF"; + "UMM" = dontDistribute super."UMM"; + "URLT" = dontDistribute super."URLT"; + "URLb" = dontDistribute super."URLb"; + "UTFTConverter" = dontDistribute super."UTFTConverter"; + "Unique" = dontDistribute super."Unique"; + "Unixutils-shadow" = dontDistribute super."Unixutils-shadow"; + "Updater" = dontDistribute super."Updater"; + "UrlDisp" = dontDistribute super."UrlDisp"; + "Useful" = dontDistribute super."Useful"; + "UtilityTM" = dontDistribute super."UtilityTM"; + "VKHS" = dontDistribute super."VKHS"; + "Validation" = dontDistribute super."Validation"; + "Vec" = dontDistribute super."Vec"; + "Vec-Boolean" = dontDistribute super."Vec-Boolean"; + "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw"; + "Vec-Transform" = dontDistribute super."Vec-Transform"; + "VecN" = dontDistribute super."VecN"; + "Verba" = dontDistribute super."Verba"; + "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "Vulkan" = dontDistribute super."Vulkan"; + "WAVE" = dontDistribute super."WAVE"; + "WL500gPControl" = dontDistribute super."WL500gPControl"; + "WL500gPLib" = dontDistribute super."WL500gPLib"; + "WMSigner" = dontDistribute super."WMSigner"; + "WURFL" = dontDistribute super."WURFL"; + "WXDiffCtrl" = dontDistribute super."WXDiffCtrl"; + "WashNGo" = dontDistribute super."WashNGo"; + "WaveFront" = dontDistribute super."WaveFront"; + "Weather" = dontDistribute super."Weather"; + "WebBits" = dontDistribute super."WebBits"; + "WebBits-Html" = dontDistribute super."WebBits-Html"; + "WebBits-multiplate" = dontDistribute super."WebBits-multiplate"; + "WebCont" = dontDistribute super."WebCont"; + "WeberLogic" = dontDistribute super."WeberLogic"; + "Webrexp" = dontDistribute super."Webrexp"; + "Wheb" = dontDistribute super."Wheb"; + "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; + "Win32-errors" = dontDistribute super."Win32-errors"; + "Win32-junction-point" = dontDistribute super."Win32-junction-point"; + "Win32-security" = dontDistribute super."Win32-security"; + "Win32-services" = dontDistribute super."Win32-services"; + "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper"; + "Wired" = dontDistribute super."Wired"; + "WordAlignment" = dontDistribute super."WordAlignment"; + "WordNet" = dontDistribute super."WordNet"; + "WordNet-ghc74" = dontDistribute super."WordNet-ghc74"; + "Wordlint" = dontDistribute super."Wordlint"; + "WxGeneric" = dontDistribute super."WxGeneric"; + "X11-extras" = dontDistribute super."X11-extras"; + "X11-rm" = dontDistribute super."X11-rm"; + "X11-xdamage" = dontDistribute super."X11-xdamage"; + "X11-xfixes" = dontDistribute super."X11-xfixes"; + "X11-xft" = dontDistribute super."X11-xft"; + "X11-xshape" = dontDistribute super."X11-xshape"; + "XAttr" = dontDistribute super."XAttr"; + "XInput" = dontDistribute super."XInput"; + "XMMS" = dontDistribute super."XMMS"; + "XMPP" = dontDistribute super."XMPP"; + "XSaiga" = dontDistribute super."XSaiga"; + "Xec" = dontDistribute super."Xec"; + "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter"; + "Xorshift128Plus" = dontDistribute super."Xorshift128Plus"; + "YACPong" = dontDistribute super."YACPong"; + "YFrob" = dontDistribute super."YFrob"; + "Yablog" = dontDistribute super."Yablog"; + "YamlReference" = dontDistribute super."YamlReference"; + "Yampa-core" = dontDistribute super."Yampa-core"; + "Yocto" = dontDistribute super."Yocto"; + "Yogurt" = dontDistribute super."Yogurt"; + "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone"; + "ZEBEDDE" = dontDistribute super."ZEBEDDE"; + "ZFS" = dontDistribute super."ZFS"; + "ZMachine" = dontDistribute super."ZMachine"; + "ZipFold" = dontDistribute super."ZipFold"; + "ZipperAG" = dontDistribute super."ZipperAG"; + "Zora" = dontDistribute super."Zora"; + "Zwaluw" = dontDistribute super."Zwaluw"; + "a50" = dontDistribute super."a50"; + "abacate" = dontDistribute super."abacate"; + "abc-puzzle" = dontDistribute super."abc-puzzle"; + "abcBridge" = dontDistribute super."abcBridge"; + "abcnotation" = dontDistribute super."abcnotation"; + "abeson" = dontDistribute super."abeson"; + "abstract-deque-tests" = dontDistribute super."abstract-deque-tests"; + "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate"; + "abt" = dontDistribute super."abt"; + "ac-machine" = dontDistribute super."ac-machine"; + "ac-machine-conduit" = dontDistribute super."ac-machine-conduit"; + "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic"; + "accelerate-cublas" = dontDistribute super."accelerate-cublas"; + "accelerate-cuda" = dontDistribute super."accelerate-cuda"; + "accelerate-cufft" = dontDistribute super."accelerate-cufft"; + "accelerate-examples" = dontDistribute super."accelerate-examples"; + "accelerate-fft" = dontDistribute super."accelerate-fft"; + "accelerate-fftw" = dontDistribute super."accelerate-fftw"; + "accelerate-fourier" = dontDistribute super."accelerate-fourier"; + "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; + "accelerate-io" = dontDistribute super."accelerate-io"; + "accelerate-random" = dontDistribute super."accelerate-random"; + "accelerate-utility" = dontDistribute super."accelerate-utility"; + "accentuateus" = dontDistribute super."accentuateus"; + "access-time" = dontDistribute super."access-time"; + "acid-state-dist" = dontDistribute super."acid-state-dist"; + "acid-state-tls" = dontDistribute super."acid-state-tls"; + "acl2" = dontDistribute super."acl2"; + "acme-all-monad" = dontDistribute super."acme-all-monad"; + "acme-box" = dontDistribute super."acme-box"; + "acme-cadre" = dontDistribute super."acme-cadre"; + "acme-cofunctor" = dontDistribute super."acme-cofunctor"; + "acme-colosson" = dontDistribute super."acme-colosson"; + "acme-comonad" = dontDistribute super."acme-comonad"; + "acme-cutegirl" = dontDistribute super."acme-cutegirl"; + "acme-dont" = dontDistribute super."acme-dont"; + "acme-flipping-tables" = dontDistribute super."acme-flipping-tables"; + "acme-grawlix" = dontDistribute super."acme-grawlix"; + "acme-hq9plus" = dontDistribute super."acme-hq9plus"; + "acme-http" = dontDistribute super."acme-http"; + "acme-inator" = dontDistribute super."acme-inator"; + "acme-io" = dontDistribute super."acme-io"; + "acme-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-diff" = dontDistribute super."aeson-diff"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-lens" = dontDistribute super."aeson-lens"; + "aeson-native" = dontDistribute super."aeson-native"; + "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-schema" = dontDistribute super."aeson-schema"; + "aeson-serialize" = dontDistribute super."aeson-serialize"; + "aeson-smart" = dontDistribute super."aeson-smart"; + "aeson-streams" = dontDistribute super."aeson-streams"; + "aeson-t" = dontDistribute super."aeson-t"; + "aeson-toolkit" = dontDistribute super."aeson-toolkit"; + "aeson-value-parser" = dontDistribute super."aeson-value-parser"; + "aeson-yak" = dontDistribute super."aeson-yak"; + "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc"; + "afis" = dontDistribute super."afis"; + "afv" = dontDistribute super."afv"; + "ag-pictgen" = dontDistribute super."ag-pictgen"; + "agda-server" = dontDistribute super."agda-server"; + "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; + "agum" = dontDistribute super."agum"; + "aig" = dontDistribute super."aig"; + "air" = dontDistribute super."air"; + "air-extra" = dontDistribute super."air-extra"; + "air-spec" = dontDistribute super."air-spec"; + "air-th" = dontDistribute super."air-th"; + "airbrake" = dontDistribute super."airbrake"; + "airship" = doDistribute super."airship_0_4_3_0"; + "aivika" = dontDistribute super."aivika"; + "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-experiment" = dontDistribute super."aivika-experiment"; + "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; + "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; + "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams"; + "aivika-transformers" = dontDistribute super."aivika-transformers"; + "ajhc" = dontDistribute super."ajhc"; + "al" = dontDistribute super."al"; + "alea" = dontDistribute super."alea"; + "alex-meta" = dontDistribute super."alex-meta"; + "alfred" = dontDistribute super."alfred"; + "alga" = dontDistribute super."alga"; + "algebra" = dontDistribute super."algebra"; + "algebra-dag" = dontDistribute super."algebra-dag"; + "algebra-sql" = dontDistribute super."algebra-sql"; + "algebraic" = dontDistribute super."algebraic"; + "algebraic-classes" = dontDistribute super."algebraic-classes"; + "align" = dontDistribute super."align"; + "align-text" = dontDistribute super."align-text"; + "aligned-foreignptr" = dontDistribute super."aligned-foreignptr"; + "allocated-processor" = dontDistribute super."allocated-processor"; + "alloy" = dontDistribute super."alloy"; + "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd"; + "almost-fix" = dontDistribute super."almost-fix"; + "alms" = dontDistribute super."alms"; + "alpha" = dontDistribute super."alpha"; + "alpino-tools" = dontDistribute super."alpino-tools"; + "alsa" = dontDistribute super."alsa"; + "alsa-core" = dontDistribute super."alsa-core"; + "alsa-gui" = dontDistribute super."alsa-gui"; + "alsa-midi" = dontDistribute super."alsa-midi"; + "alsa-mixer" = dontDistribute super."alsa-mixer"; + "alsa-pcm" = dontDistribute super."alsa-pcm"; + "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests"; + "alsa-seq" = dontDistribute super."alsa-seq"; + "alsa-seq-tests" = dontDistribute super."alsa-seq-tests"; + "altcomposition" = dontDistribute super."altcomposition"; + "alternative-io" = dontDistribute super."alternative-io"; + "altfloat" = dontDistribute super."altfloat"; + "alure" = dontDistribute super."alure"; + "amazon-emailer" = dontDistribute super."amazon-emailer"; + "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; + "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; + "ampersand" = dontDistribute super."ampersand"; + "amqp-conduit" = dontDistribute super."amqp-conduit"; + "amrun" = dontDistribute super."amrun"; + "analyze-client" = dontDistribute super."analyze-client"; + "anansi" = dontDistribute super."anansi"; + "anansi-hscolour" = dontDistribute super."anansi-hscolour"; + "anansi-pandoc" = dontDistribute super."anansi-pandoc"; + "anatomy" = dontDistribute super."anatomy"; + "android" = dontDistribute super."android"; + "android-lint-summary" = dontDistribute super."android-lint-summary"; + "animalcase" = dontDistribute super."animalcase"; + "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"; + "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; + "apportionment" = dontDistribute super."apportionment"; + "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate-equality" = dontDistribute super."approximate-equality"; + "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; + "arb-fft" = dontDistribute super."arb-fft"; + "arbb-vm" = dontDistribute super."arbb-vm"; + "archive" = dontDistribute super."archive"; + "archiver" = dontDistribute super."archiver"; + "archlinux" = dontDistribute super."archlinux"; + "archlinux-web" = dontDistribute super."archlinux-web"; + "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; + "arff" = dontDistribute super."arff"; + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon2" = dontDistribute super."argon2"; + "argparser" = dontDistribute super."argparser"; + "arguedit" = dontDistribute super."arguedit"; + "ariadne" = dontDistribute super."ariadne"; + "arion" = dontDistribute super."arion"; + "arith-encode" = dontDistribute super."arith-encode"; + "arithmatic" = dontDistribute super."arithmatic"; + "arithmetic" = dontDistribute super."arithmetic"; + "arithmoi" = dontDistribute super."arithmoi"; + "armada" = dontDistribute super."armada"; + "arpa" = dontDistribute super."arpa"; + "array-forth" = dontDistribute super."array-forth"; + "array-memoize" = dontDistribute super."array-memoize"; + "array-primops" = dontDistribute super."array-primops"; + "array-utils" = dontDistribute super."array-utils"; + "arrow-improve" = dontDistribute super."arrow-improve"; + "arrowapply-utils" = dontDistribute super."arrowapply-utils"; + "arrowp" = dontDistribute super."arrowp"; + "arrows" = dontDistribute super."arrows"; + "artery" = dontDistribute super."artery"; + "arx" = dontDistribute super."arx"; + "arxiv" = dontDistribute super."arxiv"; + "ascetic" = dontDistribute super."ascetic"; + "ascii" = dontDistribute super."ascii"; + "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; + "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; + "asic" = dontDistribute super."asic"; + "asil" = dontDistribute super."asil"; + "asn1-data" = dontDistribute super."asn1-data"; + "asn1dump" = dontDistribute super."asn1dump"; + "assembler" = dontDistribute super."assembler"; + "assert" = dontDistribute super."assert"; + "assert-failure" = dontDistribute super."assert-failure"; + "assertions" = dontDistribute super."assertions"; + "assimp" = dontDistribute super."assimp"; + "astar" = dontDistribute super."astar"; + "astrds" = dontDistribute super."astrds"; + "astview" = dontDistribute super."astview"; + "astview-utils" = dontDistribute super."astview-utils"; + "async-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" = dontDistribute super."atom-conduit"; + "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; + "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; + "atomic-write" = dontDistribute super."atomic-write"; + "atomo" = dontDistribute super."atomo"; + "atp-haskell" = dontDistribute super."atp-haskell"; + "atrans" = dontDistribute super."atrans"; + "attempt" = dontDistribute super."attempt"; + "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec-arff" = dontDistribute super."attoparsec-arff"; + "attoparsec-binary" = dontDistribute super."attoparsec-binary"; + "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; + "attoparsec-csv" = dontDistribute super."attoparsec-csv"; + "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee"; + "attoparsec-parsec" = dontDistribute super."attoparsec-parsec"; + "attoparsec-text" = dontDistribute super."attoparsec-text"; + "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator"; + "attosplit" = dontDistribute super."attosplit"; + "atuin" = dontDistribute super."atuin"; + "audacity" = dontDistribute super."audacity"; + "audiovisual" = dontDistribute super."audiovisual"; + "augeas" = dontDistribute super."augeas"; + "augur" = dontDistribute super."augur"; + "aur" = dontDistribute super."aur"; + "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; + "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authinfo-hs" = dontDistribute super."authinfo-hs"; + "authoring" = dontDistribute super."authoring"; + "autoexporter" = dontDistribute super."autoexporter"; + "autonix-deps" = dontDistribute super."autonix-deps"; + "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; + "autoproc" = dontDistribute super."autoproc"; + "avahi" = dontDistribute super."avahi"; + "avatar-generator" = dontDistribute super."avatar-generator"; + "average" = dontDistribute super."average"; + "avl-static" = dontDistribute super."avl-static"; + "avr-shake" = dontDistribute super."avr-shake"; + "awesome-prelude" = dontDistribute super."awesome-prelude"; + "awesomium" = dontDistribute super."awesomium"; + "awesomium-glut" = dontDistribute super."awesomium-glut"; + "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; + "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; + "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; + "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams"; + "aws-ec2" = dontDistribute super."aws-ec2"; + "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder"; + "aws-general" = dontDistribute super."aws-general"; + "aws-kinesis" = dontDistribute super."aws-kinesis"; + "aws-kinesis-client" = dontDistribute super."aws-kinesis-client"; + "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard"; + "aws-lambda" = dontDistribute super."aws-lambda"; + "aws-performance-tests" = dontDistribute super."aws-performance-tests"; + "aws-route53" = dontDistribute super."aws-route53"; + "aws-sdk" = dontDistribute super."aws-sdk"; + "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter"; + "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered"; + "aws-sign4" = dontDistribute super."aws-sign4"; + "aws-sns" = dontDistribute super."aws-sns"; + "azure-acs" = dontDistribute super."azure-acs"; + "azure-service-api" = dontDistribute super."azure-service-api"; + "azure-servicebus" = dontDistribute super."azure-servicebus"; + "azurify" = dontDistribute super."azurify"; + "b-tree" = dontDistribute super."b-tree"; + "babylon" = dontDistribute super."babylon"; + "backdropper" = dontDistribute super."backdropper"; + "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; + "backward-state" = dontDistribute super."backward-state"; + "bacteria" = dontDistribute super."bacteria"; + "bag" = dontDistribute super."bag"; + "bamboo" = dontDistribute super."bamboo"; + "bamboo-launcher" = dontDistribute super."bamboo-launcher"; + "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight"; + "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo"; + "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint"; + "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5"; + "bamse" = dontDistribute super."bamse"; + "bamstats" = dontDistribute super."bamstats"; + "bank-holiday-usa" = dontDistribute super."bank-holiday-usa"; + "banwords" = dontDistribute super."banwords"; + "barchart" = dontDistribute super."barchart"; + "barcodes-code128" = dontDistribute super."barcodes-code128"; + "barecheck" = dontDistribute super."barecheck"; + "barley" = dontDistribute super."barley"; + "barrie" = dontDistribute super."barrie"; + "barrier-monad" = dontDistribute super."barrier-monad"; + "base-generics" = dontDistribute super."base-generics"; + "base-io-access" = dontDistribute super."base-io-access"; + "base-prelude" = doDistribute super."base-prelude_0_1_21"; + "base32-bytestring" = dontDistribute super."base32-bytestring"; + "base58-bytestring" = dontDistribute super."base58-bytestring"; + "base58address" = dontDistribute super."base58address"; + "base64-conduit" = dontDistribute super."base64-conduit"; + "base91" = dontDistribute super."base91"; + "basex-client" = dontDistribute super."basex-client"; + "bash" = dontDistribute super."bash"; + "basic-lens" = dontDistribute super."basic-lens"; + "basic-sop" = dontDistribute super."basic-sop"; + "baskell" = dontDistribute super."baskell"; + "battlenet" = dontDistribute super."battlenet"; + "battlenet-yesod" = dontDistribute super."battlenet-yesod"; + "battleships" = dontDistribute super."battleships"; + "bayes-stack" = dontDistribute super."bayes-stack"; + "bbdb" = dontDistribute super."bbdb"; + "bbi" = dontDistribute super."bbi"; + "bdd" = dontDistribute super."bdd"; + "bdelta" = dontDistribute super."bdelta"; + "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; + "beamable" = dontDistribute super."beamable"; + "beautifHOL" = dontDistribute super."beautifHOL"; + "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; + "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; + "benchmark-function" = dontDistribute super."benchmark-function"; + "bencoding" = dontDistribute super."bencoding"; + "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"; + "bibtex" = dontDistribute super."bibtex"; + "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; + "bidispec" = dontDistribute super."bidispec"; + "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; + "billboard-parser" = dontDistribute super."billboard-parser"; + "billeksah-forms" = dontDistribute super."billeksah-forms"; + "billeksah-main" = dontDistribute super."billeksah-main"; + "billeksah-main-static" = dontDistribute super."billeksah-main-static"; + "billeksah-pane" = dontDistribute super."billeksah-pane"; + "billeksah-services" = dontDistribute super."billeksah-services"; + "bimaps" = dontDistribute super."bimaps"; + "binary-bits" = dontDistribute super."binary-bits"; + "binary-communicator" = dontDistribute super."binary-communicator"; + "binary-derive" = dontDistribute super."binary-derive"; + "binary-enum" = dontDistribute super."binary-enum"; + "binary-file" = dontDistribute super."binary-file"; + "binary-generic" = dontDistribute super."binary-generic"; + "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-protocol" = dontDistribute super."binary-protocol"; + "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; + "binary-shared" = dontDistribute super."binary-shared"; + "binary-state" = dontDistribute super."binary-state"; + "binary-store" = dontDistribute super."binary-store"; + "binary-streams" = dontDistribute super."binary-streams"; + "binary-strict" = dontDistribute super."binary-strict"; + "binarydefer" = dontDistribute super."binarydefer"; + "bind-marshal" = dontDistribute super."bind-marshal"; + "binding-core" = dontDistribute super."binding-core"; + "binding-gtk" = dontDistribute super."binding-gtk"; + "binding-wx" = dontDistribute super."binding-wx"; + "bindings" = dontDistribute super."bindings"; + "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-K8055" = dontDistribute super."bindings-K8055"; + "bindings-apr" = dontDistribute super."bindings-apr"; + "bindings-apr-util" = dontDistribute super."bindings-apr-util"; + "bindings-audiofile" = dontDistribute super."bindings-audiofile"; + "bindings-bfd" = dontDistribute super."bindings-bfd"; + "bindings-cctools" = dontDistribute super."bindings-cctools"; + "bindings-codec2" = dontDistribute super."bindings-codec2"; + "bindings-common" = dontDistribute super."bindings-common"; + "bindings-dc1394" = dontDistribute super."bindings-dc1394"; + "bindings-directfb" = dontDistribute super."bindings-directfb"; + "bindings-eskit" = dontDistribute super."bindings-eskit"; + "bindings-fann" = dontDistribute super."bindings-fann"; + "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth"; + "bindings-friso" = dontDistribute super."bindings-friso"; + "bindings-glib" = dontDistribute super."bindings-glib"; + "bindings-gobject" = dontDistribute super."bindings-gobject"; + "bindings-gpgme" = dontDistribute super."bindings-gpgme"; + "bindings-gsl" = dontDistribute super."bindings-gsl"; + "bindings-gts" = dontDistribute super."bindings-gts"; + "bindings-hamlib" = dontDistribute super."bindings-hamlib"; + "bindings-hdf5" = dontDistribute super."bindings-hdf5"; + "bindings-levmar" = dontDistribute super."bindings-levmar"; + "bindings-libcddb" = dontDistribute super."bindings-libcddb"; + "bindings-libffi" = dontDistribute super."bindings-libffi"; + "bindings-libftdi" = dontDistribute super."bindings-libftdi"; + "bindings-librrd" = dontDistribute super."bindings-librrd"; + "bindings-libstemmer" = dontDistribute super."bindings-libstemmer"; + "bindings-libusb" = dontDistribute super."bindings-libusb"; + "bindings-libv4l2" = dontDistribute super."bindings-libv4l2"; + "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2"; + "bindings-lxc" = dontDistribute super."bindings-lxc"; + "bindings-mmap" = dontDistribute super."bindings-mmap"; + "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal"; + "bindings-nettle" = dontDistribute super."bindings-nettle"; + "bindings-parport" = dontDistribute super."bindings-parport"; + "bindings-portaudio" = dontDistribute super."bindings-portaudio"; + "bindings-potrace" = dontDistribute super."bindings-potrace"; + "bindings-ppdev" = dontDistribute super."bindings-ppdev"; + "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd"; + "bindings-sane" = dontDistribute super."bindings-sane"; + "bindings-sc3" = dontDistribute super."bindings-sc3"; + "bindings-sipc" = dontDistribute super."bindings-sipc"; + "bindings-sophia" = dontDistribute super."bindings-sophia"; + "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; + "bindings-svm" = dontDistribute super."bindings-svm"; + "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; + "binembed" = dontDistribute super."binembed"; + "binembed-example" = dontDistribute super."binembed-example"; + "bini" = dontDistribute super."bini"; + "bio" = dontDistribute super."bio"; + "biohazard" = dontDistribute super."biohazard"; + "bioinformatics-toolkit" = dontDistribute super."bioinformatics-toolkit"; + "biosff" = dontDistribute super."biosff"; + "biostockholm" = dontDistribute super."biostockholm"; + "bird" = dontDistribute super."bird"; + "bit-array" = dontDistribute super."bit-array"; + "bit-vector" = dontDistribute super."bit-vector"; + "bitarray" = dontDistribute super."bitarray"; + "bitcoin-rpc" = dontDistribute super."bitcoin-rpc"; + "bitly-cli" = dontDistribute super."bitly-cli"; + "bitmap" = dontDistribute super."bitmap"; + "bitmap-opengl" = dontDistribute super."bitmap-opengl"; + "bitmaps" = dontDistribute super."bitmaps"; + "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-conduit" = dontDistribute super."bits-conduit"; + "bits-extras" = dontDistribute super."bits-extras"; + "bitset" = dontDistribute super."bitset"; + "bitspeak" = dontDistribute super."bitspeak"; + "bitstream" = dontDistribute super."bitstream"; + "bitstring" = dontDistribute super."bitstring"; + "bittorrent" = dontDistribute super."bittorrent"; + "bitvec" = dontDistribute super."bitvec"; + "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; + "bk-tree" = dontDistribute super."bk-tree"; + "bkr" = dontDistribute super."bkr"; + "bktrees" = dontDistribute super."bktrees"; + "bla" = dontDistribute super."bla"; + "black-jewel" = dontDistribute super."black-jewel"; + "blacktip" = dontDistribute super."blacktip"; + "blakesum" = dontDistribute super."blakesum"; + "blakesum-demo" = dontDistribute super."blakesum-demo"; + "blas" = dontDistribute super."blas"; + "blas-hs" = dontDistribute super."blas-hs"; + "blatex" = dontDistribute super."blatex"; + "blaze" = dontDistribute super."blaze"; + "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; + "blaze-from-html" = dontDistribute super."blaze-from-html"; + "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; + "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat"; + "blaze-html-truncate" = dontDistribute super."blaze-html-truncate"; + "blaze-json" = dontDistribute super."blaze-json"; + "blaze-shields" = dontDistribute super."blaze-shields"; + "blaze-textual-native" = dontDistribute super."blaze-textual-native"; + "blazeMarker" = dontDistribute super."blazeMarker"; + "blink1" = dontDistribute super."blink1"; + "blip" = dontDistribute super."blip"; + "bliplib" = dontDistribute super."bliplib"; + "blocking-transactions" = dontDistribute super."blocking-transactions"; + "blogination" = dontDistribute super."blogination"; + "bloodhound" = dontDistribute super."bloodhound"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloxorz" = dontDistribute super."bloxorz"; + "blubber" = dontDistribute super."blubber"; + "blubber-server" = dontDistribute super."blubber-server"; + "bluetile" = dontDistribute super."bluetile"; + "bluetileutils" = dontDistribute super."bluetileutils"; + "blunt" = dontDistribute super."blunt"; + "board-games" = dontDistribute super."board-games"; + "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; + "boolean-list" = dontDistribute super."boolean-list"; + "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; + "boolexpr" = dontDistribute super."boolexpr"; + "bools" = dontDistribute super."bools"; + "boolsimplifier" = dontDistribute super."boolsimplifier"; + "boomange" = dontDistribute super."boomange"; + "boombox" = dontDistribute super."boombox"; + "boomslang" = dontDistribute super."boomslang"; + "borel" = dontDistribute super."borel"; + "bot" = dontDistribute super."bot"; + "botpp" = dontDistribute super."botpp"; + "bound-gen" = dontDistribute super."bound-gen"; + "bounded-tchan" = dontDistribute super."bounded-tchan"; + "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; + "bowntz" = dontDistribute super."bowntz"; + "bpann" = dontDistribute super."bpann"; + "braid" = dontDistribute super."braid"; + "brainfuck" = dontDistribute super."brainfuck"; + "brainfuck-monad" = dontDistribute super."brainfuck-monad"; + "brainfuck-tut" = dontDistribute super."brainfuck-tut"; + "break" = dontDistribute super."break"; + "breakout" = dontDistribute super."breakout"; + "breve" = dontDistribute super."breve"; + "brians-brain" = dontDistribute super."brians-brain"; + "brillig" = dontDistribute super."brillig"; + "broccoli" = dontDistribute super."broccoli"; + "broker-haskell" = dontDistribute super."broker-haskell"; + "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson-generic" = dontDistribute super."bson-generic"; + "bson-generics" = dontDistribute super."bson-generics"; + "bson-mapping" = dontDistribute super."bson-mapping"; + "bspack" = dontDistribute super."bspack"; + "bsparse" = dontDistribute super."bsparse"; + "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; + "buffer-pipe" = dontDistribute super."buffer-pipe"; + "buffon" = dontDistribute super."buffon"; + "bugzilla" = dontDistribute super."bugzilla"; + "buildable" = dontDistribute super."buildable"; + "buildbox" = dontDistribute super."buildbox"; + "buildbox-tools" = dontDistribute super."buildbox-tools"; + "buildwrapper" = dontDistribute super."buildwrapper"; + "bullet" = dontDistribute super."bullet"; + "burst-detection" = dontDistribute super."burst-detection"; + "bus-pirate" = dontDistribute super."bus-pirate"; + "buster" = dontDistribute super."buster"; + "buster-gtk" = dontDistribute super."buster-gtk"; + "buster-network" = dontDistribute super."buster-network"; + "butterflies" = dontDistribute super."butterflies"; + "bv" = dontDistribute super."bv"; + "byline" = dontDistribute super."byline"; + "bytable" = dontDistribute super."bytable"; + "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-class" = dontDistribute super."bytestring-class"; + "bytestring-csv" = dontDistribute super."bytestring-csv"; + "bytestring-delta" = dontDistribute super."bytestring-delta"; + "bytestring-from" = dontDistribute super."bytestring-from"; + "bytestring-nums" = dontDistribute super."bytestring-nums"; + "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-rematch" = dontDistribute super."bytestring-rematch"; + "bytestring-short" = dontDistribute super."bytestring-short"; + "bytestring-show" = dontDistribute super."bytestring-show"; + "bytestring-tree-builder" = dontDistribute super."bytestring-tree-builder"; + "bytestringparser" = dontDistribute super."bytestringparser"; + "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary"; + "bytestringreadp" = dontDistribute super."bytestringreadp"; + "c-dsl" = dontDistribute super."c-dsl"; + "c-io" = dontDistribute super."c-io"; + "c-storable-deriving" = dontDistribute super."c-storable-deriving"; + "c0check" = dontDistribute super."c0check"; + "c0parser" = dontDistribute super."c0parser"; + "c10k" = dontDistribute super."c10k"; + "c2hsc" = dontDistribute super."c2hsc"; + "cab" = dontDistribute super."cab"; + "cabal-audit" = dontDistribute super."cabal-audit"; + "cabal-bounds" = dontDistribute super."cabal-bounds"; + "cabal-cargs" = dontDistribute super."cabal-cargs"; + "cabal-constraints" = dontDistribute super."cabal-constraints"; + "cabal-db" = dontDistribute super."cabal-db"; + "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; + "cabal-dev" = dontDistribute super."cabal-dev"; + "cabal-dir" = dontDistribute super."cabal-dir"; + "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags"; + "cabal-ghci" = dontDistribute super."cabal-ghci"; + "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; + "cabal-info" = dontDistribute super."cabal-info"; + "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; + "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; + "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; + "cabal-lenses" = dontDistribute super."cabal-lenses"; + "cabal-macosx" = dontDistribute super."cabal-macosx"; + "cabal-meta" = dontDistribute super."cabal-meta"; + "cabal-mon" = dontDistribute super."cabal-mon"; + "cabal-nirvana" = dontDistribute super."cabal-nirvana"; + "cabal-progdeps" = dontDistribute super."cabal-progdeps"; + "cabal-query" = dontDistribute super."cabal-query"; + "cabal-scripts" = dontDistribute super."cabal-scripts"; + "cabal-setup" = dontDistribute super."cabal-setup"; + "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-test" = dontDistribute super."cabal-test"; + "cabal-test-bin" = dontDistribute super."cabal-test-bin"; + "cabal-test-compat" = dontDistribute super."cabal-test-compat"; + "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck"; + "cabal-uninstall" = dontDistribute super."cabal-uninstall"; + "cabal-upload" = dontDistribute super."cabal-upload"; + "cabal2arch" = dontDistribute super."cabal2arch"; + "cabal2doap" = dontDistribute super."cabal2doap"; + "cabal2ebuild" = dontDistribute super."cabal2ebuild"; + "cabal2ghci" = dontDistribute super."cabal2ghci"; + "cabal2nix" = dontDistribute super."cabal2nix"; + "cabal2spec" = dontDistribute super."cabal2spec"; + "cabalQuery" = dontDistribute super."cabalQuery"; + "cabalg" = dontDistribute super."cabalg"; + "cabalgraph" = dontDistribute super."cabalgraph"; + "cabalmdvrpm" = dontDistribute super."cabalmdvrpm"; + "cabalrpmdeps" = dontDistribute super."cabalrpmdeps"; + "cabalvchk" = dontDistribute super."cabalvchk"; + "cabin" = dontDistribute super."cabin"; + "cabocha" = dontDistribute super."cabocha"; + "cached-io" = dontDistribute super."cached-io"; + "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = doDistribute super."cacophony_0_4_0"; + "caf" = dontDistribute super."caf"; + "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; + "caffegraph" = dontDistribute super."caffegraph"; + "cairo-appbase" = dontDistribute super."cairo-appbase"; + "cake" = dontDistribute super."cake"; + "cake3" = dontDistribute super."cake3"; + "cakyrespa" = dontDistribute super."cakyrespa"; + "cal3d" = dontDistribute super."cal3d"; + "cal3d-examples" = dontDistribute super."cal3d-examples"; + "cal3d-opengl" = dontDistribute super."cal3d-opengl"; + "calc" = dontDistribute super."calc"; + "caldims" = dontDistribute super."caldims"; + "caledon" = dontDistribute super."caledon"; + "call" = dontDistribute super."call"; + "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; + "camh" = dontDistribute super."camh"; + "campfire" = dontDistribute super."campfire"; + "canonical-filepath" = dontDistribute super."canonical-filepath"; + "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; + "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; + "cantor" = dontDistribute super."cantor"; + "cao" = dontDistribute super."cao"; + "cap" = dontDistribute super."cap"; + "capped-list" = dontDistribute super."capped-list"; + "capri" = dontDistribute super."capri"; + "car-pool" = dontDistribute super."car-pool"; + "caramia" = dontDistribute super."caramia"; + "carboncopy" = dontDistribute super."carboncopy"; + "carettah" = dontDistribute super."carettah"; + "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; + "casadi-bindings" = dontDistribute super."casadi-bindings"; + "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; + "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; + "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal"; + "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface"; + "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; + "cascading" = dontDistribute super."cascading"; + "case-conversion" = dontDistribute super."case-conversion"; + "cash" = dontDistribute super."cash"; + "casing" = dontDistribute super."casing"; + "casr-logbook" = dontDistribute super."casr-logbook"; + "cassandra-cql" = dontDistribute super."cassandra-cql"; + "cassandra-thrift" = dontDistribute super."cassandra-thrift"; + "cassava-conduit" = dontDistribute super."cassava-conduit"; + "cassava-streams" = dontDistribute super."cassava-streams"; + "cassette" = dontDistribute super."cassette"; + "cassy" = dontDistribute super."cassy"; + "castle" = dontDistribute super."castle"; + "casui" = dontDistribute super."casui"; + "catamorphism" = dontDistribute super."catamorphism"; + "catch-fd" = dontDistribute super."catch-fd"; + "categorical-algebra" = dontDistribute super."categorical-algebra"; + "categories" = dontDistribute super."categories"; + "category-extras" = dontDistribute super."category-extras"; + "category-traced" = dontDistribute super."category-traced"; + "cayley-dickson" = dontDistribute super."cayley-dickson"; + "cblrepo" = dontDistribute super."cblrepo"; + "cci" = dontDistribute super."cci"; + "ccnx" = dontDistribute super."ccnx"; + "cctools-workqueue" = dontDistribute super."cctools-workqueue"; + "cedict" = dontDistribute super."cedict"; + "cef" = dontDistribute super."cef"; + "ceilometer-common" = dontDistribute super."ceilometer-common"; + "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; + "cereal-derive" = dontDistribute super."cereal-derive"; + "cereal-enumerator" = dontDistribute super."cereal-enumerator"; + "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-text" = dontDistribute super."cereal-text"; + "certificate" = dontDistribute super."certificate"; + "cf" = dontDistribute super."cf"; + "cfipu" = dontDistribute super."cfipu"; + "cflp" = dontDistribute super."cflp"; + "cfopu" = dontDistribute super."cfopu"; + "cg" = dontDistribute super."cg"; + "cgen" = dontDistribute super."cgen"; + "cgi" = doDistribute super."cgi_3001_2_2_3"; + "cgi-undecidable" = dontDistribute super."cgi-undecidable"; + "cgi-utils" = dontDistribute super."cgi-utils"; + "cgrep" = dontDistribute super."cgrep"; + "chain-codes" = dontDistribute super."chain-codes"; + "chalk" = dontDistribute super."chalk"; + "chalkboard" = dontDistribute super."chalkboard"; + "chalkboard-viewer" = dontDistribute super."chalkboard-viewer"; + "chalmers-lava2000" = dontDistribute super."chalmers-lava2000"; + "chan-split" = dontDistribute super."chan-split"; + "change-monger" = dontDistribute super."change-monger"; + "charade" = dontDistribute super."charade"; + "charsetdetect" = dontDistribute super."charsetdetect"; + "chart-histogram" = dontDistribute super."chart-histogram"; + "chaselev-deque" = dontDistribute super."chaselev-deque"; + "chatter" = dontDistribute super."chatter"; + "chatty" = dontDistribute super."chatty"; + "chatty-text" = dontDistribute super."chatty-text"; + "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; + "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; + "check-pvp" = dontDistribute super."check-pvp"; + "checked" = dontDistribute super."checked"; + "chell-hunit" = dontDistribute super."chell-hunit"; + "chesshs" = dontDistribute super."chesshs"; + "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; + "chp" = dontDistribute super."chp"; + "chp-mtl" = dontDistribute super."chp-mtl"; + "chp-plus" = dontDistribute super."chp-plus"; + "chp-spec" = dontDistribute super."chp-spec"; + "chp-transformers" = dontDistribute super."chp-transformers"; + "chronograph" = dontDistribute super."chronograph"; + "chu2" = dontDistribute super."chu2"; + "chuchu" = dontDistribute super."chuchu"; + "chunks" = dontDistribute super."chunks"; + "chunky" = dontDistribute super."chunky"; + "church-list" = dontDistribute super."church-list"; + "cil" = dontDistribute super."cil"; + "cinvoke" = dontDistribute super."cinvoke"; + "cio" = dontDistribute super."cio"; + "cipher-rc5" = dontDistribute super."cipher-rc5"; + "ciphersaber2" = dontDistribute super."ciphersaber2"; + "circ" = dontDistribute super."circ"; + "cirru-parser" = dontDistribute super."cirru-parser"; + "citation-resolve" = dontDistribute super."citation-resolve"; + "citeproc-hs" = dontDistribute super."citeproc-hs"; + "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter"; + "cityhash" = dontDistribute super."cityhash"; + "cjk" = dontDistribute super."cjk"; + "clac" = dontDistribute super."clac"; + "clafer" = dontDistribute super."clafer"; + "claferIG" = dontDistribute super."claferIG"; + "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; + "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; + "clash" = dontDistribute super."clash"; + "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "classify" = dontDistribute super."classify"; + "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; + "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; + "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; + "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks"; + "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap"; + "cld2" = dontDistribute super."cld2"; + "clean-home" = dontDistribute super."clean-home"; + "clean-unions" = dontDistribute super."clean-unions"; + "cless" = dontDistribute super."cless"; + "clevercss" = dontDistribute super."clevercss"; + "cli" = dontDistribute super."cli"; + "click-clack" = dontDistribute super."click-clack"; + "clifford" = dontDistribute super."clifford"; + "clippard" = dontDistribute super."clippard"; + "clipper" = dontDistribute super."clipper"; + "clippings" = dontDistribute super."clippings"; + "clist" = dontDistribute super."clist"; + "clocked" = dontDistribute super."clocked"; + "clogparse" = dontDistribute super."clogparse"; + "clone-all" = dontDistribute super."clone-all"; + "closure" = dontDistribute super."closure"; + "cloud-haskell" = dontDistribute super."cloud-haskell"; + "cloudfront-signer" = dontDistribute super."cloudfront-signer"; + "cloudyfs" = dontDistribute super."cloudyfs"; + "cltw" = dontDistribute super."cltw"; + "clua" = dontDistribute super."clua"; + "clumpiness" = dontDistribute super."clumpiness"; + "cluss" = dontDistribute super."cluss"; + "clustertools" = dontDistribute super."clustertools"; + "clutterhs" = dontDistribute super."clutterhs"; + "cmaes" = dontDistribute super."cmaes"; + "cmath" = dontDistribute super."cmath"; + "cmathml3" = dontDistribute super."cmathml3"; + "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs-browser" = dontDistribute super."cmdargs-browser"; + "cmdlib" = dontDistribute super."cmdlib"; + "cmdtheline" = dontDistribute super."cmdtheline"; + "cml" = dontDistribute super."cml"; + "cmonad" = dontDistribute super."cmonad"; + "cmu" = dontDistribute super."cmu"; + "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; + "cndict" = dontDistribute super."cndict"; + "codec" = dontDistribute super."codec"; + "codec-libevent" = dontDistribute super."codec-libevent"; + "codec-mbox" = dontDistribute super."codec-mbox"; + "codecov-haskell" = dontDistribute super."codecov-haskell"; + "codemonitor" = dontDistribute super."codemonitor"; + "codepad" = dontDistribute super."codepad"; + "codo-notation" = dontDistribute super."codo-notation"; + "cofunctor" = dontDistribute super."cofunctor"; + "cognimeta-utils" = dontDistribute super."cognimeta-utils"; + "coinbase-exchange" = dontDistribute super."coinbase-exchange"; + "colada" = dontDistribute super."colada"; + "colchis" = dontDistribute super."colchis"; + "collada-output" = dontDistribute super."collada-output"; + "collada-types" = dontDistribute super."collada-types"; + "collapse-util" = dontDistribute super."collapse-util"; + "collection-json" = dontDistribute super."collection-json"; + "collections" = dontDistribute super."collections"; + "collections-api" = dontDistribute super."collections-api"; + "collections-base-instances" = dontDistribute super."collections-base-instances"; + "colock" = dontDistribute super."colock"; + "colorize-haskell" = dontDistribute super."colorize-haskell"; + "colors" = dontDistribute super."colors"; + "coltrane" = dontDistribute super."coltrane"; + "com" = dontDistribute super."com"; + "combinat" = dontDistribute super."combinat"; + "combinat-diagrams" = dontDistribute super."combinat-diagrams"; + "combinator-interactive" = dontDistribute super."combinator-interactive"; + "combinatorial-problems" = dontDistribute super."combinatorial-problems"; + "combinatorics" = dontDistribute super."combinatorics"; + "combobuffer" = dontDistribute super."combobuffer"; + "comfort-graph" = dontDistribute super."comfort-graph"; + "command" = dontDistribute super."command"; + "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; + "commodities" = dontDistribute super."commodities"; + "commsec" = dontDistribute super."commsec"; + "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; + "comonad-extras" = dontDistribute super."comonad-extras"; + "comonad-random" = dontDistribute super."comonad-random"; + "compact-map" = dontDistribute super."compact-map"; + "compact-socket" = dontDistribute super."compact-socket"; + "compact-string" = dontDistribute super."compact-string"; + "compact-string-fix" = dontDistribute super."compact-string-fix"; + "compare-type" = dontDistribute super."compare-type"; + "compdata-automata" = dontDistribute super."compdata-automata"; + "compdata-dags" = dontDistribute super."compdata-dags"; + "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = dontDistribute super."compensated"; + "competition" = dontDistribute super."competition"; + "compilation" = dontDistribute super."compilation"; + "complex-generic" = dontDistribute super."complex-generic"; + "complex-integrate" = dontDistribute super."complex-integrate"; + "complexity" = dontDistribute super."complexity"; + "compose-ltr" = dontDistribute super."compose-ltr"; + "compose-trans" = dontDistribute super."compose-trans"; + "compression" = dontDistribute super."compression"; + "compstrat" = dontDistribute super."compstrat"; + "comptrans" = dontDistribute super."comptrans"; + "computational-algebra" = dontDistribute super."computational-algebra"; + "computations" = dontDistribute super."computations"; + "conceit" = dontDistribute super."conceit"; + "concorde" = dontDistribute super."concorde"; + "concraft" = dontDistribute super."concraft"; + "concraft-hr" = dontDistribute super."concraft-hr"; + "concraft-pl" = dontDistribute super."concraft-pl"; + "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser"; + "concrete-typerep" = dontDistribute super."concrete-typerep"; + "concurrent-barrier" = dontDistribute super."concurrent-barrier"; + "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = dontDistribute super."concurrent-extra"; + "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-sa" = dontDistribute super."concurrent-sa"; + "concurrent-split" = dontDistribute super."concurrent-split"; + "concurrent-state" = dontDistribute super."concurrent-state"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; + "concurrentoutput" = dontDistribute super."concurrentoutput"; + "cond" = dontDistribute super."cond"; + "condor" = dontDistribute super."condor"; + "condorcet" = dontDistribute super."condorcet"; + "conductive-base" = dontDistribute super."conductive-base"; + "conductive-clock" = dontDistribute super."conductive-clock"; + "conductive-hsc3" = dontDistribute super."conductive-hsc3"; + "conductive-song" = dontDistribute super."conductive-song"; + "conduit-audio" = dontDistribute super."conduit-audio"; + "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; + "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; + "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; + "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; + "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; + "config-select" = dontDistribute super."config-select"; + "config-value" = dontDistribute super."config-value"; + "configifier" = dontDistribute super."configifier"; + "configuration" = dontDistribute super."configuration"; + "configuration-tools" = dontDistribute super."configuration-tools"; + "confsolve" = dontDistribute super."confsolve"; + "congruence-relation" = dontDistribute super."congruence-relation"; + "conjugateGradient" = dontDistribute super."conjugateGradient"; + "conjure" = dontDistribute super."conjure"; + "conlogger" = dontDistribute super."conlogger"; + "connection-pool" = dontDistribute super."connection-pool"; + "consistent" = dontDistribute super."consistent"; + "console-program" = dontDistribute super."console-program"; + "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; + "constrained-categories" = dontDistribute super."constrained-categories"; + "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; + "constructible" = dontDistribute super."constructible"; + "constructive-algebra" = dontDistribute super."constructive-algebra"; + "consumers" = dontDistribute super."consumers"; + "container" = dontDistribute super."container"; + "container-classes" = dontDistribute super."container-classes"; + "containers-benchmark" = dontDistribute super."containers-benchmark"; + "containers-deepseq" = dontDistribute super."containers-deepseq"; + "context-free-grammar" = dontDistribute super."context-free-grammar"; + "context-stack" = dontDistribute super."context-stack"; + "continue" = dontDistribute super."continue"; + "continued-fractions" = dontDistribute super."continued-fractions"; + "continuum" = dontDistribute super."continuum"; + "continuum-client" = dontDistribute super."continuum-client"; + "control-event" = dontDistribute super."control-event"; + "control-monad-attempt" = dontDistribute super."control-monad-attempt"; + "control-monad-exception" = dontDistribute super."control-monad-exception"; + "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd"; + "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf"; + "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl"; + "control-monad-failure" = dontDistribute super."control-monad-failure"; + "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl"; + "control-monad-omega" = dontDistribute super."control-monad-omega"; + "control-monad-queue" = dontDistribute super."control-monad-queue"; + "control-timeout" = dontDistribute super."control-timeout"; + "contstuff" = dontDistribute super."contstuff"; + "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf"; + "contstuff-transformers" = dontDistribute super."contstuff-transformers"; + "converge" = dontDistribute super."converge"; + "conversion" = dontDistribute super."conversion"; + "conversion-bytestring" = dontDistribute super."conversion-bytestring"; + "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive"; + "conversion-text" = dontDistribute super."conversion-text"; + "convert" = dontDistribute super."convert"; + "convertible-ascii" = dontDistribute super."convertible-ascii"; + "convertible-text" = dontDistribute super."convertible-text"; + "cookbook" = dontDistribute super."cookbook"; + "coordinate" = dontDistribute super."coordinate"; + "copilot" = dontDistribute super."copilot"; + "copilot-c99" = dontDistribute super."copilot-c99"; + "copilot-cbmc" = dontDistribute super."copilot-cbmc"; + "copilot-core" = dontDistribute super."copilot-core"; + "copilot-language" = dontDistribute super."copilot-language"; + "copilot-libraries" = dontDistribute super."copilot-libraries"; + "copilot-sbv" = dontDistribute super."copilot-sbv"; + "copilot-theorem" = dontDistribute super."copilot-theorem"; + "copr" = dontDistribute super."copr"; + "core" = dontDistribute super."core"; + "core-haskell" = dontDistribute super."core-haskell"; + "corebot-bliki" = dontDistribute super."corebot-bliki"; + "coroutine-enumerator" = dontDistribute super."coroutine-enumerator"; + "coroutine-iteratee" = dontDistribute super."coroutine-iteratee"; + "coroutine-object" = dontDistribute super."coroutine-object"; + "couch-hs" = dontDistribute super."couch-hs"; + "couch-simple" = dontDistribute super."couch-simple"; + "couchdb-conduit" = dontDistribute super."couchdb-conduit"; + "couchdb-enumerator" = dontDistribute super."couchdb-enumerator"; + "count" = dontDistribute super."count"; + "countable" = dontDistribute super."countable"; + "counter" = dontDistribute super."counter"; + "court" = dontDistribute super."court"; + "coverage" = dontDistribute super."coverage"; + "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; + "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; + "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; + "cpsa" = dontDistribute super."cpsa"; + "cpuid" = dontDistribute super."cpuid"; + "cpuperf" = dontDistribute super."cpuperf"; + "cpython" = dontDistribute super."cpython"; + "cqrs" = dontDistribute super."cqrs"; + "cqrs-core" = dontDistribute super."cqrs-core"; + "cqrs-example" = dontDistribute super."cqrs-example"; + "cqrs-memory" = dontDistribute super."cqrs-memory"; + "cqrs-postgresql" = dontDistribute super."cqrs-postgresql"; + "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3"; + "cqrs-test" = dontDistribute super."cqrs-test"; + "cqrs-testkit" = dontDistribute super."cqrs-testkit"; + "cqrs-types" = dontDistribute super."cqrs-types"; + "cr" = dontDistribute super."cr"; + "crack" = dontDistribute super."crack"; + "craftwerk" = dontDistribute super."craftwerk"; + "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; + "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "crc16" = dontDistribute super."crc16"; + "crc16-table" = dontDistribute super."crc16-table"; + "creatur" = dontDistribute super."creatur"; + "crf-chain1" = dontDistribute super."crf-chain1"; + "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained"; + "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; + "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; + "critbit" = dontDistribute super."critbit"; + "criterion-plus" = dontDistribute super."criterion-plus"; + "criterion-to-html" = dontDistribute super."criterion-to-html"; + "crockford" = dontDistribute super."crockford"; + "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_2"; + "cron-compat" = dontDistribute super."cron-compat"; + "cruncher-types" = dontDistribute super."cruncher-types"; + "crunghc" = dontDistribute super."crunghc"; + "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks"; + "crypto-classical" = dontDistribute super."crypto-classical"; + "crypto-conduit" = dontDistribute super."crypto-conduit"; + "crypto-enigma" = dontDistribute super."crypto-enigma"; + "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; + "crypto-random-effect" = dontDistribute super."crypto-random-effect"; + "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptsy-api" = dontDistribute super."cryptsy-api"; + "crystalfontz" = dontDistribute super."crystalfontz"; + "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; + "csound-catalog" = dontDistribute super."csound-catalog"; + "csound-expression" = dontDistribute super."csound-expression"; + "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic"; + "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes"; + "csound-expression-typed" = dontDistribute super."csound-expression-typed"; + "csound-sampler" = dontDistribute super."csound-sampler"; + "csp" = dontDistribute super."csp"; + "cspmchecker" = dontDistribute super."cspmchecker"; + "css" = dontDistribute super."css"; + "csv-enumerator" = dontDistribute super."csv-enumerator"; + "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-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"; + "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-extra" = dontDistribute super."data-default-extra"; + "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; + "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; + "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; + "data-default-instances-text" = dontDistribute super."data-default-instances-text"; + "data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers"; + "data-default-instances-vector" = dontDistribute super."data-default-instances-vector"; + "data-dispersal" = dontDistribute super."data-dispersal"; + "data-dword" = dontDistribute super."data-dword"; + "data-easy" = dontDistribute super."data-easy"; + "data-embed" = dontDistribute super."data-embed"; + "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; + "data-extra" = dontDistribute super."data-extra"; + "data-filepath" = dontDistribute super."data-filepath"; + "data-fin" = dontDistribute super."data-fin"; + "data-fin-simple" = dontDistribute super."data-fin-simple"; + "data-fix" = dontDistribute super."data-fix"; + "data-fix-cse" = dontDistribute super."data-fix-cse"; + "data-flags" = dontDistribute super."data-flags"; + "data-flagset" = dontDistribute super."data-flagset"; + "data-fresh" = dontDistribute super."data-fresh"; + "data-interval" = dontDistribute super."data-interval"; + "data-ivar" = dontDistribute super."data-ivar"; + "data-json-token" = dontDistribute super."data-json-token"; + "data-kiln" = dontDistribute super."data-kiln"; + "data-layer" = dontDistribute super."data-layer"; + "data-layout" = dontDistribute super."data-layout"; + "data-lens" = dontDistribute super."data-lens"; + "data-lens-fd" = dontDistribute super."data-lens-fd"; + "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-template" = dontDistribute super."data-lens-template"; + "data-list-sequences" = dontDistribute super."data-list-sequences"; + "data-map-multikey" = dontDistribute super."data-map-multikey"; + "data-named" = dontDistribute super."data-named"; + "data-nat" = dontDistribute super."data-nat"; + "data-object" = dontDistribute super."data-object"; + "data-object-json" = dontDistribute super."data-object-json"; + "data-object-yaml" = dontDistribute super."data-object-yaml"; + "data-or" = dontDistribute super."data-or"; + "data-partition" = dontDistribute super."data-partition"; + "data-pprint" = dontDistribute super."data-pprint"; + "data-quotientref" = dontDistribute super."data-quotientref"; + "data-r-tree" = dontDistribute super."data-r-tree"; + "data-ref" = dontDistribute super."data-ref"; + "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; + "data-result" = dontDistribute super."data-result"; + "data-rev" = dontDistribute super."data-rev"; + "data-rope" = dontDistribute super."data-rope"; + "data-rtuple" = dontDistribute super."data-rtuple"; + "data-size" = dontDistribute super."data-size"; + "data-spacepart" = dontDistribute super."data-spacepart"; + "data-store" = dontDistribute super."data-store"; + "data-stringmap" = dontDistribute super."data-stringmap"; + "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-tensor" = dontDistribute super."data-tensor"; + "data-textual" = dontDistribute super."data-textual"; + "data-timeout" = dontDistribute super."data-timeout"; + "data-transform" = dontDistribute super."data-transform"; + "data-treify" = dontDistribute super."data-treify"; + "data-type" = dontDistribute super."data-type"; + "data-util" = dontDistribute super."data-util"; + "data-variant" = dontDistribute super."data-variant"; + "database-migrate" = dontDistribute super."database-migrate"; + "database-study" = dontDistribute super."database-study"; + "dataenc" = dontDistribute super."dataenc"; + "dataflow" = dontDistribute super."dataflow"; + "datalog" = dontDistribute super."datalog"; + "datapacker" = dontDistribute super."datapacker"; + "dataurl" = dontDistribute super."dataurl"; + "date-cache" = dontDistribute super."date-cache"; + "dates" = dontDistribute super."dates"; + "datetime" = dontDistribute super."datetime"; + "datetime-sb" = dontDistribute super."datetime-sb"; + "dawdle" = dontDistribute super."dawdle"; + "dawg" = dontDistribute super."dawg"; + "dbcleaner" = dontDistribute super."dbcleaner"; + "dbf" = dontDistribute super."dbf"; + "dbjava" = dontDistribute super."dbjava"; + "dbmigrations" = doDistribute super."dbmigrations_1_0"; + "dbus-client" = dontDistribute super."dbus-client"; + "dbus-core" = dontDistribute super."dbus-core"; + "dbus-qq" = dontDistribute super."dbus-qq"; + "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; + "dclabel" = dontDistribute super."dclabel"; + "dclabel-eci11" = dontDistribute super."dclabel-eci11"; + "ddc-base" = dontDistribute super."ddc-base"; + "ddc-build" = dontDistribute super."ddc-build"; + "ddc-code" = dontDistribute super."ddc-code"; + "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-eval" = dontDistribute super."ddc-core-eval"; + "ddc-core-flow" = dontDistribute super."ddc-core-flow"; + "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; + "ddc-core-salt" = dontDistribute super."ddc-core-salt"; + "ddc-core-simpl" = dontDistribute super."ddc-core-simpl"; + "ddc-core-tetra" = dontDistribute super."ddc-core-tetra"; + "ddc-driver" = dontDistribute super."ddc-driver"; + "ddc-interface" = dontDistribute super."ddc-interface"; + "ddc-source-tetra" = dontDistribute super."ddc-source-tetra"; + "ddc-tools" = dontDistribute super."ddc-tools"; + "ddc-war" = dontDistribute super."ddc-war"; + "ddci-core" = dontDistribute super."ddci-core"; + "dead-code-detection" = dontDistribute super."dead-code-detection"; + "dead-simple-json" = dontDistribute super."dead-simple-json"; + "debian-binary" = dontDistribute super."debian-binary"; + "debian-build" = dontDistribute super."debian-build"; + "debug-diff" = dontDistribute super."debug-diff"; + "debug-time" = dontDistribute super."debug-time"; + "decepticons" = dontDistribute super."decepticons"; + "decode-utf8" = dontDistribute super."decode-utf8"; + "decoder-conduit" = dontDistribute super."decoder-conduit"; + "dedukti" = dontDistribute super."dedukti"; + "deepcontrol" = dontDistribute super."deepcontrol"; + "deeplearning-hs" = dontDistribute super."deeplearning-hs"; + "deepseq-bounded" = dontDistribute super."deepseq-bounded"; + "deepseq-magic" = dontDistribute super."deepseq-magic"; + "deepseq-th" = dontDistribute super."deepseq-th"; + "deepzoom" = dontDistribute super."deepzoom"; + "defargs" = dontDistribute super."defargs"; + "definitive-base" = dontDistribute super."definitive-base"; + "definitive-filesystem" = dontDistribute super."definitive-filesystem"; + "definitive-graphics" = dontDistribute super."definitive-graphics"; + "definitive-parser" = dontDistribute super."definitive-parser"; + "definitive-reactive" = dontDistribute super."definitive-reactive"; + "definitive-sound" = dontDistribute super."definitive-sound"; + "deiko-config" = dontDistribute super."deiko-config"; + "deka" = dontDistribute super."deka"; + "deka-tests" = dontDistribute super."deka-tests"; + "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; + "delicious" = dontDistribute super."delicious"; + "delimited-text" = dontDistribute super."delimited-text"; + "delimiter-separated" = dontDistribute super."delimiter-separated"; + "delta" = dontDistribute super."delta"; + "delta-h" = dontDistribute super."delta-h"; + "demarcate" = dontDistribute super."demarcate"; + "denominate" = dontDistribute super."denominate"; + "dependent-state" = dontDistribute super."dependent-state"; + "depends" = dontDistribute super."depends"; + "dephd" = dontDistribute super."dephd"; + "dequeue" = dontDistribute super."dequeue"; + "derangement" = dontDistribute super."derangement"; + "derivation-trees" = dontDistribute super."derivation-trees"; + "derive-IG" = dontDistribute super."derive-IG"; + "derive-enumerable" = dontDistribute super."derive-enumerable"; + "derive-gadt" = dontDistribute super."derive-gadt"; + "derive-monoid" = dontDistribute super."derive-monoid"; + "derive-topdown" = dontDistribute super."derive-topdown"; + "derive-trie" = dontDistribute super."derive-trie"; + "deriving-compat" = dontDistribute super."deriving-compat"; + "derp" = dontDistribute super."derp"; + "derp-lib" = dontDistribute super."derp-lib"; + "descrilo" = dontDistribute super."descrilo"; + "despair" = dontDistribute super."despair"; + "deterministic-game-engine" = dontDistribute super."deterministic-game-engine"; + "detrospector" = dontDistribute super."detrospector"; + "deunicode" = dontDistribute super."deunicode"; + "devil" = dontDistribute super."devil"; + "dewdrop" = dontDistribute super."dewdrop"; + "dfrac" = dontDistribute super."dfrac"; + "dfsbuild" = dontDistribute super."dfsbuild"; + "dgim" = dontDistribute super."dgim"; + "dgs" = dontDistribute super."dgs"; + "dia-base" = dontDistribute super."dia-base"; + "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-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-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; + "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; + "dicom" = dontDistribute super."dicom"; + "dictparser" = dontDistribute super."dictparser"; + "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; + "diff-parse" = dontDistribute super."diff-parse"; + "diffarray" = dontDistribute super."diffarray"; + "diffcabal" = dontDistribute super."diffcabal"; + "diffdump" = dontDistribute super."diffdump"; + "digamma" = dontDistribute super."digamma"; + "digest-pure" = dontDistribute super."digest-pure"; + "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; + "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; + "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; + "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp"; + "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty"; + "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; + "digit" = dontDistribute super."digit"; + "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "dimensional-codata" = dontDistribute super."dimensional-codata"; + "dimensional-tf" = dontDistribute super."dimensional-tf"; + "dingo-core" = dontDistribute super."dingo-core"; + "dingo-example" = dontDistribute super."dingo-example"; + "dingo-widgets" = dontDistribute super."dingo-widgets"; + "diophantine" = dontDistribute super."diophantine"; + "diplomacy" = dontDistribute super."diplomacy"; + "diplomacy-server" = dontDistribute super."diplomacy-server"; + "direct-binary-files" = dontDistribute super."direct-binary-files"; + "direct-daemonize" = dontDistribute super."direct-daemonize"; + "direct-fastcgi" = dontDistribute super."direct-fastcgi"; + "direct-http" = dontDistribute super."direct-http"; + "direct-murmur-hash" = dontDistribute super."direct-murmur-hash"; + "direct-plugins" = dontDistribute super."direct-plugins"; + "directed-cubical" = dontDistribute super."directed-cubical"; + "directory-layout" = dontDistribute super."directory-layout"; + "directory-listing-webpage-parser" = dontDistribute super."directory-listing-webpage-parser"; + "dirfiles" = dontDistribute super."dirfiles"; + "dirstream" = dontDistribute super."dirstream"; + "disassembler" = dontDistribute super."disassembler"; + "discordian-calendar" = dontDistribute super."discordian-calendar"; + "discount" = dontDistribute super."discount"; + "discrete-space-map" = dontDistribute super."discrete-space-map"; + "discrimination" = dontDistribute super."discrimination"; + "disjoint-set" = dontDistribute super."disjoint-set"; + "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; + "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; + "distributed-process" = doDistribute super."distributed-process_0_5_5_1"; + "distributed-process-async" = dontDistribute super."distributed-process-async"; + "distributed-process-azure" = dontDistribute super."distributed-process-azure"; + "distributed-process-client-server" = dontDistribute super."distributed-process-client-server"; + "distributed-process-ekg" = dontDistribute super."distributed-process-ekg"; + "distributed-process-execution" = dontDistribute super."distributed-process-execution"; + "distributed-process-extras" = dontDistribute super."distributed-process-extras"; + "distributed-process-lifted" = dontDistribute super."distributed-process-lifted"; + "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control"; + "distributed-process-p2p" = dontDistribute super."distributed-process-p2p"; + "distributed-process-platform" = dontDistribute super."distributed-process-platform"; + "distributed-process-registry" = dontDistribute super."distributed-process-registry"; + "distributed-process-simplelocalnet" = dontDistribute super."distributed-process-simplelocalnet"; + "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor"; + "distributed-process-task" = dontDistribute super."distributed-process-task"; + "distributed-process-tests" = dontDistribute super."distributed-process-tests"; + "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distribution" = dontDistribute super."distribution"; + "distribution-plot" = dontDistribute super."distribution-plot"; + "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" = dontDistribute super."doctest-discover"; + "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; + "doctest-prop" = dontDistribute super."doctest-prop"; + "dom-lt" = dontDistribute super."dom-lt"; + "dom-parser" = dontDistribute super."dom-parser"; + "dom-selector" = dontDistribute super."dom-selector"; + "domain-auth" = dontDistribute super."domain-auth"; + "dominion" = dontDistribute super."dominion"; + "domplate" = dontDistribute super."domplate"; + "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = doDistribute super."dotenv_0_1_0_9"; + "dotfs" = dontDistribute super."dotfs"; + "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; + "double-metaphone" = dontDistribute super."double-metaphone"; + "dove" = dontDistribute super."dove"; + "dow" = dontDistribute super."dow"; + "download" = dontDistribute super."download"; + "download-curl" = dontDistribute super."download-curl"; + "download-media-content" = dontDistribute super."download-media-content"; + "dozenal" = dontDistribute super."dozenal"; + "dozens" = dontDistribute super."dozens"; + "dph-base" = dontDistribute super."dph-base"; + "dph-examples" = dontDistribute super."dph-examples"; + "dph-lifted-base" = dontDistribute super."dph-lifted-base"; + "dph-lifted-copy" = dontDistribute super."dph-lifted-copy"; + "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg"; + "dph-par" = dontDistribute super."dph-par"; + "dph-prim-interface" = dontDistribute super."dph-prim-interface"; + "dph-prim-par" = dontDistribute super."dph-prim-par"; + "dph-prim-seq" = dontDistribute super."dph-prim-seq"; + "dph-seq" = dontDistribute super."dph-seq"; + "dpkg" = dontDistribute super."dpkg"; + "drClickOn" = dontDistribute super."drClickOn"; + "draw-poker" = dontDistribute super."draw-poker"; + "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; + "dropbox-sdk" = dontDistribute super."dropbox-sdk"; + "dropsolve" = dontDistribute super."dropsolve"; + "ds-kanren" = dontDistribute super."ds-kanren"; + "dsh-sql" = dontDistribute super."dsh-sql"; + "dsmc" = dontDistribute super."dsmc"; + "dsmc-tools" = dontDistribute super."dsmc-tools"; + "dson" = dontDistribute super."dson"; + "dson-parsec" = dontDistribute super."dson-parsec"; + "dsp" = dontDistribute super."dsp"; + "dstring" = dontDistribute super."dstring"; + "dtab" = dontDistribute super."dtab"; + "dtd" = dontDistribute super."dtd"; + "dtd-text" = dontDistribute super."dtd-text"; + "dtd-types" = dontDistribute super."dtd-types"; + "dtrace" = dontDistribute super."dtrace"; + "dtw" = dontDistribute super."dtw"; + "dump" = dontDistribute super."dump"; + "duplo" = dontDistribute super."duplo"; + "dvda" = dontDistribute super."dvda"; + "dvdread" = dontDistribute super."dvdread"; + "dvi-processing" = dontDistribute super."dvi-processing"; + "dvorak" = dontDistribute super."dvorak"; + "dwarf" = dontDistribute super."dwarf"; + "dwarf-el" = dontDistribute super."dwarf-el"; + "dwarfadt" = dontDistribute super."dwarfadt"; + "dx9base" = dontDistribute super."dx9base"; + "dx9d3d" = dontDistribute super."dx9d3d"; + "dx9d3dx" = dontDistribute super."dx9d3dx"; + "dynamic-cabal" = dontDistribute super."dynamic-cabal"; + "dynamic-graph" = dontDistribute super."dynamic-graph"; + "dynamic-linker-template" = dontDistribute super."dynamic-linker-template"; + "dynamic-loader" = dontDistribute super."dynamic-loader"; + "dynamic-mvector" = dontDistribute super."dynamic-mvector"; + "dynamic-object" = dontDistribute super."dynamic-object"; + "dynamic-plot" = dontDistribute super."dynamic-plot"; + "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynobud" = dontDistribute super."dynobud"; + "dywapitchtrack" = dontDistribute super."dywapitchtrack"; + "dzen-utils" = dontDistribute super."dzen-utils"; + "eager-sockets" = dontDistribute super."eager-sockets"; + "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; + "easyjson" = dontDistribute super."easyjson"; + "easyplot" = dontDistribute super."easyplot"; + "easyrender" = dontDistribute super."easyrender"; + "ebeats" = dontDistribute super."ebeats"; + "ebnf-bff" = dontDistribute super."ebnf-bff"; + "ec2-signature" = dontDistribute super."ec2-signature"; + "ecdsa" = dontDistribute super."ecdsa"; + "ecma262" = dontDistribute super."ecma262"; + "ecu" = dontDistribute super."ecu"; + "ed25519" = dontDistribute super."ed25519"; + "ed25519-donna" = dontDistribute super."ed25519-donna"; + "eddie" = dontDistribute super."eddie"; + "edenmodules" = dontDistribute super."edenmodules"; + "edenskel" = dontDistribute super."edenskel"; + "edentv" = dontDistribute super."edentv"; + "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; + "edit-lenses" = dontDistribute super."edit-lenses"; + "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; + "editable" = dontDistribute super."editable"; + "editline" = dontDistribute super."editline"; + "effect-monad" = dontDistribute super."effect-monad"; + "effective-aspects" = dontDistribute super."effective-aspects"; + "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; + "effects" = dontDistribute super."effects"; + "effects-parser" = dontDistribute super."effects-parser"; + "effin" = dontDistribute super."effin"; + "egison" = dontDistribute super."egison"; + "egison-quote" = dontDistribute super."egison-quote"; + "egison-tutorial" = dontDistribute super."egison-tutorial"; + "ehaskell" = dontDistribute super."ehaskell"; + "ehs" = dontDistribute super."ehs"; + "eibd-client-simple" = dontDistribute super."eibd-client-simple"; + "eigen" = dontDistribute super."eigen"; + "eithers" = dontDistribute super."eithers"; + "ekg-bosun" = dontDistribute super."ekg-bosun"; + "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-log" = dontDistribute super."ekg-log"; + "ekg-push" = dontDistribute super."ekg-push"; + "ekg-rrd" = dontDistribute super."ekg-rrd"; + "ekg-statsd" = dontDistribute super."ekg-statsd"; + "electrum-mnemonic" = dontDistribute super."electrum-mnemonic"; + "elerea" = dontDistribute super."elerea"; + "elerea-examples" = dontDistribute super."elerea-examples"; + "elerea-sdl" = dontDistribute super."elerea-sdl"; + "elevator" = dontDistribute super."elevator"; + "elf" = dontDistribute super."elf"; + "elision" = dontDistribute super."elision"; + "elm-build-lib" = dontDistribute super."elm-build-lib"; + "elm-compiler" = dontDistribute super."elm-compiler"; + "elm-get" = dontDistribute super."elm-get"; + "elm-init" = dontDistribute super."elm-init"; + "elm-make" = dontDistribute super."elm-make"; + "elm-package" = dontDistribute super."elm-package"; + "elm-reactor" = dontDistribute super."elm-reactor"; + "elm-repl" = dontDistribute super."elm-repl"; + "elm-server" = dontDistribute super."elm-server"; + "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; + "elocrypt" = dontDistribute super."elocrypt"; + "emacs-keys" = dontDistribute super."emacs-keys"; + "email" = dontDistribute super."email"; + "email-header" = dontDistribute super."email-header"; + "email-postmark" = dontDistribute super."email-postmark"; + "email-validator" = dontDistribute super."email-validator"; + "embeddock" = dontDistribute super."embeddock"; + "embeddock-example" = dontDistribute super."embeddock-example"; + "embroidery" = dontDistribute super."embroidery"; + "emgm" = dontDistribute super."emgm"; + "empty" = dontDistribute super."empty"; + "encoding" = dontDistribute super."encoding"; + "endo" = dontDistribute super."endo"; + "engine-io-growler" = dontDistribute super."engine-io-growler"; + "engine-io-snap" = dontDistribute super."engine-io-snap"; + "engineering-units" = dontDistribute super."engineering-units"; + "enumerable" = dontDistribute super."enumerable"; + "enumerate" = dontDistribute super."enumerate"; + "enumeration" = dontDistribute super."enumeration"; + "enumerator-fd" = dontDistribute super."enumerator-fd"; + "enumerator-tf" = dontDistribute super."enumerator-tf"; + "enumfun" = dontDistribute super."enumfun"; + "enummapmap" = dontDistribute super."enummapmap"; + "enummapset" = dontDistribute super."enummapset"; + "enummapset-th" = dontDistribute super."enummapset-th"; + "enumset" = dontDistribute super."enumset"; + "env-parser" = dontDistribute super."env-parser"; + "envparse" = dontDistribute super."envparse"; + "epanet-haskell" = dontDistribute super."epanet-haskell"; + "epass" = dontDistribute super."epass"; + "epic" = dontDistribute super."epic"; + "epoll" = dontDistribute super."epoll"; + "eprocess" = dontDistribute super."eprocess"; + "epub" = dontDistribute super."epub"; + "epub-metadata" = dontDistribute super."epub-metadata"; + "epub-tools" = dontDistribute super."epub-tools"; + "epubname" = dontDistribute super."epubname"; + "equal-files" = dontDistribute super."equal-files"; + "equational-reasoning" = dontDistribute super."equational-reasoning"; + "erd" = dontDistribute super."erd"; + "erf-native" = dontDistribute super."erf-native"; + "erlang" = dontDistribute super."erlang"; + "eros" = dontDistribute super."eros"; + "eros-client" = dontDistribute super."eros-client"; + "eros-http" = dontDistribute super."eros-http"; + "errno" = dontDistribute super."errno"; + "error-analyze" = dontDistribute super."error-analyze"; + "error-continuations" = dontDistribute super."error-continuations"; + "error-list" = dontDistribute super."error-list"; + "error-loc" = dontDistribute super."error-loc"; + "error-location" = dontDistribute super."error-location"; + "error-message" = dontDistribute super."error-message"; + "error-util" = dontDistribute super."error-util"; + "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; + "ersatz" = dontDistribute super."ersatz"; + "ersatz-toysat" = dontDistribute super."ersatz-toysat"; + "ert" = dontDistribute super."ert"; + "esotericbot" = dontDistribute super."esotericbot"; + "ess" = dontDistribute super."ess"; + "estimator" = dontDistribute super."estimator"; + "estimators" = dontDistribute super."estimators"; + "estreps" = dontDistribute super."estreps"; + "eternal" = dontDistribute super."eternal"; + "ether" = doDistribute super."ether_0_3_1_1"; + "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; + "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; + "ethereum-rlp" = dontDistribute super."ethereum-rlp"; + "ety" = dontDistribute super."ety"; + "euler" = dontDistribute super."euler"; + "euphoria" = dontDistribute super."euphoria"; + "eurofxref" = dontDistribute super."eurofxref"; + "event-driven" = dontDistribute super."event-driven"; + "event-handlers" = dontDistribute super."event-handlers"; + "event-list" = dontDistribute super."event-list"; + "event-monad" = dontDistribute super."event-monad"; + "eventloop" = dontDistribute super."eventloop"; + "eventstore" = doDistribute super."eventstore_0_10_0_2"; + "every-bit-counts" = dontDistribute super."every-bit-counts"; + "ewe" = dontDistribute super."ewe"; + "ex-pool" = dontDistribute super."ex-pool"; + "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "exception-hierarchy" = dontDistribute super."exception-hierarchy"; + "exception-mailer" = dontDistribute super."exception-mailer"; + "exception-monads-fd" = dontDistribute super."exception-monads-fd"; + "exception-monads-tf" = dontDistribute super."exception-monads-tf"; + "exception-mtl" = dontDistribute super."exception-mtl"; + "exherbo-cabal" = dontDistribute super."exherbo-cabal"; + "exif" = dontDistribute super."exif"; + "exinst" = dontDistribute super."exinst"; + "exinst-aeson" = dontDistribute super."exinst-aeson"; + "exinst-bytes" = dontDistribute super."exinst-bytes"; + "exinst-deepseq" = dontDistribute super."exinst-deepseq"; + "exinst-hashable" = dontDistribute super."exinst-hashable"; + "existential" = dontDistribute super."existential"; + "exists" = dontDistribute super."exists"; + "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; + "exp-pairs" = dontDistribute super."exp-pairs"; + "expand" = dontDistribute super."expand"; + "expat-enumerator" = dontDistribute super."expat-enumerator"; + "expiring-mvar" = dontDistribute super."expiring-mvar"; + "explain" = dontDistribute super."explain"; + "explicit-determinant" = dontDistribute super."explicit-determinant"; + "explicit-iomodes" = dontDistribute super."explicit-iomodes"; + "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring"; + "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text"; + "explicit-sharing" = dontDistribute super."explicit-sharing"; + "explore" = dontDistribute super."explore"; + "exposed-containers" = dontDistribute super."exposed-containers"; + "expression-parser" = dontDistribute super."expression-parser"; + "extcore" = dontDistribute super."extcore"; + "extemp" = dontDistribute super."extemp"; + "extended-categories" = dontDistribute super."extended-categories"; + "extended-reals" = dontDistribute super."extended-reals"; + "extensible" = dontDistribute super."extensible"; + "extensible-data" = dontDistribute super."extensible-data"; + "external-sort" = dontDistribute super."external-sort"; + "extractelf" = dontDistribute super."extractelf"; + "ez-couch" = dontDistribute super."ez-couch"; + "faceted" = dontDistribute super."faceted"; + "factory" = dontDistribute super."factory"; + "factual-api" = dontDistribute super."factual-api"; + "fad" = dontDistribute super."fad"; + "failable-list" = dontDistribute super."failable-list"; + "failure" = dontDistribute super."failure"; + "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; + "faker" = dontDistribute super."faker"; + "falling-turnip" = dontDistribute super."falling-turnip"; + "fallingblocks" = dontDistribute super."fallingblocks"; + "family-tree" = dontDistribute super."family-tree"; + "fast-digits" = dontDistribute super."fast-digits"; + "fast-math" = dontDistribute super."fast-math"; + "fast-tags" = dontDistribute super."fast-tags"; + "fast-tagsoup" = dontDistribute super."fast-tagsoup"; + "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fastbayes" = dontDistribute super."fastbayes"; + "fastcgi" = dontDistribute super."fastcgi"; + "fastedit" = dontDistribute super."fastedit"; + "fastirc" = dontDistribute super."fastirc"; + "fault-tree" = dontDistribute super."fault-tree"; + "fay-geoposition" = dontDistribute super."fay-geoposition"; + "fay-hsx" = dontDistribute super."fay-hsx"; + "fay-ref" = dontDistribute super."fay-ref"; + "fca" = dontDistribute super."fca"; + "fcache" = dontDistribute super."fcache"; + "fcd" = dontDistribute super."fcd"; + "fckeditor" = dontDistribute super."fckeditor"; + "fclabels-monadlib" = dontDistribute super."fclabels-monadlib"; + "fdo-trash" = dontDistribute super."fdo-trash"; + "fec" = dontDistribute super."fec"; + "fedora-packages" = dontDistribute super."fedora-packages"; + "feed-cli" = dontDistribute super."feed-cli"; + "feed-collect" = dontDistribute super."feed-collect"; + "feed-crawl" = dontDistribute super."feed-crawl"; + "feed-translator" = dontDistribute super."feed-translator"; + "feed2lj" = dontDistribute super."feed2lj"; + "feed2twitter" = dontDistribute super."feed2twitter"; + "feldspar-compiler" = dontDistribute super."feldspar-compiler"; + "feldspar-language" = dontDistribute super."feldspar-language"; + "feldspar-signal" = dontDistribute super."feldspar-signal"; + "fen2s" = dontDistribute super."fen2s"; + "fences" = dontDistribute super."fences"; + "fenfire" = dontDistribute super."fenfire"; + "fez-conf" = dontDistribute super."fez-conf"; + "ffeed" = dontDistribute super."ffeed"; + "fficxx" = dontDistribute super."fficxx"; + "fficxx-runtime" = dontDistribute super."fficxx-runtime"; + "ffmpeg-light" = dontDistribute super."ffmpeg-light"; + "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; + "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; + "fgl-visualize" = dontDistribute super."fgl-visualize"; + "fibon" = dontDistribute super."fibon"; + "fibonacci" = dontDistribute super."fibonacci"; + "fields" = dontDistribute super."fields"; + "fields-json" = dontDistribute super."fields-json"; + "fieldwise" = dontDistribute super."fieldwise"; + "fig" = dontDistribute super."fig"; + "file-collection" = dontDistribute super."file-collection"; + "file-command-qq" = dontDistribute super."file-command-qq"; + "filediff" = dontDistribute super."filediff"; + "filepath-io-access" = dontDistribute super."filepath-io-access"; + "filepather" = dontDistribute super."filepather"; + "filestore" = dontDistribute super."filestore"; + "filesystem-conduit" = dontDistribute super."filesystem-conduit"; + "filesystem-enumerator" = dontDistribute super."filesystem-enumerator"; + "filesystem-trees" = dontDistribute super."filesystem-trees"; + "filtrable" = dontDistribute super."filtrable"; + "final" = dontDistribute super."final"; + "find-clumpiness" = dontDistribute super."find-clumpiness"; + "find-conduit" = dontDistribute super."find-conduit"; + "fingertree-tf" = dontDistribute super."fingertree-tf"; + "finite-field" = dontDistribute super."finite-field"; + "finite-typelits" = dontDistribute super."finite-typelits"; + "first-and-last" = dontDistribute super."first-and-last"; + "first-class-patterns" = dontDistribute super."first-class-patterns"; + "firstify" = dontDistribute super."firstify"; + "fishfood" = dontDistribute super."fishfood"; + "fit" = dontDistribute super."fit"; + "fitsio" = dontDistribute super."fitsio"; + "fix-imports" = dontDistribute super."fix-imports"; + "fix-parser-simple" = dontDistribute super."fix-parser-simple"; + "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit"; + "fixed-length" = dontDistribute super."fixed-length"; + "fixed-point" = dontDistribute super."fixed-point"; + "fixed-point-vector" = dontDistribute super."fixed-point-vector"; + "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space"; + "fixed-precision" = dontDistribute super."fixed-precision"; + "fixed-storable-array" = dontDistribute super."fixed-storable-array"; + "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; + "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixedprec" = dontDistribute super."fixedprec"; + "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; + "fixfile" = dontDistribute super."fixfile"; + "fixhs" = dontDistribute super."fixhs"; + "fixplate" = dontDistribute super."fixplate"; + "fixpoint" = dontDistribute super."fixpoint"; + "fixtime" = dontDistribute super."fixtime"; + "fizz-buzz" = dontDistribute super."fizz-buzz"; + "flaccuraterip" = dontDistribute super."flaccuraterip"; + "flamethrower" = dontDistribute super."flamethrower"; + "flamingra" = dontDistribute super."flamingra"; + "flat-maybe" = dontDistribute super."flat-maybe"; + "flat-mcmc" = dontDistribute super."flat-mcmc"; + "flat-tex" = dontDistribute super."flat-tex"; + "flexible-time" = dontDistribute super."flexible-time"; + "flexible-unlit" = dontDistribute super."flexible-unlit"; + "flexiwrap" = dontDistribute super."flexiwrap"; + "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck"; + "flickr" = dontDistribute super."flickr"; + "flippers" = dontDistribute super."flippers"; + "flite" = dontDistribute super."flite"; + "flo" = dontDistribute super."flo"; + "float-binstring" = dontDistribute super."float-binstring"; + "floating-bits" = dontDistribute super."floating-bits"; + "floatshow" = dontDistribute super."floatshow"; + "flow2dot" = dontDistribute super."flow2dot"; + "flowdock-api" = dontDistribute super."flowdock-api"; + "flowdock-rest" = dontDistribute super."flowdock-rest"; + "flower" = dontDistribute super."flower"; + "flowlocks-framework" = dontDistribute super."flowlocks-framework"; + "flowsim" = dontDistribute super."flowsim"; + "fltkhs" = dontDistribute super."fltkhs"; + "fltkhs-demos" = dontDistribute super."fltkhs-demos"; + "fltkhs-fluid-demos" = dontDistribute super."fltkhs-fluid-demos"; + "fltkhs-fluid-examples" = dontDistribute super."fltkhs-fluid-examples"; + "fltkhs-hello-world" = dontDistribute super."fltkhs-hello-world"; + "fluent-logger" = dontDistribute super."fluent-logger"; + "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; + "fluidsynth" = dontDistribute super."fluidsynth"; + "fmark" = dontDistribute super."fmark"; + "fn" = doDistribute super."fn_0_2_0_2"; + "fn-extra" = doDistribute super."fn-extra_0_2_0_1"; + "fold-debounce" = dontDistribute super."fold-debounce"; + "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl-incremental" = dontDistribute super."foldl-incremental"; + "foldl-transduce" = dontDistribute super."foldl-transduce"; + "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; + "folds" = dontDistribute super."folds"; + "folds-common" = dontDistribute super."folds-common"; + "follower" = dontDistribute super."follower"; + "foma" = dontDistribute super."foma"; + "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6"; + "foo" = dontDistribute super."foo"; + "for-free" = dontDistribute super."for-free"; + "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "fordo" = dontDistribute super."fordo"; + "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; + "foreign-var" = dontDistribute super."foreign-var"; + "forger" = dontDistribute super."forger"; + "forkable-monad" = dontDistribute super."forkable-monad"; + "formal" = dontDistribute super."formal"; + "format" = dontDistribute super."format"; + "format-status" = dontDistribute super."format-status"; + "formattable" = dontDistribute super."formattable"; + "forml" = dontDistribute super."forml"; + "formlets" = dontDistribute super."formlets"; + "formlets-hsp" = dontDistribute super."formlets-hsp"; + "formura" = dontDistribute super."formura"; + "forth-hll" = dontDistribute super."forth-hll"; + "foscam-directory" = dontDistribute super."foscam-directory"; + "foscam-filename" = dontDistribute super."foscam-filename"; + "foscam-sort" = dontDistribute super."foscam-sort"; + "fountain" = dontDistribute super."fountain"; + "fpco-api" = dontDistribute super."fpco-api"; + "fpipe" = dontDistribute super."fpipe"; + "fpnla" = dontDistribute super."fpnla"; + "fpnla-examples" = dontDistribute super."fpnla-examples"; + "fptest" = dontDistribute super."fptest"; + "fquery" = dontDistribute super."fquery"; + "fractal" = dontDistribute super."fractal"; + "fractals" = dontDistribute super."fractals"; + "fraction" = dontDistribute super."fraction"; + "frag" = dontDistribute super."frag"; + "frame" = dontDistribute super."frame"; + "frame-markdown" = dontDistribute super."frame-markdown"; + "franchise" = dontDistribute super."franchise"; + "free-concurrent" = dontDistribute super."free-concurrent"; + "free-functors" = dontDistribute super."free-functors"; + "free-game" = dontDistribute super."free-game"; + "free-http" = dontDistribute super."free-http"; + "free-operational" = dontDistribute super."free-operational"; + "free-theorems" = dontDistribute super."free-theorems"; + "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples"; + "free-theorems-seq" = dontDistribute super."free-theorems-seq"; + "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui"; + "free-theorems-webui" = dontDistribute super."free-theorems-webui"; + "free-vl" = dontDistribute super."free-vl"; + "freekick2" = dontDistribute super."freekick2"; + "freer" = dontDistribute super."freer"; + "freesect" = dontDistribute super."freesect"; + "freesound" = dontDistribute super."freesound"; + "freetype-simple" = dontDistribute super."freetype-simple"; + "freetype2" = dontDistribute super."freetype2"; + "fresh" = dontDistribute super."fresh"; + "friday" = dontDistribute super."friday"; + "friday-devil" = dontDistribute super."friday-devil"; + "friday-juicypixels" = dontDistribute super."friday-juicypixels"; + "friday-scale-dct" = dontDistribute super."friday-scale-dct"; + "friendly-time" = dontDistribute super."friendly-time"; + "frown" = dontDistribute super."frown"; + "frp-arduino" = dontDistribute super."frp-arduino"; + "frpnow" = dontDistribute super."frpnow"; + "frpnow-gloss" = dontDistribute super."frpnow-gloss"; + "frpnow-gtk" = dontDistribute super."frpnow-gtk"; + "frquotes" = dontDistribute super."frquotes"; + "fs-events" = dontDistribute super."fs-events"; + "fsharp" = dontDistribute super."fsharp"; + "fsmActions" = dontDistribute super."fsmActions"; + "fst" = dontDistribute super."fst"; + "fsutils" = dontDistribute super."fsutils"; + "fswatcher" = dontDistribute super."fswatcher"; + "ftdi" = dontDistribute super."ftdi"; + "ftp-conduit" = dontDistribute super."ftp-conduit"; + "ftphs" = dontDistribute super."ftphs"; + "ftree" = dontDistribute super."ftree"; + "ftshell" = dontDistribute super."ftshell"; + "fugue" = dontDistribute super."fugue"; + "full-sessions" = dontDistribute super."full-sessions"; + "full-text-search" = dontDistribute super."full-text-search"; + "fullstop" = dontDistribute super."fullstop"; + "funbot" = dontDistribute super."funbot"; + "funbot-client" = dontDistribute super."funbot-client"; + "funbot-ext-events" = dontDistribute super."funbot-ext-events"; + "funbot-git-hook" = dontDistribute super."funbot-git-hook"; + "funcons-tools" = dontDistribute super."funcons-tools"; + "function-combine" = dontDistribute super."function-combine"; + "function-instances-algebra" = dontDistribute super."function-instances-algebra"; + "functional-arrow" = dontDistribute super."functional-arrow"; + "functional-kmp" = dontDistribute super."functional-kmp"; + "functor-apply" = dontDistribute super."functor-apply"; + "functor-combo" = dontDistribute super."functor-combo"; + "functor-infix" = dontDistribute super."functor-infix"; + "functor-monadic" = dontDistribute super."functor-monadic"; + "functor-utils" = dontDistribute super."functor-utils"; + "functorm" = dontDistribute super."functorm"; + "functors" = dontDistribute super."functors"; + "funion" = dontDistribute super."funion"; + "funpat" = dontDistribute super."funpat"; + "funsat" = dontDistribute super."funsat"; + "fusion" = dontDistribute super."fusion"; + "futun" = dontDistribute super."futun"; + "future" = dontDistribute super."future"; + "future-resource" = dontDistribute super."future-resource"; + "fuzzy" = dontDistribute super."fuzzy"; + "fuzzy-timings" = dontDistribute super."fuzzy-timings"; + "fuzzytime" = dontDistribute super."fuzzytime"; + "fwgl" = dontDistribute super."fwgl"; + "fwgl-glfw" = dontDistribute super."fwgl-glfw"; + "fwgl-javascript" = dontDistribute super."fwgl-javascript"; + "g-npm" = dontDistribute super."g-npm"; + "gact" = dontDistribute super."gact"; + "game-of-life" = dontDistribute super."game-of-life"; + "game-probability" = dontDistribute super."game-probability"; + "game-tree" = dontDistribute super."game-tree"; + "gameclock" = dontDistribute super."gameclock"; + "gamma" = dontDistribute super."gamma"; + "gang-of-threads" = dontDistribute super."gang-of-threads"; + "garepinoh" = dontDistribute super."garepinoh"; + "garsia-wachs" = dontDistribute super."garsia-wachs"; + "gbu" = dontDistribute super."gbu"; + "gc" = dontDistribute super."gc"; + "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai"; + "gconf" = dontDistribute super."gconf"; + "gdiff" = dontDistribute super."gdiff"; + "gdiff-ig" = dontDistribute super."gdiff-ig"; + "gdiff-th" = dontDistribute super."gdiff-th"; + "gdo" = dontDistribute super."gdo"; + "gearbox" = dontDistribute super."gearbox"; + "geek" = dontDistribute super."geek"; + "geek-server" = dontDistribute super."geek-server"; + "gelatin" = dontDistribute super."gelatin"; + "gemstone" = dontDistribute super."gemstone"; + "gencheck" = dontDistribute super."gencheck"; + "gender" = dontDistribute super."gender"; + "genders" = dontDistribute super."genders"; + "general-prelude" = dontDistribute super."general-prelude"; + "generator" = dontDistribute super."generator"; + "generators" = dontDistribute super."generators"; + "generic-accessors" = dontDistribute super."generic-accessors"; + "generic-binary" = dontDistribute super."generic-binary"; + "generic-church" = dontDistribute super."generic-church"; + "generic-deepseq" = dontDistribute super."generic-deepseq"; + "generic-deriving" = doDistribute super."generic-deriving_1_9_0"; + "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; + "generic-maybe" = dontDistribute super."generic-maybe"; + "generic-pretty" = dontDistribute super."generic-pretty"; + "generic-server" = dontDistribute super."generic-server"; + "generic-storable" = dontDistribute super."generic-storable"; + "generic-tree" = dontDistribute super."generic-tree"; + "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; + "genericserialize" = dontDistribute super."genericserialize"; + "genetics" = dontDistribute super."genetics"; + "geni-gui" = dontDistribute super."geni-gui"; + "geni-util" = dontDistribute super."geni-util"; + "geniconvert" = dontDistribute super."geniconvert"; + "genifunctors" = dontDistribute super."genifunctors"; + "geniplate" = dontDistribute super."geniplate"; + "geniserver" = dontDistribute super."geniserver"; + "genprog" = dontDistribute super."genprog"; + "gentlemark" = dontDistribute super."gentlemark"; + "geo-resolver" = dontDistribute super."geo-resolver"; + "geo-uk" = dontDistribute super."geo-uk"; + "geocalc" = dontDistribute super."geocalc"; + "geocode-google" = dontDistribute super."geocode-google"; + "geodetic" = dontDistribute super."geodetic"; + "geodetics" = dontDistribute super."geodetics"; + "geohash" = dontDistribute super."geohash"; + "geoip2" = dontDistribute super."geoip2"; + "geojson" = dontDistribute super."geojson"; + "geom2d" = dontDistribute super."geom2d"; + "getemx" = dontDistribute super."getemx"; + "getflag" = dontDistribute super."getflag"; + "getopt-simple" = dontDistribute super."getopt-simple"; + "gf" = dontDistribute super."gf"; + "ggtsTC" = dontDistribute super."ggtsTC"; + "ghc-core" = dontDistribute super."ghc-core"; + "ghc-core-html" = dontDistribute super."ghc-core-html"; + "ghc-datasize" = dontDistribute super."ghc-datasize"; + "ghc-dump-tree" = dontDistribute super."ghc-dump-tree"; + "ghc-dup" = dontDistribute super."ghc-dup"; + "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; + "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; + "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-imported-from" = dontDistribute super."ghc-imported-from"; + "ghc-make" = dontDistribute super."ghc-make"; + "ghc-man-completion" = dontDistribute super."ghc-man-completion"; + "ghc-options" = dontDistribute super."ghc-options"; + "ghc-parmake" = dontDistribute super."ghc-parmake"; + "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; + "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; + "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; + "ghc-server" = dontDistribute super."ghc-server"; + "ghc-simple" = dontDistribute super."ghc-simple"; + "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; + "ghc-syb" = dontDistribute super."ghc-syb"; + "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-vis" = dontDistribute super."ghc-vis"; + "ghci-diagrams" = dontDistribute super."ghci-diagrams"; + "ghci-haskeline" = dontDistribute super."ghci-haskeline"; + "ghci-lib" = dontDistribute super."ghci-lib"; + "ghci-ng" = dontDistribute super."ghci-ng"; + "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; + "ghcjs-dom" = dontDistribute super."ghcjs-dom"; + "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; + "ghcjs-websockets" = dontDistribute super."ghcjs-websockets"; + "ghclive" = dontDistribute super."ghclive"; + "ghczdecode" = dontDistribute super."ghczdecode"; + "ght" = dontDistribute super."ght"; + "gi-atk" = dontDistribute super."gi-atk"; + "gi-cairo" = dontDistribute super."gi-cairo"; + "gi-gdk" = dontDistribute super."gi-gdk"; + "gi-gdkpixbuf" = dontDistribute super."gi-gdkpixbuf"; + "gi-gio" = dontDistribute super."gi-gio"; + "gi-girepository" = dontDistribute super."gi-girepository"; + "gi-glib" = dontDistribute super."gi-glib"; + "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gtk" = dontDistribute super."gi-gtk"; + "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; + "gi-notify" = dontDistribute super."gi-notify"; + "gi-pango" = dontDistribute super."gi-pango"; + "gi-poppler" = dontDistribute super."gi-poppler"; + "gi-soup" = dontDistribute super."gi-soup"; + "gi-vte" = dontDistribute super."gi-vte"; + "gi-webkit" = dontDistribute super."gi-webkit"; + "gi-webkit2" = dontDistribute super."gi-webkit2"; + "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "gimlh" = dontDistribute super."gimlh"; + "ginger" = dontDistribute super."ginger"; + "ginsu" = dontDistribute super."ginsu"; + "gist" = dontDistribute super."gist"; + "git-all" = dontDistribute super."git-all"; + "git-annex" = doDistribute super."git-annex_6_20160114"; + "git-checklist" = dontDistribute super."git-checklist"; + "git-date" = dontDistribute super."git-date"; + "git-embed" = dontDistribute super."git-embed"; + "git-freq" = dontDistribute super."git-freq"; + "git-gpush" = dontDistribute super."git-gpush"; + "git-jump" = dontDistribute super."git-jump"; + "git-monitor" = dontDistribute super."git-monitor"; + "git-object" = dontDistribute super."git-object"; + "git-repair" = dontDistribute super."git-repair"; + "git-sanity" = dontDistribute super."git-sanity"; + "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; + "gitcache" = dontDistribute super."gitcache"; + "gitdo" = dontDistribute super."gitdo"; + "github-backup" = dontDistribute super."github-backup"; + "github-post-receive" = dontDistribute super."github-post-receive"; + "github-utils" = dontDistribute super."github-utils"; + "gitignore" = dontDistribute super."gitignore"; + "gitit" = dontDistribute super."gitit"; + "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; + "gitlib-cross" = dontDistribute super."gitlib-cross"; + "gitlib-s3" = dontDistribute super."gitlib-s3"; + "gitlib-sample" = dontDistribute super."gitlib-sample"; + "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; + "gl-capture" = dontDistribute super."gl-capture"; + "glade" = dontDistribute super."glade"; + "gladexml-accessor" = dontDistribute super."gladexml-accessor"; + "glambda" = dontDistribute super."glambda"; + "glapp" = dontDistribute super."glapp"; + "glasso" = dontDistribute super."glasso"; + "glicko" = dontDistribute super."glicko"; + "glider-nlp" = dontDistribute super."glider-nlp"; + "glintcollider" = dontDistribute super."glintcollider"; + "gll" = dontDistribute super."gll"; + "global" = dontDistribute super."global"; + "global-config" = dontDistribute super."global-config"; + "global-lock" = dontDistribute super."global-lock"; + "global-variables" = dontDistribute super."global-variables"; + "glome-hs" = dontDistribute super."glome-hs"; + "gloss" = dontDistribute super."gloss"; + "gloss-accelerate" = dontDistribute super."gloss-accelerate"; + "gloss-algorithms" = dontDistribute super."gloss-algorithms"; + "gloss-banana" = dontDistribute super."gloss-banana"; + "gloss-devil" = dontDistribute super."gloss-devil"; + "gloss-examples" = dontDistribute super."gloss-examples"; + "gloss-game" = dontDistribute super."gloss-game"; + "gloss-juicy" = dontDistribute super."gloss-juicy"; + "gloss-raster" = dontDistribute super."gloss-raster"; + "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate"; + "gloss-rendering" = dontDistribute super."gloss-rendering"; + "gloss-sodium" = dontDistribute super."gloss-sodium"; + "glpk-hs" = dontDistribute super."glpk-hs"; + "glue" = dontDistribute super."glue"; + "glue-common" = dontDistribute super."glue-common"; + "glue-core" = dontDistribute super."glue-core"; + "glue-ekg" = dontDistribute super."glue-ekg"; + "glue-example" = dontDistribute super."glue-example"; + "gluturtle" = dontDistribute super."gluturtle"; + "gmap" = dontDistribute super."gmap"; + "gmndl" = dontDistribute super."gmndl"; + "gnome-desktop" = dontDistribute super."gnome-desktop"; + "gnome-keyring" = dontDistribute super."gnome-keyring"; + "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; + "gnuplot" = dontDistribute super."gnuplot"; + "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; + "goatee" = dontDistribute super."goatee"; + "goatee-gtk" = dontDistribute super."goatee-gtk"; + "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gogol" = dontDistribute super."gogol"; + "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer"; + "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller"; + "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer"; + "gogol-admin-directory" = dontDistribute super."gogol-admin-directory"; + "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration"; + "gogol-admin-reports" = dontDistribute super."gogol-admin-reports"; + "gogol-adsense" = dontDistribute super."gogol-adsense"; + "gogol-adsense-host" = dontDistribute super."gogol-adsense-host"; + "gogol-affiliates" = dontDistribute super."gogol-affiliates"; + "gogol-analytics" = dontDistribute super."gogol-analytics"; + "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise"; + "gogol-android-publisher" = dontDistribute super."gogol-android-publisher"; + "gogol-appengine" = dontDistribute super."gogol-appengine"; + "gogol-apps-activity" = dontDistribute super."gogol-apps-activity"; + "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar"; + "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing"; + "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller"; + "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks"; + "gogol-appstate" = dontDistribute super."gogol-appstate"; + "gogol-autoscaler" = dontDistribute super."gogol-autoscaler"; + "gogol-bigquery" = dontDistribute super."gogol-bigquery"; + "gogol-billing" = dontDistribute super."gogol-billing"; + "gogol-blogger" = dontDistribute super."gogol-blogger"; + "gogol-books" = dontDistribute super."gogol-books"; + "gogol-civicinfo" = dontDistribute super."gogol-civicinfo"; + "gogol-classroom" = dontDistribute super."gogol-classroom"; + "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace"; + "gogol-compute" = dontDistribute super."gogol-compute"; + "gogol-container" = dontDistribute super."gogol-container"; + "gogol-core" = dontDistribute super."gogol-core"; + "gogol-customsearch" = dontDistribute super."gogol-customsearch"; + "gogol-dataflow" = dontDistribute super."gogol-dataflow"; + "gogol-datastore" = dontDistribute super."gogol-datastore"; + "gogol-debugger" = dontDistribute super."gogol-debugger"; + "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager"; + "gogol-dfareporting" = dontDistribute super."gogol-dfareporting"; + "gogol-discovery" = dontDistribute super."gogol-discovery"; + "gogol-dns" = dontDistribute super."gogol-dns"; + "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids"; + "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search"; + "gogol-drive" = dontDistribute super."gogol-drive"; + "gogol-fitness" = dontDistribute super."gogol-fitness"; + "gogol-fonts" = dontDistribute super."gogol-fonts"; + "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch"; + "gogol-fusiontables" = dontDistribute super."gogol-fusiontables"; + "gogol-games" = dontDistribute super."gogol-games"; + "gogol-games-configuration" = dontDistribute super."gogol-games-configuration"; + "gogol-games-management" = dontDistribute super."gogol-games-management"; + "gogol-genomics" = dontDistribute super."gogol-genomics"; + "gogol-gmail" = dontDistribute super."gogol-gmail"; + "gogol-groups-migration" = dontDistribute super."gogol-groups-migration"; + "gogol-groups-settings" = dontDistribute super."gogol-groups-settings"; + "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit"; + "gogol-latencytest" = dontDistribute super."gogol-latencytest"; + "gogol-logging" = dontDistribute super."gogol-logging"; + "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate"; + "gogol-maps-engine" = dontDistribute super."gogol-maps-engine"; + "gogol-mirror" = dontDistribute super."gogol-mirror"; + "gogol-monitoring" = dontDistribute super."gogol-monitoring"; + "gogol-oauth2" = dontDistribute super."gogol-oauth2"; + "gogol-pagespeed" = dontDistribute super."gogol-pagespeed"; + "gogol-partners" = dontDistribute super."gogol-partners"; + "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner"; + "gogol-plus" = dontDistribute super."gogol-plus"; + "gogol-plus-domains" = dontDistribute super."gogol-plus-domains"; + "gogol-prediction" = dontDistribute super."gogol-prediction"; + "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon"; + "gogol-pubsub" = dontDistribute super."gogol-pubsub"; + "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress"; + "gogol-replicapool" = dontDistribute super."gogol-replicapool"; + "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater"; + "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager"; + "gogol-resourceviews" = dontDistribute super."gogol-resourceviews"; + "gogol-shopping-content" = dontDistribute super."gogol-shopping-content"; + "gogol-siteverification" = dontDistribute super."gogol-siteverification"; + "gogol-spectrum" = dontDistribute super."gogol-spectrum"; + "gogol-sqladmin" = dontDistribute super."gogol-sqladmin"; + "gogol-storage" = dontDistribute super."gogol-storage"; + "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer"; + "gogol-tagmanager" = dontDistribute super."gogol-tagmanager"; + "gogol-taskqueue" = dontDistribute super."gogol-taskqueue"; + "gogol-translate" = dontDistribute super."gogol-translate"; + "gogol-urlshortener" = dontDistribute super."gogol-urlshortener"; + "gogol-useraccounts" = dontDistribute super."gogol-useraccounts"; + "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools"; + "gogol-youtube" = dontDistribute super."gogol-youtube"; + "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; + "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; + "gooey" = dontDistribute super."gooey"; + "google-dictionary" = dontDistribute super."google-dictionary"; + "google-drive" = dontDistribute super."google-drive"; + "google-html5-slide" = dontDistribute super."google-html5-slide"; + "google-mail-filters" = dontDistribute super."google-mail-filters"; + "google-oauth2" = dontDistribute super."google-oauth2"; + "google-search" = dontDistribute super."google-search"; + "googleplus" = dontDistribute super."googleplus"; + "googlepolyline" = dontDistribute super."googlepolyline"; + "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; + "gpah" = dontDistribute super."gpah"; + "gpcsets" = dontDistribute super."gpcsets"; + "gpolyline" = dontDistribute super."gpolyline"; + "gps" = dontDistribute super."gps"; + "gps2htmlReport" = dontDistribute super."gps2htmlReport"; + "gpx-conduit" = dontDistribute super."gpx-conduit"; + "graceful" = dontDistribute super."graceful"; + "grammar-combinators" = dontDistribute super."grammar-combinators"; + "grapefruit-examples" = dontDistribute super."grapefruit-examples"; + "grapefruit-frp" = dontDistribute super."grapefruit-frp"; + "grapefruit-records" = dontDistribute super."grapefruit-records"; + "grapefruit-ui" = dontDistribute super."grapefruit-ui"; + "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk"; + "graph-core" = doDistribute super."graph-core_0_2_2_0"; + "graph-generators" = dontDistribute super."graph-generators"; + "graph-matchings" = dontDistribute super."graph-matchings"; + "graph-rewriting" = dontDistribute super."graph-rewriting"; + "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl"; + "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl"; + "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope"; + "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout"; + "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski"; + "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies"; + "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs"; + "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww"; + "graph-serialize" = dontDistribute super."graph-serialize"; + "graph-utils" = dontDistribute super."graph-utils"; + "graph-visit" = dontDistribute super."graph-visit"; + "graphbuilder" = dontDistribute super."graphbuilder"; + "graphene" = dontDistribute super."graphene"; + "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators"; + "graphics-formats-collada" = dontDistribute super."graphics-formats-collada"; + "graphicsFormats" = dontDistribute super."graphicsFormats"; + "graphicstools" = dontDistribute super."graphicstools"; + "graphmod" = dontDistribute super."graphmod"; + "graphql" = dontDistribute super."graphql"; + "graphtype" = dontDistribute super."graphtype"; + "grasp" = dontDistribute super."grasp"; + "gray-code" = dontDistribute super."gray-code"; + "gray-extended" = dontDistribute super."gray-extended"; + "graylog" = dontDistribute super."graylog"; + "greencard" = dontDistribute super."greencard"; + "greencard-lib" = dontDistribute super."greencard-lib"; + "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; + "greplicate" = dontDistribute super."greplicate"; + "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; + "gridland" = dontDistribute super."gridland"; + "grm" = dontDistribute super."grm"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; + "groundhog-inspector" = dontDistribute super."groundhog-inspector"; + "group-with" = dontDistribute super."group-with"; + "groupoid" = dontDistribute super."groupoid"; + "gruff" = dontDistribute super."gruff"; + "gruff-examples" = dontDistribute super."gruff-examples"; + "gsc-weighting" = dontDistribute super."gsc-weighting"; + "gsl-random" = dontDistribute super."gsl-random"; + "gsl-random-fu" = dontDistribute super."gsl-random-fu"; + "gsmenu" = dontDistribute super."gsmenu"; + "gstreamer" = dontDistribute super."gstreamer"; + "gt-tools" = dontDistribute super."gt-tools"; + "gtfs" = dontDistribute super."gtfs"; + "gtk-helpers" = dontDistribute super."gtk-helpers"; + "gtk-jsinput" = dontDistribute super."gtk-jsinput"; + "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; + "gtk-mac-integration" = dontDistribute super."gtk-mac-integration"; + "gtk-serialized-event" = dontDistribute super."gtk-serialized-event"; + "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view"; + "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list"; + "gtk-toy" = dontDistribute super."gtk-toy"; + "gtk-traymanager" = dontDistribute super."gtk-traymanager"; + "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade"; + "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib"; + "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs"; + "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk"; + "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext"; + "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2"; + "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; + "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; + "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; + "gtkglext" = dontDistribute super."gtkglext"; + "gtkimageview" = dontDistribute super."gtkimageview"; + "gtkrsync" = dontDistribute super."gtkrsync"; + "gtksourceview2" = dontDistribute super."gtksourceview2"; + "gtksourceview3" = dontDistribute super."gtksourceview3"; + "guarded-rewriting" = dontDistribute super."guarded-rewriting"; + "guess-combinator" = dontDistribute super."guess-combinator"; + "gulcii" = dontDistribute super."gulcii"; + "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis"; + "gyah-bin" = dontDistribute super."gyah-bin"; + "h-booru" = dontDistribute super."h-booru"; + "h-gpgme" = dontDistribute super."h-gpgme"; + "h2048" = dontDistribute super."h2048"; + "hArduino" = dontDistribute super."hArduino"; + "hBDD" = dontDistribute super."hBDD"; + "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD"; + "hBDD-CUDD" = dontDistribute super."hBDD-CUDD"; + "hCsound" = dontDistribute super."hCsound"; + "hDFA" = dontDistribute super."hDFA"; + "hF2" = dontDistribute super."hF2"; + "hGelf" = dontDistribute super."hGelf"; + "hLLVM" = dontDistribute super."hLLVM"; + "hMollom" = dontDistribute super."hMollom"; + "hPDB-examples" = dontDistribute super."hPDB-examples"; + "hPushover" = dontDistribute super."hPushover"; + "hR" = dontDistribute super."hR"; + "hRESP" = dontDistribute super."hRESP"; + "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; + "hSimpleDB" = dontDistribute super."hSimpleDB"; + "hTalos" = dontDistribute super."hTalos"; + "hTensor" = dontDistribute super."hTensor"; + "hVOIDP" = dontDistribute super."hVOIDP"; + "hXmixer" = dontDistribute super."hXmixer"; + "haar" = dontDistribute super."haar"; + "hacanon-light" = dontDistribute super."hacanon-light"; + "hack" = dontDistribute super."hack"; + "hack-contrib" = dontDistribute super."hack-contrib"; + "hack-contrib-press" = dontDistribute super."hack-contrib-press"; + "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack"; + "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi"; + "hack-handler-cgi" = dontDistribute super."hack-handler-cgi"; + "hack-handler-epoll" = dontDistribute super."hack-handler-epoll"; + "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp"; + "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi"; + "hack-handler-happstack" = dontDistribute super."hack-handler-happstack"; + "hack-handler-hyena" = dontDistribute super."hack-handler-hyena"; + "hack-handler-kibro" = dontDistribute super."hack-handler-kibro"; + "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver"; + "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath"; + "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession"; + "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip"; + "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp"; + "hack2" = dontDistribute super."hack2"; + "hack2-contrib" = dontDistribute super."hack2-contrib"; + "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra"; + "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server"; + "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http"; + "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server"; + "hack2-handler-warp" = dontDistribute super."hack2-handler-warp"; + "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; + "hackage-diff" = dontDistribute super."hackage-diff"; + "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-proxy" = dontDistribute super."hackage-proxy"; + "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; + "hackage-security" = dontDistribute super."hackage-security"; + "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; + "hackage-server" = dontDistribute super."hackage-server"; + "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage2hwn" = dontDistribute super."hackage2hwn"; + "hackage2twitter" = dontDistribute super."hackage2twitter"; + "hackager" = dontDistribute super."hackager"; + "hackernews" = dontDistribute super."hackernews"; + "hackertyper" = dontDistribute super."hackertyper"; + "hackport" = dontDistribute super."hackport"; + "hactor" = dontDistribute super."hactor"; + "hactors" = dontDistribute super."hactors"; + "haddock" = dontDistribute super."haddock"; + "haddock-leksah" = dontDistribute super."haddock-leksah"; + "hadoop-formats" = dontDistribute super."hadoop-formats"; + "hadoop-rpc" = dontDistribute super."hadoop-rpc"; + "hadoop-tools" = dontDistribute super."hadoop-tools"; + "haeredes" = dontDistribute super."haeredes"; + "haggis" = dontDistribute super."haggis"; + "haha" = dontDistribute super."haha"; + "hahp" = dontDistribute super."hahp"; + "haiji" = dontDistribute super."haiji"; + "hailgun" = dontDistribute super."hailgun"; + "hailgun-send" = dontDistribute super."hailgun-send"; + "hails" = dontDistribute super."hails"; + "hails-bin" = dontDistribute super."hails-bin"; + "hairy" = dontDistribute super."hairy"; + "hakaru" = dontDistribute super."hakaru"; + "hake" = dontDistribute super."hake"; + "hakismet" = dontDistribute super."hakismet"; + "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_1"; + "hakyll-R" = dontDistribute super."hakyll-R"; + "hakyll-agda" = dontDistribute super."hakyll-agda"; + "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; + "hakyll-contrib" = dontDistribute super."hakyll-contrib"; + "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation"; + "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; + "hakyll-convert" = dontDistribute super."hakyll-convert"; + "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; + "hakyll-sass" = dontDistribute super."hakyll-sass"; + "halberd" = dontDistribute super."halberd"; + "halfs" = dontDistribute super."halfs"; + "halipeto" = dontDistribute super."halipeto"; + "halive" = dontDistribute super."halive"; + "halma" = dontDistribute super."halma"; + "haltavista" = dontDistribute super."haltavista"; + "hamid" = dontDistribute super."hamid"; + "hampp" = dontDistribute super."hampp"; + "hamtmap" = dontDistribute super."hamtmap"; + "hamusic" = dontDistribute super."hamusic"; + "handa-gdata" = dontDistribute super."handa-gdata"; + "handa-geodata" = dontDistribute super."handa-geodata"; + "handa-opengl" = dontDistribute super."handa-opengl"; + "handle-like" = dontDistribute super."handle-like"; + "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; + "hangman" = dontDistribute super."hangman"; + "hannahci" = dontDistribute super."hannahci"; + "hans" = dontDistribute super."hans"; + "hans-pcap" = dontDistribute super."hans-pcap"; + "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; + "happindicator" = dontDistribute super."happindicator"; + "happindicator3" = dontDistribute super."happindicator3"; + "happraise" = dontDistribute super."happraise"; + "happs-hsp" = dontDistribute super."happs-hsp"; + "happs-hsp-template" = dontDistribute super."happs-hsp-template"; + "happs-tutorial" = dontDistribute super."happs-tutorial"; + "happstack" = dontDistribute super."happstack"; + "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-contrib" = dontDistribute super."happstack-contrib"; + "happstack-data" = dontDistribute super."happstack-data"; + "happstack-dlg" = dontDistribute super."happstack-dlg"; + "happstack-facebook" = dontDistribute super."happstack-facebook"; + "happstack-fastcgi" = dontDistribute super."happstack-fastcgi"; + "happstack-fay" = dontDistribute super."happstack-fay"; + "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax"; + "happstack-foundation" = dontDistribute super."happstack-foundation"; + "happstack-hamlet" = dontDistribute super."happstack-hamlet"; + "happstack-heist" = dontDistribute super."happstack-heist"; + "happstack-helpers" = dontDistribute super."happstack-helpers"; + "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate"; + "happstack-ixset" = dontDistribute super."happstack-ixset"; + "happstack-lite" = dontDistribute super."happstack-lite"; + "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; + "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; + "happstack-state" = dontDistribute super."happstack-state"; + "happstack-static-routing" = dontDistribute super."happstack-static-routing"; + "happstack-util" = dontDistribute super."happstack-util"; + "happstack-yui" = dontDistribute super."happstack-yui"; + "happy-meta" = dontDistribute super."happy-meta"; + "happybara" = dontDistribute super."happybara"; + "happybara-webkit" = dontDistribute super."happybara-webkit"; + "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "har" = dontDistribute super."har"; + "harchive" = dontDistribute super."harchive"; + "hardware-edsl" = dontDistribute super."hardware-edsl"; + "hark" = dontDistribute super."hark"; + "harmony" = dontDistribute super."harmony"; + "haroonga" = dontDistribute super."haroonga"; + "haroonga-httpd" = dontDistribute super."haroonga-httpd"; + "harpy" = dontDistribute super."harpy"; + "has" = dontDistribute super."has"; + "has-th" = dontDistribute super."has-th"; + "hascal" = dontDistribute super."hascal"; + "hascat" = dontDistribute super."hascat"; + "hascat-lib" = dontDistribute super."hascat-lib"; + "hascat-setup" = dontDistribute super."hascat-setup"; + "hascat-system" = dontDistribute super."hascat-system"; + "hash" = dontDistribute super."hash"; + "hashable-generics" = dontDistribute super."hashable-generics"; + "hashabler" = dontDistribute super."hashabler"; + "hashed-storage" = dontDistribute super."hashed-storage"; + "hashids" = dontDistribute super."hashids"; + "hashring" = dontDistribute super."hashring"; + "hashtables-plus" = dontDistribute super."hashtables-plus"; + "hasim" = dontDistribute super."hasim"; + "hask" = dontDistribute super."hask"; + "hask-home" = dontDistribute super."hask-home"; + "haskades" = dontDistribute super."haskades"; + "haskakafka" = dontDistribute super."haskakafka"; + "haskanoid" = dontDistribute super."haskanoid"; + "haskarrow" = dontDistribute super."haskarrow"; + "haskbot-core" = dontDistribute super."haskbot-core"; + "haskdeep" = dontDistribute super."haskdeep"; + "haskdogs" = dontDistribute super."haskdogs"; + "haskeem" = dontDistribute super."haskeem"; + "haskeline" = doDistribute super."haskeline_0_7_2_2"; + "haskeline-class" = dontDistribute super."haskeline-class"; + "haskell-aliyun" = dontDistribute super."haskell-aliyun"; + "haskell-awk" = dontDistribute super."haskell-awk"; + "haskell-bcrypt" = dontDistribute super."haskell-bcrypt"; + "haskell-brainfuck" = dontDistribute super."haskell-brainfuck"; + "haskell-cnc" = dontDistribute super."haskell-cnc"; + "haskell-coffee" = dontDistribute super."haskell-coffee"; + "haskell-compression" = dontDistribute super."haskell-compression"; + "haskell-course-preludes" = dontDistribute super."haskell-course-preludes"; + "haskell-docs" = dontDistribute super."haskell-docs"; + "haskell-exp-parser" = dontDistribute super."haskell-exp-parser"; + "haskell-formatter" = dontDistribute super."haskell-formatter"; + "haskell-ftp" = dontDistribute super."haskell-ftp"; + "haskell-generate" = dontDistribute super."haskell-generate"; + "haskell-gi" = dontDistribute super."haskell-gi"; + "haskell-gi-base" = dontDistribute super."haskell-gi-base"; + "haskell-import-graph" = dontDistribute super."haskell-import-graph"; + "haskell-in-space" = dontDistribute super."haskell-in-space"; + "haskell-kubernetes" = dontDistribute super."haskell-kubernetes"; + "haskell-modbus" = dontDistribute super."haskell-modbus"; + "haskell-mpfr" = dontDistribute super."haskell-mpfr"; + "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = dontDistribute super."haskell-names"; + "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; + "haskell-platform-test" = dontDistribute super."haskell-platform-test"; + "haskell-plot" = dontDistribute super."haskell-plot"; + "haskell-qrencode" = dontDistribute super."haskell-qrencode"; + "haskell-read-editor" = dontDistribute super."haskell-read-editor"; + "haskell-reflect" = dontDistribute super."haskell-reflect"; + "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; + "haskell-token-utils" = dontDistribute super."haskell-token-utils"; + "haskell-tor" = dontDistribute super."haskell-tor"; + "haskell-type-exts" = dontDistribute super."haskell-type-exts"; + "haskell-typescript" = dontDistribute super."haskell-typescript"; + "haskell-tyrant" = dontDistribute super."haskell-tyrant"; + "haskell-updater" = dontDistribute super."haskell-updater"; + "haskell-xmpp" = dontDistribute super."haskell-xmpp"; + "haskell2010" = dontDistribute super."haskell2010"; + "haskell98" = dontDistribute super."haskell98"; + "haskell98libraries" = dontDistribute super."haskell98libraries"; + "haskelldb" = dontDistribute super."haskelldb"; + "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc"; + "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl"; + "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf"; + "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers"; + "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted"; + "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic"; + "haskelldb-flat" = dontDistribute super."haskelldb-flat"; + "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc"; + "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql"; + "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc"; + "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql"; + "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3"; + "haskelldb-hsql" = dontDistribute super."haskelldb-hsql"; + "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql"; + "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc"; + "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle"; + "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql"; + "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite"; + "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3"; + "haskelldb-th" = dontDistribute super."haskelldb-th"; + "haskelldb-wx" = dontDistribute super."haskelldb-wx"; + "haskellscrabble" = dontDistribute super."haskellscrabble"; + "haskellscript" = dontDistribute super."haskellscript"; + "haskelm" = dontDistribute super."haskelm"; + "haskgame" = dontDistribute super."haskgame"; + "haskheap" = dontDistribute super."haskheap"; + "haskhol-core" = dontDistribute super."haskhol-core"; + "haskmon" = dontDistribute super."haskmon"; + "haskoin" = dontDistribute super."haskoin"; + "haskoin-core" = dontDistribute super."haskoin-core"; + "haskoin-crypto" = dontDistribute super."haskoin-crypto"; + "haskoin-node" = dontDistribute super."haskoin-node"; + "haskoin-protocol" = dontDistribute super."haskoin-protocol"; + "haskoin-script" = dontDistribute super."haskoin-script"; + "haskoin-util" = dontDistribute super."haskoin-util"; + "haskoin-wallet" = dontDistribute super."haskoin-wallet"; + "haskoon" = dontDistribute super."haskoon"; + "haskoon-httpspec" = dontDistribute super."haskoon-httpspec"; + "haskoon-salvia" = dontDistribute super."haskoon-salvia"; + "haskore" = dontDistribute super."haskore"; + "haskore-realtime" = dontDistribute super."haskore-realtime"; + "haskore-supercollider" = dontDistribute super."haskore-supercollider"; + "haskore-synthesizer" = dontDistribute super."haskore-synthesizer"; + "haskore-vintage" = dontDistribute super."haskore-vintage"; + "hasktags" = dontDistribute super."hasktags"; + "haslo" = dontDistribute super."haslo"; + "hasloGUI" = dontDistribute super."hasloGUI"; + "hasparql-client" = dontDistribute super."hasparql-client"; + "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_19_6"; + "hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative"; + "hasql-pool" = dontDistribute super."hasql-pool"; + "hasql-postgres" = dontDistribute super."hasql-postgres"; + "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; + "hasql-th" = dontDistribute super."hasql-th"; + "hasql-transaction" = dontDistribute super."hasql-transaction"; + "hastache-aeson" = dontDistribute super."hastache-aeson"; + "haste" = dontDistribute super."haste"; + "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-markup" = dontDistribute super."haste-markup"; + "haste-perch" = dontDistribute super."haste-perch"; + "hastily" = dontDistribute super."hastily"; + "hat" = dontDistribute super."hat"; + "hatex-guide" = dontDistribute super."hatex-guide"; + "hath" = dontDistribute super."hath"; + "hatt" = dontDistribute super."hatt"; + "haverer" = dontDistribute super."haverer"; + "hawitter" = dontDistribute super."hawitter"; + "haxl-amazonka" = dontDistribute super."haxl-amazonka"; + "haxl-facebook" = dontDistribute super."haxl-facebook"; + "haxparse" = dontDistribute super."haxparse"; + "haxr-th" = dontDistribute super."haxr-th"; + "haxy" = dontDistribute super."haxy"; + "hayland" = dontDistribute super."hayland"; + "hayoo-cli" = dontDistribute super."hayoo-cli"; + "hback" = dontDistribute super."hback"; + "hbayes" = dontDistribute super."hbayes"; + "hbb" = dontDistribute super."hbb"; + "hbcd" = dontDistribute super."hbcd"; + "hbeat" = dontDistribute super."hbeat"; + "hblas" = dontDistribute super."hblas"; + "hblock" = dontDistribute super."hblock"; + "hbro" = dontDistribute super."hbro"; + "hbro-contrib" = dontDistribute super."hbro-contrib"; + "hburg" = dontDistribute super."hburg"; + "hcc" = dontDistribute super."hcc"; + "hcg-minus" = dontDistribute super."hcg-minus"; + "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo"; + "hcheat" = dontDistribute super."hcheat"; + "hchesslib" = dontDistribute super."hchesslib"; + "hcltest" = dontDistribute super."hcltest"; + "hcoap" = dontDistribute super."hcoap"; + "hcron" = dontDistribute super."hcron"; + "hcube" = dontDistribute super."hcube"; + "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; + "hdbc-aeson" = dontDistribute super."hdbc-aeson"; + "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; + "hdbc-tuple" = dontDistribute super."hdbc-tuple"; + "hdbi" = dontDistribute super."hdbi"; + "hdbi-conduit" = dontDistribute super."hdbi-conduit"; + "hdbi-postgresql" = dontDistribute super."hdbi-postgresql"; + "hdbi-sqlite" = dontDistribute super."hdbi-sqlite"; + "hdbi-tests" = dontDistribute super."hdbi-tests"; + "hdf" = dontDistribute super."hdf"; + "hdigest" = dontDistribute super."hdigest"; + "hdirect" = dontDistribute super."hdirect"; + "hdis86" = dontDistribute super."hdis86"; + "hdiscount" = dontDistribute super."hdiscount"; + "hdm" = dontDistribute super."hdm"; + "hdph" = dontDistribute super."hdph"; + "hdph-closure" = dontDistribute super."hdph-closure"; + "hdr-histogram" = dontDistribute super."hdr-histogram"; + "headergen" = dontDistribute super."headergen"; + "heapsort" = dontDistribute super."heapsort"; + "hecc" = dontDistribute super."hecc"; + "hedis-config" = dontDistribute super."hedis-config"; + "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-pile" = dontDistribute super."hedis-pile"; + "hedis-simple" = dontDistribute super."hedis-simple"; + "hedis-tags" = dontDistribute super."hedis-tags"; + "hedn" = dontDistribute super."hedn"; + "hein" = dontDistribute super."hein"; + "heist-aeson" = dontDistribute super."heist-aeson"; + "heist-async" = dontDistribute super."heist-async"; + "helics" = dontDistribute super."helics"; + "helics-wai" = dontDistribute super."helics-wai"; + "helisp" = dontDistribute super."helisp"; + "helium" = dontDistribute super."helium"; + "helix" = dontDistribute super."helix"; + "hell" = dontDistribute super."hell"; + "hellage" = dontDistribute super."hellage"; + "hellnet" = dontDistribute super."hellnet"; + "hello" = dontDistribute super."hello"; + "helm" = dontDistribute super."helm"; + "help-esb" = dontDistribute super."help-esb"; + "hemkay" = dontDistribute super."hemkay"; + "hemkay-core" = dontDistribute super."hemkay-core"; + "hemokit" = dontDistribute super."hemokit"; + "hen" = dontDistribute super."hen"; + "henet" = dontDistribute super."henet"; + "hepevt" = dontDistribute super."hepevt"; + "her-lexer" = dontDistribute super."her-lexer"; + "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; + "herbalizer" = dontDistribute super."herbalizer"; + "herf-time" = dontDistribute super."herf-time"; + "hermit" = dontDistribute super."hermit"; + "hermit-syb" = dontDistribute super."hermit-syb"; + "hero-club-five-tenets" = dontDistribute super."hero-club-five-tenets"; + "heroku" = dontDistribute super."heroku"; + "heroku-persistent" = dontDistribute super."heroku-persistent"; + "herringbone" = dontDistribute super."herringbone"; + "herringbone-embed" = dontDistribute super."herringbone-embed"; + "herringbone-wai" = dontDistribute super."herringbone-wai"; + "hesh" = dontDistribute super."hesh"; + "hesql" = dontDistribute super."hesql"; + "hetero-map" = dontDistribute super."hetero-map"; + "hetris" = dontDistribute super."hetris"; + "heukarya" = dontDistribute super."heukarya"; + "hevolisa" = dontDistribute super."hevolisa"; + "hevolisa-dph" = dontDistribute super."hevolisa-dph"; + "hexdump" = dontDistribute super."hexdump"; + "hexif" = dontDistribute super."hexif"; + "hexpat-iteratee" = dontDistribute super."hexpat-iteratee"; + "hexpat-lens" = dontDistribute super."hexpat-lens"; + "hexpat-pickle" = dontDistribute super."hexpat-pickle"; + "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic"; + "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup"; + "hexpr" = dontDistribute super."hexpr"; + "hexquote" = dontDistribute super."hexquote"; + "heyefi" = dontDistribute super."heyefi"; + "hfann" = dontDistribute super."hfann"; + "hfd" = dontDistribute super."hfd"; + "hfiar" = dontDistribute super."hfiar"; + "hfmt" = dontDistribute super."hfmt"; + "hfoil" = dontDistribute super."hfoil"; + "hformat" = dontDistribute super."hformat"; + "hfov" = dontDistribute super."hfov"; + "hfractal" = dontDistribute super."hfractal"; + "hfusion" = dontDistribute super."hfusion"; + "hg-buildpackage" = dontDistribute super."hg-buildpackage"; + "hgal" = dontDistribute super."hgal"; + "hgalib" = dontDistribute super."hgalib"; + "hgdbmi" = dontDistribute super."hgdbmi"; + "hgearman" = dontDistribute super."hgearman"; + "hgen" = dontDistribute super."hgen"; + "hgeometric" = dontDistribute super."hgeometric"; + "hgeometry" = dontDistribute super."hgeometry"; + "hgithub" = dontDistribute super."hgithub"; + "hgl-example" = dontDistribute super."hgl-example"; + "hgom" = dontDistribute super."hgom"; + "hgopher" = dontDistribute super."hgopher"; + "hgrev" = dontDistribute super."hgrev"; + "hgrib" = dontDistribute super."hgrib"; + "hharp" = dontDistribute super."hharp"; + "hi" = dontDistribute super."hi"; + "hi3status" = dontDistribute super."hi3status"; + "hiccup" = dontDistribute super."hiccup"; + "hichi" = dontDistribute super."hichi"; + "hieraclus" = dontDistribute super."hieraclus"; + "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; + "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions"; + "hierarchy" = dontDistribute super."hierarchy"; + "hiernotify" = dontDistribute super."hiernotify"; + "highWaterMark" = dontDistribute super."highWaterMark"; + "higher-leveldb" = dontDistribute super."higher-leveldb"; + "higherorder" = dontDistribute super."higherorder"; + "highlight-versions" = dontDistribute super."highlight-versions"; + "highlighter" = dontDistribute super."highlighter"; + "highlighter2" = dontDistribute super."highlighter2"; + "hills" = dontDistribute super."hills"; + "himerge" = dontDistribute super."himerge"; + "himg" = dontDistribute super."himg"; + "himpy" = dontDistribute super."himpy"; + "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"; + "hinquire" = dontDistribute super."hinquire"; + "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_3"; + "hint-server" = dontDistribute super."hint-server"; + "hinvaders" = dontDistribute super."hinvaders"; + "hinze-streams" = dontDistribute super."hinze-streams"; + "hip" = dontDistribute super."hip"; + "hipbot" = dontDistribute super."hipbot"; + "hipchat-hs" = dontDistribute super."hipchat-hs"; + "hipe" = dontDistribute super."hipe"; + "hips" = dontDistribute super."hips"; + "hircules" = dontDistribute super."hircules"; + "hirt" = dontDistribute super."hirt"; + "hissmetrics" = dontDistribute super."hissmetrics"; + "hist-pl" = dontDistribute super."hist-pl"; + "hist-pl-dawg" = dontDistribute super."hist-pl-dawg"; + "hist-pl-fusion" = dontDistribute super."hist-pl-fusion"; + "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon"; + "hist-pl-lmf" = dontDistribute super."hist-pl-lmf"; + "hist-pl-transliter" = dontDistribute super."hist-pl-transliter"; + "hist-pl-types" = dontDistribute super."hist-pl-types"; + "histogram-fill-binary" = dontDistribute super."histogram-fill-binary"; + "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal"; + "historian" = dontDistribute super."historian"; + "hjcase" = dontDistribute super."hjcase"; + "hjpath" = dontDistribute super."hjpath"; + "hjs" = dontDistribute super."hjs"; + "hjson" = dontDistribute super."hjson"; + "hjson-query" = dontDistribute super."hjson-query"; + "hjsonpointer" = dontDistribute super."hjsonpointer"; + "hjsonschema" = dontDistribute super."hjsonschema"; + "hkdf" = dontDistribute super."hkdf"; + "hlatex" = dontDistribute super."hlatex"; + "hlbfgsb" = dontDistribute super."hlbfgsb"; + "hlcm" = dontDistribute super."hlcm"; + "hleap" = dontDistribute super."hleap"; + "hledger-chart" = dontDistribute super."hledger-chart"; + "hledger-diff" = dontDistribute super."hledger-diff"; + "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-vty" = dontDistribute super."hledger-vty"; + "hlibBladeRF" = dontDistribute super."hlibBladeRF"; + "hlibev" = dontDistribute super."hlibev"; + "hlibfam" = dontDistribute super."hlibfam"; + "hlogger" = dontDistribute super."hlogger"; + "hlongurl" = dontDistribute super."hlongurl"; + "hls" = dontDistribute super."hls"; + "hlwm" = dontDistribute super."hlwm"; + "hly" = dontDistribute super."hly"; + "hmark" = dontDistribute super."hmark"; + "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix-banded" = dontDistribute super."hmatrix-banded"; + "hmatrix-csv" = dontDistribute super."hmatrix-csv"; + "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; + "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; + "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; + "hmatrix-repa" = dontDistribute super."hmatrix-repa"; + "hmatrix-special" = dontDistribute super."hmatrix-special"; + "hmatrix-static" = dontDistribute super."hmatrix-static"; + "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc"; + "hmatrix-syntax" = dontDistribute super."hmatrix-syntax"; + "hmatrix-tests" = dontDistribute super."hmatrix-tests"; + "hmeap" = dontDistribute super."hmeap"; + "hmeap-utils" = dontDistribute super."hmeap-utils"; + "hmemdb" = dontDistribute super."hmemdb"; + "hmenu" = dontDistribute super."hmenu"; + "hmidi" = dontDistribute super."hmidi"; + "hmk" = dontDistribute super."hmk"; + "hmm" = dontDistribute super."hmm"; + "hmm-hmatrix" = dontDistribute super."hmm-hmatrix"; + "hmp3" = dontDistribute super."hmp3"; + "hmpfr" = dontDistribute super."hmpfr"; + "hmt" = dontDistribute super."hmt"; + "hmt-diagrams" = dontDistribute super."hmt-diagrams"; + "hmumps" = dontDistribute super."hmumps"; + "hnetcdf" = dontDistribute super."hnetcdf"; + "hnix" = dontDistribute super."hnix"; + "hnn" = dontDistribute super."hnn"; + "hnop" = dontDistribute super."hnop"; + "ho-rewriting" = dontDistribute super."ho-rewriting"; + "hoauth" = dontDistribute super."hoauth"; + "hob" = dontDistribute super."hob"; + "hobbes" = dontDistribute super."hobbes"; + "hobbits" = dontDistribute super."hobbits"; + "hoe" = dontDistribute super."hoe"; + "hofix-mtl" = dontDistribute super."hofix-mtl"; + "hog" = dontDistribute super."hog"; + "hogg" = dontDistribute super."hogg"; + "hogre" = dontDistribute super."hogre"; + "hogre-examples" = dontDistribute super."hogre-examples"; + "hois" = dontDistribute super."hois"; + "hoist-error" = dontDistribute super."hoist-error"; + "hold-em" = dontDistribute super."hold-em"; + "hole" = dontDistribute super."hole"; + "holey-format" = dontDistribute super."holey-format"; + "homeomorphic" = dontDistribute super."homeomorphic"; + "hommage" = dontDistribute super."hommage"; + "hommage-ds" = dontDistribute super."hommage-ds"; + "homplexity" = dontDistribute super."homplexity"; + "honi" = dontDistribute super."honi"; + "honk" = dontDistribute super."honk"; + "hoobuddy" = dontDistribute super."hoobuddy"; + "hood" = dontDistribute super."hood"; + "hood-off" = dontDistribute super."hood-off"; + "hood2" = dontDistribute super."hood2"; + "hoodie" = dontDistribute super."hoodie"; + "hoodle" = dontDistribute super."hoodle"; + "hoodle-builder" = dontDistribute super."hoodle-builder"; + "hoodle-core" = dontDistribute super."hoodle-core"; + "hoodle-extra" = dontDistribute super."hoodle-extra"; + "hoodle-parser" = dontDistribute super."hoodle-parser"; + "hoodle-publish" = dontDistribute super."hoodle-publish"; + "hoodle-render" = dontDistribute super."hoodle-render"; + "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle-index" = dontDistribute super."hoogle-index"; + "hooks-dir" = dontDistribute super."hooks-dir"; + "hoovie" = dontDistribute super."hoovie"; + "hopencc" = dontDistribute super."hopencc"; + "hopencl" = dontDistribute super."hopencl"; + "hopfield" = dontDistribute super."hopfield"; + "hopfield-networks" = dontDistribute super."hopfield-networks"; + "hopfli" = dontDistribute super."hopfli"; + "hoppy-generator" = dontDistribute super."hoppy-generator"; + "hoppy-runtime" = dontDistribute super."hoppy-runtime"; + "hoppy-std" = dontDistribute super."hoppy-std"; + "hops" = dontDistribute super."hops"; + "hoq" = dontDistribute super."hoq"; + "horizon" = dontDistribute super."horizon"; + "hosc" = dontDistribute super."hosc"; + "hosc-json" = dontDistribute super."hosc-json"; + "hosc-utils" = dontDistribute super."hosc-utils"; + "hosts-server" = dontDistribute super."hosts-server"; + "hothasktags" = dontDistribute super."hothasktags"; + "hotswap" = dontDistribute super."hotswap"; + "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "hp2any-core" = dontDistribute super."hp2any-core"; + "hp2any-graph" = dontDistribute super."hp2any-graph"; + "hp2any-manager" = dontDistribute super."hp2any-manager"; + "hp2html" = dontDistribute super."hp2html"; + "hp2pretty" = dontDistribute super."hp2pretty"; + "hpack" = dontDistribute super."hpack"; + "hpaco" = dontDistribute super."hpaco"; + "hpaco-lib" = dontDistribute super."hpaco-lib"; + "hpage" = dontDistribute super."hpage"; + "hpapi" = dontDistribute super."hpapi"; + "hpaste" = dontDistribute super."hpaste"; + "hpasteit" = dontDistribute super."hpasteit"; + "hpc-strobe" = dontDistribute super."hpc-strobe"; + "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; + "hplayground" = dontDistribute super."hplayground"; + "hplaylist" = dontDistribute super."hplaylist"; + "hpodder" = dontDistribute super."hpodder"; + "hpp" = dontDistribute super."hpp"; + "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; + "hprotoc-fork" = dontDistribute super."hprotoc-fork"; + "hps" = dontDistribute super."hps"; + "hps-cairo" = dontDistribute super."hps-cairo"; + "hps-kmeans" = dontDistribute super."hps-kmeans"; + "hpuz" = dontDistribute super."hpuz"; + "hpygments" = dontDistribute super."hpygments"; + "hpylos" = dontDistribute super."hpylos"; + "hpyrg" = dontDistribute super."hpyrg"; + "hquantlib" = dontDistribute super."hquantlib"; + "hquery" = dontDistribute super."hquery"; + "hranker" = dontDistribute super."hranker"; + "hreader" = dontDistribute super."hreader"; + "hricket" = dontDistribute super."hricket"; + "hruby" = dontDistribute super."hruby"; + "hs-GeoIP" = dontDistribute super."hs-GeoIP"; + "hs-blake2" = dontDistribute super."hs-blake2"; + "hs-captcha" = dontDistribute super."hs-captcha"; + "hs-carbon" = dontDistribute super."hs-carbon"; + "hs-carbon-examples" = dontDistribute super."hs-carbon-examples"; + "hs-cdb" = dontDistribute super."hs-cdb"; + "hs-dotnet" = dontDistribute super."hs-dotnet"; + "hs-duktape" = dontDistribute super."hs-duktape"; + "hs-excelx" = dontDistribute super."hs-excelx"; + "hs-ffmpeg" = dontDistribute super."hs-ffmpeg"; + "hs-fltk" = dontDistribute super."hs-fltk"; + "hs-gchart" = dontDistribute super."hs-gchart"; + "hs-gen-iface" = dontDistribute super."hs-gen-iface"; + "hs-gizapp" = dontDistribute super."hs-gizapp"; + "hs-inspector" = dontDistribute super."hs-inspector"; + "hs-java" = dontDistribute super."hs-java"; + "hs-json-rpc" = dontDistribute super."hs-json-rpc"; + "hs-logo" = dontDistribute super."hs-logo"; + "hs-mesos" = dontDistribute super."hs-mesos"; + "hs-nombre-generator" = dontDistribute super."hs-nombre-generator"; + "hs-pgms" = dontDistribute super."hs-pgms"; + "hs-php-session" = dontDistribute super."hs-php-session"; + "hs-pkg-config" = dontDistribute super."hs-pkg-config"; + "hs-pkpass" = dontDistribute super."hs-pkpass"; + "hs-re" = dontDistribute super."hs-re"; + "hs-scrape" = dontDistribute super."hs-scrape"; + "hs-twitter" = dontDistribute super."hs-twitter"; + "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver"; + "hs-vcard" = dontDistribute super."hs-vcard"; + "hs2048" = dontDistribute super."hs2048"; + "hs2bf" = dontDistribute super."hs2bf"; + "hs2dot" = dontDistribute super."hs2dot"; + "hsConfigure" = dontDistribute super."hsConfigure"; + "hsSqlite3" = dontDistribute super."hsSqlite3"; + "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsay" = dontDistribute super."hsay"; + "hsb2hs" = dontDistribute super."hsb2hs"; + "hsbackup" = dontDistribute super."hsbackup"; + "hsbencher" = dontDistribute super."hsbencher"; + "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed"; + "hsbencher-fusion" = dontDistribute super."hsbencher-fusion"; + "hsc2hs" = dontDistribute super."hsc2hs"; + "hsc3" = dontDistribute super."hsc3"; + "hsc3-auditor" = dontDistribute super."hsc3-auditor"; + "hsc3-cairo" = dontDistribute super."hsc3-cairo"; + "hsc3-data" = dontDistribute super."hsc3-data"; + "hsc3-db" = dontDistribute super."hsc3-db"; + "hsc3-dot" = dontDistribute super."hsc3-dot"; + "hsc3-forth" = dontDistribute super."hsc3-forth"; + "hsc3-graphs" = dontDistribute super."hsc3-graphs"; + "hsc3-lang" = dontDistribute super."hsc3-lang"; + "hsc3-lisp" = dontDistribute super."hsc3-lisp"; + "hsc3-plot" = dontDistribute super."hsc3-plot"; + "hsc3-process" = dontDistribute super."hsc3-process"; + "hsc3-rec" = dontDistribute super."hsc3-rec"; + "hsc3-rw" = dontDistribute super."hsc3-rw"; + "hsc3-server" = dontDistribute super."hsc3-server"; + "hsc3-sf" = dontDistribute super."hsc3-sf"; + "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile"; + "hsc3-unsafe" = dontDistribute super."hsc3-unsafe"; + "hsc3-utils" = dontDistribute super."hsc3-utils"; + "hscamwire" = dontDistribute super."hscamwire"; + "hscassandra" = dontDistribute super."hscassandra"; + "hscd" = dontDistribute super."hscd"; + "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; + "hscope" = dontDistribute super."hscope"; + "hscrtmpl" = dontDistribute super."hscrtmpl"; + "hscuid" = dontDistribute super."hscuid"; + "hscurses" = dontDistribute super."hscurses"; + "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex"; + "hsdev" = dontDistribute super."hsdev"; + "hsdif" = dontDistribute super."hsdif"; + "hsdip" = dontDistribute super."hsdip"; + "hsdns" = dontDistribute super."hsdns"; + "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsemail-ns" = dontDistribute super."hsemail-ns"; + "hsenv" = dontDistribute super."hsenv"; + "hserv" = dontDistribute super."hserv"; + "hset" = dontDistribute super."hset"; + "hsfacter" = dontDistribute super."hsfacter"; + "hsfcsh" = dontDistribute super."hsfcsh"; + "hsfilt" = dontDistribute super."hsfilt"; + "hsgnutls" = dontDistribute super."hsgnutls"; + "hsgnutls-yj" = dontDistribute super."hsgnutls-yj"; + "hsgsom" = dontDistribute super."hsgsom"; + "hsgtd" = dontDistribute super."hsgtd"; + "hsharc" = dontDistribute super."hsharc"; + "hsilop" = dontDistribute super."hsilop"; + "hsimport" = dontDistribute super."hsimport"; + "hsini" = dontDistribute super."hsini"; + "hskeleton" = dontDistribute super."hskeleton"; + "hslackbuilder" = dontDistribute super."hslackbuilder"; + "hslibsvm" = dontDistribute super."hslibsvm"; + "hslinks" = dontDistribute super."hslinks"; + "hslogger-reader" = dontDistribute super."hslogger-reader"; + "hslogger-template" = dontDistribute super."hslogger-template"; + "hslogger4j" = dontDistribute super."hslogger4j"; + "hslogstash" = dontDistribute super."hslogstash"; + "hsmagick" = dontDistribute super."hsmagick"; + "hsmisc" = dontDistribute super."hsmisc"; + "hsmtpclient" = dontDistribute super."hsmtpclient"; + "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector"; + "hsnock" = dontDistribute super."hsnock"; + "hsnoise" = dontDistribute super."hsnoise"; + "hsns" = dontDistribute super."hsns"; + "hsnsq" = dontDistribute super."hsnsq"; + "hsntp" = dontDistribute super."hsntp"; + "hsoptions" = dontDistribute super."hsoptions"; + "hsp-cgi" = dontDistribute super."hsp-cgi"; + "hsparklines" = dontDistribute super."hsparklines"; + "hsparql" = dontDistribute super."hsparql"; + "hspear" = dontDistribute super."hspear"; + "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; + "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; + "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-experimental" = dontDistribute super."hspec-experimental"; + "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-monad-control" = dontDistribute super."hspec-monad-control"; + "hspec-server" = dontDistribute super."hspec-server"; + "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; + "hspec-test-framework" = dontDistribute super."hspec-test-framework"; + "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; + "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_5"; + "hspec2" = dontDistribute super."hspec2"; + "hspr-sh" = dontDistribute super."hspr-sh"; + "hspread" = dontDistribute super."hspread"; + "hspresent" = dontDistribute super."hspresent"; + "hsprocess" = dontDistribute super."hsprocess"; + "hsql" = dontDistribute super."hsql"; + "hsql-mysql" = dontDistribute super."hsql-mysql"; + "hsql-odbc" = dontDistribute super."hsql-odbc"; + "hsql-postgresql" = dontDistribute super."hsql-postgresql"; + "hsql-sqlite3" = dontDistribute super."hsql-sqlite3"; + "hsqml" = dontDistribute super."hsqml"; + "hsqml-datamodel" = dontDistribute super."hsqml-datamodel"; + "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl"; + "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris"; + "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes"; + "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; + "hsqml-morris" = dontDistribute super."hsqml-morris"; + "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; + "hsshellscript" = dontDistribute super."hsshellscript"; + "hssourceinfo" = dontDistribute super."hssourceinfo"; + "hssqlppp" = dontDistribute super."hssqlppp"; + "hstats" = dontDistribute super."hstats"; + "hstest" = dontDistribute super."hstest"; + "hstidy" = dontDistribute super."hstidy"; + "hstorchat" = dontDistribute super."hstorchat"; + "hstradeking" = dontDistribute super."hstradeking"; + "hstyle" = dontDistribute super."hstyle"; + "hstzaar" = dontDistribute super."hstzaar"; + "hsubconvert" = dontDistribute super."hsubconvert"; + "hsverilog" = dontDistribute super."hsverilog"; + "hswip" = dontDistribute super."hswip"; + "hsx" = dontDistribute super."hsx"; + "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsyscall" = dontDistribute super."hsyscall"; + "hszephyr" = dontDistribute super."hszephyr"; + "htags" = dontDistribute super."htags"; + "htar" = dontDistribute super."htar"; + "htiled" = dontDistribute super."htiled"; + "htime" = dontDistribute super."htime"; + "html-email-validate" = dontDistribute super."html-email-validate"; + "html-entities" = dontDistribute super."html-entities"; + "html-kure" = dontDistribute super."html-kure"; + "html-minimalist" = dontDistribute super."html-minimalist"; + "html-rules" = dontDistribute super."html-rules"; + "html-tokenizer" = dontDistribute super."html-tokenizer"; + "html-truncate" = dontDistribute super."html-truncate"; + "html2hamlet" = dontDistribute super."html2hamlet"; + "html5-entity" = dontDistribute super."html5-entity"; + "htodo" = dontDistribute super."htodo"; + "htoml" = dontDistribute super."htoml"; + "htrace" = dontDistribute super."htrace"; + "hts" = dontDistribute super."hts"; + "htsn" = dontDistribute super."htsn"; + "htsn-common" = dontDistribute super."htsn-common"; + "htsn-import" = dontDistribute super."htsn-import"; + "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client-auth" = dontDistribute super."http-client-auth"; + "http-client-conduit" = dontDistribute super."http-client-conduit"; + "http-client-lens" = dontDistribute super."http-client-lens"; + "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; + "http-client-streams" = dontDistribute super."http-client-streams"; + "http-conduit-browser" = dontDistribute super."http-conduit-browser"; + "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-encodings" = dontDistribute super."http-encodings"; + "http-enumerator" = dontDistribute super."http-enumerator"; + "http-kinder" = dontDistribute super."http-kinder"; + "http-kit" = dontDistribute super."http-kit"; + "http-listen" = dontDistribute super."http-listen"; + "http-monad" = dontDistribute super."http-monad"; + "http-proxy" = dontDistribute super."http-proxy"; + "http-querystring" = dontDistribute super."http-querystring"; + "http-server" = dontDistribute super."http-server"; + "http-shed" = dontDistribute super."http-shed"; + "http-test" = dontDistribute super."http-test"; + "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_4_5"; + "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; + "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; + "httpspec" = dontDistribute super."httpspec"; + "htune" = dontDistribute super."htune"; + "htzaar" = dontDistribute super."htzaar"; + "hub" = dontDistribute super."hub"; + "hubigraph" = dontDistribute super."hubigraph"; + "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; + "huffman" = dontDistribute super."huffman"; + "hugs2yc" = dontDistribute super."hugs2yc"; + "hulk" = dontDistribute super."hulk"; + "hums" = dontDistribute super."hums"; + "hunch" = dontDistribute super."hunch"; + "hunit-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"; + "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"; + "hylolib" = dontDistribute super."hylolib"; + "hylotab" = dontDistribute super."hylotab"; + "hyloutils" = dontDistribute super."hyloutils"; + "hyperdrive" = dontDistribute super."hyperdrive"; + "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperpublic" = dontDistribute super."hyperpublic"; + "hyphenate" = dontDistribute super."hyphenate"; + "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; + "hzk" = dontDistribute super."hzk"; + "i18n" = dontDistribute super."i18n"; + "iCalendar" = dontDistribute super."iCalendar"; + "iException" = dontDistribute super."iException"; + "iap-verifier" = dontDistribute super."iap-verifier"; + "ib-api" = dontDistribute super."ib-api"; + "iban" = dontDistribute super."iban"; + "ibus-hs" = dontDistribute super."ibus-hs"; + "ideas" = dontDistribute super."ideas"; + "ideas-math" = dontDistribute super."ideas-math"; + "idempotent" = dontDistribute super."idempotent"; + "identifiers" = dontDistribute super."identifiers"; + "idiii" = dontDistribute super."idiii"; + "idna" = dontDistribute super."idna"; + "idna2008" = dontDistribute super."idna2008"; + "idris" = dontDistribute super."idris"; + "ieee" = dontDistribute super."ieee"; + "ieee-utils" = dontDistribute super."ieee-utils"; + "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix"; + "ieee754-parser" = dontDistribute super."ieee754-parser"; + "ifcxt" = dontDistribute super."ifcxt"; + "iff" = dontDistribute super."iff"; + "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_6_1"; + "ige-mac-integration" = dontDistribute super."ige-mac-integration"; + "igraph" = dontDistribute super."igraph"; + "igrf" = dontDistribute super."igrf"; + "ihaskell-display" = dontDistribute super."ihaskell-display"; + "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; + "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; + "ihaskell-plot" = dontDistribute super."ihaskell-plot"; + "ihaskell-widgets" = dontDistribute super."ihaskell-widgets"; + "ihttp" = dontDistribute super."ihttp"; + "illuminate" = dontDistribute super."illuminate"; + "image-type" = dontDistribute super."image-type"; + "imagefilters" = dontDistribute super."imagefilters"; + "imagemagick" = dontDistribute super."imagemagick"; + "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; + "imapget" = dontDistribute super."imapget"; + "imbib" = dontDistribute super."imbib"; + "imgurder" = dontDistribute super."imgurder"; + "imm" = dontDistribute super."imm"; + "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; + "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; + "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; + "implicit-params" = dontDistribute super."implicit-params"; + "imports" = dontDistribute super."imports"; + "impossible" = dontDistribute super."impossible"; + "improve" = dontDistribute super."improve"; + "inc-ref" = dontDistribute super."inc-ref"; + "inch" = dontDistribute super."inch"; + "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-sat-solver" = dontDistribute super."incremental-sat-solver"; + "increments" = dontDistribute super."increments"; + "indentation" = dontDistribute super."indentation"; + "indentparser" = dontDistribute super."indentparser"; + "index-core" = dontDistribute super."index-core"; + "indexed" = dontDistribute super."indexed"; + "indexed-do-notation" = dontDistribute super."indexed-do-notation"; + "indexed-extras" = dontDistribute super."indexed-extras"; + "indexed-free" = dontDistribute super."indexed-free"; + "indian-language-font-converter" = dontDistribute super."indian-language-font-converter"; + "indices" = dontDistribute super."indices"; + "indieweb-algorithms" = dontDistribute super."indieweb-algorithms"; + "inf-interval" = dontDistribute super."inf-interval"; + "infer-upstream" = dontDistribute super."infer-upstream"; + "infernu" = dontDistribute super."infernu"; + "infinite-search" = dontDistribute super."infinite-search"; + "infinity" = dontDistribute super."infinity"; + "infix" = dontDistribute super."infix"; + "inflist" = dontDistribute super."inflist"; + "influxdb" = dontDistribute super."influxdb"; + "informative" = dontDistribute super."informative"; + "inilist" = dontDistribute super."inilist"; + "inject" = dontDistribute super."inject"; + "inject-function" = dontDistribute super."inject-function"; + "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; + "inserts" = dontDistribute super."inserts"; + "inspection-proxy" = dontDistribute super."inspection-proxy"; + "instant-aeson" = dontDistribute super."instant-aeson"; + "instant-bytes" = dontDistribute super."instant-bytes"; + "instant-deepseq" = dontDistribute super."instant-deepseq"; + "instant-generics" = dontDistribute super."instant-generics"; + "instant-hashable" = dontDistribute super."instant-hashable"; + "instant-zipper" = dontDistribute super."instant-zipper"; + "instinct" = dontDistribute super."instinct"; + "instrument-chord" = dontDistribute super."instrument-chord"; + "int-cast" = dontDistribute super."int-cast"; + "integer-pure" = dontDistribute super."integer-pure"; + "intel-aes" = dontDistribute super."intel-aes"; + "interchangeable" = dontDistribute super."interchangeable"; + "interleavableGen" = dontDistribute super."interleavableGen"; + "interleavableIO" = dontDistribute super."interleavableIO"; + "interleave" = dontDistribute super."interleave"; + "interlude" = dontDistribute super."interlude"; + "intern" = dontDistribute super."intern"; + "internetmarke" = dontDistribute super."internetmarke"; + "interpol" = dontDistribute super."interpol"; + "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; + "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; + "interpolation" = dontDistribute super."interpolation"; + "intricacy" = dontDistribute super."intricacy"; + "intset" = dontDistribute super."intset"; + "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-quoter" = dontDistribute super."ip-quoter"; + "ipatch" = dontDistribute super."ipatch"; + "ipc" = dontDistribute super."ipc"; + "ipcvar" = dontDistribute super."ipcvar"; + "ipopt-hs" = dontDistribute super."ipopt-hs"; + "ipprint" = dontDistribute super."ipprint"; + "iptables-helpers" = dontDistribute super."iptables-helpers"; + "iptadmin" = dontDistribute super."iptadmin"; + "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-colors" = dontDistribute super."irc-colors"; + "irc-core" = dontDistribute super."irc-core"; + "irc-dcc" = dontDistribute super."irc-dcc"; + "irc-fun-bot" = dontDistribute super."irc-fun-bot"; + "irc-fun-client" = dontDistribute super."irc-fun-client"; + "irc-fun-color" = dontDistribute super."irc-fun-color"; + "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; + "ircbot" = dontDistribute super."ircbot"; + "ircbouncer" = dontDistribute super."ircbouncer"; + "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; + "iron-mq" = dontDistribute super."iron-mq"; + "ironforge" = dontDistribute super."ironforge"; + "is" = dontDistribute super."is"; + "isdicom" = dontDistribute super."isdicom"; + "isevaluated" = dontDistribute super."isevaluated"; + "isiz" = dontDistribute super."isiz"; + "ismtp" = dontDistribute super."ismtp"; + "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; + "isohunt" = dontDistribute super."isohunt"; + "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-backend-c" = dontDistribute super."ivory-backend-c"; + "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "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-stdlib" = dontDistribute super."ivory-stdlib"; + "ivy-web" = dontDistribute super."ivy-web"; + "ixdopp" = dontDistribute super."ixdopp"; + "ixmonad" = dontDistribute super."ixmonad"; + "iyql" = dontDistribute super."iyql"; + "j2hs" = dontDistribute super."j2hs"; + "ja-base-extra" = dontDistribute super."ja-base-extra"; + "jack" = dontDistribute super."jack"; + "jack-bindings" = dontDistribute super."jack-bindings"; + "jackminimix" = dontDistribute super."jackminimix"; + "jacobi-roots" = dontDistribute super."jacobi-roots"; + "jail" = dontDistribute super."jail"; + "jailbreak-cabal" = dontDistribute super."jailbreak-cabal"; + "jalaali" = dontDistribute super."jalaali"; + "jalla" = dontDistribute super."jalla"; + "jammittools" = dontDistribute super."jammittools"; + "jarfind" = dontDistribute super."jarfind"; + "java-bridge" = dontDistribute super."java-bridge"; + "java-bridge-extras" = dontDistribute super."java-bridge-extras"; + "java-character" = dontDistribute super."java-character"; + "java-poker" = dontDistribute super."java-poker"; + "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; + "javasf" = dontDistribute super."javasf"; + "javav" = dontDistribute super."javav"; + "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; + "jdi" = dontDistribute super."jdi"; + "jespresso" = dontDistribute super."jespresso"; + "jobqueue" = dontDistribute super."jobqueue"; + "join" = dontDistribute super."join"; + "joinlist" = dontDistribute super."joinlist"; + "jonathanscard" = dontDistribute super."jonathanscard"; + "jort" = dontDistribute super."jort"; + "jose" = dontDistribute super."jose"; + "jpeg" = dontDistribute super."jpeg"; + "js-good-parts" = dontDistribute super."js-good-parts"; + "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-hello" = dontDistribute super."jsaddle-hello"; + "jsc" = dontDistribute super."jsc"; + "jsmw" = dontDistribute super."jsmw"; + "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; + "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-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-litobj" = dontDistribute super."json-litobj"; + "json-pointer" = dontDistribute super."json-pointer"; + "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; + "json-python" = dontDistribute super."json-python"; + "json-qq" = dontDistribute super."json-qq"; + "json-rpc" = dontDistribute super."json-rpc"; + "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-sop" = dontDistribute super."json-sop"; + "json-state" = dontDistribute super."json-state"; + "json-stream" = dontDistribute super."json-stream"; + "json-togo" = dontDistribute super."json-togo"; + "json-tools" = dontDistribute super."json-tools"; + "json-types" = dontDistribute super."json-types"; + "json2" = dontDistribute super."json2"; + "json2-hdbc" = dontDistribute super."json2-hdbc"; + "json2-types" = dontDistribute super."json2-types"; + "json2yaml" = dontDistribute super."json2yaml"; + "jsonresume" = dontDistribute super."jsonresume"; + "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit"; + "jsonschema-gen" = dontDistribute super."jsonschema-gen"; + "jsonsql" = dontDistribute super."jsonsql"; + "jsontsv" = dontDistribute super."jsontsv"; + "jspath" = dontDistribute super."jspath"; + "judy" = dontDistribute super."judy"; + "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; + "jumpthefive" = dontDistribute super."jumpthefive"; + "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; + "kademlia" = dontDistribute super."kademlia"; + "kafka-client" = dontDistribute super."kafka-client"; + "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; + "kansas-lava" = dontDistribute super."kansas-lava"; + "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; + "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio"; + "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; + "karakuri" = dontDistribute super."karakuri"; + "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; + "katt" = dontDistribute super."katt"; + "kazura-queue" = dontDistribute super."kazura-queue"; + "kbq-gu" = dontDistribute super."kbq-gu"; + "kd-tree" = dontDistribute super."kd-tree"; + "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "kdt" = doDistribute super."kdt_0_2_3"; + "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"; + "kibro" = dontDistribute super."kibro"; + "kicad-data" = dontDistribute super."kicad-data"; + "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser"; + "kickchan" = dontDistribute super."kickchan"; + "kif-parser" = dontDistribute super."kif-parser"; + "kinds" = dontDistribute super."kinds"; + "kit" = dontDistribute super."kit"; + "kmeans-par" = dontDistribute super."kmeans-par"; + "kmeans-vector" = dontDistribute super."kmeans-vector"; + "knots" = dontDistribute super."knots"; + "koellner-phonetic" = dontDistribute super."koellner-phonetic"; + "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; + "korfu" = dontDistribute super."korfu"; + "kqueue" = dontDistribute super."kqueue"; + "krpc" = dontDistribute super."krpc"; + "ks-test" = dontDistribute super."ks-test"; + "ktx" = dontDistribute super."ktx"; + "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate"; + "kyotocabinet" = dontDistribute super."kyotocabinet"; + "l-bfgs-b" = dontDistribute super."l-bfgs-b"; + "labeled-graph" = dontDistribute super."labeled-graph"; + "labeled-tree" = dontDistribute super."labeled-tree"; + "laborantin-hs" = dontDistribute super."laborantin-hs"; + "labyrinth" = dontDistribute super."labyrinth"; + "labyrinth-server" = dontDistribute super."labyrinth-server"; + "lackey" = dontDistribute super."lackey"; + "lagrangian" = dontDistribute super."lagrangian"; + "laika" = dontDistribute super."laika"; + "lambda-ast" = dontDistribute super."lambda-ast"; + "lambda-bridge" = dontDistribute super."lambda-bridge"; + "lambda-canvas" = dontDistribute super."lambda-canvas"; + "lambda-devs" = dontDistribute super."lambda-devs"; + "lambda-options" = dontDistribute super."lambda-options"; + "lambda-placeholders" = dontDistribute super."lambda-placeholders"; + "lambda-toolbox" = dontDistribute super."lambda-toolbox"; + "lambda2js" = dontDistribute super."lambda2js"; + "lambdaBase" = dontDistribute super."lambdaBase"; + "lambdaFeed" = dontDistribute super."lambdaFeed"; + "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = dontDistribute super."lambdabot"; + "lambdabot-core" = dontDistribute super."lambdabot-core"; + "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins"; + "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins"; + "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins"; + "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins"; + "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins"; + "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins"; + "lambdabot-trusted" = dontDistribute super."lambdabot-trusted"; + "lambdabot-utils" = dontDistribute super."lambdabot-utils"; + "lambdacat" = dontDistribute super."lambdacat"; + "lambdacms-core" = dontDistribute super."lambdacms-core"; + "lambdacms-media" = dontDistribute super."lambdacms-media"; + "lambdacube" = dontDistribute super."lambdacube"; + "lambdacube-bullet" = dontDistribute super."lambdacube-bullet"; + "lambdacube-compiler" = dontDistribute super."lambdacube-compiler"; + "lambdacube-core" = dontDistribute super."lambdacube-core"; + "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; + "lambdacube-engine" = dontDistribute super."lambdacube-engine"; + "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = dontDistribute super."lambdacube-gl"; + "lambdacube-ir" = dontDistribute super."lambdacube-ir"; + "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; + "lambdatwit" = dontDistribute super."lambdatwit"; + "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-c-quote" = dontDistribute super."language-c-quote"; + "language-cil" = dontDistribute super."language-cil"; + "language-css" = dontDistribute super."language-css"; + "language-dot" = dontDistribute super."language-dot"; + "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; + "language-eiffel" = dontDistribute super."language-eiffel"; + "language-fortran" = dontDistribute super."language-fortran"; + "language-gcl" = dontDistribute super."language-gcl"; + "language-go" = dontDistribute super."language-go"; + "language-guess" = dontDistribute super."language-guess"; + "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-kort" = dontDistribute super."language-kort"; + "language-lua" = dontDistribute super."language-lua"; + "language-lua-qq" = dontDistribute super."language-lua-qq"; + "language-mixal" = dontDistribute super."language-mixal"; + "language-objc" = dontDistribute super."language-objc"; + "language-openscad" = dontDistribute super."language-openscad"; + "language-pig" = dontDistribute super."language-pig"; + "language-puppet" = dontDistribute super."language-puppet"; + "language-python" = dontDistribute super."language-python"; + "language-python-colour" = dontDistribute super."language-python-colour"; + "language-python-test" = dontDistribute super."language-python-test"; + "language-qux" = dontDistribute super."language-qux"; + "language-sh" = dontDistribute super."language-sh"; + "language-slice" = dontDistribute super."language-slice"; + "language-spelling" = dontDistribute super."language-spelling"; + "language-sqlite" = dontDistribute super."language-sqlite"; + "language-thrift" = doDistribute super."language-thrift_0_7_0_1"; + "language-typescript" = dontDistribute super."language-typescript"; + "language-vhdl" = dontDistribute super."language-vhdl"; + "lat" = dontDistribute super."lat"; + "latest-npm-version" = dontDistribute super."latest-npm-version"; + "latex" = dontDistribute super."latex"; + "launchpad-control" = dontDistribute super."launchpad-control"; + "lax" = dontDistribute super."lax"; + "layers" = dontDistribute super."layers"; + "layers-game" = dontDistribute super."layers-game"; + "layout" = dontDistribute super."layout"; + "layout-bootstrap" = dontDistribute super."layout-bootstrap"; + "lazy-io" = dontDistribute super."lazy-io"; + "lazyarray" = dontDistribute super."lazyarray"; + "lazyio" = dontDistribute super."lazyio"; + "lazysmallcheck" = dontDistribute super."lazysmallcheck"; + "lazysplines" = dontDistribute super."lazysplines"; + "lbfgs" = dontDistribute super."lbfgs"; + "lcs" = dontDistribute super."lcs"; + "lda" = dontDistribute super."lda"; + "ldap-client" = dontDistribute super."ldap-client"; + "ldif" = dontDistribute super."ldif"; + "leaf" = dontDistribute super."leaf"; + "leaky" = dontDistribute super."leaky"; + "leankit-api" = dontDistribute super."leankit-api"; + "leapseconds-announced" = dontDistribute super."leapseconds-announced"; + "learn" = dontDistribute super."learn"; + "learn-physics" = dontDistribute super."learn-physics"; + "learn-physics-examples" = dontDistribute super."learn-physics-examples"; + "learning-hmm" = dontDistribute super."learning-hmm"; + "leetify" = dontDistribute super."leetify"; + "leksah" = dontDistribute super."leksah"; + "leksah-server" = dontDistribute super."leksah-server"; + "lendingclub" = dontDistribute super."lendingclub"; + "lens-datetime" = dontDistribute super."lens-datetime"; + "lens-prelude" = dontDistribute super."lens-prelude"; + "lens-properties" = dontDistribute super."lens-properties"; + "lens-sop" = dontDistribute super."lens-sop"; + "lens-text-encoding" = dontDistribute super."lens-text-encoding"; + "lens-time" = dontDistribute super."lens-time"; + "lens-tutorial" = dontDistribute super."lens-tutorial"; + "lens-utils" = dontDistribute super."lens-utils"; + "lenses" = dontDistribute super."lenses"; + "lensref" = dontDistribute super."lensref"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; + "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; + "levmar" = dontDistribute super."levmar"; + "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; + "lgtk" = dontDistribute super."lgtk"; + "lha" = dontDistribute super."lha"; + "lhae" = dontDistribute super."lhae"; + "lhc" = dontDistribute super."lhc"; + "lhe" = dontDistribute super."lhe"; + "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl"; + "lhs2html" = dontDistribute super."lhs2html"; + "lhslatex" = dontDistribute super."lhslatex"; + "libGenI" = dontDistribute super."libGenI"; + "libarchive-conduit" = dontDistribute super."libarchive-conduit"; + "libconfig" = dontDistribute super."libconfig"; + "libcspm" = dontDistribute super."libcspm"; + "libexpect" = dontDistribute super."libexpect"; + "libffi" = dontDistribute super."libffi"; + "libgraph" = dontDistribute super."libgraph"; + "libhbb" = dontDistribute super."libhbb"; + "libjenkins" = dontDistribute super."libjenkins"; + "liblastfm" = dontDistribute super."liblastfm"; + "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; + "libltdl" = dontDistribute super."libltdl"; + "libmpd" = dontDistribute super."libmpd"; + "libnvvm" = dontDistribute super."libnvvm"; + "liboleg" = dontDistribute super."liboleg"; + "libpafe" = dontDistribute super."libpafe"; + "libpq" = dontDistribute super."libpq"; + "librandomorg" = dontDistribute super."librandomorg"; + "libravatar" = dontDistribute super."libravatar"; + "libssh2" = dontDistribute super."libssh2"; + "libssh2-conduit" = dontDistribute super."libssh2-conduit"; + "libstackexchange" = dontDistribute super."libstackexchange"; + "libsystemd-daemon" = dontDistribute super."libsystemd-daemon"; + "libtagc" = dontDistribute super."libtagc"; + "libvirt-hs" = dontDistribute super."libvirt-hs"; + "libvorbis" = dontDistribute super."libvorbis"; + "libxls" = dontDistribute super."libxls"; + "libxml" = dontDistribute super."libxml"; + "libxml-enumerator" = dontDistribute super."libxml-enumerator"; + "libxslt" = dontDistribute super."libxslt"; + "life" = dontDistribute super."life"; + "lift-generics" = dontDistribute super."lift-generics"; + "lifted-threads" = dontDistribute super."lifted-threads"; + "lifter" = dontDistribute super."lifter"; + "ligature" = dontDistribute super."ligature"; + "ligd" = dontDistribute super."ligd"; + "lighttpd-conf" = dontDistribute super."lighttpd-conf"; + "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq"; + "lilypond" = dontDistribute super."lilypond"; + "limp" = dontDistribute super."limp"; + "limp-cbc" = dontDistribute super."limp-cbc"; + "lin-alg" = dontDistribute super."lin-alg"; + "linda" = dontDistribute super."linda"; + "lindenmayer" = dontDistribute super."lindenmayer"; + "line-break" = dontDistribute super."line-break"; + "line2pdf" = dontDistribute super."line2pdf"; + "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; + "linear-circuit" = dontDistribute super."linear-circuit"; + "linear-grammar" = dontDistribute super."linear-grammar"; + "linear-maps" = dontDistribute super."linear-maps"; + "linear-opengl" = dontDistribute super."linear-opengl"; + "linear-vect" = dontDistribute super."linear-vect"; + "linearEqSolver" = dontDistribute super."linearEqSolver"; + "linearscan" = dontDistribute super."linearscan"; + "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; + "linebreak" = dontDistribute super."linebreak"; + "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; + "linkchk" = dontDistribute super."linkchk"; + "linkcore" = dontDistribute super."linkcore"; + "linkedhashmap" = dontDistribute super."linkedhashmap"; + "linklater" = dontDistribute super."linklater"; + "linode" = dontDistribute super."linode"; + "linux-blkid" = dontDistribute super."linux-blkid"; + "linux-cgroup" = dontDistribute super."linux-cgroup"; + "linux-evdev" = dontDistribute super."linux-evdev"; + "linux-inotify" = dontDistribute super."linux-inotify"; + "linux-kmod" = dontDistribute super."linux-kmod"; + "linux-mount" = dontDistribute super."linux-mount"; + "linux-perf" = dontDistribute super."linux-perf"; + "linux-ptrace" = dontDistribute super."linux-ptrace"; + "linux-xattr" = dontDistribute super."linux-xattr"; + "linx-gateway" = dontDistribute super."linx-gateway"; + "lio" = dontDistribute super."lio"; + "lio-eci11" = dontDistribute super."lio-eci11"; + "lio-fs" = dontDistribute super."lio-fs"; + "lio-simple" = dontDistribute super."lio-simple"; + "lipsum-gen" = dontDistribute super."lipsum-gen"; + "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; + "liquidhaskell" = dontDistribute super."liquidhaskell"; + "lispparser" = dontDistribute super."lispparser"; + "list-extras" = dontDistribute super."list-extras"; + "list-grouping" = dontDistribute super."list-grouping"; + "list-mux" = dontDistribute super."list-mux"; + "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; + "list-t-html-parser" = dontDistribute super."list-t-html-parser"; + "list-t-http-client" = dontDistribute super."list-t-http-client"; + "list-t-libcurl" = dontDistribute super."list-t-libcurl"; + "list-t-text" = dontDistribute super."list-t-text"; + "list-tries" = dontDistribute super."list-tries"; + "list-zip-def" = dontDistribute super."list-zip-def"; + "listlike-instances" = dontDistribute super."listlike-instances"; + "lists" = dontDistribute super."lists"; + "listsafe" = dontDistribute super."listsafe"; + "lit" = dontDistribute super."lit"; + "literals" = dontDistribute super."literals"; + "live-sequencer" = dontDistribute super."live-sequencer"; + "ll-picosat" = dontDistribute super."ll-picosat"; + "llrbtree" = dontDistribute super."llrbtree"; + "llsd" = dontDistribute super."llsd"; + "llvm" = dontDistribute super."llvm"; + "llvm-analysis" = dontDistribute super."llvm-analysis"; + "llvm-base" = dontDistribute super."llvm-base"; + "llvm-base-types" = dontDistribute super."llvm-base-types"; + "llvm-base-util" = dontDistribute super."llvm-base-util"; + "llvm-data-interop" = dontDistribute super."llvm-data-interop"; + "llvm-extra" = dontDistribute super."llvm-extra"; + "llvm-ffi" = dontDistribute super."llvm-ffi"; + "llvm-general" = dontDistribute super."llvm-general"; + "llvm-general-pure" = dontDistribute super."llvm-general-pure"; + "llvm-general-quote" = dontDistribute super."llvm-general-quote"; + "llvm-ht" = dontDistribute super."llvm-ht"; + "llvm-pkg-config" = dontDistribute super."llvm-pkg-config"; + "llvm-pretty" = dontDistribute super."llvm-pretty"; + "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser"; + "llvm-tf" = dontDistribute super."llvm-tf"; + "llvm-tools" = dontDistribute super."llvm-tools"; + "lmdb" = dontDistribute super."lmdb"; + "lmonad" = dontDistribute super."lmonad"; + "lmonad-yesod" = dontDistribute super."lmonad-yesod"; + "loadavg" = dontDistribute super."loadavg"; + "local-address" = dontDistribute super."local-address"; + "local-search" = dontDistribute super."local-search"; + "located-base" = dontDistribute super."located-base"; + "locators" = dontDistribute super."locators"; + "loch" = dontDistribute super."loch"; + "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; + "lockfree-queue" = dontDistribute super."lockfree-queue"; + "log" = dontDistribute super."log"; + "log-effect" = dontDistribute super."log-effect"; + "log2json" = dontDistribute super."log2json"; + "logfloat" = dontDistribute super."logfloat"; + "logger" = dontDistribute super."logger"; + "logging" = dontDistribute super."logging"; + "logging-effect" = dontDistribute super."logging-effect"; + "logging-facade-journald" = dontDistribute super."logging-facade-journald"; + "logic-TPTP" = dontDistribute super."logic-TPTP"; + "logic-classes" = dontDistribute super."logic-classes"; + "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; + "logplex-parse" = dontDistribute super."logplex-parse"; + "logsink" = dontDistribute super."logsink"; + "lojban" = dontDistribute super."lojban"; + "lojbanParser" = dontDistribute super."lojbanParser"; + "lojbanXiragan" = dontDistribute super."lojbanXiragan"; + "lojysamban" = dontDistribute super."lojysamban"; + "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; + "loli" = dontDistribute super."loli"; + "lookup-tables" = dontDistribute super."lookup-tables"; + "loop-effin" = dontDistribute super."loop-effin"; + "loop-while" = dontDistribute super."loop-while"; + "loops" = dontDistribute super."loops"; + "loopy" = dontDistribute super."loopy"; + "lord" = dontDistribute super."lord"; + "lorem" = dontDistribute super."lorem"; + "loris" = dontDistribute super."loris"; + "loshadka" = dontDistribute super."loshadka"; + "lostcities" = dontDistribute super."lostcities"; + "lowgl" = dontDistribute super."lowgl"; + "lp-diagrams" = dontDistribute super."lp-diagrams"; + "lp-diagrams-svg" = dontDistribute super."lp-diagrams-svg"; + "ls-usb" = dontDistribute super."ls-usb"; + "lscabal" = dontDistribute super."lscabal"; + "lss" = dontDistribute super."lss"; + "lsystem" = dontDistribute super."lsystem"; + "ltk" = dontDistribute super."ltk"; + "ltl" = dontDistribute super."ltl"; + "lua-bytecode" = dontDistribute super."lua-bytecode"; + "luachunk" = dontDistribute super."luachunk"; + "luautils" = dontDistribute super."luautils"; + "lub" = dontDistribute super."lub"; + "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucienne" = dontDistribute super."lucienne"; + "luhn" = dontDistribute super."luhn"; + "lui" = dontDistribute super."lui"; + "luka" = dontDistribute super."luka"; + "luminance" = doDistribute super."luminance_0_9_1_2"; + "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; + "lushtags" = dontDistribute super."lushtags"; + "luthor" = dontDistribute super."luthor"; + "lvish" = dontDistribute super."lvish"; + "lvmlib" = dontDistribute super."lvmlib"; + "lvmrun" = dontDistribute super."lvmrun"; + "lxc" = dontDistribute super."lxc"; + "lye" = dontDistribute super."lye"; + "lz4" = dontDistribute super."lz4"; + "lzma" = dontDistribute super."lzma"; + "lzma-clib" = dontDistribute super."lzma-clib"; + "lzma-enumerator" = dontDistribute super."lzma-enumerator"; + "lzma-streams" = dontDistribute super."lzma-streams"; + "maam" = dontDistribute super."maam"; + "mac" = dontDistribute super."mac"; + "maccatcher" = dontDistribute super."maccatcher"; + "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; + "machines-zlib" = dontDistribute super."machines-zlib"; + "macho" = dontDistribute super."macho"; + "maclight" = dontDistribute super."maclight"; + "macosx-make-standalone" = dontDistribute super."macosx-make-standalone"; + "mage" = dontDistribute super."mage"; + "magico" = dontDistribute super."magico"; + "magma" = dontDistribute super."magma"; + "mahoro" = dontDistribute super."mahoro"; + "maid" = dontDistribute super."maid"; + "mailbox-count" = dontDistribute super."mailbox-count"; + "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; + "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = dontDistribute super."mainland-pretty"; + "majordomo" = dontDistribute super."majordomo"; + "majority" = dontDistribute super."majority"; + "make-hard-links" = dontDistribute super."make-hard-links"; + "make-package" = dontDistribute super."make-package"; + "makedo" = dontDistribute super."makedo"; + "manatee" = dontDistribute super."manatee"; + "manatee-all" = dontDistribute super."manatee-all"; + "manatee-anything" = dontDistribute super."manatee-anything"; + "manatee-browser" = dontDistribute super."manatee-browser"; + "manatee-core" = dontDistribute super."manatee-core"; + "manatee-curl" = dontDistribute super."manatee-curl"; + "manatee-editor" = dontDistribute super."manatee-editor"; + "manatee-filemanager" = dontDistribute super."manatee-filemanager"; + "manatee-imageviewer" = dontDistribute super."manatee-imageviewer"; + "manatee-ircclient" = dontDistribute super."manatee-ircclient"; + "manatee-mplayer" = dontDistribute super."manatee-mplayer"; + "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer"; + "manatee-processmanager" = dontDistribute super."manatee-processmanager"; + "manatee-reader" = dontDistribute super."manatee-reader"; + "manatee-template" = dontDistribute super."manatee-template"; + "manatee-terminal" = dontDistribute super."manatee-terminal"; + "manatee-welcome" = dontDistribute super."manatee-welcome"; + "mancala" = dontDistribute super."mancala"; + "mandulia" = dontDistribute super."mandulia"; + "manifold-random" = dontDistribute super."manifold-random"; + "manifolds" = dontDistribute super."manifolds"; + "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"; + "matchers" = dontDistribute super."matchers"; + "mathblog" = dontDistribute super."mathblog"; + "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; + "mathlink" = dontDistribute super."mathlink"; + "matlab" = dontDistribute super."matlab"; + "matrix-market" = dontDistribute super."matrix-market"; + "matrix-market-pure" = dontDistribute super."matrix-market-pure"; + "matsuri" = dontDistribute super."matsuri"; + "maude" = dontDistribute super."maude"; + "maxent" = dontDistribute super."maxent"; + "maxsharing" = dontDistribute super."maxsharing"; + "maybe-justify" = dontDistribute super."maybe-justify"; + "maybench" = dontDistribute super."maybench"; + "mbox" = doDistribute super."mbox_0_3_1"; + "mbox-tools" = dontDistribute super."mbox-tools"; + "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; + "mcmc-samplers" = dontDistribute super."mcmc-samplers"; + "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; + "mcpi" = dontDistribute super."mcpi"; + "mdapi" = dontDistribute super."mdapi"; + "mdcat" = dontDistribute super."mdcat"; + "mdo" = dontDistribute super."mdo"; + "mdp" = dontDistribute super."mdp"; + "mecab" = dontDistribute super."mecab"; + "mecha" = dontDistribute super."mecha"; + "mediawiki" = dontDistribute super."mediawiki"; + "mediawiki2latex" = dontDistribute super."mediawiki2latex"; + "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; + "meep" = dontDistribute super."meep"; + "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = doDistribute super."megaparsec_4_3_0"; + "meldable-heap" = dontDistribute super."meldable-heap"; + "melody" = dontDistribute super."melody"; + "memcache" = dontDistribute super."memcache"; + "memcache-conduit" = dontDistribute super."memcache-conduit"; + "memcache-haskell" = dontDistribute super."memcache-haskell"; + "memcached" = dontDistribute super."memcached"; + "memexml" = dontDistribute super."memexml"; + "memo-ptr" = dontDistribute super."memo-ptr"; + "memo-sqlite" = dontDistribute super."memo-sqlite"; + "memscript" = dontDistribute super."memscript"; + "mersenne-random" = dontDistribute super."mersenne-random"; + "messente" = dontDistribute super."messente"; + "meta-misc" = dontDistribute super."meta-misc"; + "meta-par" = dontDistribute super."meta-par"; + "meta-par-accelerate" = dontDistribute super."meta-par-accelerate"; + "metadata" = dontDistribute super."metadata"; + "metamorphic" = dontDistribute super."metamorphic"; + "metaplug" = dontDistribute super."metaplug"; + "metric" = dontDistribute super."metric"; + "metricsd-client" = dontDistribute super."metricsd-client"; + "metronome" = dontDistribute super."metronome"; + "mezzolens" = dontDistribute super."mezzolens"; + "mfsolve" = dontDistribute super."mfsolve"; + "mgeneric" = dontDistribute super."mgeneric"; + "mi" = dontDistribute super."mi"; + "microbench" = dontDistribute super."microbench"; + "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens-each" = dontDistribute super."microlens-each"; + "microtimer" = dontDistribute super."microtimer"; + "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; + "midi" = dontDistribute super."midi"; + "midi-alsa" = dontDistribute super."midi-alsa"; + "midi-music-box" = dontDistribute super."midi-music-box"; + "midi-util" = dontDistribute super."midi-util"; + "midimory" = dontDistribute super."midimory"; + "midisurface" = dontDistribute super."midisurface"; + "mighttpd" = dontDistribute super."mighttpd"; + "mighttpd2" = dontDistribute super."mighttpd2"; + "mikmod" = dontDistribute super."mikmod"; + "miku" = dontDistribute super."miku"; + "milena" = dontDistribute super."milena"; + "mime" = dontDistribute super."mime"; + "mime-directory" = dontDistribute super."mime-directory"; + "mime-string" = dontDistribute super."mime-string"; + "mines" = dontDistribute super."mines"; + "minesweeper" = dontDistribute super."minesweeper"; + "miniball" = dontDistribute super."miniball"; + "miniforth" = dontDistribute super."miniforth"; + "minilens" = dontDistribute super."minilens"; + "minimal-configuration" = dontDistribute super."minimal-configuration"; + "minimorph" = dontDistribute super."minimorph"; + "minimung" = dontDistribute super."minimung"; + "minions" = dontDistribute super."minions"; + "minioperational" = dontDistribute super."minioperational"; + "miniplex" = dontDistribute super."miniplex"; + "minirotate" = dontDistribute super."minirotate"; + "minisat" = dontDistribute super."minisat"; + "ministg" = dontDistribute super."ministg"; + "miniutter" = dontDistribute super."miniutter"; + "minst-idx" = dontDistribute super."minst-idx"; + "mirror-tweet" = dontDistribute super."mirror-tweet"; + "missing-py2" = dontDistribute super."missing-py2"; + "mix-arrows" = dontDistribute super."mix-arrows"; + "mixed-strategies" = dontDistribute super."mixed-strategies"; + "mkbndl" = dontDistribute super."mkbndl"; + "mkcabal" = dontDistribute super."mkcabal"; + "ml-w" = dontDistribute super."ml-w"; + "mlist" = dontDistribute super."mlist"; + "mmtl" = dontDistribute super."mmtl"; + "mmtl-base" = dontDistribute super."mmtl-base"; + "moan" = dontDistribute super."moan"; + "mockery" = doDistribute super."mockery_0_3_2"; + "modbus-tcp" = dontDistribute super."modbus-tcp"; + "modelicaparser" = dontDistribute super."modelicaparser"; + "modsplit" = dontDistribute super."modsplit"; + "modular-arithmetic" = dontDistribute super."modular-arithmetic"; + "modular-prelude" = dontDistribute super."modular-prelude"; + "modular-prelude-classy" = dontDistribute super."modular-prelude-classy"; + "module-management" = dontDistribute super."module-management"; + "modulespection" = dontDistribute super."modulespection"; + "modulo" = dontDistribute super."modulo"; + "moe" = dontDistribute super."moe"; + "mohws" = dontDistribute super."mohws"; + "monad-abort-fd" = dontDistribute super."monad-abort-fd"; + "monad-atom" = dontDistribute super."monad-atom"; + "monad-atom-simple" = dontDistribute super."monad-atom-simple"; + "monad-bool" = dontDistribute super."monad-bool"; + "monad-classes" = dontDistribute super."monad-classes"; + "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; + "monad-exception" = dontDistribute super."monad-exception"; + "monad-fork" = dontDistribute super."monad-fork"; + "monad-gen" = dontDistribute super."monad-gen"; + "monad-interleave" = dontDistribute super."monad-interleave"; + "monad-levels" = dontDistribute super."monad-levels"; + "monad-loops-stm" = dontDistribute super."monad-loops-stm"; + "monad-lrs" = dontDistribute super."monad-lrs"; + "monad-memo" = dontDistribute super."monad-memo"; + "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; + "monad-open" = dontDistribute super."monad-open"; + "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; + "monad-param" = dontDistribute super."monad-param"; + "monad-ran" = dontDistribute super."monad-ran"; + "monad-resumption" = dontDistribute super."monad-resumption"; + "monad-state" = dontDistribute super."monad-state"; + "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-stlike-io" = dontDistribute super."monad-stlike-io"; + "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; + "monad-supply" = dontDistribute super."monad-supply"; + "monad-task" = dontDistribute super."monad-task"; + "monad-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"; + "monadplus" = dontDistribute super."monadplus"; + "monads-fd" = dontDistribute super."monads-fd"; + "monadtransform" = dontDistribute super."monadtransform"; + "monarch" = dontDistribute super."monarch"; + "mongodb-queue" = dontDistribute super."mongodb-queue"; + "mongrel2-handler" = dontDistribute super."mongrel2-handler"; + "monitor" = dontDistribute super."monitor"; + "mono-foldable" = dontDistribute super."mono-foldable"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-owns" = dontDistribute super."monoid-owns"; + "monoid-record" = dontDistribute super."monoid-record"; + "monoid-statistics" = dontDistribute super."monoid-statistics"; + "monoid-transformer" = dontDistribute super."monoid-transformer"; + "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"; + "mosaico-lib" = dontDistribute super."mosaico-lib"; + "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; + "mp" = dontDistribute super."mp"; + "mp3decoder" = dontDistribute super."mp3decoder"; + "mpdmate" = dontDistribute super."mpdmate"; + "mpppc" = dontDistribute super."mpppc"; + "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; + "mprover" = dontDistribute super."mprover"; + "mps" = dontDistribute super."mps"; + "mpvguihs" = dontDistribute super."mpvguihs"; + "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; + "ms" = dontDistribute super."ms"; + "msgpack" = dontDistribute super."msgpack"; + "msgpack-aeson" = dontDistribute super."msgpack-aeson"; + "msgpack-idl" = dontDistribute super."msgpack-idl"; + "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; + "msu" = dontDistribute super."msu"; + "mtgoxapi" = dontDistribute super."mtgoxapi"; + "mtl-c" = dontDistribute super."mtl-c"; + "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-tf" = dontDistribute super."mtl-tf"; + "mtl-unleashed" = dontDistribute super."mtl-unleashed"; + "mtlparse" = dontDistribute super."mtlparse"; + "mtlx" = dontDistribute super."mtlx"; + "mtp" = dontDistribute super."mtp"; + "mtree" = dontDistribute super."mtree"; + "mucipher" = dontDistribute super."mucipher"; + "mudbath" = dontDistribute super."mudbath"; + "muesli" = dontDistribute super."muesli"; + "mueval" = dontDistribute super."mueval"; + "mulang" = dontDistribute super."mulang"; + "multext-east-msd" = dontDistribute super."multext-east-msd"; + "multi-cabal" = dontDistribute super."multi-cabal"; + "multiaddr" = dontDistribute super."multiaddr"; + "multifocal" = dontDistribute super."multifocal"; + "multihash" = dontDistribute super."multihash"; + "multipart-names" = dontDistribute super."multipart-names"; + "multipass" = dontDistribute super."multipass"; + "multiplate-simplified" = dontDistribute super."multiplate-simplified"; + "multiplicity" = dontDistribute super."multiplicity"; + "multirec" = dontDistribute super."multirec"; + "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; + "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset-comb" = dontDistribute super."multiset-comb"; + "multisetrewrite" = dontDistribute super."multisetrewrite"; + "multistate" = dontDistribute super."multistate"; + "muon" = dontDistribute super."muon"; + "murder" = dontDistribute super."murder"; + "murmur3" = dontDistribute super."murmur3"; + "murmurhash3" = dontDistribute super."murmurhash3"; + "music-articulation" = dontDistribute super."music-articulation"; + "music-diatonic" = dontDistribute super."music-diatonic"; + "music-dynamics" = dontDistribute super."music-dynamics"; + "music-dynamics-literal" = dontDistribute super."music-dynamics-literal"; + "music-graphics" = dontDistribute super."music-graphics"; + "music-parts" = dontDistribute super."music-parts"; + "music-pitch" = dontDistribute super."music-pitch"; + "music-pitch-literal" = dontDistribute super."music-pitch-literal"; + "music-preludes" = dontDistribute super."music-preludes"; + "music-score" = dontDistribute super."music-score"; + "music-sibelius" = dontDistribute super."music-sibelius"; + "music-suite" = dontDistribute super."music-suite"; + "music-util" = dontDistribute super."music-util"; + "musicbrainz-email" = dontDistribute super."musicbrainz-email"; + "musicxml" = dontDistribute super."musicxml"; + "musicxml2" = dontDistribute super."musicxml2"; + "mustache-haskell" = dontDistribute super."mustache-haskell"; + "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-iter" = dontDistribute super."mutable-iter"; + "mute-unmute" = dontDistribute super."mute-unmute"; + "mvc" = dontDistribute super."mvc"; + "mvc-updates" = dontDistribute super."mvc-updates"; + "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = doDistribute super."mwc-probability_1_0_3"; + "mwc-random-monad" = dontDistribute super."mwc-random-monad"; + "myTestlll" = dontDistribute super."myTestlll"; + "mybitcoin-sci" = dontDistribute super."mybitcoin-sci"; + "myo" = dontDistribute super."myo"; + "mysnapsession" = dontDistribute super."mysnapsession"; + "mysnapsession-example" = dontDistribute super."mysnapsession-example"; + "mysql-effect" = dontDistribute super."mysql-effect"; + "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi"; + "mysql-simple-typed" = dontDistribute super."mysql-simple-typed"; + "mzv" = dontDistribute super."mzv"; + "n-m" = dontDistribute super."n-m"; + "nagios-perfdata" = dontDistribute super."nagios-perfdata"; + "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg"; + "named-formlet" = dontDistribute super."named-formlet"; + "named-lock" = dontDistribute super."named-lock"; + "named-records" = dontDistribute super."named-records"; + "namelist" = dontDistribute super."namelist"; + "names" = dontDistribute super."names"; + "names-th" = dontDistribute super."names-th"; + "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; + "nano-hmac" = dontDistribute super."nano-hmac"; + "nano-md5" = dontDistribute super."nano-md5"; + "nanoAgda" = dontDistribute super."nanoAgda"; + "nanocurses" = dontDistribute super."nanocurses"; + "nanomsg" = dontDistribute super."nanomsg"; + "nanomsg-haskell" = dontDistribute super."nanomsg-haskell"; + "nanoparsec" = dontDistribute super."nanoparsec"; + "nanq" = dontDistribute super."nanq"; + "narc" = dontDistribute super."narc"; + "nat" = dontDistribute super."nat"; + "nats-queue" = dontDistribute super."nats-queue"; + "natural-number" = dontDistribute super."natural-number"; + "natural-numbers" = dontDistribute super."natural-numbers"; + "natural-transformation" = dontDistribute super."natural-transformation"; + "naturalcomp" = dontDistribute super."naturalcomp"; + "naturals" = dontDistribute super."naturals"; + "naver-translate" = dontDistribute super."naver-translate"; + "nbt" = dontDistribute super."nbt"; + "nc-indicators" = dontDistribute super."nc-indicators"; + "ncurses" = dontDistribute super."ncurses"; + "neat" = dontDistribute super."neat"; + "needle" = dontDistribute super."needle"; + "neet" = dontDistribute super."neet"; + "nehe-tuts" = dontDistribute super."nehe-tuts"; + "neil" = dontDistribute super."neil"; + "neither" = dontDistribute super."neither"; + "nemesis" = dontDistribute super."nemesis"; + "nemesis-titan" = dontDistribute super."nemesis-titan"; + "nerf" = dontDistribute super."nerf"; + "nero" = dontDistribute super."nero"; + "nero-wai" = dontDistribute super."nero-wai"; + "nero-warp" = dontDistribute super."nero-warp"; + "nested-routes" = dontDistribute super."nested-routes"; + "nested-sets" = dontDistribute super."nested-sets"; + "nestedmap" = dontDistribute super."nestedmap"; + "net-concurrent" = dontDistribute super."net-concurrent"; + "netclock" = dontDistribute super."netclock"; + "netcore" = dontDistribute super."netcore"; + "netlines" = dontDistribute super."netlines"; + "netlink" = dontDistribute super."netlink"; + "netlist" = dontDistribute super."netlist"; + "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl"; + "netpbm" = dontDistribute super."netpbm"; + "netrc" = dontDistribute super."netrc"; + "netspec" = dontDistribute super."netspec"; + "netstring-enumerator" = dontDistribute super."netstring-enumerator"; + "nettle-frp" = dontDistribute super."nettle-frp"; + "nettle-netkit" = dontDistribute super."nettle-netkit"; + "nettle-openflow" = dontDistribute super."nettle-openflow"; + "netwire" = dontDistribute super."netwire"; + "netwire-input" = dontDistribute super."netwire-input"; + "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; + "network-address" = dontDistribute super."network-address"; + "network-api-support" = dontDistribute super."network-api-support"; + "network-bitcoin" = dontDistribute super."network-bitcoin"; + "network-builder" = dontDistribute super."network-builder"; + "network-bytestring" = dontDistribute super."network-bytestring"; + "network-conduit" = dontDistribute super."network-conduit"; + "network-connection" = dontDistribute super."network-connection"; + "network-data" = dontDistribute super."network-data"; + "network-dbus" = dontDistribute super."network-dbus"; + "network-dns" = dontDistribute super."network-dns"; + "network-enumerator" = dontDistribute super."network-enumerator"; + "network-fancy" = dontDistribute super."network-fancy"; + "network-interfacerequest" = dontDistribute super."network-interfacerequest"; + "network-ip" = dontDistribute super."network-ip"; + "network-metrics" = dontDistribute super."network-metrics"; + "network-minihttp" = dontDistribute super."network-minihttp"; + "network-msg" = dontDistribute super."network-msg"; + "network-netpacket" = dontDistribute super."network-netpacket"; + "network-pgi" = dontDistribute super."network-pgi"; + "network-rpca" = dontDistribute super."network-rpca"; + "network-server" = dontDistribute super."network-server"; + "network-service" = dontDistribute super."network-service"; + "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; + "network-simple-tls" = dontDistribute super."network-simple-tls"; + "network-socket-options" = dontDistribute super."network-socket-options"; + "network-stream" = dontDistribute super."network-stream"; + "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport-amqp" = dontDistribute super."network-transport-amqp"; + "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; + "network-uri-static" = dontDistribute super."network-uri-static"; + "network-wai-router" = dontDistribute super."network-wai-router"; + "network-websocket" = dontDistribute super."network-websocket"; + "networked-game" = dontDistribute super."networked-game"; + "newports" = dontDistribute super."newports"; + "newsynth" = dontDistribute super."newsynth"; + "newt" = dontDistribute super."newt"; + "newtype-deriving" = dontDistribute super."newtype-deriving"; + "newtype-th" = dontDistribute super."newtype-th"; + "newtyper" = dontDistribute super."newtyper"; + "nextstep-plist" = dontDistribute super."nextstep-plist"; + "nf" = dontDistribute super."nf"; + "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; + "nibblestring" = dontDistribute super."nibblestring"; + "nicify" = dontDistribute super."nicify"; + "nicify-lib" = dontDistribute super."nicify-lib"; + "nicovideo-translator" = dontDistribute super."nicovideo-translator"; + "nikepub" = dontDistribute super."nikepub"; + "nimber" = dontDistribute super."nimber"; + "nist-beacon" = dontDistribute super."nist-beacon"; + "nitro" = dontDistribute super."nitro"; + "nix-eval" = dontDistribute super."nix-eval"; + "nixfromnpm" = dontDistribute super."nixfromnpm"; + "nixos-types" = dontDistribute super."nixos-types"; + "nkjp" = dontDistribute super."nkjp"; + "nlp-scores" = dontDistribute super."nlp-scores"; + "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts"; + "nm" = dontDistribute super."nm"; + "nme" = dontDistribute super."nme"; + "nntp" = dontDistribute super."nntp"; + "no-buffering-workaround" = dontDistribute super."no-buffering-workaround"; + "no-role-annots" = dontDistribute super."no-role-annots"; + "nofib-analyse" = dontDistribute super."nofib-analyse"; + "nofib-analyze" = dontDistribute super."nofib-analyze"; + "noise" = dontDistribute super."noise"; + "non-empty" = dontDistribute super."non-empty"; + "non-negative" = dontDistribute super."non-negative"; + "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; + "nonfree" = dontDistribute super."nonfree"; + "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; + "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; + "noodle" = dontDistribute super."noodle"; + "normaldistribution" = dontDistribute super."normaldistribution"; + "not-gloss" = dontDistribute super."not-gloss"; + "not-gloss-examples" = dontDistribute super."not-gloss-examples"; + "not-in-base" = dontDistribute super."not-in-base"; + "notcpp" = dontDistribute super."notcpp"; + "notmuch-haskell" = dontDistribute super."notmuch-haskell"; + "notmuch-web" = dontDistribute super."notmuch-web"; + "notzero" = dontDistribute super."notzero"; + "np-extras" = dontDistribute super."np-extras"; + "np-linear" = dontDistribute super."np-linear"; + "nptools" = dontDistribute super."nptools"; + "nth-prime" = dontDistribute super."nth-prime"; + "nthable" = dontDistribute super."nthable"; + "ntp-control" = dontDistribute super."ntp-control"; + "null-canvas" = dontDistribute super."null-canvas"; + "nullary" = dontDistribute super."nullary"; + "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; + "numbering" = dontDistribute super."numbering"; + "numerals" = dontDistribute super."numerals"; + "numerals-base" = dontDistribute super."numerals-base"; + "numeric-limits" = dontDistribute super."numeric-limits"; + "numeric-prelude" = dontDistribute super."numeric-prelude"; + "numeric-qq" = dontDistribute super."numeric-qq"; + "numeric-quest" = dontDistribute super."numeric-quest"; + "numeric-ranges" = dontDistribute super."numeric-ranges"; + "numeric-tools" = dontDistribute super."numeric-tools"; + "numericpeano" = dontDistribute super."numericpeano"; + "nums" = dontDistribute super."nums"; + "numtype" = dontDistribute super."numtype"; + "numtype-tf" = dontDistribute super."numtype-tf"; + "nurbs" = dontDistribute super."nurbs"; + "nvim-hs" = dontDistribute super."nvim-hs"; + "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib"; + "nyan" = dontDistribute super."nyan"; + "nylas" = dontDistribute super."nylas"; + "nymphaea" = dontDistribute super."nymphaea"; + "oanda-rest-api" = dontDistribute super."oanda-rest-api"; + "oauthenticated" = dontDistribute super."oauthenticated"; + "obdd" = dontDistribute super."obdd"; + "oberon0" = dontDistribute super."oberon0"; + "obj" = dontDistribute super."obj"; + "objectid" = dontDistribute super."objectid"; + "objective" = doDistribute super."objective_1_0_5"; + "observable-sharing" = dontDistribute super."observable-sharing"; + "octane" = dontDistribute super."octane"; + "octohat" = dontDistribute super."octohat"; + "octopus" = dontDistribute super."octopus"; + "oculus" = dontDistribute super."oculus"; + "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = dontDistribute super."oeis"; + "off-simple" = dontDistribute super."off-simple"; + "ohloh-hs" = dontDistribute super."ohloh-hs"; + "oi" = dontDistribute super."oi"; + "oidc-client" = dontDistribute super."oidc-client"; + "ois-input-manager" = dontDistribute super."ois-input-manager"; + "old-version" = dontDistribute super."old-version"; + "olwrapper" = dontDistribute super."olwrapper"; + "omaketex" = dontDistribute super."omaketex"; + "omega" = dontDistribute super."omega"; + "omnicodec" = dontDistribute super."omnicodec"; + "on-a-horse" = dontDistribute super."on-a-horse"; + "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "one-liner" = dontDistribute super."one-liner"; + "one-time-password" = dontDistribute super."one-time-password"; + "oneOfN" = dontDistribute super."oneOfN"; + "oneormore" = dontDistribute super."oneormore"; + "only" = dontDistribute super."only"; + "onu-course" = dontDistribute super."onu-course"; + "opaleye-classy" = dontDistribute super."opaleye-classy"; + "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; + "opaleye-trans" = dontDistribute super."opaleye-trans"; + "open-haddock" = dontDistribute super."open-haddock"; + "open-pandoc" = dontDistribute super."open-pandoc"; + "open-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"; + "opml-conduit" = doDistribute super."opml-conduit_0_4_0_1"; + "opn" = dontDistribute super."opn"; + "optimal-blocks" = dontDistribute super."optimal-blocks"; + "optimization" = dontDistribute super."optimization"; + "optimusprime" = dontDistribute super."optimusprime"; + "option" = dontDistribute super."option"; + "optional" = dontDistribute super."optional"; + "options-time" = dontDistribute super."options-time"; + "optparse-declarative" = dontDistribute super."optparse-declarative"; + "optparse-generic" = dontDistribute super."optparse-generic"; + "orc" = dontDistribute super."orc"; + "orchestrate" = dontDistribute super."orchestrate"; + "orchid" = dontDistribute super."orchid"; + "orchid-demo" = dontDistribute super."orchid-demo"; + "ord-adhoc" = dontDistribute super."ord-adhoc"; + "order-maintenance" = dontDistribute super."order-maintenance"; + "order-statistic-tree" = dontDistribute super."order-statistic-tree"; + "order-statistics" = dontDistribute super."order-statistics"; + "ordered" = dontDistribute super."ordered"; + "orders" = dontDistribute super."orders"; + "ordrea" = dontDistribute super."ordrea"; + "organize-imports" = dontDistribute super."organize-imports"; + "orgmode" = dontDistribute super."orgmode"; + "orgmode-parse" = dontDistribute super."orgmode-parse"; + "origami" = dontDistribute super."origami"; + "os-release" = dontDistribute super."os-release"; + "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; + "osm-download" = dontDistribute super."osm-download"; + "oso2pdf" = dontDistribute super."oso2pdf"; + "osx-ar" = dontDistribute super."osx-ar"; + "ot" = dontDistribute super."ot"; + "ottparse-pretty" = dontDistribute super."ottparse-pretty"; + "overloaded-records" = dontDistribute super."overloaded-records"; + "overture" = dontDistribute super."overture"; + "pack" = dontDistribute super."pack"; + "package-o-tron" = dontDistribute super."package-o-tron"; + "package-vt" = dontDistribute super."package-vt"; + "packdeps" = dontDistribute super."packdeps"; + "packed-dawg" = dontDistribute super."packed-dawg"; + "packedstring" = dontDistribute super."packedstring"; + "packer" = dontDistribute super."packer"; + "packman" = dontDistribute super."packman"; + "packunused" = dontDistribute super."packunused"; + "pacman-memcache" = dontDistribute super."pacman-memcache"; + "padKONTROL" = dontDistribute super."padKONTROL"; + "pagarme" = dontDistribute super."pagarme"; + "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palindromes" = dontDistribute super."palindromes"; + "pam" = dontDistribute super."pam"; + "panda" = dontDistribute super."panda"; + "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; + "pandoc-crossref" = dontDistribute super."pandoc-crossref"; + "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; + "pandoc-include" = dontDistribute super."pandoc-include"; + "pandoc-japanese-filters" = dontDistribute super."pandoc-japanese-filters"; + "pandoc-lens" = dontDistribute super."pandoc-lens"; + "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "papillon" = dontDistribute super."papillon"; + "pappy" = dontDistribute super."pappy"; + "para" = dontDistribute super."para"; + "paragon" = dontDistribute super."paragon"; + "parallel-tasks" = dontDistribute super."parallel-tasks"; + "parallel-tree-search" = dontDistribute super."parallel-tree-search"; + "parameterized-data" = dontDistribute super."parameterized-data"; + "parco" = dontDistribute super."parco"; + "parco-attoparsec" = dontDistribute super."parco-attoparsec"; + "parco-parsec" = dontDistribute super."parco-parsec"; + "parcom-lib" = dontDistribute super."parcom-lib"; + "parconc-examples" = dontDistribute super."parconc-examples"; + "parport" = dontDistribute super."parport"; + "parse-dimacs" = dontDistribute super."parse-dimacs"; + "parse-help" = dontDistribute super."parse-help"; + "parsec-extra" = dontDistribute super."parsec-extra"; + "parsec-numbers" = dontDistribute super."parsec-numbers"; + "parsec-parsers" = dontDistribute super."parsec-parsers"; + "parsec-permutation" = dontDistribute super."parsec-permutation"; + "parsec-tagsoup" = dontDistribute super."parsec-tagsoup"; + "parsec-trace" = dontDistribute super."parsec-trace"; + "parsec-utils" = dontDistribute super."parsec-utils"; + "parsec1" = dontDistribute super."parsec1"; + "parsec2" = dontDistribute super."parsec2"; + "parsec3" = dontDistribute super."parsec3"; + "parsec3-numbers" = dontDistribute super."parsec3-numbers"; + "parsedate" = dontDistribute super."parsedate"; + "parsek" = dontDistribute super."parsek"; + "parsely" = dontDistribute super."parsely"; + "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; + "parsergen" = dontDistribute super."parsergen"; + "parsestar" = dontDistribute super."parsestar"; + "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; + "partial" = dontDistribute super."partial"; + "partial-lens" = dontDistribute super."partial-lens"; + "partial-uri" = dontDistribute super."partial-uri"; + "partly" = dontDistribute super."partly"; + "passage" = dontDistribute super."passage"; + "passwords" = dontDistribute super."passwords"; + "pastis" = dontDistribute super."pastis"; + "pasty" = dontDistribute super."pasty"; + "patch-combinators" = dontDistribute super."patch-combinators"; + "patch-image" = dontDistribute super."patch-image"; + "path-io" = doDistribute super."path-io_0_2_0"; + "pathfinding" = dontDistribute super."pathfinding"; + "pathfindingcore" = dontDistribute super."pathfindingcore"; + "pathtype" = dontDistribute super."pathtype"; + "patronscraper" = dontDistribute super."patronscraper"; + "patterns" = dontDistribute super."patterns"; + "paymill" = dontDistribute super."paymill"; + "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops"; + "paypal-api" = dontDistribute super."paypal-api"; + "pb" = dontDistribute super."pb"; + "pbc4hs" = dontDistribute super."pbc4hs"; + "pbkdf" = dontDistribute super."pbkdf"; + "pcap-conduit" = dontDistribute super."pcap-conduit"; + "pcap-enumerator" = dontDistribute super."pcap-enumerator"; + "pcd-loader" = dontDistribute super."pcd-loader"; + "pcf" = dontDistribute super."pcf"; + "pcg-random" = dontDistribute super."pcg-random"; + "pcre-less" = dontDistribute super."pcre-less"; + "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; + "pdf2line" = dontDistribute super."pdf2line"; + "pdfsplit" = dontDistribute super."pdfsplit"; + "pdynload" = dontDistribute super."pdynload"; + "peakachu" = dontDistribute super."peakachu"; + "peano" = dontDistribute super."peano"; + "peano-inf" = dontDistribute super."peano-inf"; + "pec" = dontDistribute super."pec"; + "pecoff" = dontDistribute super."pecoff"; + "peg" = dontDistribute super."peg"; + "peggy" = dontDistribute super."peggy"; + "pell" = dontDistribute super."pell"; + "penn-treebank" = dontDistribute super."penn-treebank"; + "penny" = dontDistribute super."penny"; + "penny-bin" = dontDistribute super."penny-bin"; + "penny-lib" = dontDistribute super."penny-lib"; + "peparser" = dontDistribute super."peparser"; + "perceptron" = dontDistribute super."perceptron"; + "perdure" = dontDistribute super."perdure"; + "period" = dontDistribute super."period"; + "perm" = dontDistribute super."perm"; + "permutation" = dontDistribute super."permutation"; + "permute" = dontDistribute super."permute"; + "persist2er" = dontDistribute super."persist2er"; + "persistable-record" = dontDistribute super."persistable-record"; + "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-equivalence" = dontDistribute super."persistent-equivalence"; + "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; + "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; + "persistent-iproute" = dontDistribute super."persistent-iproute"; + "persistent-map" = dontDistribute super."persistent-map"; + "persistent-odbc" = dontDistribute super."persistent-odbc"; + "persistent-protobuf" = dontDistribute super."persistent-protobuf"; + "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; + "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-vector" = dontDistribute super."persistent-vector"; + "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; + "persona" = dontDistribute super."persona"; + "persona-idp" = dontDistribute super."persona-idp"; + "pesca" = dontDistribute super."pesca"; + "peyotls" = dontDistribute super."peyotls"; + "peyotls-codec" = dontDistribute super."peyotls-codec"; + "pez" = dontDistribute super."pez"; + "pg-harness" = dontDistribute super."pg-harness"; + "pg-harness-client" = dontDistribute super."pg-harness-client"; + "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pgdl" = dontDistribute super."pgdl"; + "pgm" = dontDistribute super."pgm"; + "pgsql-simple" = dontDistribute super."pgsql-simple"; + "pgstream" = dontDistribute super."pgstream"; + "phasechange" = dontDistribute super."phasechange"; + "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; + "phone-numbers" = dontDistribute super."phone-numbers"; + "phone-push" = dontDistribute super."phone-push"; + "phonetic-code" = dontDistribute super."phonetic-code"; + "phooey" = dontDistribute super."phooey"; + "photoname" = dontDistribute super."photoname"; + "phraskell" = dontDistribute super."phraskell"; + "phybin" = dontDistribute super."phybin"; + "pi-calculus" = dontDistribute super."pi-calculus"; + "pia-forward" = dontDistribute super."pia-forward"; + "pianola" = dontDistribute super."pianola"; + "picologic" = dontDistribute super."picologic"; + "picosat" = dontDistribute super."picosat"; + "piet" = dontDistribute super."piet"; + "piki" = dontDistribute super."piki"; + "pinboard" = dontDistribute super."pinboard"; + "pinchot" = doDistribute super."pinchot_0_6_0_0"; + "pipe-enumerator" = dontDistribute super."pipe-enumerator"; + "pipeclip" = dontDistribute super."pipeclip"; + "pipes-async" = dontDistribute super."pipes-async"; + "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-bzip" = dontDistribute super."pipes-bzip"; + "pipes-cacophony" = doDistribute super."pipes-cacophony_0_1_3"; + "pipes-cellular" = dontDistribute super."pipes-cellular"; + "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; + "pipes-cereal" = dontDistribute super."pipes-cereal"; + "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-conduit" = dontDistribute super."pipes-conduit"; + "pipes-core" = dontDistribute super."pipes-core"; + "pipes-courier" = dontDistribute super."pipes-courier"; + "pipes-errors" = dontDistribute super."pipes-errors"; + "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-files" = dontDistribute super."pipes-files"; + "pipes-interleave" = dontDistribute super."pipes-interleave"; + "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-network-tls" = dontDistribute super."pipes-network-tls"; + "pipes-p2p" = dontDistribute super."pipes-p2p"; + "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; + "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; + "pipes-vector" = dontDistribute super."pipes-vector"; + "pipes-websockets" = dontDistribute super."pipes-websockets"; + "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; + "pipes-zlib" = dontDistribute super."pipes-zlib"; + "pisigma" = dontDistribute super."pisigma"; + "pit" = dontDistribute super."pit"; + "pitchtrack" = dontDistribute super."pitchtrack"; + "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pkcs1" = dontDistribute super."pkcs1"; + "pkcs7" = dontDistribute super."pkcs7"; + "pkggraph" = dontDistribute super."pkggraph"; + "pktree" = dontDistribute super."pktree"; + "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; + "planar-graph" = dontDistribute super."planar-graph"; + "plat" = dontDistribute super."plat"; + "playlists" = dontDistribute super."playlists"; + "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; + "plivo" = dontDistribute super."plivo"; + "plot-lab" = dontDistribute super."plot-lab"; + "plotfont" = dontDistribute super."plotfont"; + "plotserver-api" = dontDistribute super."plotserver-api"; + "plugins" = dontDistribute super."plugins"; + "plugins-auto" = dontDistribute super."plugins-auto"; + "plugins-multistage" = dontDistribute super."plugins-multistage"; + "plumbers" = dontDistribute super."plumbers"; + "ply-loader" = dontDistribute super."ply-loader"; + "png-file" = dontDistribute super."png-file"; + "pngload" = dontDistribute super."pngload"; + "pngload-fixed" = dontDistribute super."pngload-fixed"; + "pnm" = dontDistribute super."pnm"; + "pocket-dns" = dontDistribute super."pocket-dns"; + "pointfree" = dontDistribute super."pointfree"; + "pointful" = dontDistribute super."pointful"; + "pointless-fun" = dontDistribute super."pointless-fun"; + "pointless-haskell" = dontDistribute super."pointless-haskell"; + "pointless-lenses" = dontDistribute super."pointless-lenses"; + "pointless-rewrite" = dontDistribute super."pointless-rewrite"; + "poker-eval" = dontDistribute super."poker-eval"; + "pokitdok" = dontDistribute super."pokitdok"; + "polar" = dontDistribute super."polar"; + "polar-configfile" = dontDistribute super."polar-configfile"; + "polar-shader" = dontDistribute super."polar-shader"; + "polh-lexicon" = dontDistribute super."polh-lexicon"; + "polimorf" = dontDistribute super."polimorf"; + "poll" = dontDistribute super."poll"; + "poly-control" = dontDistribute super."poly-control"; + "polyToMonoid" = dontDistribute super."polyToMonoid"; + "polymap" = dontDistribute super."polymap"; + "polynom" = dontDistribute super."polynom"; + "polynomial" = dontDistribute super."polynomial"; + "polynomials-bernstein" = dontDistribute super."polynomials-bernstein"; + "polyseq" = dontDistribute super."polyseq"; + "polysoup" = dontDistribute super."polysoup"; + "polytypeable" = dontDistribute super."polytypeable"; + "polytypeable-utils" = dontDistribute super."polytypeable-utils"; + "ponder" = dontDistribute super."ponder"; + "pong-server" = dontDistribute super."pong-server"; + "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver"; + "pontarius-xmpp" = dontDistribute super."pontarius-xmpp"; + "pontarius-xpmn" = dontDistribute super."pontarius-xpmn"; + "pony" = dontDistribute super."pony"; + "pool" = dontDistribute super."pool"; + "pool-conduit" = dontDistribute super."pool-conduit"; + "pooled-io" = dontDistribute super."pooled-io"; + "pop3-client" = dontDistribute super."pop3-client"; + "popenhs" = dontDistribute super."popenhs"; + "poppler" = dontDistribute super."poppler"; + "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache"; + "portable-lines" = dontDistribute super."portable-lines"; + "portaudio" = dontDistribute super."portaudio"; + "porte" = dontDistribute super."porte"; + "porter" = dontDistribute super."porter"; + "ports" = dontDistribute super."ports"; + "ports-tools" = dontDistribute super."ports-tools"; + "positive" = dontDistribute super."positive"; + "posix-acl" = dontDistribute super."posix-acl"; + "posix-escape" = dontDistribute super."posix-escape"; + "posix-filelock" = dontDistribute super."posix-filelock"; + "posix-paths" = dontDistribute super."posix-paths"; + "posix-pty" = dontDistribute super."posix-pty"; + "posix-timer" = dontDistribute super."posix-timer"; + "posix-waitpid" = dontDistribute super."posix-waitpid"; + "possible" = dontDistribute super."possible"; + "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_7_9"; + "postgresql-config" = dontDistribute super."postgresql-config"; + "postgresql-connector" = dontDistribute super."postgresql-connector"; + "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; + "postgresql-cube" = dontDistribute super."postgresql-cube"; + "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; + "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration"; + "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; + "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; + "postgresql-typed" = dontDistribute super."postgresql-typed"; + "postgrest" = dontDistribute super."postgrest"; + "postie" = dontDistribute super."postie"; + "postmark" = dontDistribute super."postmark"; + "postmaster" = dontDistribute super."postmaster"; + "potato-tool" = dontDistribute super."potato-tool"; + "potrace" = dontDistribute super."potrace"; + "potrace-diagrams" = dontDistribute super."potrace-diagrams"; + "powermate" = dontDistribute super."powermate"; + "powerpc" = dontDistribute super."powerpc"; + "ppm" = dontDistribute super."ppm"; + "pqc" = dontDistribute super."pqc"; + "pqueue-mtl" = dontDistribute super."pqueue-mtl"; + "practice-room" = dontDistribute super."practice-room"; + "precis" = dontDistribute super."precis"; + "predicates" = dontDistribute super."predicates"; + "prednote-test" = dontDistribute super."prednote-test"; + "prefork" = dontDistribute super."prefork"; + "pregame" = dontDistribute super."pregame"; + "prelude-edsl" = dontDistribute super."prelude-edsl"; + "prelude-generalize" = dontDistribute super."prelude-generalize"; + "prelude-plus" = dontDistribute super."prelude-plus"; + "prelude-prime" = dontDistribute super."prelude-prime"; + "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "preprocess-haskell" = dontDistribute super."preprocess-haskell"; + "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = dontDistribute super."present"; + "press" = dontDistribute super."press"; + "presto-hdbc" = dontDistribute super."presto-hdbc"; + "prettify" = dontDistribute super."prettify"; + "pretty-compact" = dontDistribute super."pretty-compact"; + "pretty-error" = dontDistribute super."pretty-error"; + "pretty-hex" = dontDistribute super."pretty-hex"; + "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-sop" = dontDistribute super."pretty-sop"; + "pretty-tree" = dontDistribute super."pretty-tree"; + "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-uniq" = dontDistribute super."prim-uniq"; + "primitive-simd" = dontDistribute super."primitive-simd"; + "primula-board" = dontDistribute super."primula-board"; + "primula-bot" = dontDistribute super."primula-bot"; + "print-debugger" = dontDistribute super."print-debugger"; + "printf-mauke" = dontDistribute super."printf-mauke"; + "printxosd" = dontDistribute super."printxosd"; + "priority-queue" = dontDistribute super."priority-queue"; + "priority-sync" = dontDistribute super."priority-sync"; + "privileged-concurrency" = dontDistribute super."privileged-concurrency"; + "prizm" = dontDistribute super."prizm"; + "probability" = dontDistribute super."probability"; + "probable" = dontDistribute super."probable"; + "proc" = dontDistribute super."proc"; + "process-conduit" = dontDistribute super."process-conduit"; + "process-extras" = doDistribute super."process-extras_0_3_3_7"; + "process-iterio" = dontDistribute super."process-iterio"; + "process-leksah" = dontDistribute super."process-leksah"; + "process-listlike" = dontDistribute super."process-listlike"; + "process-progress" = dontDistribute super."process-progress"; + "process-qq" = dontDistribute super."process-qq"; + "process-streaming" = dontDistribute super."process-streaming"; + "processing" = dontDistribute super."processing"; + "processor-creative-kit" = dontDistribute super."processor-creative-kit"; + "procrastinating-structure" = dontDistribute super."procrastinating-structure"; + "procrastinating-variable" = dontDistribute super."procrastinating-variable"; + "procstat" = dontDistribute super."procstat"; + "proctest" = dontDistribute super."proctest"; + "product-profunctors" = doDistribute super."product-profunctors_0_6_3_1"; + "prof2dot" = dontDistribute super."prof2dot"; + "prof2pretty" = dontDistribute super."prof2pretty"; + "profiteur" = dontDistribute super."profiteur"; + "progress" = dontDistribute super."progress"; + "progressbar" = dontDistribute super."progressbar"; + "progression" = dontDistribute super."progression"; + "progressive" = dontDistribute super."progressive"; + "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; + "projection" = dontDistribute super."projection"; + "prolog" = dontDistribute super."prolog"; + "prolog-graph" = dontDistribute super."prolog-graph"; + "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; + "promise" = dontDistribute super."promise"; + "promises" = dontDistribute super."promises"; + "propane" = dontDistribute super."propane"; + "propellor" = dontDistribute super."propellor"; + "properties" = dontDistribute super."properties"; + "property-list" = dontDistribute super."property-list"; + "proplang" = dontDistribute super."proplang"; + "props" = dontDistribute super."props"; + "prosper" = dontDistribute super."prosper"; + "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; + "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; + "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; + "proton-haskell" = dontDistribute super."proton-haskell"; + "prototype" = dontDistribute super."prototype"; + "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; + "proxy-kindness" = dontDistribute super."proxy-kindness"; + "psc-ide" = doDistribute super."psc-ide_0_5_0"; + "pseudo-boolean" = dontDistribute super."pseudo-boolean"; + "pseudo-trie" = dontDistribute super."pseudo-trie"; + "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; + "pub" = dontDistribute super."pub"; + "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; + "publicsuffixlist" = dontDistribute super."publicsuffixlist"; + "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate"; + "pubnub" = dontDistribute super."pubnub"; + "pubsub" = dontDistribute super."pubsub"; + "puffytools" = dontDistribute super."puffytools"; + "pugixml" = dontDistribute super."pugixml"; + "pugs-DrIFT" = dontDistribute super."pugs-DrIFT"; + "pugs-HsSyck" = dontDistribute super."pugs-HsSyck"; + "pugs-compat" = dontDistribute super."pugs-compat"; + "pugs-hsregex" = dontDistribute super."pugs-hsregex"; + "pulse-simple" = dontDistribute super."pulse-simple"; + "punkt" = dontDistribute super."punkt"; + "punycode" = dontDistribute super."punycode"; + "puppetresources" = dontDistribute super."puppetresources"; + "pure-fft" = dontDistribute super."pure-fft"; + "pure-priority-queue" = dontDistribute super."pure-priority-queue"; + "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; + "pure-zlib" = dontDistribute super."pure-zlib"; + "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; + "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "push-notify" = dontDistribute super."push-notify"; + "push-notify-ccs" = dontDistribute super."push-notify-ccs"; + "push-notify-general" = dontDistribute super."push-notify-general"; + "pusher-haskell" = dontDistribute super."pusher-haskell"; + "pushme" = dontDistribute super."pushme"; + "putlenses" = dontDistribute super."putlenses"; + "puzzle-draw" = dontDistribute super."puzzle-draw"; + "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline"; + "pvd" = dontDistribute super."pvd"; + "pwstore-cli" = dontDistribute super."pwstore-cli"; + "pxsl-tools" = dontDistribute super."pxsl-tools"; + "pyffi" = dontDistribute super."pyffi"; + "pyfi" = dontDistribute super."pyfi"; + "python-pickle" = dontDistribute super."python-pickle"; + "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator"; + "qd" = dontDistribute super."qd"; + "qd-vec" = dontDistribute super."qd-vec"; + "qed" = dontDistribute super."qed"; + "qhull-simple" = dontDistribute super."qhull-simple"; + "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; + "quadratic-irrational" = dontDistribute super."quadratic-irrational"; + "quantfin" = dontDistribute super."quantfin"; + "quantities" = dontDistribute super."quantities"; + "quantum-arrow" = dontDistribute super."quantum-arrow"; + "qudb" = dontDistribute super."qudb"; + "quenya-verb" = dontDistribute super."quenya-verb"; + "querystring-pickle" = dontDistribute super."querystring-pickle"; + "queue" = dontDistribute super."queue"; + "queuelike" = dontDistribute super."queuelike"; + "quick-generator" = dontDistribute super."quick-generator"; + "quick-schema" = dontDistribute super."quick-schema"; + "quickcheck-poly" = dontDistribute super."quickcheck-poly"; + "quickcheck-properties" = dontDistribute super."quickcheck-properties"; + "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; + "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad"; + "quickcheck-regex" = dontDistribute super."quickcheck-regex"; + "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng"; + "quickcheck-rematch" = dontDistribute super."quickcheck-rematch"; + "quickcheck-script" = dontDistribute super."quickcheck-script"; + "quickcheck-simple" = dontDistribute super."quickcheck-simple"; + "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver"; + "quicklz" = dontDistribute super."quicklz"; + "quickpull" = dontDistribute super."quickpull"; + "quickset" = dontDistribute super."quickset"; + "quickspec" = dontDistribute super."quickspec"; + "quicktest" = dontDistribute super."quicktest"; + "quickwebapp" = dontDistribute super."quickwebapp"; + "quiver" = dontDistribute super."quiver"; + "quiver-bytestring" = dontDistribute super."quiver-bytestring"; + "quiver-cell" = dontDistribute super."quiver-cell"; + "quiver-csv" = dontDistribute super."quiver-csv"; + "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-http" = dontDistribute super."quiver-http"; + "quoridor-hs" = dontDistribute super."quoridor-hs"; + "qux" = dontDistribute super."qux"; + "rabocsv2qif" = dontDistribute super."rabocsv2qif"; + "rad" = dontDistribute super."rad"; + "radian" = dontDistribute super."radian"; + "radium" = dontDistribute super."radium"; + "radium-formula-parser" = dontDistribute super."radium-formula-parser"; + "radix" = dontDistribute super."radix"; + "rados-haskell" = dontDistribute super."rados-haskell"; + "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; + "rake" = dontDistribute super."rake"; + "rakhana" = dontDistribute super."rakhana"; + "ralist" = dontDistribute super."ralist"; + "rallod" = dontDistribute super."rallod"; + "raml" = dontDistribute super."raml"; + "rand-vars" = dontDistribute super."rand-vars"; + "randfile" = dontDistribute super."randfile"; + "random-access-list" = dontDistribute super."random-access-list"; + "random-derive" = dontDistribute super."random-derive"; + "random-eff" = dontDistribute super."random-eff"; + "random-effin" = dontDistribute super."random-effin"; + "random-extras" = dontDistribute super."random-extras"; + "random-hypergeometric" = dontDistribute super."random-hypergeometric"; + "random-stream" = dontDistribute super."random-stream"; + "random-tree" = dontDistribute super."random-tree"; + "random-variates" = dontDistribute super."random-variates"; + "randomgen" = dontDistribute super."randomgen"; + "randproc" = dontDistribute super."randproc"; + "randsolid" = dontDistribute super."randsolid"; + "range-space" = dontDistribute super."range-space"; + "rangemin" = dontDistribute super."rangemin"; + "ranges" = dontDistribute super."ranges"; + "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; + "rate-limit" = dontDistribute super."rate-limit"; + "ratel" = dontDistribute super."ratel"; + "ratel-wai" = dontDistribute super."ratel-wai"; + "ratio-int" = dontDistribute super."ratio-int"; + "raven-haskell" = dontDistribute super."raven-haskell"; + "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "rawstring-qm" = dontDistribute super."rawstring-qm"; + "razom-text-util" = dontDistribute super."razom-text-util"; + "rbr" = dontDistribute super."rbr"; + "rclient" = dontDistribute super."rclient"; + "rcu" = dontDistribute super."rcu"; + "rdf4h" = dontDistribute super."rdf4h"; + "rdioh" = dontDistribute super."rdioh"; + "rdtsc" = dontDistribute super."rdtsc"; + "rdtsc-enolan" = dontDistribute super."rdtsc-enolan"; + "re2" = dontDistribute super."re2"; + "react-flux" = dontDistribute super."react-flux"; + "react-haskell" = dontDistribute super."react-haskell"; + "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"; + "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"; + "reedsolomon" = dontDistribute super."reedsolomon"; + "reenact" = dontDistribute super."reenact"; + "reexport-crypto-random" = dontDistribute super."reexport-crypto-random"; + "ref" = dontDistribute super."ref"; + "ref-mtl" = dontDistribute super."ref-mtl"; + "ref-tf" = dontDistribute super."ref-tf"; + "refcount" = dontDistribute super."refcount"; + "reference" = dontDistribute super."reference"; + "references" = dontDistribute super."references"; + "refh" = dontDistribute super."refh"; + "refined" = dontDistribute super."refined"; + "reflection-extras" = dontDistribute super."reflection-extras"; + "reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; + "reflex" = dontDistribute super."reflex"; + "reflex-animation" = dontDistribute super."reflex-animation"; + "reflex-dom" = dontDistribute super."reflex-dom"; + "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; + "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; + "regex-deriv" = dontDistribute super."regex-deriv"; + "regex-dfa" = dontDistribute super."regex-dfa"; + "regex-easy" = dontDistribute super."regex-easy"; + "regex-genex" = dontDistribute super."regex-genex"; + "regex-parsec" = dontDistribute super."regex-parsec"; + "regex-pderiv" = dontDistribute super."regex-pderiv"; + "regex-posix-unittest" = dontDistribute super."regex-posix-unittest"; + "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes"; + "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter"; + "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; + "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; + "regex-tre" = dontDistribute super."regex-tre"; + "regex-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"; + "regress" = dontDistribute super."regress"; + "regular" = dontDistribute super."regular"; + "regular-extras" = dontDistribute super."regular-extras"; + "regular-web" = dontDistribute super."regular-web"; + "regular-xmlpickler" = dontDistribute super."regular-xmlpickler"; + "reheat" = dontDistribute super."reheat"; + "rehoo" = dontDistribute super."rehoo"; + "rei" = dontDistribute super."rei"; + "reified-records" = dontDistribute super."reified-records"; + "reify" = dontDistribute super."reify"; + "relacion" = dontDistribute super."relacion"; + "relation" = dontDistribute super."relation"; + "relational-postgresql8" = dontDistribute super."relational-postgresql8"; + "relational-query" = dontDistribute super."relational-query"; + "relational-query-HDBC" = dontDistribute super."relational-query-HDBC"; + "relational-record" = dontDistribute super."relational-record"; + "relational-record-examples" = dontDistribute super."relational-record-examples"; + "relational-schemas" = dontDistribute super."relational-schemas"; + "relative-date" = dontDistribute super."relative-date"; + "relit" = dontDistribute super."relit"; + "rematch" = dontDistribute super."rematch"; + "rematch-text" = dontDistribute super."rematch-text"; + "remote" = dontDistribute super."remote"; + "remote-debugger" = dontDistribute super."remote-debugger"; + "remote-json" = dontDistribute super."remote-json"; + "remote-json-client" = dontDistribute super."remote-json-client"; + "remote-json-server" = dontDistribute super."remote-json-server"; + "remote-monad" = dontDistribute super."remote-monad"; + "remotion" = dontDistribute super."remotion"; + "renderable" = dontDistribute super."renderable"; + "reord" = dontDistribute super."reord"; + "reorderable" = dontDistribute super."reorderable"; + "repa-array" = dontDistribute super."repa-array"; + "repa-bytestring" = dontDistribute super."repa-bytestring"; + "repa-convert" = dontDistribute super."repa-convert"; + "repa-eval" = dontDistribute super."repa-eval"; + "repa-examples" = dontDistribute super."repa-examples"; + "repa-fftw" = dontDistribute super."repa-fftw"; + "repa-flow" = dontDistribute super."repa-flow"; + "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; + "repa-plugin" = dontDistribute super."repa-plugin"; + "repa-scalar" = dontDistribute super."repa-scalar"; + "repa-series" = dontDistribute super."repa-series"; + "repa-sndfile" = dontDistribute super."repa-sndfile"; + "repa-stream" = dontDistribute super."repa-stream"; + "repa-v4l2" = dontDistribute super."repa-v4l2"; + "repl" = dontDistribute super."repl"; + "repl-toolkit" = dontDistribute super."repl-toolkit"; + "repline" = dontDistribute super."repline"; + "repo-based-blog" = dontDistribute super."repo-based-blog"; + "repr" = dontDistribute super."repr"; + "repr-tree-syb" = dontDistribute super."repr-tree-syb"; + "representable-functors" = dontDistribute super."representable-functors"; + "representable-profunctors" = dontDistribute super."representable-profunctors"; + "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; + "request-monad" = dontDistribute super."request-monad"; + "reserve" = dontDistribute super."reserve"; + "resistor-cube" = dontDistribute super."resistor-cube"; + "resource-effect" = dontDistribute super."resource-effect"; + "resource-embed" = dontDistribute super."resource-embed"; + "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; + "resource-pool-monad" = dontDistribute super."resource-pool-monad"; + "resource-simple" = dontDistribute super."resource-simple"; + "respond" = dontDistribute super."respond"; + "rest-core" = doDistribute super."rest-core_0_37"; + "rest-example" = dontDistribute super."rest-example"; + "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "restful-snap" = dontDistribute super."restful-snap"; + "restricted-workers" = dontDistribute super."restricted-workers"; + "restyle" = dontDistribute super."restyle"; + "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb-model" = dontDistribute super."rethinkdb-model"; + "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retryer" = dontDistribute super."retryer"; + "revdectime" = dontDistribute super."revdectime"; + "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-geocoding" = dontDistribute super."reverse-geocoding"; + "reversi" = dontDistribute super."reversi"; + "rewrite" = dontDistribute super."rewrite"; + "rewriting" = dontDistribute super."rewriting"; + "rex" = dontDistribute super."rex"; + "rezoom" = dontDistribute super."rezoom"; + "rfc3339" = dontDistribute super."rfc3339"; + "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; + "richreports" = dontDistribute super."richreports"; + "riemann" = dontDistribute super."riemann"; + "riff" = dontDistribute super."riff"; + "ring-buffer" = dontDistribute super."ring-buffer"; + "riot" = dontDistribute super."riot"; + "ripple" = dontDistribute super."ripple"; + "ripple-federation" = dontDistribute super."ripple-federation"; + "risc386" = dontDistribute super."risc386"; + "rivers" = dontDistribute super."rivers"; + "rivet" = dontDistribute super."rivet"; + "rivet-core" = dontDistribute super."rivet-core"; + "rivet-migration" = dontDistribute super."rivet-migration"; + "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; + "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; + "rmonad" = dontDistribute super."rmonad"; + "rncryptor" = dontDistribute super."rncryptor"; + "rng-utils" = dontDistribute super."rng-utils"; + "robin" = dontDistribute super."robin"; + "robot" = dontDistribute super."robot"; + "robots-txt" = dontDistribute super."robots-txt"; + "rocksdb-haskell" = dontDistribute super."rocksdb-haskell"; + "roguestar" = dontDistribute super."roguestar"; + "roguestar-engine" = dontDistribute super."roguestar-engine"; + "roguestar-gl" = dontDistribute super."roguestar-gl"; + "roguestar-glut" = dontDistribute super."roguestar-glut"; + "rollbar" = dontDistribute super."rollbar"; + "roller" = dontDistribute super."roller"; + "rolling-queue" = dontDistribute super."rolling-queue"; + "roman-numerals" = dontDistribute super."roman-numerals"; + "romkan" = dontDistribute super."romkan"; + "roots" = dontDistribute super."roots"; + "rope" = dontDistribute super."rope"; + "rosa" = dontDistribute super."rosa"; + "rose-trie" = dontDistribute super."rose-trie"; + "roshask" = dontDistribute super."roshask"; + "rosso" = dontDistribute super."rosso"; + "rot13" = dontDistribute super."rot13"; + "rotating-log" = dontDistribute super."rotating-log"; + "rounding" = dontDistribute super."rounding"; + "roundtrip" = dontDistribute super."roundtrip"; + "roundtrip-aeson" = dontDistribute super."roundtrip-aeson"; + "roundtrip-string" = dontDistribute super."roundtrip-string"; + "roundtrip-xml" = dontDistribute super."roundtrip-xml"; + "route-generator" = dontDistribute super."route-generator"; + "route-planning" = dontDistribute super."route-planning"; + "rowrecord" = dontDistribute super."rowrecord"; + "rpc" = dontDistribute super."rpc"; + "rpc-framework" = dontDistribute super."rpc-framework"; + "rpf" = dontDistribute super."rpf"; + "rpm" = dontDistribute super."rpm"; + "rsagl" = dontDistribute super."rsagl"; + "rsagl-frp" = dontDistribute super."rsagl-frp"; + "rsagl-math" = dontDistribute super."rsagl-math"; + "rspp" = dontDistribute super."rspp"; + "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; + "rss2irc" = dontDistribute super."rss2irc"; + "rtcm" = dontDistribute super."rtcm"; + "rtld" = dontDistribute super."rtld"; + "rtlsdr" = dontDistribute super."rtlsdr"; + "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; + "rtorrent-state" = dontDistribute super."rtorrent-state"; + "rubberband" = dontDistribute super."rubberband"; + "ruby-marshal" = dontDistribute super."ruby-marshal"; + "ruby-qq" = dontDistribute super."ruby-qq"; + "ruff" = dontDistribute super."ruff"; + "ruler" = dontDistribute super."ruler"; + "ruler-core" = dontDistribute super."ruler-core"; + "rungekutta" = dontDistribute super."rungekutta"; + "runghc" = dontDistribute super."runghc"; + "rwlock" = dontDistribute super."rwlock"; + "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; + "safe-access" = dontDistribute super."safe-access"; + "safe-failure" = dontDistribute super."safe-failure"; + "safe-failure-cme" = dontDistribute super."safe-failure-cme"; + "safe-freeze" = dontDistribute super."safe-freeze"; + "safe-globals" = dontDistribute super."safe-globals"; + "safe-lazy-io" = dontDistribute super."safe-lazy-io"; + "safe-length" = dontDistribute super."safe-length"; + "safe-plugins" = dontDistribute super."safe-plugins"; + "safe-printf" = dontDistribute super."safe-printf"; + "safeint" = dontDistribute super."safeint"; + "safer-file-handles" = dontDistribute super."safer-file-handles"; + "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; + "safer-file-handles-text" = dontDistribute super."safer-file-handles-text"; + "saferoute" = dontDistribute super."saferoute"; + "sai-shape-syb" = dontDistribute super."sai-shape-syb"; + "saltine" = dontDistribute super."saltine"; + "saltine-quickcheck" = dontDistribute super."saltine-quickcheck"; + "salvia" = dontDistribute super."salvia"; + "salvia-demo" = dontDistribute super."salvia-demo"; + "salvia-extras" = dontDistribute super."salvia-extras"; + "salvia-protocol" = dontDistribute super."salvia-protocol"; + "salvia-sessions" = dontDistribute super."salvia-sessions"; + "salvia-websocket" = dontDistribute super."salvia-websocket"; + "sample-frame" = dontDistribute super."sample-frame"; + "sample-frame-np" = dontDistribute super."sample-frame-np"; + "sampling" = dontDistribute super."sampling"; + "samtools" = dontDistribute super."samtools"; + "samtools-conduit" = dontDistribute super."samtools-conduit"; + "samtools-enumerator" = dontDistribute super."samtools-enumerator"; + "samtools-iteratee" = dontDistribute super."samtools-iteratee"; + "sandlib" = dontDistribute super."sandlib"; + "sarasvati" = dontDistribute super."sarasvati"; + "sasl" = dontDistribute super."sasl"; + "sat" = dontDistribute super."sat"; + "sat-micro-hs" = dontDistribute super."sat-micro-hs"; + "satchmo" = dontDistribute super."satchmo"; + "satchmo-backends" = dontDistribute super."satchmo-backends"; + "satchmo-examples" = dontDistribute super."satchmo-examples"; + "satchmo-funsat" = dontDistribute super."satchmo-funsat"; + "satchmo-minisat" = dontDistribute super."satchmo-minisat"; + "satchmo-toysat" = dontDistribute super."satchmo-toysat"; + "sbp" = dontDistribute super."sbp"; + "sbvPlugin" = dontDistribute super."sbvPlugin"; + "sc3-rdu" = dontDistribute super."sc3-rdu"; + "scalable-server" = dontDistribute super."scalable-server"; + "scaleimage" = dontDistribute super."scaleimage"; + "scalp-webhooks" = dontDistribute super."scalp-webhooks"; + "scalpel" = doDistribute super."scalpel_0_2_1_1"; + "scan" = dontDistribute super."scan"; + "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scat" = dontDistribute super."scat"; + "scc" = dontDistribute super."scc"; + "scenegraph" = dontDistribute super."scenegraph"; + "scgi" = dontDistribute super."scgi"; + "schedevr" = dontDistribute super."schedevr"; + "schedule-planner" = dontDistribute super."schedule-planner"; + "schedyield" = dontDistribute super."schedyield"; + "scholdoc" = dontDistribute super."scholdoc"; + "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc"; + "scholdoc-texmath" = dontDistribute super."scholdoc-texmath"; + "scholdoc-types" = dontDistribute super."scholdoc-types"; + "schonfinkeling" = dontDistribute super."schonfinkeling"; + "sci-ratio" = dontDistribute super."sci-ratio"; + "science-constants" = dontDistribute super."science-constants"; + "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scion" = dontDistribute super."scion"; + "scion-browser" = dontDistribute super."scion-browser"; + "scons2dot" = dontDistribute super."scons2dot"; + "scope" = dontDistribute super."scope"; + "scope-cairo" = dontDistribute super."scope-cairo"; + "scottish" = dontDistribute super."scottish"; + "scotty" = doDistribute super."scotty_0_10_2"; + "scotty-binding-play" = dontDistribute super."scotty-binding-play"; + "scotty-blaze" = dontDistribute super."scotty-blaze"; + "scotty-cookie" = dontDistribute super."scotty-cookie"; + "scotty-fay" = dontDistribute super."scotty-fay"; + "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-rest" = dontDistribute super."scotty-rest"; + "scotty-session" = dontDistribute super."scotty-session"; + "scotty-tls" = dontDistribute super."scotty-tls"; + "scp-streams" = dontDistribute super."scp-streams"; + "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrobble" = dontDistribute super."scrobble"; + "scroll" = dontDistribute super."scroll"; + "scrz" = dontDistribute super."scrz"; + "scyther-proof" = dontDistribute super."scyther-proof"; + "sde-solver" = dontDistribute super."sde-solver"; + "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; + "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; + "sdl2-compositor" = dontDistribute super."sdl2-compositor"; + "sdl2-image" = dontDistribute super."sdl2-image"; + "sdl2-ttf" = dontDistribute super."sdl2-ttf"; + "sdnv" = dontDistribute super."sdnv"; + "sdr" = dontDistribute super."sdr"; + "seacat" = dontDistribute super."seacat"; + "seal-module" = dontDistribute super."seal-module"; + "search" = dontDistribute super."search"; + "sec" = dontDistribute super."sec"; + "secdh" = dontDistribute super."secdh"; + "seclib" = dontDistribute super."seclib"; + "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; + "secp256k1" = dontDistribute super."secp256k1"; + "secret-santa" = dontDistribute super."secret-santa"; + "secret-sharing" = dontDistribute super."secret-sharing"; + "secrm" = dontDistribute super."secrm"; + "secure-sockets" = dontDistribute super."secure-sockets"; + "sednaDBXML" = dontDistribute super."sednaDBXML"; + "select" = dontDistribute super."select"; + "selectors" = dontDistribute super."selectors"; + "selenium" = dontDistribute super."selenium"; + "selenium-server" = dontDistribute super."selenium-server"; + "selfrestart" = dontDistribute super."selfrestart"; + "selinux" = dontDistribute super."selinux"; + "semaphore-plus" = dontDistribute super."semaphore-plus"; + "semi-iso" = dontDistribute super."semi-iso"; + "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; + "semigroups-actions" = dontDistribute super."semigroups-actions"; + "semiring" = dontDistribute super."semiring"; + "semiring-simple" = dontDistribute super."semiring-simple"; + "semver-range" = dontDistribute super."semver-range"; + "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; + "sensenet" = dontDistribute super."sensenet"; + "sentry" = dontDistribute super."sentry"; + "senza" = dontDistribute super."senza"; + "separated" = dontDistribute super."separated"; + "seqaid" = dontDistribute super."seqaid"; + "seqid" = dontDistribute super."seqid"; + "seqid-streams" = dontDistribute super."seqid-streams"; + "seqloc-datafiles" = dontDistribute super."seqloc-datafiles"; + "sequence" = dontDistribute super."sequence"; + "sequent-core" = dontDistribute super."sequent-core"; + "sequential-index" = dontDistribute super."sequential-index"; + "sequor" = dontDistribute super."sequor"; + "serial" = dontDistribute super."serial"; + "serial-test-generators" = dontDistribute super."serial-test-generators"; + "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; + "serv-wai" = dontDistribute super."serv-wai"; + "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; + "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; + "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-js" = dontDistribute super."servant-js"; + "servant-lucid" = dontDistribute super."servant-lucid"; + "servant-mock" = dontDistribute super."servant-mock"; + "servant-pandoc" = dontDistribute super."servant-pandoc"; + "servant-pool" = dontDistribute super."servant-pool"; + "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-response" = dontDistribute super."servant-response"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; + "sessions" = dontDistribute super."sessions"; + "set-cover" = dontDistribute super."set-cover"; + "set-extra" = doDistribute super."set-extra_1_3_2"; + "set-with" = dontDistribute super."set-with"; + "setdown" = dontDistribute super."setdown"; + "setgame" = dontDistribute super."setgame"; + "setops" = dontDistribute super."setops"; + "setters" = dontDistribute super."setters"; + "settings" = dontDistribute super."settings"; + "sexp" = dontDistribute super."sexp"; + "sexp-grammar" = dontDistribute super."sexp-grammar"; + "sexp-show" = dontDistribute super."sexp-show"; + "sexpr" = dontDistribute super."sexpr"; + "sext" = dontDistribute super."sext"; + "sfml-audio" = dontDistribute super."sfml-audio"; + "sfmt" = dontDistribute super."sfmt"; + "sgd" = dontDistribute super."sgd"; + "sgf" = dontDistribute super."sgf"; + "sgrep" = dontDistribute super."sgrep"; + "sha-streams" = dontDistribute super."sha-streams"; + "shadower" = dontDistribute super."shadower"; + "shadowsocks" = dontDistribute super."shadowsocks"; + "shady-gen" = dontDistribute super."shady-gen"; + "shady-graphics" = dontDistribute super."shady-graphics"; + "shake-cabal-build" = dontDistribute super."shake-cabal-build"; + "shake-extras" = dontDistribute super."shake-extras"; + "shake-minify" = dontDistribute super."shake-minify"; + "shake-pack" = dontDistribute super."shake-pack"; + "shake-persist" = dontDistribute super."shake-persist"; + "shaker" = dontDistribute super."shaker"; + "shakespeare-babel" = dontDistribute super."shakespeare-babel"; + "shakespeare-css" = dontDistribute super."shakespeare-css"; + "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; + "shakespeare-js" = dontDistribute super."shakespeare-js"; + "shakespeare-text" = dontDistribute super."shakespeare-text"; + "shana" = dontDistribute super."shana"; + "shapefile" = dontDistribute super."shapefile"; + "shapely-data" = dontDistribute super."shapely-data"; + "sharc-timbre" = dontDistribute super."sharc-timbre"; + "shared-buffer" = dontDistribute super."shared-buffer"; + "shared-fields" = dontDistribute super."shared-fields"; + "shared-memory" = dontDistribute super."shared-memory"; + "sharedio" = dontDistribute super."sharedio"; + "she" = dontDistribute super."she"; + "shelduck" = dontDistribute super."shelduck"; + "shell-escape" = dontDistribute super."shell-escape"; + "shell-monad" = dontDistribute super."shell-monad"; + "shell-pipe" = dontDistribute super."shell-pipe"; + "shellish" = dontDistribute super."shellish"; + "shellmate" = dontDistribute super."shellmate"; + "shelly-extra" = dontDistribute super."shelly-extra"; + "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" = dontDistribute super."simple-log"; + "simple-log-syslog" = dontDistribute super."simple-log-syslog"; + "simple-neural-networks" = dontDistribute super."simple-neural-networks"; + "simple-nix" = dontDistribute super."simple-nix"; + "simple-observer" = dontDistribute super."simple-observer"; + "simple-pascal" = dontDistribute super."simple-pascal"; + "simple-pipe" = dontDistribute super."simple-pipe"; + "simple-rope" = dontDistribute super."simple-rope"; + "simple-server" = dontDistribute super."simple-server"; + "simple-sessions" = dontDistribute super."simple-sessions"; + "simple-sql-parser" = dontDistribute super."simple-sql-parser"; + "simple-stacked-vm" = dontDistribute super."simple-stacked-vm"; + "simple-tabular" = dontDistribute super."simple-tabular"; + "simple-vec3" = dontDistribute super."simple-vec3"; + "simpleargs" = dontDistribute super."simpleargs"; + "simpleirc" = dontDistribute super."simpleirc"; + "simpleirc-lens" = dontDistribute super."simpleirc-lens"; + "simplenote" = dontDistribute super."simplenote"; + "simpleprelude" = dontDistribute super."simpleprelude"; + "simplesmtpclient" = dontDistribute super."simplesmtpclient"; + "simplessh" = dontDistribute super."simplessh"; + "simplest-sqlite" = dontDistribute super."simplest-sqlite"; + "simplex" = dontDistribute super."simplex"; + "simplex-basic" = dontDistribute super."simplex-basic"; + "simseq" = dontDistribute super."simseq"; + "simtreelo" = dontDistribute super."simtreelo"; + "sindre" = dontDistribute super."sindre"; + "singleton-nats" = dontDistribute super."singleton-nats"; + "sink" = dontDistribute super."sink"; + "sirkel" = dontDistribute super."sirkel"; + "sitemap" = dontDistribute super."sitemap"; + "sized" = dontDistribute super."sized"; + "sized-types" = dontDistribute super."sized-types"; + "sized-vector" = dontDistribute super."sized-vector"; + "sizes" = dontDistribute super."sizes"; + "sjsp" = dontDistribute super."sjsp"; + "skeleton" = dontDistribute super."skeleton"; + "skell" = dontDistribute super."skell"; + "skemmtun" = dontDistribute super."skemmtun"; + "skype4hs" = dontDistribute super."skype4hs"; + "skypelogexport" = dontDistribute super."skypelogexport"; + "slack" = dontDistribute super."slack"; + "slack-api" = dontDistribute super."slack-api"; + "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "sleep" = dontDistribute super."sleep"; + "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; + "slidemews" = dontDistribute super."slidemews"; + "sloane" = dontDistribute super."sloane"; + "slot-lambda" = dontDistribute super."slot-lambda"; + "sloth" = dontDistribute super."sloth"; + "smallarray" = dontDistribute super."smallarray"; + "smallcheck-laws" = dontDistribute super."smallcheck-laws"; + "smallcheck-lens" = dontDistribute super."smallcheck-lens"; + "smallcheck-series" = dontDistribute super."smallcheck-series"; + "smallpt-hs" = dontDistribute super."smallpt-hs"; + "smallstring" = dontDistribute super."smallstring"; + "smaoin" = dontDistribute super."smaoin"; + "smartGroup" = dontDistribute super."smartGroup"; + "smartcheck" = dontDistribute super."smartcheck"; + "smartconstructor" = dontDistribute super."smartconstructor"; + "smartword" = dontDistribute super."smartword"; + "sme" = dontDistribute super."sme"; + "smt-lib" = dontDistribute super."smt-lib"; + "smtlib2" = dontDistribute super."smtlib2"; + "smtp-mail-ng" = dontDistribute super."smtp-mail-ng"; + "smtp2mta" = dontDistribute super."smtp2mta"; + "smtps-gmail" = dontDistribute super."smtps-gmail"; + "snake-game" = dontDistribute super."snake-game"; + "snap-accept" = dontDistribute super."snap-accept"; + "snap-app" = dontDistribute super."snap-app"; + "snap-auth-cli" = dontDistribute super."snap-auth-cli"; + "snap-blaze" = dontDistribute super."snap-blaze"; + "snap-blaze-clay" = dontDistribute super."snap-blaze-clay"; + "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities"; + "snap-cors" = dontDistribute super."snap-cors"; + "snap-elm" = dontDistribute super."snap-elm"; + "snap-error-collector" = dontDistribute super."snap-error-collector"; + "snap-extras" = dontDistribute super."snap-extras"; + "snap-language" = dontDistribute super."snap-language"; + "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic"; + "snap-loader-static" = dontDistribute super."snap-loader-static"; + "snap-predicates" = dontDistribute super."snap-predicates"; + "snap-testing" = dontDistribute super."snap-testing"; + "snap-utils" = dontDistribute super."snap-utils"; + "snap-web-routes" = dontDistribute super."snap-web-routes"; + "snaplet-acid-state" = dontDistribute super."snaplet-acid-state"; + "snaplet-actionlog" = dontDistribute super."snaplet-actionlog"; + "snaplet-amqp" = dontDistribute super."snaplet-amqp"; + "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid"; + "snaplet-coffee" = dontDistribute super."snaplet-coffee"; + "snaplet-css-min" = dontDistribute super."snaplet-css-min"; + "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; + "snaplet-hasql" = dontDistribute super."snaplet-hasql"; + "snaplet-haxl" = dontDistribute super."snaplet-haxl"; + "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; + "snaplet-hslogger" = dontDistribute super."snaplet-hslogger"; + "snaplet-i18n" = dontDistribute super."snaplet-i18n"; + "snaplet-influxdb" = dontDistribute super."snaplet-influxdb"; + "snaplet-lss" = dontDistribute super."snaplet-lss"; + "snaplet-mandrill" = dontDistribute super."snaplet-mandrill"; + "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB"; + "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic"; + "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple"; + "snaplet-oauth" = dontDistribute super."snaplet-oauth"; + "snaplet-persistent" = dontDistribute super."snaplet-persistent"; + "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple"; + "snaplet-postmark" = dontDistribute super."snaplet-postmark"; + "snaplet-purescript" = dontDistribute super."snaplet-purescript"; + "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha"; + "snaplet-redis" = dontDistribute super."snaplet-redis"; + "snaplet-redson" = dontDistribute super."snaplet-redson"; + "snaplet-rest" = dontDistribute super."snaplet-rest"; + "snaplet-riak" = dontDistribute super."snaplet-riak"; + "snaplet-sass" = dontDistribute super."snaplet-sass"; + "snaplet-sedna" = dontDistribute super."snaplet-sedna"; + "snaplet-ses-html" = dontDistribute super."snaplet-ses-html"; + "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple"; + "snaplet-stripe" = dontDistribute super."snaplet-stripe"; + "snaplet-tasks" = dontDistribute super."snaplet-tasks"; + "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions"; + "snaplet-wordpress" = dontDistribute super."snaplet-wordpress"; + "snappy" = dontDistribute super."snappy"; + "snappy-conduit" = dontDistribute super."snappy-conduit"; + "snappy-framing" = dontDistribute super."snappy-framing"; + "snappy-iteratee" = dontDistribute super."snappy-iteratee"; + "sndfile-enumerators" = dontDistribute super."sndfile-enumerators"; + "sneakyterm" = dontDistribute super."sneakyterm"; + "sneathlane-haste" = dontDistribute super."sneathlane-haste"; + "snippet-extractor" = dontDistribute super."snippet-extractor"; + "snm" = dontDistribute super."snm"; + "snow-white" = dontDistribute super."snow-white"; + "snowball" = dontDistribute super."snowball"; + "snowglobe" = dontDistribute super."snowglobe"; + "sock2stream" = dontDistribute super."sock2stream"; + "sockaddr" = dontDistribute super."sockaddr"; + "socket-activation" = dontDistribute super."socket-activation"; + "socket-sctp" = dontDistribute super."socket-sctp"; + "socketio" = dontDistribute super."socketio"; + "socketson" = dontDistribute super."socketson"; + "soegtk" = dontDistribute super."soegtk"; + "sonic-visualiser" = dontDistribute super."sonic-visualiser"; + "sophia" = dontDistribute super."sophia"; + "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; + "sorted" = dontDistribute super."sorted"; + "sorting" = dontDistribute super."sorting"; + "sorty" = dontDistribute super."sorty"; + "sound-collage" = dontDistribute super."sound-collage"; + "sounddelay" = dontDistribute super."sounddelay"; + "source-code-server" = dontDistribute super."source-code-server"; + "sousit" = dontDistribute super."sousit"; + "sox" = dontDistribute super."sox"; + "soxlib" = dontDistribute super."soxlib"; + "soyuz" = dontDistribute super."soyuz"; + "spacefill" = dontDistribute super."spacefill"; + "spacepart" = dontDistribute super."spacepart"; + "spaceprobe" = dontDistribute super."spaceprobe"; + "spanout" = dontDistribute super."spanout"; + "sparse" = dontDistribute super."sparse"; + "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; + "sparsebit" = dontDistribute super."sparsebit"; + "sparsecheck" = dontDistribute super."sparsecheck"; + "sparser" = dontDistribute super."sparser"; + "spata" = dontDistribute super."spata"; + "spatial-math" = dontDistribute super."spatial-math"; + "spawn" = dontDistribute super."spawn"; + "spe" = dontDistribute super."spe"; + "special-functors" = dontDistribute super."special-functors"; + "special-keys" = dontDistribute super."special-keys"; + "specialize-th" = dontDistribute super."specialize-th"; + "species" = dontDistribute super."species"; + "speculation-transformers" = dontDistribute super."speculation-transformers"; + "spelling-suggest" = dontDistribute super."spelling-suggest"; + "sphero" = dontDistribute super."sphero"; + "sphinx-cli" = dontDistribute super."sphinx-cli"; + "spice" = dontDistribute super."spice"; + "spike" = dontDistribute super."spike"; + "spine" = dontDistribute super."spine"; + "spir-v" = dontDistribute super."spir-v"; + "splay" = dontDistribute super."splay"; + "splaytree" = dontDistribute super."splaytree"; + "spline3" = dontDistribute super."spline3"; + "splines" = dontDistribute super."splines"; + "split-channel" = dontDistribute super."split-channel"; + "split-record" = dontDistribute super."split-record"; + "split-tchan" = dontDistribute super."split-tchan"; + "splitter" = dontDistribute super."splitter"; + "splot" = dontDistribute super."splot"; + "spool" = dontDistribute super."spool"; + "spoonutil" = dontDistribute super."spoonutil"; + "spoty" = dontDistribute super."spoty"; + "spreadsheet" = dontDistribute super."spreadsheet"; + "spritz" = dontDistribute super."spritz"; + "spsa" = dontDistribute super."spsa"; + "spy" = dontDistribute super."spy"; + "sql-simple" = dontDistribute super."sql-simple"; + "sql-simple-mysql" = dontDistribute super."sql-simple-mysql"; + "sql-simple-pool" = dontDistribute super."sql-simple-pool"; + "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql"; + "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite"; + "sql-words" = dontDistribute super."sql-words"; + "sqlite" = dontDistribute super."sqlite"; + "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed"; + "sqlvalue-list" = dontDistribute super."sqlvalue-list"; + "squeeze" = dontDistribute super."squeeze"; + "sr-extra" = dontDistribute super."sr-extra"; + "srcinst" = dontDistribute super."srcinst"; + "srec" = dontDistribute super."srec"; + "sscgi" = dontDistribute super."sscgi"; + "ssh" = dontDistribute super."ssh"; + "sshd-lint" = dontDistribute super."sshd-lint"; + "sshtun" = dontDistribute super."sshtun"; + "sssp" = dontDistribute super."sssp"; + "sstable" = dontDistribute super."sstable"; + "ssv" = dontDistribute super."ssv"; + "stable-heap" = dontDistribute super."stable-heap"; + "stable-maps" = dontDistribute super."stable-maps"; + "stable-marriage" = dontDistribute super."stable-marriage"; + "stable-memo" = dontDistribute super."stable-memo"; + "stable-tree" = dontDistribute super."stable-tree"; + "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; + "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; + "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; + "standalone-haddock" = dontDistribute super."standalone-haddock"; + "star-to-star" = dontDistribute super."star-to-star"; + "star-to-star-contra" = dontDistribute super."star-to-star-contra"; + "starling" = dontDistribute super."starling"; + "starrover2" = dontDistribute super."starrover2"; + "stash" = dontDistribute super."stash"; + "state" = dontDistribute super."state"; + "state-record" = dontDistribute super."state-record"; + "statechart" = dontDistribute super."statechart"; + "stateful-mtl" = dontDistribute super."stateful-mtl"; + "statethread" = dontDistribute super."statethread"; + "statgrab" = dontDistribute super."statgrab"; + "static-hash" = dontDistribute super."static-hash"; + "static-resources" = dontDistribute super."static-resources"; + "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; + "statistics-fusion" = dontDistribute super."statistics-fusion"; + "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; + "stats" = dontDistribute super."stats"; + "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; + "statsd-datadog" = dontDistribute super."statsd-datadog"; + "statvfs" = dontDistribute super."statvfs"; + "stb-image" = dontDistribute super."stb-image"; + "stb-truetype" = dontDistribute super."stb-truetype"; + "stdata" = dontDistribute super."stdata"; + "stdf" = dontDistribute super."stdf"; + "steambrowser" = dontDistribute super."steambrowser"; + "steeloverseer" = dontDistribute super."steeloverseer"; + "stemmer" = dontDistribute super."stemmer"; + "step-function" = dontDistribute super."step-function"; + "stepwise" = dontDistribute super."stepwise"; + "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; + "stitch" = dontDistribute super."stitch"; + "stm-channelize" = dontDistribute super."stm-channelize"; + "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; + "stm-firehose" = dontDistribute super."stm-firehose"; + "stm-io-hooks" = dontDistribute super."stm-io-hooks"; + "stm-lifted" = dontDistribute super."stm-lifted"; + "stm-linkedlist" = dontDistribute super."stm-linkedlist"; + "stm-orelse-io" = dontDistribute super."stm-orelse-io"; + "stm-promise" = dontDistribute super."stm-promise"; + "stm-queue-extras" = dontDistribute super."stm-queue-extras"; + "stm-sbchan" = dontDistribute super."stm-sbchan"; + "stm-split" = dontDistribute super."stm-split"; + "stm-tlist" = dontDistribute super."stm-tlist"; + "stmcontrol" = dontDistribute super."stmcontrol"; + "stomp-conduit" = dontDistribute super."stomp-conduit"; + "stomp-patterns" = dontDistribute super."stomp-patterns"; + "stomp-queue" = dontDistribute super."stomp-queue"; + "stompl" = dontDistribute super."stompl"; + "stopwatch" = dontDistribute super."stopwatch"; + "storable" = dontDistribute super."storable"; + "storable-record" = dontDistribute super."storable-record"; + "storable-static-array" = dontDistribute super."storable-static-array"; + "storable-tuple" = dontDistribute super."storable-tuple"; + "storablevector" = dontDistribute super."storablevector"; + "storablevector-carray" = dontDistribute super."storablevector-carray"; + "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; + "str" = dontDistribute super."str"; + "stratum-tool" = dontDistribute super."stratum-tool"; + "stream-fusion" = dontDistribute super."stream-fusion"; + "stream-monad" = dontDistribute super."stream-monad"; + "streamed" = dontDistribute super."streamed"; + "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; + "streaming-utils" = dontDistribute super."streaming-utils"; + "streaming-wai" = dontDistribute super."streaming-wai"; + "strict-base-types" = doDistribute super."strict-base-types_0_4_0"; + "strict-concurrency" = dontDistribute super."strict-concurrency"; + "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin"; + "strict-identity" = dontDistribute super."strict-identity"; + "strict-io" = dontDistribute super."strict-io"; + "strictify" = dontDistribute super."strictify"; + "strictly" = dontDistribute super."strictly"; + "string" = dontDistribute super."string"; + "string-conv" = dontDistribute super."string-conv"; + "string-convert" = dontDistribute super."string-convert"; + "string-quote" = dontDistribute super."string-quote"; + "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; + "stringlike" = dontDistribute super."stringlike"; + "stringprep" = dontDistribute super."stringprep"; + "strings" = dontDistribute super."strings"; + "stringtable-atom" = dontDistribute super."stringtable-atom"; + "strio" = dontDistribute super."strio"; + "stripe" = dontDistribute super."stripe"; + "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_2"; + "strive" = dontDistribute super."strive"; + "strptime" = dontDistribute super."strptime"; + "structs" = dontDistribute super."structs"; + "structural-induction" = dontDistribute super."structural-induction"; + "structured-haskell-mode" = dontDistribute super."structured-haskell-mode"; + "structured-mongoDB" = dontDistribute super."structured-mongoDB"; + "structures" = dontDistribute super."structures"; + "stunclient" = dontDistribute super."stunclient"; + "stunts" = dontDistribute super."stunts"; + "stylized" = dontDistribute super."stylized"; + "sub-state" = dontDistribute super."sub-state"; + "subhask" = dontDistribute super."subhask"; + "subleq-toolchain" = dontDistribute super."subleq-toolchain"; + "subnet" = dontDistribute super."subnet"; + "subtitleParser" = dontDistribute super."subtitleParser"; + "subtitles" = dontDistribute super."subtitles"; + "suffixarray" = dontDistribute super."suffixarray"; + "suffixtree" = dontDistribute super."suffixtree"; + "sugarhaskell" = dontDistribute super."sugarhaskell"; + "suitable" = dontDistribute super."suitable"; + "sump" = dontDistribute super."sump"; + "sundown" = dontDistribute super."sundown"; + "sunlight" = dontDistribute super."sunlight"; + "sunroof-compiler" = dontDistribute super."sunroof-compiler"; + "sunroof-examples" = dontDistribute super."sunroof-examples"; + "sunroof-server" = dontDistribute super."sunroof-server"; + "super-user-spark" = dontDistribute super."super-user-spark"; + "supercollider-ht" = dontDistribute super."supercollider-ht"; + "supercollider-midi" = dontDistribute super."supercollider-midi"; + "superdoc" = dontDistribute super."superdoc"; + "supero" = dontDistribute super."supero"; + "supervisor" = dontDistribute super."supervisor"; + "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; + "svg2q" = dontDistribute super."svg2q"; + "svgcairo" = dontDistribute super."svgcairo"; + "svgutils" = dontDistribute super."svgutils"; + "svm" = dontDistribute super."svm"; + "svm-light-utils" = dontDistribute super."svm-light-utils"; + "svm-simple" = dontDistribute super."svm-simple"; + "svndump" = dontDistribute super."svndump"; + "swagger2" = doDistribute super."swagger2_1_2_1"; + "swapper" = dontDistribute super."swapper"; + "swearjure" = dontDistribute super."swearjure"; + "swf" = dontDistribute super."swf"; + "swift-lda" = dontDistribute super."swift-lda"; + "swish" = dontDistribute super."swish"; + "sws" = dontDistribute super."sws"; + "syb-extras" = dontDistribute super."syb-extras"; + "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; + "sylvia" = dontDistribute super."sylvia"; + "sym" = dontDistribute super."sym"; + "sym-plot" = dontDistribute super."sym-plot"; + "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; + "sync" = dontDistribute super."sync"; + "synchronous-channels" = dontDistribute super."synchronous-channels"; + "syncthing-hs" = dontDistribute super."syncthing-hs"; + "synt" = dontDistribute super."synt"; + "syntactic" = dontDistribute super."syntactic"; + "syntactical" = dontDistribute super."syntactical"; + "syntax" = dontDistribute super."syntax"; + "syntax-attoparsec" = dontDistribute super."syntax-attoparsec"; + "syntax-example" = dontDistribute super."syntax-example"; + "syntax-example-json" = dontDistribute super."syntax-example-json"; + "syntax-pretty" = dontDistribute super."syntax-pretty"; + "syntax-printer" = dontDistribute super."syntax-printer"; + "syntax-trees" = dontDistribute super."syntax-trees"; + "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn"; + "synthesizer" = dontDistribute super."synthesizer"; + "synthesizer-alsa" = dontDistribute super."synthesizer-alsa"; + "synthesizer-core" = dontDistribute super."synthesizer-core"; + "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional"; + "synthesizer-filter" = dontDistribute super."synthesizer-filter"; + "synthesizer-inference" = dontDistribute super."synthesizer-inference"; + "synthesizer-llvm" = dontDistribute super."synthesizer-llvm"; + "synthesizer-midi" = dontDistribute super."synthesizer-midi"; + "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient"; + "sys-process" = dontDistribute super."sys-process"; + "system-canonicalpath" = dontDistribute super."system-canonicalpath"; + "system-command" = dontDistribute super."system-command"; + "system-gpio" = dontDistribute super."system-gpio"; + "system-inotify" = dontDistribute super."system-inotify"; + "system-lifted" = dontDistribute super."system-lifted"; + "system-random-effect" = dontDistribute super."system-random-effect"; + "system-time-monotonic" = dontDistribute super."system-time-monotonic"; + "system-util" = dontDistribute super."system-util"; + "system-uuid" = dontDistribute super."system-uuid"; + "systemd" = dontDistribute super."systemd"; + "t-regex" = dontDistribute super."t-regex"; + "ta" = dontDistribute super."ta"; + "table" = dontDistribute super."table"; + "table-tennis" = dontDistribute super."table-tennis"; + "tableaux" = dontDistribute super."tableaux"; + "tables" = dontDistribute super."tables"; + "tablestorage" = dontDistribute super."tablestorage"; + "tabloid" = dontDistribute super."tabloid"; + "taffybar" = dontDistribute super."taffybar"; + "tag-bits" = dontDistribute super."tag-bits"; + "tag-stream" = dontDistribute super."tag-stream"; + "tagchup" = dontDistribute super."tagchup"; + "tagged-exception-core" = dontDistribute super."tagged-exception-core"; + "tagged-list" = dontDistribute super."tagged-list"; + "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; + "tagged-transformer" = dontDistribute super."tagged-transformer"; + "tagging" = dontDistribute super."tagging"; + "taggy" = dontDistribute super."taggy"; + "taggy-lens" = dontDistribute super."taggy-lens"; + "taglib" = dontDistribute super."taglib"; + "taglib-api" = dontDistribute super."taglib-api"; + "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "takahashi" = dontDistribute super."takahashi"; + "takusen-oracle" = dontDistribute super."takusen-oracle"; + "tamarin-prover" = dontDistribute super."tamarin-prover"; + "tamarin-prover-term" = dontDistribute super."tamarin-prover-term"; + "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; + "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; + "tamper" = dontDistribute super."tamper"; + "target" = dontDistribute super."target"; + "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; + "taskpool" = dontDistribute super."taskpool"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; + "tasty-integrate" = dontDistribute super."tasty-integrate"; + "tasty-laws" = dontDistribute super."tasty-laws"; + "tasty-lens" = dontDistribute super."tasty-lens"; + "tasty-program" = dontDistribute super."tasty-program"; + "tateti-tateti" = dontDistribute super."tateti-tateti"; + "tau" = dontDistribute super."tau"; + "tbox" = dontDistribute super."tbox"; + "tcache-AWS" = dontDistribute super."tcache-AWS"; + "tccli" = dontDistribute super."tccli"; + "tce-conf" = dontDistribute super."tce-conf"; + "tconfig" = dontDistribute super."tconfig"; + "tcp" = dontDistribute super."tcp"; + "tdd-util" = dontDistribute super."tdd-util"; + "tdoc" = dontDistribute super."tdoc"; + "teams" = dontDistribute super."teams"; + "teeth" = dontDistribute super."teeth"; + "telegram" = dontDistribute super."telegram"; + "telegram-api" = dontDistribute super."telegram-api"; + "teleport" = dontDistribute super."teleport"; + "template-default" = dontDistribute super."template-default"; + "template-haskell-util" = dontDistribute super."template-haskell-util"; + "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; + "templatepg" = dontDistribute super."templatepg"; + "templater" = dontDistribute super."templater"; + "tempodb" = dontDistribute super."tempodb"; + "temporal-csound" = dontDistribute super."temporal-csound"; + "temporal-media" = dontDistribute super."temporal-media"; + "temporal-music-notation" = dontDistribute super."temporal-music-notation"; + "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo"; + "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western"; + "temporary-resourcet" = dontDistribute super."temporary-resourcet"; + "tempus" = dontDistribute super."tempus"; + "tempus-fugit" = dontDistribute super."tempus-fugit"; + "tensor" = dontDistribute super."tensor"; + "term-rewriting" = dontDistribute super."term-rewriting"; + "termbox-bindings" = dontDistribute super."termbox-bindings"; + "termination-combinators" = dontDistribute super."termination-combinators"; + "terminfo" = doDistribute super."terminfo_0_4_0_2"; + "terminfo-hs" = dontDistribute super."terminfo-hs"; + "termplot" = dontDistribute super."termplot"; + "terntup" = dontDistribute super."terntup"; + "terrahs" = dontDistribute super."terrahs"; + "tersmu" = dontDistribute super."tersmu"; + "test-framework-doctest" = dontDistribute super."test-framework-doctest"; + "test-framework-golden" = dontDistribute super."test-framework-golden"; + "test-framework-program" = dontDistribute super."test-framework-program"; + "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck"; + "test-framework-sandbox" = dontDistribute super."test-framework-sandbox"; + "test-framework-skip" = dontDistribute super."test-framework-skip"; + "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat"; + "test-invariant" = dontDistribute super."test-invariant"; + "test-pkg" = dontDistribute super."test-pkg"; + "test-sandbox" = dontDistribute super."test-sandbox"; + "test-sandbox-compose" = dontDistribute super."test-sandbox-compose"; + "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit"; + "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; + "test-shouldbe" = dontDistribute super."test-shouldbe"; + "testPkg" = dontDistribute super."testPkg"; + "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; + "testloop" = dontDistribute super."testloop"; + "testpack" = dontDistribute super."testpack"; + "testpattern" = dontDistribute super."testpattern"; + "testrunner" = dontDistribute super."testrunner"; + "tetris" = dontDistribute super."tetris"; + "tex2txt" = dontDistribute super."tex2txt"; + "texrunner" = dontDistribute super."texrunner"; + "text-and-plots" = dontDistribute super."text-and-plots"; + "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-translit" = dontDistribute super."text-icu-translit"; + "text-json-qq" = dontDistribute super."text-json-qq"; + "text-latin1" = dontDistribute super."text-latin1"; + "text-ldap" = dontDistribute super."text-ldap"; + "text-locale-encoding" = dontDistribute super."text-locale-encoding"; + "text-normal" = dontDistribute super."text-normal"; + "text-position" = dontDistribute super."text-position"; + "text-postgresql" = dontDistribute super."text-postgresql"; + "text-printer" = dontDistribute super."text-printer"; + "text-regex-replace" = dontDistribute super."text-regex-replace"; + "text-region" = dontDistribute super."text-region"; + "text-register-machine" = dontDistribute super."text-register-machine"; + "text-render" = dontDistribute super."text-render"; + "text-show-instances" = dontDistribute super."text-show-instances"; + "text-stream-decode" = dontDistribute super."text-stream-decode"; + "text-utf7" = dontDistribute super."text-utf7"; + "text-xml-generic" = dontDistribute super."text-xml-generic"; + "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text1" = dontDistribute super."text1"; + "textPlot" = dontDistribute super."textPlot"; + "textmatetags" = dontDistribute super."textmatetags"; + "textocat-api" = dontDistribute super."textocat-api"; + "texts" = dontDistribute super."texts"; + "textual" = dontDistribute super."textual"; + "tfp" = dontDistribute super."tfp"; + "tfp-th" = dontDistribute super."tfp-th"; + "tftp" = dontDistribute super."tftp"; + "tga" = dontDistribute super."tga"; + "th-alpha" = dontDistribute super."th-alpha"; + "th-build" = dontDistribute super."th-build"; + "th-cas" = dontDistribute super."th-cas"; + "th-context" = dontDistribute super."th-context"; + "th-fold" = dontDistribute super."th-fold"; + "th-inline-io-action" = dontDistribute super."th-inline-io-action"; + "th-instance-reification" = dontDistribute super."th-instance-reification"; + "th-instances" = dontDistribute super."th-instances"; + "th-kinds" = dontDistribute super."th-kinds"; + "th-kinds-fork" = dontDistribute super."th-kinds-fork"; + "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-printf" = dontDistribute super."th-printf"; + "th-sccs" = dontDistribute super."th-sccs"; + "th-traced" = dontDistribute super."th-traced"; + "th-typegraph" = dontDistribute super."th-typegraph"; + "themoviedb" = dontDistribute super."themoviedb"; + "themplate" = dontDistribute super."themplate"; + "theoremquest" = dontDistribute super."theoremquest"; + "theoremquest-client" = dontDistribute super."theoremquest-client"; + "thespian" = dontDistribute super."thespian"; + "theta-functions" = dontDistribute super."theta-functions"; + "thih" = dontDistribute super."thih"; + "thimk" = dontDistribute super."thimk"; + "thorn" = dontDistribute super."thorn"; + "thread-local-storage" = dontDistribute super."thread-local-storage"; + "threadPool" = dontDistribute super."threadPool"; + "threadmanager" = dontDistribute super."threadmanager"; + "threads-pool" = dontDistribute super."threads-pool"; + "threads-supervisor" = dontDistribute super."threads-supervisor"; + "threadscope" = dontDistribute super."threadscope"; + "threefish" = dontDistribute super."threefish"; + "threepenny-gui" = dontDistribute super."threepenny-gui"; + "thrift" = dontDistribute super."thrift"; + "thrist" = dontDistribute super."thrist"; + "throttle" = dontDistribute super."throttle"; + "thumbnail" = dontDistribute super."thumbnail"; + "tianbar" = dontDistribute super."tianbar"; + "tic-tac-toe" = dontDistribute super."tic-tac-toe"; + "tickle" = dontDistribute super."tickle"; + "tictactoe3d" = dontDistribute super."tictactoe3d"; + "tidal" = dontDistribute super."tidal"; + "tidal-midi" = dontDistribute super."tidal-midi"; + "tidal-vis" = dontDistribute super."tidal-vis"; + "tie-knot" = dontDistribute super."tie-knot"; + "tiempo" = dontDistribute super."tiempo"; + "tiger" = dontDistribute super."tiger"; + "tight-apply" = dontDistribute super."tight-apply"; + "tightrope" = dontDistribute super."tightrope"; + "tighttp" = dontDistribute super."tighttp"; + "tilings" = dontDistribute super."tilings"; + "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; + "time-extras" = dontDistribute super."time-extras"; + "time-exts" = dontDistribute super."time-exts"; + "time-http" = dontDistribute super."time-http"; + "time-interval" = dontDistribute super."time-interval"; + "time-io-access" = dontDistribute super."time-io-access"; + "time-out" = dontDistribute super."time-out"; + "time-patterns" = dontDistribute super."time-patterns"; + "time-qq" = dontDistribute super."time-qq"; + "time-recurrence" = dontDistribute super."time-recurrence"; + "time-series" = dontDistribute super."time-series"; + "time-w3c" = dontDistribute super."time-w3c"; + "timecalc" = dontDistribute super."timecalc"; + "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-time" = dontDistribute super."timelike-time"; + "timemap" = dontDistribute super."timemap"; + "timeout" = dontDistribute super."timeout"; + "timeout-control" = dontDistribute super."timeout-control"; + "timeout-with-results" = dontDistribute super."timeout-with-results"; + "timeparsers" = dontDistribute super."timeparsers"; + "timeplot" = dontDistribute super."timeplot"; + "timers" = dontDistribute super."timers"; + "timers-updatable" = dontDistribute super."timers-updatable"; + "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; + "timestamper" = dontDistribute super."timestamper"; + "timezone-olson-th" = dontDistribute super."timezone-olson-th"; + "timing-convenience" = dontDistribute super."timing-convenience"; + "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; + "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; + "tip-lib" = dontDistribute super."tip-lib"; + "tiphys" = dontDistribute super."tiphys"; + "titlecase" = dontDistribute super."titlecase"; + "tkhs" = dontDistribute super."tkhs"; + "tkyprof" = dontDistribute super."tkyprof"; + "tld" = dontDistribute super."tld"; + "tls-extra" = dontDistribute super."tls-extra"; + "tmpl" = dontDistribute super."tmpl"; + "tn" = dontDistribute super."tn"; + "tnet" = dontDistribute super."tnet"; + "to-haskell" = dontDistribute super."to-haskell"; + "to-string-class" = dontDistribute super."to-string-class"; + "to-string-instances" = dontDistribute super."to-string-instances"; + "todos" = dontDistribute super."todos"; + "tofromxml" = dontDistribute super."tofromxml"; + "toilet" = dontDistribute super."toilet"; + "tokenify" = dontDistribute super."tokenify"; + "tokenize" = dontDistribute super."tokenize"; + "toktok" = dontDistribute super."toktok"; + "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell"; + "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell"; + "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal"; + "toml" = dontDistribute super."toml"; + "toolshed" = dontDistribute super."toolshed"; + "topkata" = dontDistribute super."topkata"; + "torch" = dontDistribute super."torch"; + "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; + "total-map" = dontDistribute super."total-map"; + "total-maps" = dontDistribute super."total-maps"; + "touched" = dontDistribute super."touched"; + "toysolver" = dontDistribute super."toysolver"; + "tpdb" = dontDistribute super."tpdb"; + "trace" = dontDistribute super."trace"; + "trace-call" = dontDistribute super."trace-call"; + "trace-function-call" = dontDistribute super."trace-function-call"; + "traced" = dontDistribute super."traced"; + "tracer" = dontDistribute super."tracer"; + "tracker" = dontDistribute super."tracker"; + "trajectory" = dontDistribute super."trajectory"; + "transactional-events" = dontDistribute super."transactional-events"; + "transf" = dontDistribute super."transf"; + "transformations" = dontDistribute super."transformations"; + "transformers-abort" = dontDistribute super."transformers-abort"; + "transformers-compose" = dontDistribute super."transformers-compose"; + "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-free" = dontDistribute super."transformers-free"; + "transformers-runnable" = dontDistribute super."transformers-runnable"; + "transformers-supply" = dontDistribute super."transformers-supply"; + "transient" = dontDistribute super."transient"; + "translatable-intset" = dontDistribute super."translatable-intset"; + "translate" = dontDistribute super."translate"; + "travis" = dontDistribute super."travis"; + "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; + "trawl" = dontDistribute super."trawl"; + "traypoweroff" = dontDistribute super."traypoweroff"; + "tree-fun" = dontDistribute super."tree-fun"; + "tree-monad" = dontDistribute super."tree-monad"; + "treemap-html" = dontDistribute super."treemap-html"; + "treemap-html-tools" = dontDistribute super."treemap-html-tools"; + "treersec" = dontDistribute super."treersec"; + "treeviz" = dontDistribute super."treeviz"; + "tremulous-query" = dontDistribute super."tremulous-query"; + "trhsx" = dontDistribute super."trhsx"; + "triangulation" = dontDistribute super."triangulation"; + "trimpolya" = dontDistribute super."trimpolya"; + "tripLL" = dontDistribute super."tripLL"; + "trivia" = dontDistribute super."trivia"; + "trivial-constraint" = dontDistribute super."trivial-constraint"; + "tropical" = dontDistribute super."tropical"; + "truelevel" = dontDistribute super."truelevel"; + "trurl" = dontDistribute super."trurl"; + "truthful" = dontDistribute super."truthful"; + "tsession" = dontDistribute super."tsession"; + "tsession-happstack" = dontDistribute super."tsession-happstack"; + "tskiplist" = dontDistribute super."tskiplist"; + "tslib" = dontDistribute super."tslib"; + "tslogger" = dontDistribute super."tslogger"; + "tsp-viz" = dontDistribute super."tsp-viz"; + "tsparse" = dontDistribute super."tsparse"; + "tst" = dontDistribute super."tst"; + "tsvsql" = dontDistribute super."tsvsql"; + "tttool" = doDistribute super."tttool_1_5_1"; + "tubes" = dontDistribute super."tubes"; + "tuntap" = dontDistribute super."tuntap"; + "tup-functor" = dontDistribute super."tup-functor"; + "tuple" = dontDistribute super."tuple"; + "tuple-gen" = dontDistribute super."tuple-gen"; + "tuple-generic" = dontDistribute super."tuple-generic"; + "tuple-hlist" = dontDistribute super."tuple-hlist"; + "tuple-lenses" = dontDistribute super."tuple-lenses"; + "tuple-morph" = dontDistribute super."tuple-morph"; + "tupleinstances" = dontDistribute super."tupleinstances"; + "turing" = dontDistribute super."turing"; + "turing-music" = dontDistribute super."turing-music"; + "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; + "turni" = dontDistribute super."turni"; + "turtle-options" = dontDistribute super."turtle-options"; + "tweak" = dontDistribute super."tweak"; + "twee" = dontDistribute super."twee"; + "twentefp" = dontDistribute super."twentefp"; + "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; + "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees"; + "twentefp-graphs" = dontDistribute super."twentefp-graphs"; + "twentefp-number" = dontDistribute super."twentefp-number"; + "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; + "twentefp-trees" = dontDistribute super."twentefp-trees"; + "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; + "twhs" = dontDistribute super."twhs"; + "twidge" = dontDistribute super."twidge"; + "twilight-stm" = dontDistribute super."twilight-stm"; + "twilio" = dontDistribute super."twilio"; + "twill" = dontDistribute super."twill"; + "twiml" = dontDistribute super."twiml"; + "twine" = dontDistribute super."twine"; + "twisty" = dontDistribute super."twisty"; + "twitch" = dontDistribute super."twitch"; + "twitter" = dontDistribute super."twitter"; + "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "tx" = dontDistribute super."tx"; + "txt-sushi" = dontDistribute super."txt-sushi"; + "txt2rtf" = dontDistribute super."txt2rtf"; + "txtblk" = dontDistribute super."txtblk"; + "ty" = dontDistribute super."ty"; + "typalyze" = dontDistribute super."typalyze"; + "type-booleans" = dontDistribute super."type-booleans"; + "type-cache" = dontDistribute super."type-cache"; + "type-cereal" = dontDistribute super."type-cereal"; + "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; + "type-digits" = dontDistribute super."type-digits"; + "type-equality" = dontDistribute super."type-equality"; + "type-equality-check" = dontDistribute super."type-equality-check"; + "type-fun" = dontDistribute super."type-fun"; + "type-functions" = dontDistribute super."type-functions"; + "type-hint" = dontDistribute super."type-hint"; + "type-int" = dontDistribute super."type-int"; + "type-iso" = dontDistribute super."type-iso"; + "type-level" = dontDistribute super."type-level"; + "type-level-bst" = dontDistribute super."type-level-bst"; + "type-level-natural-number" = dontDistribute super."type-level-natural-number"; + "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction"; + "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; + "type-level-sets" = dontDistribute super."type-level-sets"; + "type-level-tf" = dontDistribute super."type-level-tf"; + "type-natural" = dontDistribute super."type-natural"; + "type-ord" = dontDistribute super."type-ord"; + "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; + "type-prelude" = dontDistribute super."type-prelude"; + "type-settheory" = dontDistribute super."type-settheory"; + "type-spine" = dontDistribute super."type-spine"; + "type-structure" = dontDistribute super."type-structure"; + "type-sub-th" = dontDistribute super."type-sub-th"; + "type-unary" = dontDistribute super."type-unary"; + "typeable-th" = dontDistribute super."typeable-th"; + "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; + "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; + "typedquery" = dontDistribute super."typedquery"; + "typehash" = dontDistribute super."typehash"; + "typelevel" = dontDistribute super."typelevel"; + "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typeof" = dontDistribute super."typeof"; + "typeparams" = dontDistribute super."typeparams"; + "typesafe-endian" = dontDistribute super."typesafe-endian"; + "typescript-docs" = dontDistribute super."typescript-docs"; + "typical" = dontDistribute super."typical"; + "typography-geometry" = dontDistribute super."typography-geometry"; + "uAgda" = dontDistribute super."uAgda"; + "ua-parser" = dontDistribute super."ua-parser"; + "uacpid" = dontDistribute super."uacpid"; + "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"; + "ungadtagger" = dontDistribute super."ungadtagger"; + "uni-events" = dontDistribute super."uni-events"; + "uni-graphs" = dontDistribute super."uni-graphs"; + "uni-htk" = dontDistribute super."uni-htk"; + "uni-posixutil" = dontDistribute super."uni-posixutil"; + "uni-reactor" = dontDistribute super."uni-reactor"; + "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph"; + "uni-util" = dontDistribute super."uni-util"; + "unicode" = dontDistribute super."unicode"; + "unicode-names" = dontDistribute super."unicode-names"; + "unicode-normalization" = dontDistribute super."unicode-normalization"; + "unicode-prelude" = dontDistribute super."unicode-prelude"; + "unicode-properties" = dontDistribute super."unicode-properties"; + "unicode-show" = dontDistribute super."unicode-show"; + "unicode-symbols" = dontDistribute super."unicode-symbols"; + "unicoder" = dontDistribute super."unicoder"; + "uniform-io" = dontDistribute super."uniform-io"; + "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; + "union-find-array" = dontDistribute super."union-find-array"; + "union-map" = dontDistribute super."union-map"; + "unique" = dontDistribute super."unique"; + "unique-logic" = dontDistribute super."unique-logic"; + "unique-logic-tf" = dontDistribute super."unique-logic-tf"; + "uniqueid" = dontDistribute super."uniqueid"; + "unit" = dontDistribute super."unit"; + "units" = dontDistribute super."units"; + "units-attoparsec" = dontDistribute super."units-attoparsec"; + "units-defs" = dontDistribute super."units-defs"; + "units-parser" = dontDistribute super."units-parser"; + "unittyped" = dontDistribute super."unittyped"; + "universal-binary" = dontDistribute super."universal-binary"; + "universe-th" = dontDistribute super."universe-th"; + "unix-fcntl" = dontDistribute super."unix-fcntl"; + "unix-handle" = dontDistribute super."unix-handle"; + "unix-io-extra" = dontDistribute super."unix-io-extra"; + "unix-memory" = dontDistribute super."unix-memory"; + "unix-process-conduit" = dontDistribute super."unix-process-conduit"; + "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = dontDistribute super."unlambda"; + "unlit" = dontDistribute super."unlit"; + "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; + "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; + "unpack-funcs" = dontDistribute super."unpack-funcs"; + "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; + "unsafe" = dontDistribute super."unsafe"; + "unsafe-promises" = dontDistribute super."unsafe-promises"; + "unsafely" = dontDistribute super."unsafely"; + "unsafeperformst" = dontDistribute super."unsafeperformst"; + "unscramble" = dontDistribute super."unscramble"; + "unusable-pkg" = dontDistribute super."unusable-pkg"; + "uom-plugin" = dontDistribute super."uom-plugin"; + "up" = dontDistribute super."up"; + "up-grade" = dontDistribute super."up-grade"; + "uploadcare" = dontDistribute super."uploadcare"; + "upskirt" = dontDistribute super."upskirt"; + "ureader" = dontDistribute super."ureader"; + "urembed" = dontDistribute super."urembed"; + "uri" = dontDistribute super."uri"; + "uri-bytestring" = doDistribute super."uri-bytestring_0_1_9_2"; + "uri-conduit" = dontDistribute super."uri-conduit"; + "uri-enumerator" = dontDistribute super."uri-enumerator"; + "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; + "uri-template" = dontDistribute super."uri-template"; + "url-generic" = dontDistribute super."url-generic"; + "urlcheck" = dontDistribute super."urlcheck"; + "urldecode" = dontDistribute super."urldecode"; + "urldisp-happstack" = dontDistribute super."urldisp-happstack"; + "urlencoded" = dontDistribute super."urlencoded"; + "urn" = dontDistribute super."urn"; + "urxml" = dontDistribute super."urxml"; + "usb" = dontDistribute super."usb"; + "usb-enumerator" = dontDistribute super."usb-enumerator"; + "usb-hid" = dontDistribute super."usb-hid"; + "usb-id-database" = dontDistribute super."usb-id-database"; + "usb-iteratee" = dontDistribute super."usb-iteratee"; + "usb-safe" = dontDistribute super."usb-safe"; + "users" = doDistribute super."users_0_4_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_4_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0"; + "users-test" = doDistribute super."users-test_0_4_0_0"; + "utc" = dontDistribute super."utc"; + "utf8-env" = dontDistribute super."utf8-env"; + "utf8-prelude" = dontDistribute super."utf8-prelude"; + "uu-cco" = dontDistribute super."uu-cco"; + "uu-cco-examples" = dontDistribute super."uu-cco-examples"; + "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing"; + "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib"; + "uu-options" = dontDistribute super."uu-options"; + "uu-tc" = dontDistribute super."uu-tc"; + "uuagc" = dontDistribute super."uuagc"; + "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap"; + "uuagc-cabal" = dontDistribute super."uuagc-cabal"; + "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; + "uuagd" = dontDistribute super."uuagd"; + "uuid-aeson" = dontDistribute super."uuid-aeson"; + "uuid-le" = dontDistribute super."uuid-le"; + "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uulib" = dontDistribute super."uulib"; + "uvector" = dontDistribute super."uvector"; + "uvector-algorithms" = dontDistribute super."uvector-algorithms"; + "uxadt" = dontDistribute super."uxadt"; + "uzbl-with-source" = dontDistribute super."uzbl-with-source"; + "v4l2" = dontDistribute super."v4l2"; + "v4l2-examples" = dontDistribute super."v4l2-examples"; + "vacuum" = dontDistribute super."vacuum"; + "vacuum-cairo" = dontDistribute super."vacuum-cairo"; + "vacuum-graphviz" = dontDistribute super."vacuum-graphviz"; + "vacuum-opengl" = dontDistribute super."vacuum-opengl"; + "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph"; + "vado" = dontDistribute super."vado"; + "valid-names" = dontDistribute super."valid-names"; + "validate" = dontDistribute super."validate"; + "validated-literals" = dontDistribute super."validated-literals"; + "validations" = dontDistribute super."validations"; + "value-supply" = dontDistribute super."value-supply"; + "vampire" = dontDistribute super."vampire"; + "var" = dontDistribute super."var"; + "varan" = dontDistribute super."varan"; + "variable-precision" = dontDistribute super."variable-precision"; + "variables" = dontDistribute super."variables"; + "varying" = dontDistribute super."varying"; + "vaultaire-common" = dontDistribute super."vaultaire-common"; + "vcache" = dontDistribute super."vcache"; + "vcache-trie" = dontDistribute super."vcache-trie"; + "vcard" = dontDistribute super."vcard"; + "vcd" = dontDistribute super."vcd"; + "vcs-revision" = dontDistribute super."vcs-revision"; + "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; + "vcsgui" = dontDistribute super."vcsgui"; + "vcswrapper" = dontDistribute super."vcswrapper"; + "vect" = dontDistribute super."vect"; + "vect-floating" = dontDistribute super."vect-floating"; + "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; + "vect-opengl" = dontDistribute super."vect-opengl"; + "vector-binary" = dontDistribute super."vector-binary"; + "vector-bytestring" = dontDistribute super."vector-bytestring"; + "vector-clock" = dontDistribute super."vector-clock"; + "vector-conduit" = dontDistribute super."vector-conduit"; + "vector-functorlazy" = dontDistribute super."vector-functorlazy"; + "vector-heterogenous" = dontDistribute super."vector-heterogenous"; + "vector-instances-collections" = dontDistribute super."vector-instances-collections"; + "vector-mmap" = dontDistribute super."vector-mmap"; + "vector-random" = dontDistribute super."vector-random"; + "vector-read-instances" = dontDistribute super."vector-read-instances"; + "vector-sized" = dontDistribute super."vector-sized"; + "vector-space-map" = dontDistribute super."vector-space-map"; + "vector-space-opengl" = dontDistribute super."vector-space-opengl"; + "vector-space-points" = dontDistribute super."vector-space-points"; + "vector-static" = dontDistribute super."vector-static"; + "vector-strategies" = dontDistribute super."vector-strategies"; + "verbalexpressions" = dontDistribute super."verbalexpressions"; + "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; + "verilog" = dontDistribute super."verilog"; + "versions" = dontDistribute super."versions"; + "vhdl" = dontDistribute super."vhdl"; + "views" = dontDistribute super."views"; + "vigilance" = dontDistribute super."vigilance"; + "vimeta" = dontDistribute super."vimeta"; + "vimus" = dontDistribute super."vimus"; + "vintage-basic" = dontDistribute super."vintage-basic"; + "vinyl-gl" = dontDistribute super."vinyl-gl"; + "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-utils" = dontDistribute super."vinyl-utils"; + "vinyl-vectors" = dontDistribute super."vinyl-vectors"; + "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; + "vision" = dontDistribute super."vision"; + "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; + "visual-prof" = dontDistribute super."visual-prof"; + "vivid" = dontDistribute super."vivid"; + "vk-aws-route53" = dontDistribute super."vk-aws-route53"; + "vk-posix-pty" = dontDistribute super."vk-posix-pty"; + "vocabulary-kadma" = dontDistribute super."vocabulary-kadma"; + "vorbiscomment" = dontDistribute super."vorbiscomment"; + "vowpal-utils" = dontDistribute super."vowpal-utils"; + "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; + "vte" = dontDistribute super."vte"; + "vtegtk3" = dontDistribute super."vtegtk3"; + "vty-examples" = dontDistribute super."vty-examples"; + "vty-menu" = dontDistribute super."vty-menu"; + "vty-ui" = dontDistribute super."vty-ui"; + "vty-ui-extras" = dontDistribute super."vty-ui-extras"; + "vulkan" = dontDistribute super."vulkan"; + "wacom-daemon" = dontDistribute super."wacom-daemon"; + "waddle" = dontDistribute super."waddle"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; + "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; + "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; + "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-extra" = doDistribute super."wai-extra_3_0_14_3"; + "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; + "wai-graceful" = dontDistribute super."wai-graceful"; + "wai-handler-devel" = dontDistribute super."wai-handler-devel"; + "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; + "wai-handler-snap" = dontDistribute super."wai-handler-snap"; + "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; + "wai-hastache" = dontDistribute super."wai-hastache"; + "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; + "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; + "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; + "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; + "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; + "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; + "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; + "wai-middleware-route" = dontDistribute super."wai-middleware-route"; + "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-request-spec" = dontDistribute super."wai-request-spec"; + "wai-responsible" = dontDistribute super."wai-responsible"; + "wai-router" = dontDistribute super."wai-router"; + "wai-session-alt" = dontDistribute super."wai-session-alt"; + "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; + "wai-static-cache" = dontDistribute super."wai-static-cache"; + "wai-static-pages" = dontDistribute super."wai-static-pages"; + "wai-test" = dontDistribute super."wai-test"; + "wai-thrift" = dontDistribute super."wai-thrift"; + "wai-throttler" = dontDistribute super."wai-throttler"; + "wait-handle" = dontDistribute super."wait-handle"; + "waitfree" = dontDistribute super."waitfree"; + "warc" = dontDistribute super."warc"; + "warp" = doDistribute super."warp_3_2_2"; + "warp-dynamic" = dontDistribute super."warp-dynamic"; + "warp-static" = dontDistribute super."warp-static"; + "warp-tls-uid" = dontDistribute super."warp-tls-uid"; + "watchdog" = dontDistribute super."watchdog"; + "watcher" = dontDistribute super."watcher"; + "watchit" = dontDistribute super."watchit"; + "wavconvert" = dontDistribute super."wavconvert"; + "wavesurfer" = dontDistribute super."wavesurfer"; + "wavy" = dontDistribute super."wavy"; + "wcwidth" = dontDistribute super."wcwidth"; + "weather-api" = dontDistribute super."weather-api"; + "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell"; + "web-css" = dontDistribute super."web-css"; + "web-encodings" = dontDistribute super."web-encodings"; + "web-mongrel2" = dontDistribute super."web-mongrel2"; + "web-page" = dontDistribute super."web-page"; + "web-routes-mtl" = dontDistribute super."web-routes-mtl"; + "web-routes-quasi" = dontDistribute super."web-routes-quasi"; + "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-transformers" = dontDistribute super."web-routes-transformers"; + "webapi" = dontDistribute super."webapi"; + "webapp" = dontDistribute super."webapp"; + "webcrank" = dontDistribute super."webcrank"; + "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; + "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; + "webidl" = dontDistribute super."webidl"; + "webify" = dontDistribute super."webify"; + "webkit" = dontDistribute super."webkit"; + "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore"; + "webkitgtk3" = dontDistribute super."webkitgtk3"; + "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore"; + "webrtc-vad" = dontDistribute super."webrtc-vad"; + "webserver" = dontDistribute super."webserver"; + "websnap" = dontDistribute super."websnap"; + "webwire" = dontDistribute super."webwire"; + "wedding-announcement" = dontDistribute super."wedding-announcement"; + "wedged" = dontDistribute super."wedged"; + "weighted-regexp" = dontDistribute super."weighted-regexp"; + "weighted-search" = dontDistribute super."weighted-search"; + "welshy" = dontDistribute super."welshy"; + "werewolf" = dontDistribute super."werewolf"; + "wheb-mongo" = dontDistribute super."wheb-mongo"; + "wheb-redis" = dontDistribute super."wheb-redis"; + "wheb-strapped" = dontDistribute super."wheb-strapped"; + "while-lang-parser" = dontDistribute super."while-lang-parser"; + "whim" = dontDistribute super."whim"; + "whiskers" = dontDistribute super."whiskers"; + "whitespace" = dontDistribute super."whitespace"; + "whois" = dontDistribute super."whois"; + "why3" = dontDistribute super."why3"; + "wigner-symbols" = dontDistribute super."wigner-symbols"; + "wikipedia4epub" = dontDistribute super."wikipedia4epub"; + "win-hp-path" = dontDistribute super."win-hp-path"; + "windowslive" = dontDistribute super."windowslive"; + "winerror" = dontDistribute super."winerror"; + "winio" = dontDistribute super."winio"; + "wiring" = dontDistribute super."wiring"; + "with-location" = doDistribute super."with-location_0_0_0"; + "witness" = dontDistribute super."witness"; + "witty" = dontDistribute super."witty"; + "wkt" = dontDistribute super."wkt"; + "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm"; + "wlc-hs" = dontDistribute super."wlc-hs"; + "wobsurv" = dontDistribute super."wobsurv"; + "woffex" = dontDistribute super."woffex"; + "wol" = dontDistribute super."wol"; + "wolf" = dontDistribute super."wolf"; + "woot" = dontDistribute super."woot"; + "word24" = dontDistribute super."word24"; + "wordcloud" = dontDistribute super."wordcloud"; + "wordexp" = dontDistribute super."wordexp"; + "words" = dontDistribute super."words"; + "wordsearch" = dontDistribute super."wordsearch"; + "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; + "wp-archivebot" = dontDistribute super."wp-archivebot"; + "wraparound" = dontDistribute super."wraparound"; + "wraxml" = dontDistribute super."wraxml"; + "wreq-sb" = dontDistribute super."wreq-sb"; + "wright" = dontDistribute super."wright"; + "wsdl" = dontDistribute super."wsdl"; + "wsedit" = dontDistribute super."wsedit"; + "wtk" = dontDistribute super."wtk"; + "wtk-gtk" = dontDistribute super."wtk-gtk"; + "wumpus-basic" = dontDistribute super."wumpus-basic"; + "wumpus-core" = dontDistribute super."wumpus-core"; + "wumpus-drawing" = dontDistribute super."wumpus-drawing"; + "wumpus-microprint" = dontDistribute super."wumpus-microprint"; + "wumpus-tree" = dontDistribute super."wumpus-tree"; + "wuss" = dontDistribute super."wuss"; + "wx" = dontDistribute super."wx"; + "wxAsteroids" = dontDistribute super."wxAsteroids"; + "wxFruit" = dontDistribute super."wxFruit"; + "wxc" = dontDistribute super."wxc"; + "wxcore" = dontDistribute super."wxcore"; + "wxdirect" = dontDistribute super."wxdirect"; + "wxhnotepad" = dontDistribute super."wxhnotepad"; + "wxturtle" = dontDistribute super."wxturtle"; + "wybor" = dontDistribute super."wybor"; + "wyvern" = dontDistribute super."wyvern"; + "x-dsp" = dontDistribute super."x-dsp"; + "x11-xim" = dontDistribute super."x11-xim"; + "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-util" = dontDistribute super."x509-util"; + "xattr" = dontDistribute super."xattr"; + "xbattbar" = dontDistribute super."xbattbar"; + "xcb-types" = dontDistribute super."xcb-types"; + "xcffib" = dontDistribute super."xcffib"; + "xchat-plugin" = dontDistribute super."xchat-plugin"; + "xcp" = dontDistribute super."xcp"; + "xdg-userdirs" = dontDistribute super."xdg-userdirs"; + "xdot" = dontDistribute super."xdot"; + "xfconf" = dontDistribute super."xfconf"; + "xhaskell-library" = dontDistribute super."xhaskell-library"; + "xhb" = dontDistribute super."xhb"; + "xhb-atom-cache" = dontDistribute super."xhb-atom-cache"; + "xhb-ewmh" = dontDistribute super."xhb-ewmh"; + "xhtml" = doDistribute super."xhtml_3000_2_1"; + "xhtml-combinators" = dontDistribute super."xhtml-combinators"; + "xilinx-lava" = dontDistribute super."xilinx-lava"; + "xine" = dontDistribute super."xine"; + "xing-api" = dontDistribute super."xing-api"; + "xinput-conduit" = dontDistribute super."xinput-conduit"; + "xkbcommon" = dontDistribute super."xkbcommon"; + "xkcd" = dontDistribute super."xkcd"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; + "xlsx-templater" = dontDistribute super."xlsx-templater"; + "xml-basic" = dontDistribute super."xml-basic"; + "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-enumerator" = dontDistribute super."xml-enumerator"; + "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; + "xml-extractors" = dontDistribute super."xml-extractors"; + "xml-helpers" = dontDistribute super."xml-helpers"; + "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens"; + "xml-monad" = dontDistribute super."xml-monad"; + "xml-parsec" = dontDistribute super."xml-parsec"; + "xml-picklers" = dontDistribute super."xml-picklers"; + "xml-pipe" = dontDistribute super."xml-pipe"; + "xml-prettify" = dontDistribute super."xml-prettify"; + "xml-push" = dontDistribute super."xml-push"; + "xml-query" = dontDistribute super."xml-query"; + "xml-query-xml-conduit" = dontDistribute super."xml-query-xml-conduit"; + "xml-query-xml-types" = dontDistribute super."xml-query-xml-types"; + "xml2html" = dontDistribute super."xml2html"; + "xml2json" = dontDistribute super."xml2json"; + "xml2x" = dontDistribute super."xml2x"; + "xmltv" = dontDistribute super."xmltv"; + "xmms2-client" = dontDistribute super."xmms2-client"; + "xmms2-client-glib" = dontDistribute super."xmms2-client-glib"; + "xmobar" = dontDistribute super."xmobar"; + "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch"; + "xmonad-contrib" = dontDistribute super."xmonad-contrib"; + "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch"; + "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl"; + "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper"; + "xmonad-eval" = dontDistribute super."xmonad-eval"; + "xmonad-extras" = dontDistribute super."xmonad-extras"; + "xmonad-screenshot" = dontDistribute super."xmonad-screenshot"; + "xmonad-utils" = dontDistribute super."xmonad-utils"; + "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper"; + "xmonad-windownames" = dontDistribute super."xmonad-windownames"; + "xmpipe" = dontDistribute super."xmpipe"; + "xorshift" = dontDistribute super."xorshift"; + "xosd" = dontDistribute super."xosd"; + "xournal-builder" = dontDistribute super."xournal-builder"; + "xournal-convert" = dontDistribute super."xournal-convert"; + "xournal-parser" = dontDistribute super."xournal-parser"; + "xournal-render" = dontDistribute super."xournal-render"; + "xournal-types" = dontDistribute super."xournal-types"; + "xsact" = dontDistribute super."xsact"; + "xsd" = dontDistribute super."xsd"; + "xsha1" = dontDistribute super."xsha1"; + "xslt" = dontDistribute super."xslt"; + "xtc" = dontDistribute super."xtc"; + "xtest" = dontDistribute super."xtest"; + "xturtle" = dontDistribute super."xturtle"; + "xxhash" = dontDistribute super."xxhash"; + "y0l0bot" = dontDistribute super."y0l0bot"; + "yabi" = dontDistribute super."yabi"; + "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; + "yahoo-web-search" = dontDistribute super."yahoo-web-search"; + "yajl" = dontDistribute super."yajl"; + "yajl-enumerator" = dontDistribute super."yajl-enumerator"; + "yall" = dontDistribute super."yall"; + "yamemo" = dontDistribute super."yamemo"; + "yaml-config" = dontDistribute super."yaml-config"; + "yaml-light-lens" = dontDistribute super."yaml-light-lens"; + "yaml-rpc" = dontDistribute super."yaml-rpc"; + "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty"; + "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap"; + "yaml-union" = dontDistribute super."yaml-union"; + "yaml2owl" = dontDistribute super."yaml2owl"; + "yamlkeysdiff" = dontDistribute super."yamlkeysdiff"; + "yampa-canvas" = dontDistribute super."yampa-canvas"; + "yampa-glfw" = dontDistribute super."yampa-glfw"; + "yampa-glut" = dontDistribute super."yampa-glut"; + "yampa2048" = dontDistribute super."yampa2048"; + "yaop" = dontDistribute super."yaop"; + "yap" = dontDistribute super."yap"; + "yarr" = dontDistribute super."yarr"; + "yarr-image-io" = dontDistribute super."yarr-image-io"; + "yate" = dontDistribute super."yate"; + "yavie" = dontDistribute super."yavie"; + "ycextra" = dontDistribute super."ycextra"; + "yeganesh" = dontDistribute super."yeganesh"; + "yeller" = dontDistribute super."yeller"; + "yeshql" = dontDistribute super."yeshql"; + "yesod-angular" = dontDistribute super."yesod-angular"; + "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; + "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; + "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; + "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; + "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; + "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; + "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; + "yesod-comments" = dontDistribute super."yesod-comments"; + "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; + "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-crud" = dontDistribute super."yesod-crud"; + "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; + "yesod-csp" = dontDistribute super."yesod-csp"; + "yesod-datatables" = dontDistribute super."yesod-datatables"; + "yesod-dsl" = dontDistribute super."yesod-dsl"; + "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; + "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-json" = dontDistribute super."yesod-json"; + "yesod-links" = dontDistribute super."yesod-links"; + "yesod-lucid" = dontDistribute super."yesod-lucid"; + "yesod-markdown" = dontDistribute super."yesod-markdown"; + "yesod-media-simple" = dontDistribute super."yesod-media-simple"; + "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_5"; + "yesod-paginate" = dontDistribute super."yesod-paginate"; + "yesod-pagination" = dontDistribute super."yesod-pagination"; + "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-platform" = dontDistribute super."yesod-platform"; + "yesod-pnotify" = dontDistribute super."yesod-pnotify"; + "yesod-pure" = dontDistribute super."yesod-pure"; + "yesod-purescript" = dontDistribute super."yesod-purescript"; + "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; + "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; + "yesod-routes" = dontDistribute super."yesod-routes"; + "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; + "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript"; + "yesod-rst" = dontDistribute super."yesod-rst"; + "yesod-s3" = dontDistribute super."yesod-s3"; + "yesod-sass" = dontDistribute super."yesod-sass"; + "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test-json" = dontDistribute super."yesod-test-json"; + "yesod-tls" = dontDistribute super."yesod-tls"; + "yesod-transloadit" = dontDistribute super."yesod-transloadit"; + "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; + "yesod-worker" = dontDistribute super."yesod-worker"; + "yet-another-logger" = dontDistribute super."yet-another-logger"; + "yhccore" = dontDistribute super."yhccore"; + "yi-contrib" = dontDistribute super."yi-contrib"; + "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; + "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-monokai" = dontDistribute super."yi-monokai"; + "yi-snippet" = dontDistribute super."yi-snippet"; + "yi-solarized" = dontDistribute super."yi-solarized"; + "yi-spolsky" = dontDistribute super."yi-spolsky"; + "yi-vty" = dontDistribute super."yi-vty"; + "yices" = dontDistribute super."yices"; + "yices-easy" = dontDistribute super."yices-easy"; + "yices-painless" = dontDistribute super."yices-painless"; + "yjftp" = dontDistribute super."yjftp"; + "yjftp-libs" = dontDistribute super."yjftp-libs"; + "yjsvg" = dontDistribute super."yjsvg"; + "yjtools" = dontDistribute super."yjtools"; + "yocto" = dontDistribute super."yocto"; + "yoctoparsec" = dontDistribute super."yoctoparsec"; + "yoko" = dontDistribute super."yoko"; + "york-lava" = dontDistribute super."york-lava"; + "youtube" = dontDistribute super."youtube"; + "yql" = dontDistribute super."yql"; + "yst" = dontDistribute super."yst"; + "yuiGrid" = dontDistribute super."yuiGrid"; + "yuuko" = dontDistribute super."yuuko"; + "yxdb-utils" = dontDistribute super."yxdb-utils"; + "z3" = dontDistribute super."z3"; + "zalgo" = dontDistribute super."zalgo"; + "zampolit" = dontDistribute super."zampolit"; + "zasni-gerna" = dontDistribute super."zasni-gerna"; + "zcache" = dontDistribute super."zcache"; + "zenc" = dontDistribute super."zenc"; + "zendesk-api" = dontDistribute super."zendesk-api"; + "zeno" = dontDistribute super."zeno"; + "zerobin" = dontDistribute super."zerobin"; + "zeromq-haskell" = dontDistribute super."zeromq-haskell"; + "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; + "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; + "zeroth" = dontDistribute super."zeroth"; + "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; + "zip" = dontDistribute super."zip"; + "zip-conduit" = dontDistribute super."zip-conduit"; + "zipedit" = dontDistribute super."zipedit"; + "zipkin" = dontDistribute super."zipkin"; + "zipper" = dontDistribute super."zipper"; + "zippers" = dontDistribute super."zippers"; + "zippo" = dontDistribute super."zippo"; + "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zmcat" = dontDistribute super."zmcat"; + "zmidi-core" = dontDistribute super."zmidi-core"; + "zmidi-score" = dontDistribute super."zmidi-score"; + "zmqat" = dontDistribute super."zmqat"; + "zoneinfo" = dontDistribute super."zoneinfo"; + "zoom" = dontDistribute super."zoom"; + "zoom-cache" = dontDistribute super."zoom-cache"; + "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm"; + "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile"; + "zoom-refs" = dontDistribute super."zoom-refs"; + "zot" = dontDistribute super."zot"; + "zsh-battery" = dontDistribute super."zsh-battery"; + "ztail" = dontDistribute super."ztail"; + +} diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 9fd16e6dbac..8c7140d9f4b 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -1884,7 +1884,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "BlogLiterately" = callPackage + "BlogLiterately_0_8_1_5" = callPackage ({ mkDerivation, base, blaze-html, bool-extras, bytestring, cmdargs , containers, data-default, directory, filepath, HaXml, haxr , highlighting-kate, hscolour, lens, mtl, pandoc, pandoc-citeproc @@ -1907,6 +1907,32 @@ self: { homepage = "http://byorgey.wordpress.com/blogliterately/"; description = "A tool for posting Haskelly articles to blogs"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "BlogLiterately" = callPackage + ({ mkDerivation, base, blaze-html, bool-extras, bytestring, cmdargs + , containers, data-default, directory, filepath, HaXml, haxr + , highlighting-kate, hscolour, lens, mtl, pandoc, pandoc-citeproc + , pandoc-types, parsec, process, split, strict, temporary + , transformers + }: + mkDerivation { + pname = "BlogLiterately"; + version = "0.8.1.6"; + sha256 = "924b9fca47100cb02d3eb37d1f5aff18d519db5315bbcd5c812b9420efa208c7"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base blaze-html bool-extras bytestring cmdargs containers + data-default directory filepath HaXml haxr highlighting-kate + hscolour lens mtl pandoc pandoc-citeproc pandoc-types parsec + process split strict temporary transformers + ]; + executableHaskellDepends = [ base cmdargs ]; + homepage = "http://byorgey.wordpress.com/blogliterately/"; + description = "A tool for posting Haskelly articles to blogs"; + license = "GPL"; }) {}; "BlogLiterately-diagrams_0_1_4_3" = callPackage @@ -1975,6 +2001,27 @@ self: { hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; + "BlogLiterately-diagrams_0_2_0_3" = callPackage + ({ mkDerivation, base, BlogLiterately, containers, diagrams-builder + , diagrams-lib, diagrams-rasterific, directory, filepath + , JuicyPixels, pandoc, safe + }: + mkDerivation { + pname = "BlogLiterately-diagrams"; + version = "0.2.0.3"; + sha256 = "a7aeaa8154c62fb6e64f661c34bc28f35b02ec5a8d87f6100a8d945b59db82c1"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base BlogLiterately containers diagrams-builder diagrams-lib + diagrams-rasterific directory filepath JuicyPixels pandoc safe + ]; + executableHaskellDepends = [ base BlogLiterately ]; + description = "Include images in blog posts with inline diagrams code"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "BluePrintCSS" = callPackage ({ mkDerivation, base, mtl }: mkDerivation { @@ -18731,8 +18778,8 @@ self: { ({ mkDerivation, base, blaze-builder, lucid, Spock, transformers }: mkDerivation { pname = "Spock-lucid"; - version = "0.2.0.0"; - sha256 = "c12d8f47caff17ce9c59d8a2a645c80b73d4e542d770794fea034e75376b27b0"; + version = "0.3.0.0"; + sha256 = "9291c9105d45f1807a63a633475b8e32ad9f9b99d3eff0db247079d69f707f3c"; libraryHaskellDepends = [ base blaze-builder lucid Spock transformers ]; @@ -23123,7 +23170,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "aeson_0_11_1_1" = callPackage + "aeson_0_11_1_3" = callPackage ({ mkDerivation, attoparsec, base, base-orphans, bytestring , containers, deepseq, dlist, fail, ghc-prim, hashable, HUnit, mtl , QuickCheck, quickcheck-instances, scientific, semigroups, syb @@ -23133,8 +23180,8 @@ self: { }: mkDerivation { pname = "aeson"; - version = "0.11.1.1"; - sha256 = "1b808376cda535e002e3ac41a205f6ee5a1bceeda2f4e614cecefce47b15abe8"; + version = "0.11.1.3"; + sha256 = "eeef5e20f55687f0aa5f230f770b0ad6ada2e0694ff5830767faeb227f6cd09f"; libraryHaskellDepends = [ attoparsec base bytestring containers deepseq dlist fail ghc-prim hashable mtl scientific semigroups syb tagged template-haskell text @@ -24227,7 +24274,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "airship" = callPackage + "airship_0_4_3_0" = callPackage ({ mkDerivation, attoparsec, base, base64-bytestring, blaze-builder , bytestring, bytestring-trie, case-insensitive, cryptohash , directory, either, filepath, http-date, http-media, http-types @@ -24252,6 +24299,38 @@ self: { base bytestring tasty tasty-hunit tasty-quickcheck text transformers wai ]; + jailbreak = true; + homepage = "https://github.com/helium/airship/"; + description = "A Webmachine-inspired HTTP library"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "airship" = callPackage + ({ mkDerivation, attoparsec, base, base64-bytestring, blaze-builder + , bytestring, bytestring-trie, case-insensitive, cryptohash + , directory, either, filepath, http-date, http-media, http-types + , lifted-base, microlens, mime-types, mmorph, monad-control, mtl + , network, old-locale, random, tasty, tasty-hunit, tasty-quickcheck + , text, time, transformers, transformers-base, unix + , unordered-containers, wai, wai-extra + }: + mkDerivation { + pname = "airship"; + version = "0.5.0"; + sha256 = "f42e81e118a419125ed559f6041a7c17fd07020d2bb5052d1649301049689951"; + libraryHaskellDepends = [ + attoparsec base base64-bytestring blaze-builder bytestring + bytestring-trie case-insensitive cryptohash directory either + filepath http-date http-media http-types lifted-base microlens + mime-types mmorph monad-control mtl network old-locale random text + time transformers transformers-base unix unordered-containers wai + wai-extra + ]; + testHaskellDepends = [ + base bytestring tasty tasty-hunit tasty-quickcheck text + transformers wai + ]; homepage = "https://github.com/helium/airship/"; description = "A Webmachine-inspired HTTP library"; license = stdenv.lib.licenses.mit; @@ -24261,8 +24340,8 @@ self: { ({ mkDerivation, array, base, containers, mtl, random, vector }: mkDerivation { pname = "aivika"; - version = "4.3.2"; - sha256 = "a4209fea2b6d66bfd5d5d9a6477f95ce04c2c5fac06bfbde3c51941d84fba063"; + version = "4.3.3"; + sha256 = "3faa7104a9b51c138b9f3a6f3762de08ccff1e427653fee218466eb256b8cb3a"; libraryHaskellDepends = [ array base containers mtl random vector ]; @@ -24361,8 +24440,8 @@ self: { }: mkDerivation { pname = "aivika-transformers"; - version = "4.3.2"; - sha256 = "34a0f93a75918a9a4c9db2062522bc6e042b33705797ad7a50215f244fa72355"; + version = "4.3.3"; + sha256 = "1d05966db50550d92b75338cb4805c8b7f5c074ce7cac431e1b5e8e44902d5f5"; libraryHaskellDepends = [ aivika array base containers mtl random vector ]; @@ -25244,7 +25323,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka" = callPackage + "amazonka_1_3_7" = callPackage ({ mkDerivation, amazonka-core, base, bytestring, conduit , conduit-extra, directory, exceptions, http-conduit, ini, mmorph , monad-control, mtl, resourcet, retry, tasty, tasty-hunit, text @@ -25260,9 +25339,52 @@ self: { retry text time transformers transformers-base transformers-compat ]; testHaskellDepends = [ base tasty tasty-hunit ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Comprehensive Amazon Web Services SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka" = callPackage + ({ mkDerivation, amazonka-core, base, bytestring, conduit + , conduit-extra, directory, exceptions, http-conduit, ini, mmorph + , monad-control, mtl, resourcet, retry, tasty, tasty-hunit, text + , time, transformers, transformers-base, transformers-compat + }: + mkDerivation { + pname = "amazonka"; + version = "1.4.0"; + sha256 = "b1822a420e13d253b6f62e096a2a0879aa20e53ab6e2866e95b98ddbee5dec85"; + libraryHaskellDepends = [ + amazonka-core base bytestring conduit conduit-extra directory + exceptions http-conduit ini mmorph monad-control mtl resourcet + retry text time transformers transformers-base transformers-compat + ]; + testHaskellDepends = [ base tasty tasty-hunit ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Comprehensive Amazon Web Services SDK"; + license = "unknown"; + }) {}; + + "amazonka-apigateway_1_3_7" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-apigateway"; + version = "1.3.7"; + sha256 = "69dc8132895383cee52625053c5a26d00522592441b86382425e2ad717113953"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon API Gateway SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-apigateway" = callPackage @@ -25271,8 +25393,8 @@ self: { }: mkDerivation { pname = "amazonka-apigateway"; - version = "1.3.7"; - sha256 = "69dc8132895383cee52625053c5a26d00522592441b86382425e2ad717113953"; + version = "1.4.0"; + sha256 = "0db9b5216d5746d053df9e05217dd19d42623b1ddf3bc1dc33955935730a389c"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring tasty tasty-hunit text @@ -25325,7 +25447,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-autoscaling" = callPackage + "amazonka-autoscaling_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -25338,9 +25460,47 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Auto Scaling SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-autoscaling" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-autoscaling"; + version = "1.4.0"; + sha256 = "ead0e710801c76fb4568dfb80acafba61428a872760191d808d8ff3304e9dcd8"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Auto Scaling SDK"; + license = "unknown"; + }) {}; + + "amazonka-certificatemanager" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-certificatemanager"; + version = "1.4.0"; + sha256 = "9480dd882cb47061f1c1aa14993d70f20d7b888a27ad3d0279afc7488f543a77"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Certificate Manager SDK"; + license = "unknown"; }) {}; "amazonka-cloudformation_0_3_3" = callPackage @@ -25385,7 +25545,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-cloudformation" = callPackage + "amazonka-cloudformation_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -25398,6 +25558,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudFormation SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cloudformation" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudformation"; + version = "1.4.0"; + sha256 = "bbd009ca7de4670690206efd08d0b89e97a05e7c1d7bab50d84f521ceebda927"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudFormation SDK"; license = "unknown"; @@ -25445,7 +25625,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-cloudfront" = callPackage + "amazonka-cloudfront_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -25458,6 +25638,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudFront SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cloudfront" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudfront"; + version = "1.4.0"; + sha256 = "a4d75366edd0b0ffb9b33e83de100b0b6b3dc38b1f5632526881cf269d90f0a6"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudFront SDK"; license = "unknown"; @@ -25505,7 +25705,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-cloudhsm" = callPackage + "amazonka-cloudhsm_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -25518,6 +25718,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudHSM SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cloudhsm" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudhsm"; + version = "1.4.0"; + sha256 = "0cf44dfce3e233729645d77f5c34bcb93c05b86de6d2993e85d6188c0260d82c"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudHSM SDK"; license = "unknown"; @@ -25565,7 +25785,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-cloudsearch" = callPackage + "amazonka-cloudsearch_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -25578,6 +25798,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudSearch SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cloudsearch" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudsearch"; + version = "1.4.0"; + sha256 = "ab38b598a56b9711fcdb889b8d4350707e5d6278c7de8d670595eff6eed81f4a"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudSearch SDK"; license = "unknown"; @@ -25625,7 +25865,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-cloudsearch-domains" = callPackage + "amazonka-cloudsearch-domains_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -25638,6 +25878,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudSearch Domain SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cloudsearch-domains" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudsearch-domains"; + version = "1.4.0"; + sha256 = "25028c168eef469738ccfe68a4badedf3018d889e24a84a51b28874400354cf8"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudSearch Domain SDK"; license = "unknown"; @@ -25685,7 +25945,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-cloudtrail" = callPackage + "amazonka-cloudtrail_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -25698,6 +25958,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudTrail SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cloudtrail" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudtrail"; + version = "1.4.0"; + sha256 = "29c6efbadddd29f1fb966e24cef7bf680118a1a190b65abe110d7c9bbd7d0428"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudTrail SDK"; license = "unknown"; @@ -25745,7 +26025,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-cloudwatch" = callPackage + "amazonka-cloudwatch_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -25758,9 +26038,47 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudWatch SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cloudwatch" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudwatch"; + version = "1.4.0"; + sha256 = "cb60c6624aee9b159f6ed4566c589d5d28566451120b9dab6dddeb39d30f2874"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudWatch SDK"; + license = "unknown"; + }) {}; + + "amazonka-cloudwatch-events" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudwatch-events"; + version = "1.4.0"; + sha256 = "5cb2ed261e2410cdeefe5bb32bc9b375d3b2a02c04ad0be75c19a9e063f2be6c"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudWatch Events SDK"; + license = "unknown"; }) {}; "amazonka-cloudwatch-logs_0_3_3" = callPackage @@ -25805,7 +26123,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-cloudwatch-logs" = callPackage + "amazonka-cloudwatch-logs_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -25818,9 +26136,49 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudWatch Logs SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cloudwatch-logs" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudwatch-logs"; + version = "1.4.0"; + sha256 = "bf66e0c1a2c2fb87ec3afa981b567b7cbb39a92227dc05b4e89e813c08500f4f"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudWatch Logs SDK"; + license = "unknown"; + }) {}; + + "amazonka-codecommit_1_3_7" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-codecommit"; + version = "1.3.7"; + sha256 = "71d52bd60f5d5b7a04e33b9c41aedef5d34cfd0587af16cbce5c8b7346519bb7"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CodeCommit SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-codecommit" = callPackage @@ -25829,8 +26187,8 @@ self: { }: mkDerivation { pname = "amazonka-codecommit"; - version = "1.3.7"; - sha256 = "71d52bd60f5d5b7a04e33b9c41aedef5d34cfd0587af16cbce5c8b7346519bb7"; + version = "1.4.0"; + sha256 = "ed0c9e78cbf0d4466f59f4f9b93bc2bd995138f24377e77351841aa11a5cbda0"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring tasty tasty-hunit text @@ -25883,7 +26241,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-codedeploy" = callPackage + "amazonka-codedeploy_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -25896,9 +26254,49 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CodeDeploy SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-codedeploy" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-codedeploy"; + version = "1.4.0"; + sha256 = "54dcede69badb68d6bd1b0d44ae39a511840305dca9efe7c60cef08a101810e7"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CodeDeploy SDK"; + license = "unknown"; + }) {}; + + "amazonka-codepipeline_1_3_7" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-codepipeline"; + version = "1.3.7"; + sha256 = "9b113de6a18eac005182c85e37a21c59cf077d78debcf229e0c175b93b6686cb"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CodePipeline SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-codepipeline" = callPackage @@ -25907,8 +26305,8 @@ self: { }: mkDerivation { pname = "amazonka-codepipeline"; - version = "1.3.7"; - sha256 = "9b113de6a18eac005182c85e37a21c59cf077d78debcf229e0c175b93b6686cb"; + version = "1.4.0"; + sha256 = "a285b6ccdb0d653e6da8ccd7347d11f69f75882b28843b51d44e1fd00a759019"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring tasty tasty-hunit text @@ -25961,7 +26359,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-cognito-identity" = callPackage + "amazonka-cognito-identity_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -25974,6 +26372,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Cognito Identity SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cognito-identity" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cognito-identity"; + version = "1.4.0"; + sha256 = "787e0de095b2f8c2d657091c6cd473816d7e51b8c444ced4057570df14bdaaa4"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Cognito Identity SDK"; license = "unknown"; @@ -26021,7 +26439,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-cognito-sync" = callPackage + "amazonka-cognito-sync_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26034,6 +26452,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Cognito Sync SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cognito-sync" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cognito-sync"; + version = "1.4.0"; + sha256 = "47181614278b6eb836519bdbe34e3a99293a2ae2a1f33dcd1f2278619114fde4"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Cognito Sync SDK"; license = "unknown"; @@ -26081,7 +26519,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-config" = callPackage + "amazonka-config_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26094,6 +26532,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Config SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-config" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-config"; + version = "1.4.0"; + sha256 = "083d80c419f5ae269171ba8022300f5366ba83cd653e56a1a5b82b2c45131d5f"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Config SDK"; license = "unknown"; @@ -26198,7 +26656,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-core" = callPackage + "amazonka-core_1_3_7" = callPackage ({ mkDerivation, aeson, attoparsec, base, bifunctors, bytestring , case-insensitive, conduit, conduit-extra, cryptonite, exceptions , hashable, http-conduit, http-types, lens, memory, mtl, QuickCheck @@ -26226,6 +26684,37 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Core data types and functionality for Amazonka libraries"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-core" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bifunctors, bytestring + , case-insensitive, conduit, conduit-extra, cryptonite, exceptions + , hashable, http-conduit, http-types, lens, memory, mtl, QuickCheck + , quickcheck-unicode, resourcet, scientific, semigroups, tagged + , tasty, tasty-hunit, tasty-quickcheck, template-haskell, text + , time, transformers, transformers-compat, unordered-containers + , xml-conduit, xml-types + }: + mkDerivation { + pname = "amazonka-core"; + version = "1.4.0"; + sha256 = "0001c7e562b35b65c458fadf42ecfb069a6d0fd19d806cd998538f47640996fc"; + libraryHaskellDepends = [ + aeson attoparsec base bifunctors bytestring case-insensitive + conduit conduit-extra cryptonite exceptions hashable http-conduit + http-types lens memory mtl resourcet scientific semigroups tagged + text time transformers transformers-compat unordered-containers + xml-conduit xml-types + ]; + testHaskellDepends = [ + aeson base bytestring case-insensitive http-types QuickCheck + quickcheck-unicode tasty tasty-hunit tasty-quickcheck + template-haskell text time + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Core data types and functionality for Amazonka libraries"; + license = "unknown"; }) {}; "amazonka-datapipeline_0_3_3" = callPackage @@ -26270,7 +26759,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-datapipeline" = callPackage + "amazonka-datapipeline_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26283,9 +26772,49 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Data Pipeline SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-datapipeline" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-datapipeline"; + version = "1.4.0"; + sha256 = "cc3fc5311709e78485fadd429f04c077fab72b73d4be28b6a0d6e8f1a35111f9"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Data Pipeline SDK"; + license = "unknown"; + }) {}; + + "amazonka-devicefarm_1_3_7" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-devicefarm"; + version = "1.3.7"; + sha256 = "f370f855bcdb2b5a504f399add12856884f3faa3ca465dc18fd1e0877eb74e7b"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Device Farm SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-devicefarm" = callPackage @@ -26294,8 +26823,8 @@ self: { }: mkDerivation { pname = "amazonka-devicefarm"; - version = "1.3.7"; - sha256 = "f370f855bcdb2b5a504f399add12856884f3faa3ca465dc18fd1e0877eb74e7b"; + version = "1.4.0"; + sha256 = "8b1bdbb0ff4778cf5c7f72b5a01509b182b4d90628e640ef0fa6709ce09dbea0"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring tasty tasty-hunit text @@ -26348,7 +26877,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-directconnect" = callPackage + "amazonka-directconnect_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26361,9 +26890,67 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Direct Connect SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-directconnect" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-directconnect"; + version = "1.4.0"; + sha256 = "6450a238d41679b03d02313c8aa01082c516d888723a73f4e2e5f0f83038d783"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Direct Connect SDK"; + license = "unknown"; + }) {}; + + "amazonka-dms" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-dms"; + version = "1.4.0"; + sha256 = "0473dfb47b3d0896240b7a74ad769ec44e39bfd77a264d64ff1c0b1f0c032392"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Database Migration Service SDK"; + license = "unknown"; + }) {}; + + "amazonka-ds_1_3_7" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ds"; + version = "1.3.7"; + sha256 = "fd75ba2790bf61db6db791afb2eb52e7867f2294275b9fdf8c5e2040bd8e7628"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Directory Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-ds" = callPackage @@ -26372,8 +26959,8 @@ self: { }: mkDerivation { pname = "amazonka-ds"; - version = "1.3.7"; - sha256 = "fd75ba2790bf61db6db791afb2eb52e7867f2294275b9fdf8c5e2040bd8e7628"; + version = "1.4.0"; + sha256 = "8452fa1e22b4be61794fb5dd613468c4c320d1be60a935064eee215a472e1db0"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring tasty tasty-hunit text @@ -26426,7 +27013,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-dynamodb" = callPackage + "amazonka-dynamodb_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26439,9 +27026,49 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon DynamoDB SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-dynamodb" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-dynamodb"; + version = "1.4.0"; + sha256 = "0647f2f6f803996b2e4ac3d7cc991582f1332d458e793afe439e2a260e89914b"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon DynamoDB SDK"; + license = "unknown"; + }) {}; + + "amazonka-dynamodb-streams_1_3_7" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-dynamodb-streams"; + version = "1.3.7"; + sha256 = "a3b5304cde5c828135a813c2f005d5bdc9d0316ab09c966f3caffae084971072"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon DynamoDB Streams SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-dynamodb-streams" = callPackage @@ -26450,8 +27077,8 @@ self: { }: mkDerivation { pname = "amazonka-dynamodb-streams"; - version = "1.3.7"; - sha256 = "a3b5304cde5c828135a813c2f005d5bdc9d0316ab09c966f3caffae084971072"; + version = "1.4.0"; + sha256 = "34e548d216e8eec247ae3563fa780fa072e137e1102866ea2f0e43ae5d3c4a59"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring tasty tasty-hunit text @@ -26518,7 +27145,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-ec2" = callPackage + "amazonka-ec2_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26531,10 +27158,49 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic Compute Cloud SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-ec2" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ec2"; + version = "1.4.0"; + sha256 = "dfe0782c39bf6ac20cd60273acaa8008ad5f2572ab5ea4868dcf577f77bdcb80"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + doCheck = false; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elastic Compute Cloud SDK"; + license = "unknown"; + }) {}; + + "amazonka-ecr" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ecr"; + version = "1.4.0"; + sha256 = "868774dc8cd8d0ef020a1166e92bf3430b3a2746c7467b911e7824981da9862f"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon EC2 Container Registry SDK"; + license = "unknown"; }) {}; "amazonka-ecs_0_3_3" = callPackage @@ -26579,7 +27245,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-ecs" = callPackage + "amazonka-ecs_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26592,9 +27258,49 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon EC2 Container Service SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-ecs" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ecs"; + version = "1.4.0"; + sha256 = "38b5a174e2835095eab92e0352202744f9cca05f33350518de9bf8ef77416cdb"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon EC2 Container Service SDK"; + license = "unknown"; + }) {}; + + "amazonka-efs_1_3_7" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-efs"; + version = "1.3.7"; + sha256 = "ae1a69233552debb037c3d87062fe79562af74b735758e8c6cfcf59e8fc4269f"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elastic File System SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-efs" = callPackage @@ -26603,8 +27309,8 @@ self: { }: mkDerivation { pname = "amazonka-efs"; - version = "1.3.7"; - sha256 = "ae1a69233552debb037c3d87062fe79562af74b735758e8c6cfcf59e8fc4269f"; + version = "1.4.0"; + sha256 = "f175a1b7c34225bf09983035e047d8ed4c6510c2aa9ce9fa3e7db6bd791ae713"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring tasty tasty-hunit text @@ -26657,7 +27363,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-elasticache" = callPackage + "amazonka-elasticache_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26670,6 +27376,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon ElastiCache SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-elasticache" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-elasticache"; + version = "1.4.0"; + sha256 = "d2006ef83242d723c83bf44e33d4160e65316fdbf8756ef03167f11ec133e55b"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon ElastiCache SDK"; license = "unknown"; @@ -26717,7 +27443,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-elasticbeanstalk" = callPackage + "amazonka-elasticbeanstalk_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26730,9 +27456,49 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic Beanstalk SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-elasticbeanstalk" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-elasticbeanstalk"; + version = "1.4.0"; + sha256 = "b83c1eb2797c3106c168323c698224ae3825b47482d321c8240b017d1e6d0d11"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elastic Beanstalk SDK"; + license = "unknown"; + }) {}; + + "amazonka-elasticsearch_1_3_7" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-elasticsearch"; + version = "1.3.7"; + sha256 = "7179150c600ed9a2889700a1433f4bc12eec1406e74c25341993d3a8c27575b4"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elasticsearch Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-elasticsearch" = callPackage @@ -26741,8 +27507,8 @@ self: { }: mkDerivation { pname = "amazonka-elasticsearch"; - version = "1.3.7"; - sha256 = "7179150c600ed9a2889700a1433f4bc12eec1406e74c25341993d3a8c27575b4"; + version = "1.4.0"; + sha256 = "717e01030f814e813103a2a2822d8f0de4fb1228806cdad1fc8282fb2b954df0"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring tasty tasty-hunit text @@ -26795,7 +27561,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-elastictranscoder" = callPackage + "amazonka-elastictranscoder_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26808,6 +27574,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elastic Transcoder SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-elastictranscoder" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-elastictranscoder"; + version = "1.4.0"; + sha256 = "24d6288da5bfb182a2bf93ae30dfcd3411ca77ad65f7481336038a895161ff3a"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic Transcoder SDK"; license = "unknown"; @@ -26855,7 +27641,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-elb" = callPackage + "amazonka-elb_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26868,6 +27654,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elastic Load Balancing SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-elb" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-elb"; + version = "1.4.0"; + sha256 = "96a8724d1d57c4e5428b5dc8c37f281942b8d71e555f28d458b0e10d2596425a"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic Load Balancing SDK"; license = "unknown"; @@ -26915,7 +27721,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-emr" = callPackage + "amazonka-emr_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26928,9 +27734,47 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic MapReduce SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-emr" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-emr"; + version = "1.4.0"; + sha256 = "91fff413f9c29fdd7508dd3d3266af44cf622fd0779daf8d139d714368bbe0c3"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elastic MapReduce SDK"; + license = "unknown"; + }) {}; + + "amazonka-gamelift" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-gamelift"; + version = "1.4.0"; + sha256 = "042fb93fd5afe3508974d3eaf8b4207d2ebb4cdd3c9b03d1e88c7743d98af2e4"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon GameLift SDK"; + license = "unknown"; }) {}; "amazonka-glacier_0_3_3" = callPackage @@ -26975,7 +27819,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-glacier" = callPackage + "amazonka-glacier_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26988,6 +27832,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Glacier SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-glacier" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-glacier"; + version = "1.4.0"; + sha256 = "40e0655b3ff4a800e16067e5169e27915ad85a7f88a5fafc05da81d015807299"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Glacier SDK"; license = "unknown"; @@ -27035,7 +27899,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-iam" = callPackage + "amazonka-iam_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27048,6 +27912,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Identity and Access Management SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-iam" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-iam"; + version = "1.4.0"; + sha256 = "0b2b0448b510008265630e9f446a8bd902e7b7aa0082d16beb44947767b242b1"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Identity and Access Management SDK"; license = "unknown"; @@ -27095,7 +27979,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-importexport" = callPackage + "amazonka-importexport_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27108,12 +27992,32 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Import/Export SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-importexport" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-importexport"; + version = "1.4.0"; + sha256 = "8f7151dc995efd7e4fd431e334747aa32162cdbea3b2801a4546a8835e0b5890"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Import/Export SDK"; license = "unknown"; }) {}; - "amazonka-inspector" = callPackage + "amazonka-inspector_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27126,12 +28030,32 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Inspector SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-inspector" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-inspector"; + version = "1.4.0"; + sha256 = "ec30d3990a60a48052d602afc72c7e68c328221d1d6091a32ec34bc5cbbdd3a8"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Inspector SDK"; license = "unknown"; }) {}; - "amazonka-iot" = callPackage + "amazonka-iot_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27144,9 +28068,49 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon IoT SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-iot" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-iot"; + version = "1.4.0"; + sha256 = "1de4267169ad51c49cf580a7b0adc2012a752f029eb7304b0d54bb794d06144c"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon IoT SDK"; + license = "unknown"; + }) {}; + + "amazonka-iot-dataplane_1_3_7" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-iot-dataplane"; + version = "1.3.7"; + sha256 = "de6f860acc5ca4d623ec66dad54cedc972516c6d04f0babfe0aa142fd86f1538"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon IoT Data Plane SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-iot-dataplane" = callPackage @@ -27155,8 +28119,8 @@ self: { }: mkDerivation { pname = "amazonka-iot-dataplane"; - version = "1.3.7"; - sha256 = "de6f860acc5ca4d623ec66dad54cedc972516c6d04f0babfe0aa142fd86f1538"; + version = "1.4.0"; + sha256 = "a1d211e4c4aa712853b57f2f2b684b0f84354d7fde659b8d76b6e7e4346b934b"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring tasty tasty-hunit text @@ -27209,7 +28173,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-kinesis" = callPackage + "amazonka-kinesis_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27222,9 +28186,49 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Kinesis SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-kinesis" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-kinesis"; + version = "1.4.0"; + sha256 = "616c6686de7ea7c11aee5d27bf91ff6034de2e2b0439b97be936b9541bb4c4e2"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Kinesis SDK"; + license = "unknown"; + }) {}; + + "amazonka-kinesis-firehose_1_3_7" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-kinesis-firehose"; + version = "1.3.7"; + sha256 = "6a557b9b3fb21b1035aad13a6ddcbd249ce97bc2aeb77b48eee74b6d6a634d1a"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Kinesis Firehose SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-kinesis-firehose" = callPackage @@ -27233,8 +28237,8 @@ self: { }: mkDerivation { pname = "amazonka-kinesis-firehose"; - version = "1.3.7"; - sha256 = "6a557b9b3fb21b1035aad13a6ddcbd249ce97bc2aeb77b48eee74b6d6a634d1a"; + version = "1.4.0"; + sha256 = "effcb460fb24ba7efa6236e7a5f2b590df7e56ca335f5f8a03e454f063b2738a"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring tasty tasty-hunit text @@ -27287,7 +28291,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-kms" = callPackage + "amazonka-kms_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27300,6 +28304,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Key Management Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-kms" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-kms"; + version = "1.4.0"; + sha256 = "ad32894e1a75ab0af4142dc82a8518ad1926267824a373860ac7258088ddd6b0"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Key Management Service SDK"; license = "unknown"; @@ -27347,7 +28371,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-lambda" = callPackage + "amazonka-lambda_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27360,12 +28384,32 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Lambda SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-lambda" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-lambda"; + version = "1.4.0"; + sha256 = "19b9c73538267eaaea661bc9bc3b88cfbefde4ba0d43b307eb7d0d3ec457618f"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Lambda SDK"; license = "unknown"; }) {}; - "amazonka-marketplace-analytics" = callPackage + "amazonka-marketplace-analytics_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27378,9 +28422,47 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Marketplace Commerce Analytics SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-marketplace-analytics" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-marketplace-analytics"; + version = "1.4.0"; + sha256 = "e51d718ee9ca998a4563cfca375f8be5a617009e65b486afafcbca191efb425e"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Marketplace Commerce Analytics SDK"; + license = "unknown"; + }) {}; + + "amazonka-marketplace-metering" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-marketplace-metering"; + version = "1.4.0"; + sha256 = "33d765f729c127cd474012395e0cf98a6dd0e2ed22c9d6adb6adedf0b001d856"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Marketplace Metering SDK"; + license = "unknown"; }) {}; "amazonka-ml_0_3_6" = callPackage @@ -27397,7 +28479,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-ml" = callPackage + "amazonka-ml_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27410,6 +28492,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Machine Learning SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-ml" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ml"; + version = "1.4.0"; + sha256 = "f333580d48a6c65b3e019f620758fc1407be75edc01e6f2d9fc690a2852e883c"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Machine Learning SDK"; license = "unknown"; @@ -27457,7 +28559,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-opsworks" = callPackage + "amazonka-opsworks_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27470,6 +28572,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon OpsWorks SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-opsworks" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-opsworks"; + version = "1.4.0"; + sha256 = "e5c85a070a7ead1447bf31482dfb0149d15c38b6dc0bc48e8690ceb1eac9076d"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon OpsWorks SDK"; license = "unknown"; @@ -27517,7 +28639,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-rds" = callPackage + "amazonka-rds_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27530,6 +28652,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Relational Database Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-rds" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-rds"; + version = "1.4.0"; + sha256 = "7846b510b312cadb76b49374d8fdc199698cb696ed8bcc118043c079ac1ddd84"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Relational Database Service SDK"; license = "unknown"; @@ -27578,7 +28720,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-redshift" = callPackage + "amazonka-redshift_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27591,6 +28733,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Redshift SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-redshift" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-redshift"; + version = "1.4.0"; + sha256 = "a92f1b58416098f623d83b66cb3b0e09c3505fe10675d6cffb1ee8f14a22ed9a"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Redshift SDK"; license = "unknown"; @@ -27652,7 +28814,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-route53" = callPackage + "amazonka-route53_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27665,6 +28827,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Route 53 SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-route53" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-route53"; + version = "1.4.0"; + sha256 = "a547fd8c2c8736e06f8e3473ed7ed344f4304c6cb869288ec7173791d6ad9687"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Route 53 SDK"; license = "unknown"; @@ -27712,7 +28894,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-route53-domains" = callPackage + "amazonka-route53-domains_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27725,6 +28907,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Route 53 Domains SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-route53-domains" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-route53-domains"; + version = "1.4.0"; + sha256 = "7a3a3cb640e95cfb33fb7d26c170ab7cd994664927e836f7556230b8393665e5"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Route 53 Domains SDK"; license = "unknown"; @@ -27772,7 +28974,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-s3" = callPackage + "amazonka-s3_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , lens, tasty, tasty-hunit, text, time, unordered-containers }: @@ -27785,6 +28987,27 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + doCheck = false; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Simple Storage Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-s3" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , lens, tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-s3"; + version = "1.4.0"; + sha256 = "db50ccae296972a98c7d4de2a9c618c2e9d2d0f2b8cd66befdebde0971414538"; + libraryHaskellDepends = [ amazonka-core base lens text ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; doCheck = false; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Storage Service SDK"; @@ -27833,7 +29056,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-sdb" = callPackage + "amazonka-sdb_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27846,6 +29069,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon SimpleDB SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-sdb" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-sdb"; + version = "1.4.0"; + sha256 = "aebe7ba2ba8492bace5d04971a4164735a26c8f3b99520d516a93d2c4f9f199b"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon SimpleDB SDK"; license = "unknown"; @@ -27893,7 +29136,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-ses" = callPackage + "amazonka-ses_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27906,6 +29149,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Simple Email Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-ses" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ses"; + version = "1.4.0"; + sha256 = "0823d15557f3895bf904439334fd9f705aa06329ec8f4a81abad9298c178acdd"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Email Service SDK"; license = "unknown"; @@ -27953,7 +29216,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-sns" = callPackage + "amazonka-sns_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27966,6 +29229,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Simple Notification Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-sns" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-sns"; + version = "1.4.0"; + sha256 = "d51e054d16a57a199148275cdf80d48e11d6f53c7588e690aad6b36ade3cc9df"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Notification Service SDK"; license = "unknown"; @@ -28013,7 +29296,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-sqs" = callPackage + "amazonka-sqs_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -28026,6 +29309,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Simple Queue Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-sqs" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-sqs"; + version = "1.4.0"; + sha256 = "dc4d463865e0ec9bffd5f1dc8822fff3a4c7feef68457e7191107a5af951c624"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Queue Service SDK"; license = "unknown"; @@ -28074,7 +29377,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-ssm" = callPackage + "amazonka-ssm_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -28087,6 +29390,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Simple Systems Management Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-ssm" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ssm"; + version = "1.4.0"; + sha256 = "13e840b86ac7c158b7a6188ca62f2b3f1805a472ebbeadc3504d5f9dc28f0430"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Systems Management Service SDK"; license = "unknown"; @@ -28134,7 +29457,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-storagegateway" = callPackage + "amazonka-storagegateway_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -28147,6 +29470,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Storage Gateway SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-storagegateway" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-storagegateway"; + version = "1.4.0"; + sha256 = "a731304356de28567f23d1fdeeb53d0dbcd73a3cf44f02a6967a49d4799f1445"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Storage Gateway SDK"; license = "unknown"; @@ -28194,7 +29537,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-sts" = callPackage + "amazonka-sts_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -28207,6 +29550,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Security Token Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-sts" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-sts"; + version = "1.4.0"; + sha256 = "f44862dd66f380419d208bdcf153d5d1a030df0390eafaff846799ffa6062bee"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Security Token Service SDK"; license = "unknown"; @@ -28254,7 +29617,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-support" = callPackage + "amazonka-support_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -28267,6 +29630,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Support SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-support" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-support"; + version = "1.4.0"; + sha256 = "7cac8c6886e278c8304f8551ef850355295411f50e58ead6ff50ef75c44e40dd"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Support SDK"; license = "unknown"; @@ -28314,7 +29697,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-swf" = callPackage + "amazonka-swf_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -28327,13 +29710,34 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + doCheck = false; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Simple Workflow Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-swf" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-swf"; + version = "1.4.0"; + sha256 = "fd968d74aa6767067623bfed0ef172d9d8417083695d1863a9f24c4a733588b2"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; doCheck = false; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Workflow Service SDK"; license = "unknown"; }) {}; - "amazonka-test" = callPackage + "amazonka-test_1_3_7" = callPackage ({ mkDerivation, aeson, amazonka-core, base, bifunctors, bytestring , case-insensitive, conduit, conduit-extra, groom, http-client , http-types, process, resourcet, tasty, tasty-hunit @@ -28350,9 +29754,53 @@ self: { resourcet tasty tasty-hunit template-haskell temporary text time unordered-containers yaml ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Common functionality for Amazonka library test-suites"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-test" = callPackage + ({ mkDerivation, aeson, amazonka-core, base, bifunctors, bytestring + , case-insensitive, conduit, conduit-extra, groom, http-client + , http-types, process, resourcet, tasty, tasty-hunit + , template-haskell, temporary, text, time, unordered-containers + , yaml + }: + mkDerivation { + pname = "amazonka-test"; + version = "1.4.0"; + sha256 = "b9a9e1892660e210bfe46fca3ee1cba518baa97c79a63036e38c4cc9e50d25a4"; + libraryHaskellDepends = [ + aeson amazonka-core base bifunctors bytestring case-insensitive + conduit conduit-extra groom http-client http-types process + resourcet tasty tasty-hunit template-haskell temporary text time + unordered-containers yaml + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Common functionality for Amazonka library test-suites"; + license = "unknown"; + }) {}; + + "amazonka-waf_1_3_7" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-waf"; + version = "1.3.7"; + sha256 = "431d34671308da866b8f2738a88d84cf81c73fd5731decc5d94cd87159b012cb"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon WAF SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-waf" = callPackage @@ -28361,8 +29809,8 @@ self: { }: mkDerivation { pname = "amazonka-waf"; - version = "1.3.7"; - sha256 = "431d34671308da866b8f2738a88d84cf81c73fd5731decc5d94cd87159b012cb"; + version = "1.4.0"; + sha256 = "b07d07d1f489edbfb6e8ca82131276eaaa078bd726bf59d12deb5789b1dc81cb"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring tasty tasty-hunit text @@ -28387,7 +29835,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-workspaces" = callPackage + "amazonka-workspaces_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -28400,6 +29848,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon WorkSpaces SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-workspaces" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-workspaces"; + version = "1.4.0"; + sha256 = "a88bb14573f71fa8f8d9c3e21f014f0ae4a79e1931996b218902f500c205206d"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon WorkSpaces SDK"; license = "unknown"; @@ -39672,6 +41140,7 @@ self: { testHaskellDepends = [ amazonka-core base http-client tasty tasty-hunit 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; @@ -39910,10 +41379,8 @@ self: { }: mkDerivation { pname = "bond-haskell"; - version = "0.1.1.1"; - sha256 = "4784f683c30aa70f4524519d1745c9c3873888c91c69f3dc265d4d1eb8ad37c0"; - revision = "1"; - editedCabalFile = "fa660fa43b66bed4b48f9d43f5845bd5a5ece32024ddcbfc159d657ae2eaf70a"; + version = "0.1.2.0"; + sha256 = "edfdb9fe245a634b06d2cd309d334192043114145a0117d07a8bc55bfbbcfcf5"; libraryHaskellDepends = [ aeson array base binary bond-haskell-compiler bytestring containers extra hashable mtl scientific text unordered-containers vector @@ -39934,10 +41401,8 @@ self: { }: mkDerivation { pname = "bond-haskell-compiler"; - version = "0.1.1.0"; - sha256 = "0fe161873d716e1738ce8906095369952724a1361bc6f6ad3532b0dc52a2d8e2"; - revision = "1"; - editedCabalFile = "52cb37d09ecb7c2389f26cfe1a485a2aaef0dae2b3e9e33a2dbe0e57d58355a3"; + version = "0.1.2.0"; + sha256 = "faa936e9a89dbf42919746b13fb9b1b0731d36201b5f36dd0c092a2b1942c7bc"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bond filepath haskell-src-exts ]; @@ -47991,8 +49456,8 @@ self: { }: mkDerivation { pname = "clash-ghc"; - version = "0.6.15"; - sha256 = "6ad588803e4bd27d9415c35967e0510a5d8710aabcd061b1f2d0d7814984a0a2"; + version = "0.6.16"; + sha256 = "7c64439db47356798ca8e262f0c937a0876cec8baed4a38501ebe21cb7f9f260"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -48227,8 +49692,8 @@ self: { }: mkDerivation { pname = "clash-lib"; - version = "0.6.13"; - sha256 = "523f1797d11c477b1806022c0ab2a5d573401842a6fb392a2e7d1c3b22634180"; + version = "0.6.14"; + sha256 = "c0f6fa8e3819533324f3254a38616812e4c1b2762c268d15744de5e7b5d3e8ed"; libraryHaskellDepends = [ aeson attoparsec base bytestring clash-prelude concurrent-supply containers deepseq directory errors fgl filepath hashable lens mtl @@ -53848,8 +55313,8 @@ self: { }: mkDerivation { pname = "config-manager"; - version = "0.0.0.2"; - sha256 = "9e20b6792c8147ee3ffabb4a39da92dd0f5427c5ac49c42c11f28ed5e73fce11"; + version = "0.1.0.0"; + sha256 = "fbb14182265aa28076a221fc64020bd9e3338e9a88634d08c5e9e3c8edfd558d"; libraryHaskellDepends = [ base filepath parsec text unordered-containers ]; @@ -53860,6 +55325,7 @@ self: { homepage = "https://gitlab.com/guyonvarch/config-manager"; description = "Configuration management"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "config-select" = callPackage @@ -57534,7 +59000,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "cryptohash" = callPackage + "cryptohash_0_11_6" = callPackage ({ mkDerivation, base, byteable, bytestring, ghc-prim, HUnit , QuickCheck, tasty, tasty-hunit, tasty-quickcheck }: @@ -57550,9 +59016,10 @@ self: { homepage = "http://github.com/vincenthz/hs-cryptohash"; description = "collection of crypto hashes, fast, pure and practical"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cryptohash_0_11_7" = callPackage + "cryptohash" = callPackage ({ mkDerivation, base, byteable, bytestring, ghc-prim, HUnit , QuickCheck, tasty, tasty-hunit, tasty-quickcheck }: @@ -57568,7 +59035,6 @@ self: { homepage = "http://github.com/vincenthz/hs-cryptohash"; description = "collection of crypto hashes, fast, pure and practical"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cryptohash-conduit" = callPackage @@ -57854,6 +59320,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "cryptonite-conduit" = callPackage + ({ mkDerivation, base, bytestring, conduit, conduit-extra + , cryptonite, resourcet, transformers + }: + mkDerivation { + pname = "cryptonite-conduit"; + version = "0.1"; + sha256 = "a79cd5bc2f86093bbc45290889ca5a9c502804a3c19188874bc2ff3f2a97aac0"; + libraryHaskellDepends = [ + base bytestring conduit conduit-extra cryptonite resourcet + transformers + ]; + homepage = "https://github.com/haskell-crypto/cryptonite-conduit"; + description = "cryptonite conduit"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "cryptsy-api" = callPackage ({ mkDerivation, aeson, base, bytestring, deepseq, either , http-client, http-client-tls, old-locale, pipes-attoparsec @@ -61576,8 +63059,8 @@ self: { }: mkDerivation { pname = "dead-code-detection"; - version = "0.4"; - sha256 = "bcf7c5e477840d264f1e4e74c5251c140d4410f182fc96a907cad7efc28761d6"; + version = "0.5"; + sha256 = "3bb75cd30e6ed043da2cee902eddd02f75e000dbcc1b6d9edbe0523b0dc2e59c"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -61589,7 +63072,6 @@ self: { gitrev Glob graph-wrapper hspec interpolate mockery silently string-conversions uniplate ]; - jailbreak = true; homepage = "https://github.com/soenkehahn/dead-code-detection#readme"; description = "detect dead code in haskell projects"; license = stdenv.lib.licenses.bsd3; @@ -62241,6 +63723,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "delay" = callPackage + ({ mkDerivation, async, base, dimensional, exceptions, mtl, time + , unbounded-delays + }: + mkDerivation { + pname = "delay"; + version = "0"; + sha256 = "2b8afda39ec409e088ea589631c47bb412f281444df481ffdf76101a8b74fbfb"; + libraryHaskellDepends = [ + base dimensional exceptions mtl time unbounded-delays + ]; + testHaskellDepends = [ async base dimensional exceptions time ]; + description = "More useful and humain delaying functions"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "delicious" = callPackage ({ mkDerivation, base, bytestring, curl, feed, json, nano-md5, xml }: @@ -63247,7 +64745,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-builder" = callPackage + "diagrams-builder_0_7_2_2" = callPackage ({ mkDerivation, base, base-orphans, bytestring, cmdargs , diagrams-cairo, diagrams-lib, diagrams-postscript , diagrams-rasterific, diagrams-svg, directory, exceptions @@ -63270,13 +64768,14 @@ self: { diagrams-postscript diagrams-rasterific diagrams-svg directory filepath JuicyPixels lens lucid-svg ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams"; description = "hint-based build service for the diagrams graphics EDSL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-builder_0_7_2_3" = callPackage + "diagrams-builder" = callPackage ({ mkDerivation, base, base-orphans, bytestring, cmdargs , diagrams-cairo, diagrams-lib, diagrams-postscript , diagrams-rasterific, diagrams-svg, directory, exceptions @@ -63302,7 +64801,7 @@ self: { homepage = "http://projects.haskell.org/diagrams"; description = "hint-based build service for the diagrams graphics EDSL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "diagrams-cairo_1_2_0_4" = callPackage @@ -65570,14 +67069,14 @@ self: { "digit" = callPackage ({ mkDerivation, base, directory, doctest, filepath, lens, parsec - , parsers, QuickCheck, template-haskell + , parsers, QuickCheck, semigroups, template-haskell }: mkDerivation { pname = "digit"; - version = "0.2.4"; - sha256 = "a85b1be440a007398adfbe8f7c03854e43354bec0dd907bbd0d1227e8848a7e2"; + version = "0.2.5"; + sha256 = "685bf3e11e88ccc17c3895f10eac5508e186fcb5fbcd9a59040612e683c227e8"; libraryHaskellDepends = [ - base lens parsec parsers template-haskell + base lens parsec parsers semigroups template-haskell ]; testHaskellDepends = [ base directory doctest filepath QuickCheck template-haskell @@ -67335,6 +68834,46 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "dixi_0_6_9_0" = callPackage + ({ mkDerivation, acid-state, aeson, aeson-pretty, attoparsec, base + , base-orphans, blaze-html, blaze-markup, bytestring + , composition-tree, containers, data-default, directory, either + , filepath, heredoc, lens, network-uri, pandoc, pandoc-types + , patches-vector, safecopy, servant, servant-blaze, servant-docs + , servant-server, shakespeare, template-haskell, text, time + , time-locale-compat, timezone-olson, timezone-series, transformers + , vector, warp, yaml + }: + mkDerivation { + pname = "dixi"; + version = "0.6.9.0"; + sha256 = "5bb30c107059f7475d6945d6e63ef9ce943e3f1f98df2c1b0f6e28ce369cd8b9"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + acid-state aeson base base-orphans blaze-html blaze-markup + bytestring composition-tree containers data-default either heredoc + lens network-uri pandoc pandoc-types patches-vector safecopy + servant servant-blaze servant-server shakespeare template-haskell + text time time-locale-compat timezone-olson timezone-series + transformers vector + ]; + executableHaskellDepends = [ + acid-state base base-orphans directory filepath servant-server text + warp yaml + ]; + testHaskellDepends = [ + aeson aeson-pretty attoparsec base base-orphans bytestring lens + patches-vector servant servant-blaze servant-docs shakespeare text + time vector + ]; + jailbreak = true; + homepage = "https://github.com/liamoc/dixi"; + description = "A wiki implemented with a firm theoretical foundation"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "djembe" = callPackage ({ mkDerivation, base, hmidi, hspec, lens, mtl, QuickCheck, random }: @@ -68038,7 +69577,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "dotenv" = callPackage + "dotenv_0_1_0_9" = callPackage ({ mkDerivation, base, base-compat, hspec, optparse-applicative , parsec, parseerror-eq, process }: @@ -68058,16 +69597,17 @@ self: { homepage = "https://github.com/stackbuilders/dotenv-hs"; description = "Loads environment variables from dotenv files"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "dotenv_0_3_0_0" = callPackage + "dotenv" = callPackage ({ mkDerivation, base, base-compat, hspec, megaparsec , optparse-applicative, process, text }: mkDerivation { pname = "dotenv"; - version = "0.3.0.0"; - sha256 = "616c36561459941a20a5dc952fc4a03e68fdc02c944507a0d9e80ac9f7a49be7"; + version = "0.3.0.1"; + sha256 = "b83a38f54c0be717bbc86016517a3f1ac0e1d43e6bf1ac9cb318081e9673bb2c"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base base-compat megaparsec text ]; @@ -68078,7 +69618,6 @@ self: { homepage = "https://github.com/stackbuilders/dotenv-hs"; description = "Loads environment variables from dotenv files"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dotfs" = callPackage @@ -69664,6 +71203,7 @@ self: { homepage = "http://chiselapp.com/user/mwm/repository/eddie/"; description = "Command line file filtering with haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ede_0_2_8" = callPackage @@ -82586,6 +84126,18 @@ self: { 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"; + libraryHaskellDepends = [ base generics-sop lens ]; + homepage = "https://github.com/phadej/generics-sop-lens#readme"; + description = "Lenses for types in generics-sop"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "genericserialize" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -85733,8 +87285,8 @@ self: { }: mkDerivation { pname = "gitit"; - version = "0.12.1"; - sha256 = "c2cf094e7553e1ad6eefe59b4b7d924fe42f31dd51545193b56bcd0596f57d73"; + version = "0.12.1.1"; + sha256 = "c95f78a9d3060c6695c0d8f3f6e2cc01f64d0b535d8c6c3e591a9fd802d534a5"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -91475,8 +93027,8 @@ self: { }: mkDerivation { pname = "h-gpgme"; - version = "0.3.0.0"; - sha256 = "7dd4cba600967609af287f09bbe5bbb7573032115e226b775c8d7e1412e44a9c"; + version = "0.4.0.0"; + sha256 = "35755834fd45de534ddbdbc66df6f1b1623410971d647bcb2e465879ca5f056d"; libraryHaskellDepends = [ base bindings-gpgme bytestring either time unix ]; @@ -91486,6 +93038,7 @@ self: { ]; jailbreak = true; homepage = "https://github.com/rethab/h-gpgme"; + description = "High Level Binding for GnuPG Made Easy (gpgme)"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -94077,7 +95630,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hakyll" = callPackage + "hakyll_4_7_5_1" = callPackage ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring , cmdargs, containers, cryptohash, data-default, deepseq, directory , filepath, fsnotify, http-conduit, http-types, HUnit, lrucache @@ -94115,6 +95668,46 @@ self: { homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hakyll" = callPackage + ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring + , cmdargs, containers, cryptohash, data-default, deepseq, directory + , filepath, fsnotify, http-conduit, http-types, HUnit, lrucache + , mtl, network, network-uri, pandoc, pandoc-citeproc, parsec + , process, QuickCheck, random, regex-base, regex-tdfa, snap-core + , snap-server, system-filepath, tagsoup, test-framework + , test-framework-hunit, test-framework-quickcheck2, text, time + , time-locale-compat + }: + mkDerivation { + pname = "hakyll"; + version = "4.7.5.2"; + sha256 = "86359589370266cc6fecad41ad1574a54382e9981aa08203d931d684fdc70bf3"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base binary blaze-html blaze-markup bytestring cmdargs containers + cryptohash data-default deepseq directory filepath fsnotify + http-conduit http-types lrucache mtl network network-uri pandoc + pandoc-citeproc parsec process random regex-base regex-tdfa + snap-core snap-server system-filepath tagsoup text time + time-locale-compat + ]; + executableHaskellDepends = [ base directory filepath ]; + testHaskellDepends = [ + base binary blaze-html blaze-markup bytestring cmdargs containers + cryptohash data-default deepseq directory filepath fsnotify + http-conduit http-types HUnit lrucache mtl network network-uri + pandoc pandoc-citeproc parsec process QuickCheck random regex-base + regex-tdfa snap-core snap-server system-filepath tagsoup + test-framework test-framework-hunit test-framework-quickcheck2 text + time time-locale-compat + ]; + homepage = "http://jaspervdj.be/hakyll"; + description = "A static website compiler library"; + license = stdenv.lib.licenses.bsd3; }) {}; "hakyll-R" = callPackage @@ -95006,13 +96599,14 @@ self: { time unordered-containers userid web-routes web-routes-boomerang web-routes-happstack web-routes-hsp web-routes-th ]; + jailbreak = true; homepage = "http://www.happstack.com/"; description = "Happstack Authentication Library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "happstack-authenticate" = callPackage + "happstack-authenticate_2_3_4" = callPackage ({ mkDerivation, acid-state, aeson, authenticate, base , base64-bytestring, boomerang, bytestring, containers , data-default, email-validate, filepath, happstack-hsp @@ -95036,12 +96630,14 @@ self: { time unordered-containers userid web-routes web-routes-boomerang web-routes-happstack web-routes-hsp web-routes-th ]; + jailbreak = true; homepage = "http://www.happstack.com/"; description = "Happstack Authentication Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "happstack-authenticate_2_3_4_1" = callPackage + "happstack-authenticate" = callPackage ({ mkDerivation, acid-state, aeson, authenticate, base , base64-bytestring, boomerang, bytestring, containers , data-default, email-validate, filepath, happstack-hsp @@ -95068,7 +96664,6 @@ self: { homepage = "http://www.happstack.com/"; description = "Happstack Authentication Library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-clientsession" = callPackage @@ -98645,6 +100240,7 @@ self: { haskell-src-exts HaTeX hint parsec process text transformers ]; executableHaskellDepends = [ base ]; + jailbreak = true; homepage = "http://daniel-diaz.github.io/projects/haskintex"; description = "Haskell Evaluation inside of LaTeX code"; license = stdenv.lib.licenses.bsd3; @@ -98667,6 +100263,7 @@ self: { haskell-src-exts HaTeX hint parsec process text transformers ]; executableHaskellDepends = [ base ]; + jailbreak = true; homepage = "http://daniel-diaz.github.io/projects/haskintex"; description = "Haskell Evaluation inside of LaTeX code"; license = stdenv.lib.licenses.bsd3; @@ -98689,6 +100286,7 @@ self: { haskell-src-exts HaTeX hint parsec process text transformers ]; executableHaskellDepends = [ base ]; + jailbreak = true; homepage = "http://daniel-diaz.github.io/projects/haskintex"; description = "Haskell Evaluation inside of LaTeX code"; license = stdenv.lib.licenses.bsd3; @@ -100190,8 +101788,8 @@ self: { }: mkDerivation { pname = "haste-compiler"; - version = "0.5.4.1"; - sha256 = "e10aa93a2a0507301d984f2e446ac12250a769a7142ad3a68a65108824ae1bf8"; + version = "0.5.4.2"; + sha256 = "bfbf3a0f2c8a8c4387ef19aedf1a298a7ae15c6e77d01368044c13efb56bbcab"; configureFlags = [ "-fportable" ]; isLibrary = true; isExecutable = true; @@ -104577,7 +106175,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hint" = callPackage + "hint_0_4_3" = callPackage ({ mkDerivation, base, directory, exceptions, extensible-exceptions , filepath, ghc, ghc-mtl, ghc-paths, HUnit, mtl, random, unix }: @@ -104597,9 +106195,10 @@ self: { homepage = "https://github.com/mvdan/hint"; description = "Runtime Haskell interpreter (GHC API wrapper)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hint_0_5_1" = callPackage + "hint" = callPackage ({ mkDerivation, base, directory, exceptions, extensible-exceptions , filepath, ghc, ghc-paths, HUnit, mtl, random, unix }: @@ -104613,10 +106212,10 @@ self: { testHaskellDepends = [ base directory exceptions extensible-exceptions filepath HUnit ]; + doCheck = false; homepage = "https://github.com/mvdan/hint"; description = "Runtime Haskell interpreter (GHC API wrapper)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hint-server" = callPackage @@ -104629,6 +106228,7 @@ self: { libraryHaskellDepends = [ base eprocess exceptions hint monad-loops mtl ]; + jailbreak = true; description = "A server process that runs hint"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -106458,6 +108058,29 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hlint_1_9_32" = callPackage + ({ mkDerivation, ansi-terminal, base, cmdargs, containers, cpphs + , directory, extra, filepath, haskell-src-exts, hscolour, process + , refact, transformers, uniplate + }: + mkDerivation { + pname = "hlint"; + version = "1.9.32"; + sha256 = "09b135c4811b7a9eae06702fbdc42e0b45fc8c10d091d3d83e9428b64e3e73d7"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + ansi-terminal base cmdargs containers cpphs directory extra + filepath haskell-src-exts hscolour process refact transformers + uniplate + ]; + executableHaskellDepends = [ base ]; + homepage = "https://github.com/ndmitchell/hlint#readme"; + description = "Source code suggestions"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hlogger" = callPackage ({ mkDerivation, base, old-locale, time }: mkDerivation { @@ -108897,8 +110520,8 @@ self: { }: mkDerivation { pname = "hops"; - version = "0.4.1"; - sha256 = "e28a457b5f75c3e375f17143244da60e7754c6948bb0f8826c6d5efcbcf07d49"; + version = "0.5.0"; + sha256 = "94045ae1eed0a54e62e144943c132df95ca1c9804722bb773852077e745be607"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -109275,8 +110898,8 @@ self: { }: mkDerivation { pname = "hpack"; - version = "0.11.0"; - sha256 = "7ba2b43771ae71a5ae01706ef8c903abe03f8fbb89e023c8ab823af501b4494b"; + version = "0.11.2"; + sha256 = "e44b9118ffd1ac4fda00b488f48b57e8fc7818ab784944f4c7835264408eb8d9"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -109794,7 +111417,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hprotoc" = callPackage + "hprotoc_2_1_12" = callPackage ({ mkDerivation, alex, array, base, binary, bytestring, containers , directory, filepath, haskell-src-exts, mtl, parsec , protocol-buffers, protocol-buffers-descriptor, utf8-string @@ -109817,12 +111440,14 @@ self: { protocol-buffers-descriptor utf8-string ]; executableToolDepends = [ alex ]; + jailbreak = true; homepage = "https://github.com/k-bx/protocol-buffers"; description = "Parse Google Protocol Buffer specifications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hprotoc_2_2_0" = callPackage + "hprotoc" = callPackage ({ mkDerivation, alex, array, base, binary, bytestring, containers , directory, filepath, haskell-src-exts, mtl, parsec , protocol-buffers, protocol-buffers-descriptor, utf8-string @@ -109845,6 +111470,34 @@ self: { protocol-buffers-descriptor utf8-string ]; executableToolDepends = [ alex ]; + homepage = "https://github.com/k-bx/protocol-buffers"; + description = "Parse Google Protocol Buffer specifications"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "hprotoc_2_3_0" = callPackage + ({ mkDerivation, alex, array, base, binary, bytestring, containers + , directory, filepath, haskell-src-exts, mtl, parsec + , protocol-buffers, protocol-buffers-descriptor, utf8-string + }: + mkDerivation { + pname = "hprotoc"; + version = "2.3.0"; + sha256 = "c6666c0407a10d8aaa6072b11d20b0829ab07eabb2c65c4e0ffcc1047c893a02"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base binary bytestring containers directory filepath + haskell-src-exts mtl parsec protocol-buffers + protocol-buffers-descriptor utf8-string + ]; + libraryToolDepends = [ alex ]; + executableHaskellDepends = [ + array base binary bytestring containers directory filepath + haskell-src-exts mtl parsec protocol-buffers + protocol-buffers-descriptor utf8-string + ]; + executableToolDepends = [ alex ]; jailbreak = true; homepage = "https://github.com/k-bx/protocol-buffers"; description = "Parse Google Protocol Buffer specifications"; @@ -115092,6 +116745,8 @@ self: { pname = "http-api-data"; version = "0.2.1"; sha256 = "856138d79945770cdb4b522f58893a1c45014d39238cfc5b2eceeac089c56f71"; + revision = "1"; + editedCabalFile = "d51bcb90ab64f4b262ddbd657f9306fc8d313a296faeffcd57f3b8ce974bc4e2"; libraryHaskellDepends = [ base bytestring text time ]; testHaskellDepends = [ base doctest Glob hspec HUnit QuickCheck text time @@ -115110,6 +116765,8 @@ self: { pname = "http-api-data"; version = "0.2.2"; sha256 = "fba6a38c0f3a39e2ce02b42351953d9aa82f48ef83e5c921a9a1e719b8bc45dc"; + revision = "1"; + editedCabalFile = "10f995529774bcf3fada98f7f30c106076446c78db5c89a9e43ad95de69c4d3f"; libraryHaskellDepends = [ base bytestring text time time-locale-compat ]; @@ -120219,7 +121876,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "ig" = callPackage + "ig_0_6_1" = callPackage ({ mkDerivation, aeson, base, base16-bytestring, bytestring , conduit, conduit-extra, crypto-api, cryptohash , cryptohash-cryptoapi, data-default, http-conduit, http-types @@ -120239,9 +121896,10 @@ self: { homepage = "https://github.com/prowdsponsor/ig"; description = "Bindings to Instagram's API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ig_0_7" = callPackage + "ig" = callPackage ({ mkDerivation, aeson, base, base16-bytestring, bytestring , conduit, conduit-extra, crypto-api, cryptohash , cryptohash-cryptoapi, data-default, http-conduit, http-types @@ -120261,7 +121919,6 @@ self: { homepage = "https://github.com/prowdsponsor/ig"; description = "Bindings to Instagram's API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ige-mac-integration" = callPackage @@ -120424,7 +122081,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ihaskell" = callPackage + "ihaskell_0_8_3_0" = callPackage ({ mkDerivation, aeson, base, base64-bytestring, bin-package-db , bytestring, cereal, cmdargs, containers, directory, filepath, ghc , ghc-parser, ghc-paths, haskeline, haskell-src-exts, hlint, hspec @@ -120465,6 +122122,48 @@ self: { homepage = "http://github.com/gibiansky/IHaskell"; description = "A Haskell backend kernel for the IPython project"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ihaskell" = callPackage + ({ mkDerivation, aeson, base, base64-bytestring, bin-package-db + , bytestring, cereal, cmdargs, containers, directory, filepath, ghc + , ghc-parser, ghc-paths, haskeline, haskell-src-exts, hlint, hspec + , http-client, http-client-tls, HUnit, ipython-kernel, mtl, parsec + , process, random, setenv, shelly, split, stm, strict, system-argv0 + , text, transformers, unix, unordered-containers, utf8-string, uuid + , vector + }: + mkDerivation { + pname = "ihaskell"; + version = "0.8.4.0"; + sha256 = "f77909f31fc5c8b0792460c09248a3b4f2a54cbbce060d393bd542c4fae27f27"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base base64-bytestring bin-package-db bytestring cereal + cmdargs containers directory filepath ghc ghc-parser ghc-paths + haskeline haskell-src-exts hlint http-client http-client-tls + ipython-kernel mtl parsec process random shelly split stm strict + system-argv0 text transformers unix unordered-containers + utf8-string uuid vector + ]; + executableHaskellDepends = [ + aeson base bin-package-db bytestring containers directory ghc + ipython-kernel process strict text transformers unix + ]; + testHaskellDepends = [ + aeson base base64-bytestring bin-package-db bytestring cereal + cmdargs containers directory filepath ghc ghc-parser ghc-paths + haskeline haskell-src-exts hlint hspec http-client http-client-tls + HUnit ipython-kernel mtl parsec process random setenv shelly split + stm strict system-argv0 text transformers unix unordered-containers + utf8-string uuid vector + ]; + doCheck = false; + homepage = "http://github.com/gibiansky/IHaskell"; + description = "A Haskell backend kernel for the IPython project"; + license = stdenv.lib.licenses.mit; }) {}; "ihaskell-aeson" = callPackage @@ -120685,18 +122384,17 @@ self: { "ihaskell-widgets" = callPackage ({ mkDerivation, aeson, base, containers, ihaskell, ipython-kernel - , nats, scientific, singletons, text, unix, unordered-containers - , vector, vinyl + , scientific, singletons, text, unix, unordered-containers, vector + , vinyl }: mkDerivation { pname = "ihaskell-widgets"; - version = "0.2.2.1"; - sha256 = "c085e47379547e61009d9ffc2c48f2b038a7bbd55d537e328d0e2cb064cf12d9"; + version = "0.2.3.1"; + sha256 = "77ff4cce8bf62831ccb22984bc9539accfb72eafdf5f36fcdcdd7b85f6e5c32b"; libraryHaskellDepends = [ - aeson base containers ihaskell ipython-kernel nats scientific - singletons text unix unordered-containers vector vinyl + aeson base containers ihaskell ipython-kernel scientific singletons + text unix unordered-containers vector vinyl ]; - jailbreak = true; homepage = "http://www.github.com/gibiansky/IHaskell"; description = "IPython standard widgets for IHaskell"; license = stdenv.lib.licenses.mit; @@ -123227,7 +124925,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ipython-kernel" = callPackage + "ipython-kernel_0_8_3_0" = callPackage ({ mkDerivation, aeson, base, bytestring, cereal, containers , directory, filepath, mtl, parsec, process, SHA, temporary, text , transformers, unordered-containers, uuid, zeromq4-haskell @@ -123249,6 +124947,31 @@ self: { homepage = "http://github.com/gibiansky/IHaskell"; description = "A library for creating kernels for IPython frontends"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ipython-kernel" = callPackage + ({ mkDerivation, aeson, base, bytestring, cereal, containers + , directory, filepath, mtl, parsec, process, SHA, temporary, text + , transformers, unordered-containers, uuid, zeromq4-haskell + }: + mkDerivation { + pname = "ipython-kernel"; + version = "0.8.4.0"; + sha256 = "ac4c822836d5b2cecf7ac4c61fe32ed876b09d18bcbe44760a6096bcd7338264"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring cereal containers directory filepath mtl + process SHA temporary text transformers unordered-containers uuid + zeromq4-haskell + ]; + executableHaskellDepends = [ + base filepath mtl parsec text transformers + ]; + homepage = "http://github.com/gibiansky/IHaskell"; + description = "A library for creating kernels for IPython frontends"; + license = stdenv.lib.licenses.mit; }) {}; "irc" = callPackage @@ -125129,6 +126852,21 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "js-jquery_1_12_2" = callPackage + ({ mkDerivation, base, HTTP }: + mkDerivation { + pname = "js-jquery"; + version = "1.12.2"; + sha256 = "858dffb2d7ad9b4e3d0989881199825da3b350dca7f759fd6b806a41f5342db6"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base HTTP ]; + doCheck = false; + homepage = "https://github.com/ndmitchell/js-jquery#readme"; + description = "Obtain minified jQuery code"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "jsaddle" = callPackage ({ mkDerivation, base, doctest, glib, gtk3, lens, QuickCheck , template-haskell, text, transformers, vector, webkitgtk3 @@ -125468,6 +127206,7 @@ self: { hashable hflags lens mtl pretty process QuickCheck scientific smallcheck text uniplate unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/mgajda/json-autotype"; description = "Automatic type declaration for JSON input data"; license = stdenv.lib.licenses.bsd3; @@ -125501,6 +127240,7 @@ self: { hashable hflags lens mtl pretty process QuickCheck scientific smallcheck text uniplate unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/mgajda/json-autotype"; description = "Automatic type declaration for JSON input data"; license = stdenv.lib.licenses.bsd3; @@ -126430,7 +128170,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "jwt" = callPackage + "jwt_0_6_0" = callPackage ({ mkDerivation, aeson, base, base64-bytestring, bytestring , containers, cryptohash, data-default, http-types, HUnit, lens , lens-aeson, network, network-uri, QuickCheck, scientific @@ -126452,13 +128192,13 @@ self: { QuickCheck scientific semigroups tasty tasty-hunit tasty-quickcheck tasty-th text time unordered-containers vector ]; - doCheck = false; homepage = "https://bitbucket.org/ssaasen/haskell-jwt"; description = "JSON Web Token (JWT) decoding and encoding"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "jwt_0_7_0" = callPackage + "jwt" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, cryptonite , data-default, doctest, http-types, HUnit, lens, lens-aeson , memory, network-uri, QuickCheck, scientific, semigroups, tasty @@ -126480,10 +128220,10 @@ self: { scientific semigroups tasty tasty-hunit tasty-quickcheck tasty-th text time unordered-containers vector ]; + doCheck = false; homepage = "https://bitbucket.org/ssaasen/haskell-jwt"; description = "JSON Web Token (JWT) decoding and encoding"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kademlia" = callPackage @@ -126997,7 +128737,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "kdt" = callPackage + "kdt_0_2_3" = callPackage ({ mkDerivation, base, deepseq, deepseq-generics, heap, QuickCheck }: mkDerivation { @@ -127009,6 +128749,21 @@ self: { homepage = "https://github.com/giogadi/kdt"; description = "Fast and flexible k-d trees for various types of point queries"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "kdt" = callPackage + ({ mkDerivation, base, deepseq, deepseq-generics, heap, QuickCheck + }: + mkDerivation { + pname = "kdt"; + version = "0.2.4"; + sha256 = "bc0f8f9ac0cb01466273171f47b627abe170d1130bd59657fb9198b4f9479f9a"; + libraryHaskellDepends = [ base deepseq deepseq-generics heap ]; + testHaskellDepends = [ base deepseq deepseq-generics QuickCheck ]; + homepage = "https://github.com/giogadi/kdt"; + description = "Fast and flexible k-d trees for various types of point queries"; + license = stdenv.lib.licenses.mit; }) {}; "keera-callbacks" = callPackage @@ -128470,8 +130225,8 @@ self: { ({ mkDerivation, base, servant, tasty, tasty-hspec }: mkDerivation { pname = "lackey"; - version = "0.1.2"; - sha256 = "7ec32a367056ba3a5f7af81c14c9d91547c83339077ebe56f06a1d3522782a99"; + version = "0.2.0"; + sha256 = "8c54bd4c8901fe0a16149d57e366c3d11d21b9656f8be9ffe8eb86f25e0d0f19"; libraryHaskellDepends = [ base servant ]; testHaskellDepends = [ base servant tasty tasty-hspec ]; homepage = "https://github.com/tfausak/lackey#readme"; @@ -130165,15 +131920,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "language-javascript_0_6_0_1" = callPackage + "language-javascript_0_6_0_2" = callPackage ({ mkDerivation, alex, array, base, blaze-builder, bytestring , Cabal, containers, happy, hspec, mtl, QuickCheck, text , utf8-light, utf8-string }: mkDerivation { pname = "language-javascript"; - version = "0.6.0.1"; - sha256 = "99d9f92ba8bdab7a4f33e639dfbf572404b0e308f9fb565768d8110ed388305f"; + version = "0.6.0.2"; + sha256 = "fce59a0d5483aacd326dacf378662b347224e41e8c0afb9d03761a33bc675d6f"; libraryHaskellDepends = [ array base blaze-builder bytestring containers mtl text utf8-string ]; @@ -130664,8 +132419,8 @@ self: { ({ mkDerivation, base, pretty }: mkDerivation { pname = "language-vhdl"; - version = "0.1.2.6"; - sha256 = "87d000bdf5872b26329980825c0dd668ae6070f48e32836d13e3817ad10f7ddc"; + version = "0.1.2.8"; + sha256 = "6a245c5330b5df15ad3f8345a3351846bcedda6d4ea3f73a0156f3bf4292c580"; libraryHaskellDepends = [ base pretty ]; homepage = "https://github.com/markus-git/language-vhdl"; description = "VHDL AST and pretty printer in Haskell"; @@ -132984,12 +134739,12 @@ self: { }) {inherit (pkgs) taglib;}; "libvirt-hs" = callPackage - ({ mkDerivation, base, c2hs, libvirt, syb }: + ({ mkDerivation, base, c2hs, libvirt, syb, unix }: mkDerivation { pname = "libvirt-hs"; - version = "0.1.2"; - sha256 = "5472bb1b8e153afc6352176731140c99eaca03b34da447bd3f55ce2957f9ee62"; - libraryHaskellDepends = [ base syb ]; + version = "0.2.0"; + sha256 = "52549a02bb9c736eb55e89c5353da74397a981ce990f1cb32eea1f98c8bd26a8"; + libraryHaskellDepends = [ base syb unix ]; libraryPkgconfigDepends = [ libvirt ]; libraryToolDepends = [ c2hs ]; homepage = "http://redmine.iportnov.ru/projects/libvirt-hs"; @@ -139703,7 +141458,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mbox" = callPackage + "mbox_0_3_1" = callPackage ({ mkDerivation, base, safe, text, time, time-locale-compat }: mkDerivation { pname = "mbox"; @@ -139714,6 +141469,18 @@ self: { libraryHaskellDepends = [ base safe text time time-locale-compat ]; description = "Read and write standard mailbox files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "mbox" = callPackage + ({ mkDerivation, base, safe, text, time, time-locale-compat }: + mkDerivation { + pname = "mbox"; + version = "0.3.3"; + sha256 = "080a3eafa24af47d5bf042871d7ec0322ddb129e50d6f131555925a3842f19e5"; + libraryHaskellDepends = [ base safe text time time-locale-compat ]; + description = "Read and write standard mailbox files"; + license = stdenv.lib.licenses.bsd3; }) {}; "mbox-tools" = callPackage @@ -142378,7 +144145,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mockery" = callPackage + "mockery_0_3_2" = callPackage ({ mkDerivation, base, bytestring, directory, filepath, hspec , logging-facade, temporary }: @@ -142394,6 +144161,27 @@ self: { ]; description = "Support functions for automated testing"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "mockery" = callPackage + ({ mkDerivation, base, base-compat, bytestring, directory, filepath + , hspec, logging-facade, temporary + }: + mkDerivation { + pname = "mockery"; + version = "0.3.3"; + sha256 = "61157a39a3123001e0b8c7714e171980e879d01bf43f7b171e393ecab6c0fad4"; + libraryHaskellDepends = [ + base base-compat bytestring directory filepath logging-facade + temporary + ]; + testHaskellDepends = [ + base base-compat bytestring directory filepath hspec logging-facade + temporary + ]; + description = "Support functions for automated testing"; + license = stdenv.lib.licenses.mit; }) {}; "modbus-tcp" = callPackage @@ -145211,6 +146999,35 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "morte_1_5_0" = callPackage + ({ mkDerivation, alex, array, base, binary, containers, deepseq + , Earley, http-client, http-client-tls, microlens, microlens-mtl + , mtl, optparse-applicative, pipes, QuickCheck, system-fileio + , system-filepath, tasty, tasty-hunit, tasty-quickcheck, text + , text-format, transformers + }: + mkDerivation { + pname = "morte"; + version = "1.5.0"; + sha256 = "34b2bc43e743223b1a917432d1ca2d727166f41e9ee3da1ef0a583f452f08581"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base binary containers deepseq Earley http-client + http-client-tls microlens microlens-mtl pipes system-fileio + system-filepath text text-format transformers + ]; + libraryToolDepends = [ alex ]; + executableHaskellDepends = [ base optparse-applicative text ]; + testHaskellDepends = [ + base mtl QuickCheck system-filepath tasty tasty-hunit + tasty-quickcheck text transformers + ]; + description = "A bare-bones calculus of constructions"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "mosaico-lib" = callPackage ({ mkDerivation, base, base-unicode-symbols, colour, diagrams-cairo , diagrams-core, diagrams-gtk, diagrams-lib, glib, gtk, JuicyPixels @@ -145956,6 +147773,7 @@ self: { homepage = "https://github.com/gwern/mueval"; description = "Safely evaluate pure Haskell expressions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mulang" = callPackage @@ -148252,6 +150070,7 @@ self: { homepage = "http://github.com/nfjinjing/nemesis-titan"; description = "A collection of Nemesis tasks to bootstrap a Haskell project with a focus on continuous integration"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nerf" = callPackage @@ -150068,7 +151887,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "network-uri" = callPackage + "network-uri_2_6_0_3" = callPackage ({ mkDerivation, base, deepseq, HUnit, parsec, test-framework , test-framework-hunit, test-framework-quickcheck2 }: @@ -150085,9 +151904,10 @@ self: { homepage = "https://github.com/haskell/network-uri"; description = "URI manipulation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "network-uri_2_6_1_0" = callPackage + "network-uri" = callPackage ({ mkDerivation, base, deepseq, HUnit, parsec, test-framework , test-framework-hunit, test-framework-quickcheck2 }: @@ -150103,7 +151923,6 @@ self: { homepage = "https://github.com/haskell/network-uri"; description = "URI manipulation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-uri-static" = callPackage @@ -151795,8 +153614,8 @@ self: { }: mkDerivation { pname = "octane"; - version = "0.4.2"; - sha256 = "e187f7f44316d87b69028b41cfdcd5991c76459a2d3f3092d0c6d509605996ea"; + version = "0.4.5"; + sha256 = "b191dc176c5e17d1749a8cacbe9a6c1e6983a0aa9fe3cfad67002dde2d96094f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -152087,6 +153906,7 @@ self: { jailbreak = true; description = "An OpenLayers JavaScript Wrapper and Webframework with snaplet-fay"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "omaketex" = callPackage @@ -154545,7 +156365,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pagerduty" = callPackage + "pagerduty_0_0_6" = callPackage ({ mkDerivation, aeson, base, bifunctors, bytestring , bytestring-conversion, conduit, data-default-class, exceptions , generics-sop, http-client, http-types, lens, lens-aeson, mmorph @@ -154567,6 +156387,31 @@ self: { homepage = "http://github.com/brendanhay/pagerduty"; description = "Client library for PagerDuty Integration and REST APIs"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pagerduty" = callPackage + ({ mkDerivation, aeson, base, bifunctors, bytestring + , bytestring-conversion, conduit, data-default-class, exceptions + , generics-sop, http-client, http-types, lens, lens-aeson, mmorph + , monad-control, mtl, template-haskell, text, time + , time-locale-compat, transformers, transformers-base + , transformers-compat, unordered-containers + }: + mkDerivation { + pname = "pagerduty"; + version = "0.0.7"; + sha256 = "5e46075a080cf6c6561977e3f0cdd53a32a627b3a193d58c61a05e628757fe9c"; + libraryHaskellDepends = [ + aeson base bifunctors bytestring bytestring-conversion conduit + data-default-class exceptions generics-sop http-client http-types + lens lens-aeson mmorph monad-control mtl template-haskell text time + time-locale-compat transformers transformers-base + transformers-compat unordered-containers + ]; + homepage = "http://github.com/brendanhay/pagerduty"; + description = "Client library for PagerDuty Integration and REST APIs"; + license = "unknown"; }) {}; "pagure-hook-receiver" = callPackage @@ -155107,6 +156952,52 @@ self: { license = "GPL"; }) {}; + "pandoc_1_17_0_1" = callPackage + ({ mkDerivation, aeson, ansi-terminal, array, base + , base64-bytestring, binary, blaze-html, blaze-markup, bytestring + , cmark, containers, data-default, deepseq, Diff, directory + , executable-path, extensible-exceptions, filemanip, filepath + , ghc-prim, haddock-library, highlighting-kate, hslua, HTTP + , http-client, http-client-tls, http-types, HUnit, JuicyPixels, mtl + , network, network-uri, old-time, pandoc-types, parsec, process + , QuickCheck, random, scientific, SHA, syb, tagsoup, temporary + , test-framework, test-framework-hunit, test-framework-quickcheck2 + , texmath, text, time, unordered-containers, vector, xml, yaml + , zip-archive, zlib + }: + mkDerivation { + pname = "pandoc"; + version = "1.17.0.1"; + sha256 = "5d003fe7c6dec96560bf940ef857e169204f0b1428edd799ddcf4046c50898f5"; + configureFlags = [ "-fhttps" ]; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson array base base64-bytestring binary blaze-html blaze-markup + bytestring cmark containers data-default deepseq directory + extensible-exceptions filemanip filepath ghc-prim haddock-library + highlighting-kate hslua HTTP http-client http-client-tls http-types + JuicyPixels mtl network network-uri old-time pandoc-types parsec + process random scientific SHA syb tagsoup temporary texmath text + time unordered-containers vector xml yaml zip-archive zlib + ]; + executableHaskellDepends = [ + aeson base bytestring containers directory extensible-exceptions + filepath highlighting-kate HTTP network network-uri pandoc-types + text yaml + ]; + testHaskellDepends = [ + ansi-terminal base bytestring containers Diff directory + executable-path filepath highlighting-kate HUnit pandoc-types + process QuickCheck syb test-framework test-framework-hunit + test-framework-quickcheck2 text zip-archive + ]; + homepage = "http://pandoc.org"; + description = "Conversion between markup formats"; + license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "pandoc-citeproc_0_6" = callPackage ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring , containers, data-default, directory, filepath, hs-bibutils, mtl @@ -155301,7 +157192,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pandoc-citeproc" = callPackage + "pandoc-citeproc_0_9" = callPackage ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring , containers, data-default, directory, filepath, hs-bibutils, mtl , old-locale, pandoc, pandoc-types, parsec, process, rfc5051 @@ -155332,9 +157223,10 @@ self: { homepage = "https://github.com/jgm/pandoc-citeproc"; description = "Supports using pandoc with citeproc"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pandoc-citeproc_0_9_1_1" = callPackage + "pandoc-citeproc" = callPackage ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring , containers, data-default, directory, filepath, hs-bibutils, mtl , old-locale, pandoc, pandoc-types, parsec, process, rfc5051 @@ -155365,7 +157257,6 @@ self: { homepage = "https://github.com/jgm/pandoc-citeproc"; description = "Supports using pandoc with citeproc"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pandoc-citeproc-preamble" = callPackage @@ -166404,10 +168295,8 @@ self: { }: mkDerivation { pname = "prometheus"; - version = "0.1.1"; - sha256 = "07454399e722968dfa89a0a450b47000158faf04e215ad0dd5617c4113e48a82"; - revision = "1"; - editedCabalFile = "68587df8835a894134e468240589efe668b14b60135f1333565769dba7effc15"; + version = "0.2.0"; + sha256 = "6e053e03c30eb591d3e5467058c8fede0b56c961a2d8511cbd4fcf1b99b09c8a"; libraryHaskellDepends = [ atomic-primops base bytestring containers http-types mtl text transformers wai warp @@ -166623,7 +168512,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "Simple audio library for Windows, Linux, OSX"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) alsaLib;}; "protobuf" = callPackage @@ -166764,7 +168653,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "protocol-buffers" = callPackage + "protocol-buffers_2_1_12" = callPackage ({ mkDerivation, array, base, binary, bytestring, containers , directory, filepath, mtl, parsec, syb, utf8-string }: @@ -166779,9 +168668,10 @@ self: { homepage = "https://github.com/k-bx/protocol-buffers"; description = "Parse Google Protocol Buffer specifications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "protocol-buffers_2_2_0" = callPackage + "protocol-buffers" = callPackage ({ mkDerivation, array, base, binary, bytestring, containers , directory, filepath, mtl, parsec, syb, utf8-string }: @@ -166796,6 +168686,23 @@ self: { homepage = "https://github.com/k-bx/protocol-buffers"; description = "Parse Google Protocol Buffer specifications"; license = stdenv.lib.licenses.bsd3; + }) {}; + + "protocol-buffers_2_3_0" = callPackage + ({ mkDerivation, array, base, binary, bytestring, containers + , directory, filepath, mtl, parsec, syb, utf8-string + }: + mkDerivation { + pname = "protocol-buffers"; + version = "2.3.0"; + sha256 = "46ace772d0bea68026a12c72d175f54f4fe4d63be0fcd806406c6b7b0c45fdad"; + libraryHaskellDepends = [ + array base binary bytestring containers directory filepath mtl + parsec syb utf8-string + ]; + homepage = "https://github.com/k-bx/protocol-buffers"; + description = "Parse Google Protocol Buffer specifications"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -166879,7 +168786,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "protocol-buffers-descriptor" = callPackage + "protocol-buffers-descriptor_2_1_12" = callPackage ({ mkDerivation, base, bytestring, containers, protocol-buffers }: mkDerivation { pname = "protocol-buffers-descriptor"; @@ -166888,12 +168795,14 @@ self: { libraryHaskellDepends = [ base bytestring containers protocol-buffers ]; + jailbreak = true; homepage = "https://github.com/k-bx/protocol-buffers"; description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "protocol-buffers-descriptor_2_2_0" = callPackage + "protocol-buffers-descriptor" = callPackage ({ mkDerivation, base, bytestring, containers, protocol-buffers }: mkDerivation { pname = "protocol-buffers-descriptor"; @@ -166902,6 +168811,20 @@ self: { libraryHaskellDepends = [ base bytestring containers protocol-buffers ]; + homepage = "https://github.com/k-bx/protocol-buffers"; + description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "protocol-buffers-descriptor_2_3_0" = callPackage + ({ mkDerivation, base, bytestring, containers, protocol-buffers }: + mkDerivation { + pname = "protocol-buffers-descriptor"; + version = "2.3.0"; + sha256 = "54a2ee0eedb1be7a5b9de25750b9f5aef021491081460acee444f07998dccdaf"; + libraryHaskellDepends = [ + base bytestring containers protocol-buffers + ]; jailbreak = true; homepage = "https://github.com/k-bx/protocol-buffers"; description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification"; @@ -167234,8 +169157,8 @@ self: { ({ mkDerivation, base, filepath, hspec, template-haskell }: mkDerivation { pname = "publicsuffix"; - version = "0.20160223"; - sha256 = "7e14ff029a010b45aebb8343559df27640ea123ac15fca6d7eff28ef273f9ab0"; + version = "0.20160320"; + sha256 = "e2d2e1a75eb71742d338f3a5c49673121c07a12ea268671cedf801d70020e344"; libraryHaskellDepends = [ base filepath template-haskell ]; testHaskellDepends = [ base hspec ]; homepage = "https://github.com/wereHamster/publicsuffix-haskell/"; @@ -167919,6 +169842,22 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "purescript-bridge" = callPackage + ({ mkDerivation, base, Cabal, containers, directory, filepath + , generic-deriving, HUnit, text + }: + mkDerivation { + pname = "purescript-bridge"; + version = "0.3.0.3"; + sha256 = "2656f56eb3c09ac758219bcec67725757dd744c4d47fad25e26cb9af04dd8479"; + libraryHaskellDepends = [ + base containers directory filepath generic-deriving text + ]; + testHaskellDepends = [ base Cabal HUnit ]; + description = "Generate PureScript data types from Haskell data types"; + license = stdenv.lib.licenses.agpl3; + }) {}; + "purescript-bundle-fast" = callPackage ({ mkDerivation, base, containers, directory, filepath , optparse-applicative, text, vector @@ -176128,6 +178067,7 @@ self: { libraryHaskellDepends = [ array base parsec protocol-buffers protocol-buffers-descriptor ]; + jailbreak = true; homepage = "http://github.com/markhibberd/riak-haskell-client"; description = "Haskell types for the Riak protocol buffer API"; license = "unknown"; @@ -179955,7 +181895,7 @@ self: { ]; description = "image compositing with sdl2 - declarative style"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sdl2-image" = callPackage @@ -180874,8 +182814,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "semiring-simple"; - version = "0.2.1.0"; - sha256 = "5655c761de3f2123f1c4e6eaa042148cb795fc95bfa173a5441d4a6317ba9c1c"; + version = "1.0.0.0"; + sha256 = "9567b7fa7d83f7f7d6abf9b0274c7e01e44a6357e2441d5b62e4a5720e57bf86"; libraryHaskellDepends = [ base ]; description = "A module for dealing with semirings"; license = stdenv.lib.licenses.bsd3; @@ -181601,6 +183541,8 @@ self: { pname = "servant"; version = "0.5"; sha256 = "b83ca161d81c0c62150d000266549fc6b5a09f7ecc15f597b7f0ae8bcc77caf5"; + revision = "1"; + editedCabalFile = "5b79e90dc1c884c4e90041e5a68a0bdf435a2ff93345f5cb38ee01d3f3c5c732"; libraryHaskellDepends = [ aeson attoparsec base base-compat bytestring bytestring-conversion case-insensitive http-api-data http-media http-types network-uri @@ -181639,7 +183581,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-JuicyPixels" = callPackage + "servant-JuicyPixels_0_3_0_0" = callPackage ({ mkDerivation, base, bytestring, http-media, JuicyPixels, servant , servant-server, wai, warp }: @@ -181658,9 +183600,10 @@ self: { homepage = "https://github.com/tvh/servant-JuicyPixels"; description = "Servant support for JuicyPixels"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-JuicyPixels_0_3_0_1" = callPackage + "servant-JuicyPixels" = callPackage ({ mkDerivation, base, bytestring, http-media, JuicyPixels, servant , servant-server, wai, warp }: @@ -181679,7 +183622,6 @@ self: { homepage = "https://github.com/tvh/servant-JuicyPixels"; description = "Servant support for JuicyPixels"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-blaze_0_4_4_6" = callPackage @@ -182260,6 +184202,7 @@ self: { 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 @@ -182498,6 +184441,7 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "Automatically derive javascript functions to query servant webservices"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-lucid" = callPackage @@ -183023,6 +184967,8 @@ self: { pname = "servant-swagger"; version = "1.0.3"; sha256 = "ea1b3c7f33ae1c788ef33858c9c74849f450155c1bd81dcd472a36389aa17597"; + revision = "1"; + editedCabalFile = "9d906155448bdd1c213cc8ee6027eb9c16f40dbdcbc9e23509ed382446851807"; libraryHaskellDepends = [ aeson base bytestring hspec http-media lens QuickCheck servant swagger2 text unordered-containers @@ -183045,8 +184991,8 @@ self: { pname = "servant-yaml"; version = "0.1.0.0"; sha256 = "c917d9b046b06a9c4386f743a78142c27cf7f0ec1ad8562770ab9828f2ee3204"; - revision = "3"; - editedCabalFile = "719641bbee8e5176d08614687070c45058c8b5a3ac6fcb1037599f6a9b75df58"; + revision = "4"; + editedCabalFile = "7384ce42808b7df6200f48299a55524e1793072a33529b433eef0113319fd742"; libraryHaskellDepends = [ base bytestring http-media servant yaml ]; @@ -187133,20 +189079,18 @@ self: { ({ mkDerivation, aeson, ansi-terminal, attoparsec, base , bloomfilter, bytestring, conduit, conduit-extra, containers , directory, filepath, http-conduit, http-types - , optparse-applicative, resourcet, stringsearch, terminal-size - , text, transformers + , optparse-applicative, resourcet, stringsearch, text, transformers }: mkDerivation { pname = "sloane"; - version = "4.2.0"; - sha256 = "cd2bf21a9ea502ded331780b074991e4b5e06e7b276a6874c9b921bc70ba3595"; + version = "5.0.0"; + sha256 = "0ddd40bf98e6035d66ab0bd89b94b403dc746c6175fe4029c0a8cf7d0ba3276d"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ aeson ansi-terminal attoparsec base bloomfilter bytestring conduit conduit-extra containers directory filepath http-conduit http-types - optparse-applicative resourcet stringsearch terminal-size text - transformers + optparse-applicative resourcet stringsearch text transformers ]; homepage = "http://akc.is/sloane"; description = "A command line interface to Sloane's OEIS"; @@ -188264,9 +190208,11 @@ self: { base directory directory-tree hint mtl snap-core template-haskell time unix ]; + jailbreak = true; homepage = "http://snapframework.com/"; description = "Snap: A Haskell Web Framework: dynamic loader"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-loader-static" = callPackage @@ -192288,8 +194234,8 @@ self: { pname = "stack"; version = "1.0.4.2"; sha256 = "3becd40f8886477a943e2feaed6b34d0ea283e770dc35379944e41cb770838d2"; - revision = "1"; - editedCabalFile = "e208e42baa3fc4146f82ba334f0c65858032239177e19c0b8d374bec9d76d061"; + revision = "2"; + editedCabalFile = "27ed2fa5c035d631eda2be1b73da98e6b627da5277cfd9a4b1a31941ad9484b1"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -196814,23 +198760,6 @@ self: { }) {}; "svg-tree" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers - , JuicyPixels, lens, linear, mtl, scientific, text, transformers - , vector, xml - }: - mkDerivation { - pname = "svg-tree"; - version = "0.4.1"; - sha256 = "eacdf66bad077c31d05979d82090dac7839a909d43e50876698d6c61eb0f7fe5"; - libraryHaskellDepends = [ - attoparsec base bytestring containers JuicyPixels lens linear mtl - scientific text transformers vector xml - ]; - description = "SVG file loader and serializer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "svg-tree_0_4_2" = callPackage ({ mkDerivation, attoparsec, base, bytestring, containers , JuicyPixels, lens, linear, mtl, scientific, text, transformers , vector, xml @@ -196847,7 +198776,6 @@ self: { ]; description = "SVG file loader and serializer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "svg2q" = callPackage @@ -201761,7 +203689,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "texmath" = callPackage + "texmath_0_8_4_2" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , mtl, network-uri, pandoc-types, parsec, process, split, syb , temporary, text, utf8-string, xml @@ -201783,9 +203711,10 @@ self: { homepage = "http://github.com/jgm/texmath"; description = "Conversion between formats used to represent mathematics"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "texmath_0_8_5" = callPackage + "texmath" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , mtl, network-uri, pandoc-types, parsec, process, split, syb , temporary, text, utf8-string, xml @@ -201807,7 +203736,6 @@ self: { homepage = "http://github.com/jgm/texmath"; description = "Conversion between formats used to represent mathematics"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "texrunner" = callPackage @@ -204832,7 +206760,7 @@ self: { license = stdenv.lib.licenses.bsd2; }) {}; - "tinylog" = callPackage + "tinylog_0_12_1" = callPackage ({ mkDerivation, auto-update, base, bytestring, containers , double-conversion, fast-logger, text, transformers, unix-time }: @@ -204849,6 +206777,24 @@ self: { homepage = "https://github.com/twittner/tinylog/"; description = "Simplistic logging using fast-logger"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tinylog" = callPackage + ({ mkDerivation, base, bytestring, containers, double-conversion + , fast-logger, text, transformers, unix-time + }: + mkDerivation { + pname = "tinylog"; + version = "0.13.0"; + sha256 = "9acfff4bb36595c91ad9bdb7b9105fd46b2cb123b3b359c9825c9ea8dbcad637"; + libraryHaskellDepends = [ + base bytestring containers double-conversion fast-logger text + transformers unix-time + ]; + homepage = "https://gitlab.com/twittner/tinylog/"; + description = "Simplistic logging using fast-logger"; + license = stdenv.lib.licenses.mpl20; }) {}; "tinytemplate" = callPackage @@ -205967,6 +207913,7 @@ self: { ]; description = "Text transformer and interpreter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "transformations" = callPackage @@ -206633,6 +208580,7 @@ self: { jailbreak = true; description = "A library for tropical mathematics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "true-name_0_0_0_2" = callPackage @@ -208672,8 +210620,8 @@ self: { }: mkDerivation { pname = "typed-wire"; - version = "0.3.0.0"; - sha256 = "3faec8db44caf3658116619d88f9fb00dbf1b4e9f4e8106e4c1aeff2e7ec220f"; + version = "0.3.1.0"; + sha256 = "d6f7fea68057427d3d2ef1c0eae2a4c0c9c1c4d4920d2bab38be8535854be03d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -208686,7 +210634,7 @@ self: { aeson base bytestring directory filepath HTF process temporary text ]; homepage = "http://github.com/typed-wire/typed-wire#readme"; - description = "Language idependent type-safe communication"; + description = "Language-independent type-safe communication"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -209776,6 +211724,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "union" = callPackage + ({ mkDerivation, base, lens, vinyl }: + mkDerivation { + pname = "union"; + version = "0.1.0.0"; + sha256 = "a1a3cd3959ce688656c75bf905fb7ba98ade43da2154dfb52879ac89ecda5625"; + revision = "1"; + editedCabalFile = "b727e5c9325d1672d30a1da433ddd1314775d7b50d2148713f419e524444ed79"; + libraryHaskellDepends = [ base lens vinyl ]; + description = "Extensible type-safe unions"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "union-find" = callPackage ({ mkDerivation, base, containers, transformers }: mkDerivation { @@ -213305,8 +215266,8 @@ self: { ({ mkDerivation, base, deepseq, vector }: mkDerivation { pname = "vector-sized"; - version = "0.2.0.0"; - sha256 = "bbdf2d23e3edd5bb059181415368bc95b97d2bd09e642e500f1f9a0acb0a4933"; + version = "0.3.0.0"; + sha256 = "d564cd03d553684fe94c09cc076b9b4878886bc0e75e235bc273cb13ce97dbbf"; libraryHaskellDepends = [ base deepseq vector ]; homepage = "http://github.com/expipiplus1/vector-sized#readme"; description = "Size tagged vectors"; @@ -213983,8 +215944,10 @@ self: { }: mkDerivation { pname = "vivid"; - version = "0.2.0.3"; - sha256 = "c8fbee45579182303011e32979673f2a823653e97a36967842a2c8842f4898e8"; + version = "0.2.0.4"; + sha256 = "8ce9dbb192bfae4fb7e8e5b470a27d9197aef1c46baa83843a0ac8ac280ab21e"; + revision = "5"; + editedCabalFile = "588b1a39865383e72566ed5c9ef5be6b06bf90c8260b0c7717f178c37b72e30a"; libraryHaskellDepends = [ base binary bytestring containers filepath hashable MonadRandom mtl network process random random-shuffle split stm time transformers @@ -215058,8 +217021,8 @@ self: { }: mkDerivation { pname = "wai-devel"; - version = "0.0.0.3"; - sha256 = "3ff4291b31a24e02b859f44b2aba55dcce7dc55850c29a9802570b2431fdf646"; + version = "0.0.0.4"; + sha256 = "c36b6e1fe41f122a7b6fbcf1dbf7bfd6e829e1f3efe23d124bdf81f55ce0c27e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -215699,7 +217662,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-extra" = callPackage + "wai-extra_3_0_14_3" = callPackage ({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring , blaze-builder, bytestring, case-insensitive, containers, cookie , data-default-class, deepseq, directory, fast-logger, hspec @@ -215726,6 +217689,36 @@ self: { homepage = "http://github.com/yesodweb/wai"; description = "Provides some basic WAI handlers and middleware"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wai-extra" = callPackage + ({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring + , blaze-builder, bytestring, case-insensitive, containers, cookie + , data-default-class, deepseq, directory, fast-logger, hspec + , http-types, HUnit, iproute, lifted-base, network, old-locale + , resourcet, streaming-commons, stringsearch, text, time + , transformers, unix, unix-compat, vault, void, wai, wai-logger + , word8, zlib + }: + mkDerivation { + pname = "wai-extra"; + version = "3.0.15"; + sha256 = "6629e2f2db30e3b7f70ef96b06f4a0df32c7b9093eec30d9ad79919826ec4270"; + libraryHaskellDepends = [ + aeson ansi-terminal base base64-bytestring blaze-builder bytestring + case-insensitive containers cookie data-default-class deepseq + directory fast-logger http-types iproute lifted-base network + old-locale resourcet streaming-commons stringsearch text time + transformers unix unix-compat vault void wai wai-logger word8 zlib + ]; + testHaskellDepends = [ + base blaze-builder bytestring case-insensitive cookie fast-logger + hspec http-types HUnit resourcet text time transformers wai zlib + ]; + homepage = "http://github.com/yesodweb/wai"; + description = "Provides some basic WAI handlers and middleware"; + license = stdenv.lib.licenses.mit; }) {}; "wai-frontend-monadcgi" = callPackage @@ -219583,6 +221576,7 @@ self: { network-uri scientific temporary text time transformers transformers-base unordered-containers vector zip-archive ]; + doCheck = false; homepage = "https://github.com/kallisti-dev/hs-webdriver"; description = "a Haskell client for the Selenium WebDriver protocol"; license = stdenv.lib.licenses.bsd3; @@ -224005,9 +225999,9 @@ self: { }) {}; "xmonad-extras" = callPackage - ({ mkDerivation, base, containers, directory, hint, mtl, network - , old-locale, old-time, parsec, process, random, regex-posix, split - , unix, X11, xmonad, xmonad-contrib + ({ mkDerivation, base, containers, directory, mtl, old-locale + , old-time, parsec, process, random, regex-posix, split, unix, X11 + , xmonad, xmonad-contrib }: mkDerivation { pname = "xmonad-extras"; @@ -224017,9 +226011,8 @@ self: { "-f-with_hlist" "-fwith_parsec" "-fwith_split" ]; libraryHaskellDepends = [ - base containers directory hint mtl network old-locale old-time - parsec process random regex-posix split unix X11 xmonad - xmonad-contrib + base containers directory mtl old-locale old-time parsec process + random regex-posix split unix X11 xmonad xmonad-contrib ]; homepage = "http://projects.haskell.org/xmonad-extras"; description = "Third party extensions for xmonad with wacky dependencies"; @@ -226582,7 +228575,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-auth-oauth2" = callPackage + "yesod-auth-oauth2_0_1_7" = callPackage ({ mkDerivation, aeson, authenticate, base, bytestring, containers , hoauth2, hspec, http-client, http-conduit, http-types , lifted-base, load-env, network-uri, random, text, transformers @@ -226606,6 +228599,33 @@ self: { homepage = "http://github.com/thoughtbot/yesod-auth-oauth2"; description = "OAuth 2.0 authentication plugins"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-auth-oauth2" = callPackage + ({ mkDerivation, aeson, authenticate, base, bytestring, containers + , hoauth2, hspec, http-client, http-conduit, http-types + , lifted-base, load-env, network-uri, random, text, transformers + , vector, warp, yesod, yesod-auth, yesod-core, yesod-form + }: + mkDerivation { + pname = "yesod-auth-oauth2"; + version = "0.1.8"; + sha256 = "13ae292984fcb93702df78a92526d2cd14573e707ceeff7ad8cecbd102596e11"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson authenticate base bytestring hoauth2 http-client http-conduit + http-types lifted-base network-uri random text transformers vector + yesod-auth yesod-core yesod-form + ]; + executableHaskellDepends = [ + base containers http-conduit load-env text warp yesod yesod-auth + ]; + testHaskellDepends = [ base hspec ]; + homepage = "http://github.com/thoughtbot/yesod-auth-oauth2"; + description = "OAuth 2.0 authentication plugins"; + license = stdenv.lib.licenses.bsd3; }) {}; "yesod-auth-pam" = callPackage @@ -230726,7 +232746,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yi" = callPackage + "yi_0_12_3" = callPackage ({ mkDerivation, array, base, binary, bytestring, Cabal, containers , data-default, directory, dlist, dynamic-state, dyre, exceptions , filepath, glib, gtk, hashable, hint, HUnit, lens, mtl, old-locale @@ -230760,6 +232780,43 @@ self: { homepage = "https://yi-editor.github.io"; description = "The Haskell-Scriptable Editor"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yi" = callPackage + ({ mkDerivation, array, base, binary, bytestring, Cabal, containers + , data-default, directory, dlist, dynamic-state, dyre, exceptions + , filepath, glib, gtk, hashable, hint, HUnit, lens, mtl, old-locale + , oo-prototypes, pango, parsec, pointedlist, process, QuickCheck + , random, safe, semigroups, split, stm, tasty, tasty-hunit + , tasty-quickcheck, template-haskell, text, text-icu, time + , transformers-base, unix, unix-compat, unordered-containers, vty + , word-trie, xdg-basedir, yi-language, yi-rope + }: + mkDerivation { + pname = "yi"; + version = "0.12.4"; + sha256 = "7cf4af678744ac1b0e7980aee07f55d60c9e1178436ef8994166f0011d3273d5"; + configureFlags = [ "-fpango" "-fvty" ]; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base binary bytestring Cabal containers data-default + directory dlist dynamic-state dyre exceptions filepath glib gtk + hashable hint lens mtl old-locale oo-prototypes pango parsec + pointedlist process QuickCheck random safe semigroups split stm + template-haskell text text-icu time transformers-base unix + unix-compat unordered-containers vty word-trie xdg-basedir + yi-language yi-rope + ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ + base directory filepath HUnit lens QuickCheck semigroups tasty + tasty-hunit tasty-quickcheck text yi-language yi-rope + ]; + homepage = "https://yi-editor.github.io"; + description = "The Haskell-Scriptable Editor"; + license = stdenv.lib.licenses.gpl2; hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; @@ -231661,10 +233718,8 @@ self: { }: mkDerivation { pname = "zip"; - version = "0.1.0"; - sha256 = "77dff5313dbab62d8078708acbdf2369277cbe757044bd20b0f5dffa5ef13a05"; - revision = "2"; - editedCabalFile = "3f8587754a06ce6e0b4f68bf54dd91f1dc9c0384eaffa065a553fff7a6ba8bad"; + version = "0.1.1"; + sha256 = "642a84ab891b4dee722d0c60d46703b6812298fcf56fe11ce803dbeaa3d156dd"; libraryHaskellDepends = [ base bytestring bzlib-conduit case-insensitive cereal conduit conduit-extra containers digest exceptions filepath mtl path From 9a0e6308746f0abe43eac40a7c643ee7282639cf Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 23 Mar 2016 14:09:40 +0100 Subject: [PATCH 479/678] configuration-hackage2nix.yaml: update list of broken packages --- .../haskell-modules/configuration-hackage2nix.yaml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index 906629e8308..d15300b8c28 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -705,6 +705,7 @@ dont-distribute-packages: conduit-audio-sndfile: [ x86_64-darwin ] conduit-network-stream: [ i686-linux, x86_64-darwin, x86_64-linux ] conduit-resumablesink: [ i686-linux, x86_64-darwin, x86_64-linux ] + config-manager: [ i686-linux, x86_64-darwin, x86_64-linux ] config-select: [ i686-linux, x86_64-darwin, x86_64-linux ] Configger: [ i686-linux, x86_64-darwin, x86_64-linux ] conjure: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -997,6 +998,7 @@ dont-distribute-packages: ecma262: [ i686-linux, x86_64-darwin, x86_64-linux ] ecu: [ i686-linux, x86_64-darwin, x86_64-linux ] ed25519: [ i686-linux, x86_64-darwin, x86_64-linux ] + eddie: [ i686-linux, x86_64-darwin, x86_64-linux ] edenmodules: [ i686-linux, x86_64-darwin, x86_64-linux ] edenskel: [ i686-linux, x86_64-darwin, x86_64-linux ] edentv: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -2636,6 +2638,7 @@ dont-distribute-packages: mtlx: [ i686-linux, x86_64-darwin, x86_64-linux ] mtp: [ i686-linux, x86_64-darwin, x86_64-linux ] mudbath: [ i686-linux, x86_64-darwin, x86_64-linux ] + mueval: [ i686-linux, x86_64-darwin, x86_64-linux ] mulang: [ i686-linux, x86_64-darwin, x86_64-linux ] multi-cabal: [ i686-linux, x86_64-darwin, x86_64-linux ] multifocal: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -2682,6 +2685,7 @@ dont-distribute-packages: neat: [ i686-linux, x86_64-darwin, x86_64-linux ] needle: [ i686-linux, x86_64-darwin, x86_64-linux ] nehe-tuts: [ i686-linux, x86_64-darwin, x86_64-linux ] + nemesis-titan: [ i686-linux, x86_64-darwin, x86_64-linux ] nerf: [ i686-linux, x86_64-darwin, x86_64-linux ] nero-wai: [ i686-linux, x86_64-darwin, x86_64-linux ] nero-warp: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -2766,6 +2770,7 @@ dont-distribute-packages: ohloh-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] oidc-client: [ i686-linux, x86_64-darwin, x86_64-linux ] ois-input-manager: [ i686-linux, x86_64-darwin, x86_64-linux ] + olwrapper: [ i686-linux, x86_64-darwin, x86_64-linux ] omaketex: [ i686-linux, x86_64-darwin, x86_64-linux ] Omega: [ i686-linux, x86_64-darwin, x86_64-linux ] omega: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3014,8 +3019,6 @@ dont-distribute-packages: Proper: [ i686-linux, x86_64-darwin, x86_64-linux ] proplang: [ i686-linux, x86_64-darwin, x86_64-linux ] proteaaudio: [ i686-linux, x86_64-darwin, x86_64-linux ] - proteaaudio: [ i686-linux, x86_64-linux ] - proteaaudio: [ x86_64-darwin ] protobuf-native: [ i686-linux, x86_64-darwin, x86_64-linux ] protocol-buffers-descriptor-fork: [ i686-linux, x86_64-darwin, x86_64-linux ] protocol-buffers-fork: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3291,8 +3294,6 @@ dont-distribute-packages: SDL-mpeg: [ x86_64-darwin ] SDL-ttf: [ x86_64-darwin ] sdl2-compositor: [ i686-linux, x86_64-darwin, x86_64-linux ] - sdl2-compositor: [ i686-linux, x86_64-linux ] - sdl2-compositor: [ x86_64-darwin ] sdl2-image: [ i686-linux, x86_64-darwin, x86_64-linux ] sdl2-ttf: [ x86_64-darwin ] sdr: [ x86_64-darwin, x86_64-linux ] @@ -3325,6 +3326,8 @@ dont-distribute-packages: sequent-core: [ i686-linux, x86_64-darwin, x86_64-linux ] sequor: [ i686-linux, x86_64-darwin, x86_64-linux ] servant-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + servant-foreign: [ i686-linux, x86_64-darwin, x86_64-linux ] + servant-js: [ i686-linux, x86_64-darwin, x86_64-linux ] servant-pool: [ i686-linux, x86_64-darwin, x86_64-linux ] servant-postgresql: [ i686-linux, x86_64-darwin, x86_64-linux ] servant-scotty: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3410,6 +3413,7 @@ dont-distribute-packages: snake-game: [ i686-linux, x86_64-darwin, x86_64-linux ] snap-accept: [ i686-linux, x86_64-darwin, x86_64-linux ] snap-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + snap-loader-dynamic: [ i686-linux, x86_64-darwin, x86_64-linux ] snap-predicates: [ i686-linux, x86_64-darwin, x86_64-linux ] snap-testing: [ i686-linux, x86_64-darwin, x86_64-linux ] snap-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3702,6 +3706,7 @@ dont-distribute-packages: tracker: [ i686-linux, x86_64-darwin, x86_64-linux ] trajectory: [ i686-linux, x86_64-darwin, x86_64-linux ] transactional-events: [ i686-linux, x86_64-darwin, x86_64-linux ] + transf: [ i686-linux, x86_64-darwin, x86_64-linux ] transformers-convert: [ i686-linux, x86_64-darwin, x86_64-linux ] transformers-runnable: [ i686-linux, x86_64-darwin, x86_64-linux ] transient: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3714,6 +3719,7 @@ dont-distribute-packages: TrieMap: [ i686-linux, x86_64-darwin, x86_64-linux ] trimpolya: [ i686-linux, x86_64-darwin, x86_64-linux ] tripLL: [ x86_64-darwin ] + tropical: [ i686-linux, x86_64-darwin, x86_64-linux ] tsession-happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] tsession: [ i686-linux, x86_64-darwin, x86_64-linux ] tskiplist: [ i686-linux, x86_64-darwin, x86_64-linux ] From 511edb55bc6bc4385ab132ee2b071caa261046fd Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 23 Mar 2016 10:02:47 +0100 Subject: [PATCH 480/678] Add LTS Haskell 5.9. --- pkgs/top-level/haskell-packages.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 852c75f7ee4..45b5fa31407 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -371,7 +371,10 @@ rec { lts-5_8 = packages.ghc7103.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.8.nix { }; }; - lts-5 = packages.lts-5_8; + lts-5_9 = packages.ghc7103.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.9.nix { }; + }; + lts-5 = packages.lts-5_9; lts = packages.lts-5; }; From f0187cb4c3de7455bc595ee73a22c9d2573f2581 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 23 Mar 2016 21:33:45 +0300 Subject: [PATCH 481/678] elmPackages.elm-compiler: use old language-ecmascript --- pkgs/development/compilers/elm/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/compilers/elm/default.nix b/pkgs/development/compilers/elm/default.nix index 408af6e75c6..7fedbed2829 100644 --- a/pkgs/development/compilers/elm/default.nix +++ b/pkgs/development/compilers/elm/default.nix @@ -61,6 +61,9 @@ let in elmPkgs // { inherit elmPkgs; elmVersion = elmRelease.version; + + # To unbreak elm-compiler + language-ecmascript = self.language-ecmascript_0_17_0_2; }; }; in hsPkgs.elmPkgs // { From 4fad4d49f616697b06f0ee7351f1223f54339979 Mon Sep 17 00:00:00 2001 From: Aneesh Agrawal Date: Wed, 23 Mar 2016 09:37:57 -0400 Subject: [PATCH 482/678] icdiff: init at 1.7.3 --- pkgs/tools/text/icdiff/default.nix | 20 ++++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 22 insertions(+) create mode 100644 pkgs/tools/text/icdiff/default.nix diff --git a/pkgs/tools/text/icdiff/default.nix b/pkgs/tools/text/icdiff/default.nix new file mode 100644 index 00000000000..8469a151aa0 --- /dev/null +++ b/pkgs/tools/text/icdiff/default.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchFromGitHub, buildPythonApplication }: + +buildPythonApplication rec { + name = "icdiff-${version}"; + version = "1.7.3"; + + src = fetchFromGitHub { + owner = "jeffkaufman"; + repo = "icdiff"; + rev = "release-${version}"; + sha256 = "1k7dlf2i40flsrvkma1k1vii9hsjwdmwryx65q0n0yj4frv7ky6k"; + }; + + meta = with stdenv.lib; { + homepage = https://www.jefftk.com/icdiff; + description = "Side-by-side highlighted command line diffs"; + maintainers = with maintainers; [ aneeshusa ]; + license = licenses.psfl; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index da81848ecc8..6670290338c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -10302,6 +10302,8 @@ in modules // { }; }; + icdiff = callPackage ../tools/text/icdiff {}; + importlib = buildPythonPackage rec { name = "importlib-1.0.2"; From 523f4f2f69b3a33953c0a9a462575c842b19dcdc Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 23 Mar 2016 20:11:07 +0100 Subject: [PATCH 483/678] mariadb: Disable parallel building again It still fails intermittently on lex_token.h. http://hydra.nixos.org/build/33571559 --- pkgs/servers/sql/mariadb/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/servers/sql/mariadb/default.nix b/pkgs/servers/sql/mariadb/default.nix index eb132a0be22..9ca1a23ea34 100644 --- a/pkgs/servers/sql/mariadb/default.nix +++ b/pkgs/servers/sql/mariadb/default.nix @@ -64,7 +64,7 @@ stdenv.mkDerivation rec { ]; # fails to find lex_token.h sometimes - enableParallelBuilding = true; + enableParallelBuilding = false; outputs = [ "out" "lib" ]; From b336ed89e6ad3bf804e7cebaa790c99cac55c155 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Wed, 23 Mar 2016 20:20:36 +0100 Subject: [PATCH 484/678] zopfli: disable parallel building It was failing often, e.g.: https://hydra.nixos.org/build/32101335/nixlog/1/raw --- pkgs/tools/compression/zopfli/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/compression/zopfli/default.nix b/pkgs/tools/compression/zopfli/default.nix index 8aeeb3b9e51..07e2eb19469 100644 --- a/pkgs/tools/compression/zopfli/default.nix +++ b/pkgs/tools/compression/zopfli/default.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { }) ]; - enableParallelBuilding = true; + enableParallelBuilding = false; # problems, easily reproducible buildFlags = [ "zopfli" "libzopfli" From 6607345d108fcdbde935f697765a579f54dde3be Mon Sep 17 00:00:00 2001 From: Luis Pedro Coelho Date: Wed, 23 Mar 2016 20:30:24 +0100 Subject: [PATCH 485/678] chessx: install chessx.desktop file --- pkgs/games/chessx/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/games/chessx/default.nix b/pkgs/games/chessx/default.nix index dd0fa16b707..39ec3670e54 100644 --- a/pkgs/games/chessx/default.nix +++ b/pkgs/games/chessx/default.nix @@ -22,7 +22,9 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; installPhase = '' mkdir -p "$out/bin" + mkdir -p "$out/share/applications" cp -pr release/chessx "$out/bin" + cp -pr unix/chessx.desktop "$out/share/applications" ''; meta = with stdenv.lib; { From 147d12a0a40114c21ef24c596151bdca4649f1cd Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Wed, 23 Mar 2016 12:52:26 -0400 Subject: [PATCH 486/678] pythonPackages.cffi: 1.3.0 -> 1.5.2 --- pkgs/top-level/python-packages.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index da81848ecc8..b294002f034 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3987,18 +3987,25 @@ in modules // { }; cffi = if isPyPy then null else buildPythonPackage rec { - name = "cffi-1.3.0"; + name = "cffi-1.5.2"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/c/cffi/${name}.tar.gz"; - sha256 = "1s9lcwmyhshrmvgcwy0vww70v23ncz7bgshhbk469kxmy2pm7alx"; + sha256 = "1p91p1n8n46y0k3q7ddgxxjnfh08rjqsjh7zbjxzfiifhycxx6ys"; }; propagatedBuildInputs = with self; [ pkgs.libffi pycparser ]; buildInputs = with self; [ pytest ]; + checkPhase = '' + py.test + ''; + meta = { maintainers = with maintainers; [ iElectric ]; + homepage = https://cffi.readthedocs.org/; + license = with licenses; [ mit ]; + description = "Foreign Function Interface for Python calling C code"; }; }; From c18106a223fe73dcb95b3d66b5a435a85126293e Mon Sep 17 00:00:00 2001 From: Charles Strahan Date: Wed, 23 Mar 2016 18:11:32 -0400 Subject: [PATCH 487/678] go-1.6: fix segfault when using musl See https://github.com/golang/go/issues/14476 --- pkgs/development/compilers/go/1.6.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/development/compilers/go/1.6.nix b/pkgs/development/compilers/go/1.6.nix index e941910a41b..d9924c56744 100644 --- a/pkgs/development/compilers/go/1.6.nix +++ b/pkgs/development/compilers/go/1.6.nix @@ -1,5 +1,5 @@ { stdenv, lib, fetchurl, tzdata, iana_etc, go_1_4, runCommand -, perl, which, pkgconfig, patch +, perl, which, pkgconfig, patch, fetchpatch , pcre , Security, Foundation }: @@ -96,6 +96,12 @@ stdenv.mkDerivation rec { patches = [ ./remove-tools-1.5.patch + # Fix bug when using musl (see https://github.com/golang/go/issues/14476) + # Should be fixed by go 1.6.1 + (fetchpatch { + url = "https://github.com/golang/go/commit/1439158120742e5f41825de90a76b680da64bf76.patch"; + sha256 = "0yixpbx056ns5wgd3f4absgiyc2ymmqk8mkhhz5ja90dvilzxcwd"; + }) ] # -ldflags=-s is required to compile on Darwin, see # https://github.com/golang/go/issues/11994 From fae8d463fae8f8bf7fc8d9d04882f5ebb2f8fd6a Mon Sep 17 00:00:00 2001 From: = Date: Wed, 23 Mar 2016 19:26:36 +0100 Subject: [PATCH 488/678] zynaddsubfx: 2.5.2 -> 2.5.4 --- pkgs/applications/audio/zynaddsubfx/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/audio/zynaddsubfx/default.nix b/pkgs/applications/audio/zynaddsubfx/default.nix index 84a62d34fa6..0fccf66ddbc 100644 --- a/pkgs/applications/audio/zynaddsubfx/default.nix +++ b/pkgs/applications/audio/zynaddsubfx/default.nix @@ -4,11 +4,11 @@ stdenv.mkDerivation rec { name = "zynaddsubfx-${version}"; - version = "2.5.2"; + version = "2.5.4"; src = fetchurl { - url = "mirror://sourceforge/zynaddsubfx/zynaddsubfx-${version}.tar.gz"; - sha256 = "11yrady7xwfrzszkk2fvq81ymv99mq474h60qnirk27khdygk24m"; + url = "mirror://sourceforge/zynaddsubfx/zynaddsubfx-${version}.tar.bz2"; + sha256 = "16llaa2wg2gbgjhwp3632b2vx9jvanj4csv7d41k233ms6d1sjq1"; }; buildInputs = [ alsaLib libjack2 fftw fltk13 libjpeg minixml zlib liblo ]; @@ -19,6 +19,6 @@ stdenv.mkDerivation rec { homepage = http://zynaddsubfx.sourceforge.net; license = licenses.gpl2; platforms = platforms.linux; - maintainers = [ maintainers.goibhniu maintainers.palo ]; + maintainers = [ maintainers.goibhniu maintainers.nico202 ]; }; } From f6090d8ea3db167684aa9625a70cd268559a6083 Mon Sep 17 00:00:00 2001 From: AndersonTorres Date: Wed, 23 Mar 2016 19:23:23 -0300 Subject: [PATCH 489/678] perlPackages.DataHexDump: init at 0.02 --- pkgs/top-level/perl-packages.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index bcb118ed68f..83a70775843 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -2720,6 +2720,18 @@ let self = _self // overrides; _self = with self; { }; }; + DataHexDump = buildPerlPackage { + name = "Data-HexDump-0.02"; + src = fetchurl { + url = mirror://cpan/authors/id/F/FT/FTASSIN/Data-HexDump-0.02.tar.gz; + sha256 = "1a9d843e7f667c1c6f77c67af5d77e7462ff23b41937cb17454d03535cd9be70"; + }; + meta = { + description = "Hexadecimal Dumper"; + maintainers = with stdenv.lib.maintainers; [ AndersonTorres ]; + }; + }; + DataHierarchy = buildPerlPackage { name = "Data-Hierarchy-0.34"; src = fetchurl { From 3fc2f99907de389142559ce161240f8fa81717c8 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Wed, 23 Mar 2016 23:01:39 +0000 Subject: [PATCH 490/678] pptp: 1.7.2 -> 1.8.0 --- pkgs/tools/networking/pptp/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/networking/pptp/default.nix b/pkgs/tools/networking/pptp/default.nix index 5bfb6f58bea..e7f40ade77e 100644 --- a/pkgs/tools/networking/pptp/default.nix +++ b/pkgs/tools/networking/pptp/default.nix @@ -1,11 +1,11 @@ -{ stdenv, fetchurl, perl, ppp, iproute }: +{ stdenv, fetchurl, perl, ppp, iproute, which }: stdenv.mkDerivation rec { - name = "pptp-1.7.2"; + name = "pptp-1.8.0"; src = fetchurl { url = "mirror://sourceforge/pptpclient/${name}.tar.gz"; - sha256 = "1g4lfv9vhid4v7kx1mlfcrprj3h7ny6g4kv564qzlf9abl3f12p9"; + sha256 = "1nmvwj7wd9c1isfi9i0hdl38zv55y2khy2k0v1nqlai46gcl5773"; }; patchPhase = @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { MANDIR=$out/share/man/man8 PPPDIR=$out/etc/ppp ) ''; - nativeBuildInputs = [ perl ]; + nativeBuildInputs = [ perl which ]; meta = { description = "PPTP client for Linux"; From fcc0bf2d05f447b6f35cf7abe33a8af247aef124 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Wed, 23 Mar 2016 23:10:35 +0100 Subject: [PATCH 491/678] axel: 2.5 -> 2.6 --- pkgs/tools/networking/axel/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/axel/default.nix b/pkgs/tools/networking/axel/default.nix index 3fb04c16ee7..53392857f2a 100644 --- a/pkgs/tools/networking/axel/default.nix +++ b/pkgs/tools/networking/axel/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "axel-${version}"; - version = "2.5"; + version = "2.6"; src = fetchurl { url = "mirror://debian/pool/main/a/axel/axel_${version}.orig.tar.gz"; - sha256 = "10qsmfq2aprrxsm8sshpvzjjpxhmyv89mrik4clw9rprwxknfdq2"; + sha256 = "17j6kp4askr1q5459ak71m1bm0qa3dyqbxvi5ifh2bjvjlp516mx"; }; buildInputs = [ gettext ]; From d05540b6838d6733c71aa9fda734b863c3c94632 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Wed, 23 Mar 2016 23:15:06 +0100 Subject: [PATCH 492/678] global: 6.5.2 -> 6.5.3 --- pkgs/development/tools/misc/global/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/misc/global/default.nix b/pkgs/development/tools/misc/global/default.nix index 3b9eccb2ae6..298a99ef665 100644 --- a/pkgs/development/tools/misc/global/default.nix +++ b/pkgs/development/tools/misc/global/default.nix @@ -3,11 +3,11 @@ }: stdenv.mkDerivation rec { - name = "global-6.5.2"; + name = "global-6.5.3"; src = fetchurl { url = "mirror://gnu/global/${name}.tar.gz"; - sha256 = "07qx3dbjwkbd1dn42qs7zgj77rxdj2psfrf7bx7yx9al38f87z60"; + sha256 = "00h3p10rn312rnsipfvpyr61bsfdqyfpxp506yy6ji58skqr2vrk"; }; nativeBuildInputs = [ libtool makeWrapper ]; From 92d59b37cb71528f2c6ab5760e674e92f491a697 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Wed, 23 Mar 2016 23:17:27 +0100 Subject: [PATCH 493/678] parallel: 20160222 -> 20160322 --- pkgs/tools/misc/parallel/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/parallel/default.nix b/pkgs/tools/misc/parallel/default.nix index d4c920f4acc..b4e793976c7 100644 --- a/pkgs/tools/misc/parallel/default.nix +++ b/pkgs/tools/misc/parallel/default.nix @@ -1,11 +1,11 @@ { fetchurl, stdenv, perl, makeWrapper, procps }: stdenv.mkDerivation rec { - name = "parallel-20160222"; + name = "parallel-20160322"; src = fetchurl { url = "mirror://gnu/parallel/${name}.tar.bz2"; - sha256 = "1sjmvinwr9j2a0jdk9y9nf2x4hhzcbl529slkwpz0vva0cwybywd"; + sha256 = "020vfcwapla6b4c9pr5ik7kg47fswszdds2mr52kc907xi4zcc34"; }; nativeBuildInputs = [ makeWrapper ]; From d02f35956b67349c502d56e6ffa94f78f616a17a Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Thu, 24 Mar 2016 00:07:12 +0100 Subject: [PATCH 494/678] gtk-doc: 1.24 -> 1.25 --- pkgs/development/tools/documentation/gtk-doc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/documentation/gtk-doc/default.nix b/pkgs/development/tools/documentation/gtk-doc/default.nix index 6d93dc6def0..bb70b1ad364 100644 --- a/pkgs/development/tools/documentation/gtk-doc/default.nix +++ b/pkgs/development/tools/documentation/gtk-doc/default.nix @@ -3,11 +3,11 @@ stdenv.mkDerivation rec { name = "gtk-doc-${version}"; - version = "1.24"; + version = "1.25"; src = fetchurl { url = "mirror://gnome/sources/gtk-doc/${version}/${name}.tar.xz"; - sha256 = "12xmmcnq4138dlbhmqa45wqza8dky4lf856sp80h6xjwl2g7a85l"; + sha256 = "0hpxcij9xx9ny3gs9p0iz4r8zslw8wqymbyababiyl7603a6x90y"; }; # maybe there is a better way to pass the needed dtd and xsl files From c58c1f3b501731e3289fdae387b1c875c4e9cc8e Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Thu, 24 Mar 2016 02:21:46 +0200 Subject: [PATCH 495/678] vc: Broken on i686 http://hydra.nixos.org/build/33122230/nixlog/1/raw => CMake Error at CMakeLists.txt:163 (message): Unsupported target architecture 'i686'. No support_???.cpp file exists for this architecture. --- pkgs/development/libraries/vc/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/vc/default.nix b/pkgs/development/libraries/vc/default.nix index f73f35a2376..e61c3a47ff1 100644 --- a/pkgs/development/libraries/vc/default.nix +++ b/pkgs/development/libraries/vc/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { description = "Library for multiprecision complex arithmetic with exact rounding"; homepage = https://github.com/VcDevel/Vc; license = licenses.bsd3; - platforms = platforms.all; + platforms = [ "x86_64-linux" "x86_64-darwin" ]; maintainers = with maintainers; [ abbradar ]; }; } From a9d14e345270b3a95b63ce4805c8f7771029ddc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Thu, 24 Mar 2016 10:55:18 +0100 Subject: [PATCH 496/678] Setting gfortran to gcc5. octave was crashing. Otherwise, using imread() in octave threw: /nix/store/4fvwfzwg58d7167an550xm1k6m7px443-octave-4.0.0/lib/octave/4.0.0/oct/x86_64-unknown-linux-gnu/__magick_read__.oct: failed to load: /nix/store/w7xr6frwffrl135v7vpxdwmnx8l95j5m-gfortran-4.9.3/lib/libstdc++.so.6: version `GLIBCXX_3.4.21' not found (required by /nix/store/qlxkin1arzwbcpiny6amn8747wp8ndg7-graphicsmagick-1.3.21/lib/libGraphicsMagick++.so.11) (this is from 16.03, although I push this to staging) --- pkgs/top-level/all-packages.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7e4beba0af8..a58827c8e61 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4232,7 +4232,7 @@ let isl = isl_0_14; })); - gfortran = if !stdenv.isDarwin then gfortran49 + gfortran = if !stdenv.isDarwin then gfortran5 else callPackage ../development/compilers/gcc/gfortran-darwin.nix { inherit (darwin) Libsystem; }; @@ -4253,6 +4253,14 @@ let profiledCompiler = false; }); + gfortran5 = wrapCC (gcc5.cc.override { + name = "gfortran"; + langFortran = true; + langCC = false; + langC = false; + profiledCompiler = false; + }); + gcj = gcj49; gcj49 = wrapCC (gcc49.cc.override { name = "gcj"; From 408f4aa6544823d8cf9e702f5e8d2e0c6ec0a97e Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 23 Mar 2016 19:07:08 +0100 Subject: [PATCH 497/678] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20160308-3-g8057d11 using the following inputs: - Nixpkgs: https://github.com/NixOS/nixpkgs/commit/bba4f2bbe3ae2ad104444ca83f3cbef97834a175 - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/ab666959f09636bea6aa2b57a3941cfd3c211471 - LTS Haskell: https://github.com/fpco/lts-haskell/commit/6c45757bda6547fb7bb847982c4b50b41bc31c07 - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/d8a2cae77932579034f28ce11e4bfed4db1aa65a --- .../haskell-modules/configuration-lts-0.0.nix | 3 + .../haskell-modules/configuration-lts-0.1.nix | 3 + .../haskell-modules/configuration-lts-0.2.nix | 3 + .../haskell-modules/configuration-lts-0.3.nix | 3 + .../haskell-modules/configuration-lts-0.4.nix | 3 + .../haskell-modules/configuration-lts-0.5.nix | 3 + .../haskell-modules/configuration-lts-0.6.nix | 3 + .../haskell-modules/configuration-lts-0.7.nix | 3 + .../haskell-modules/configuration-lts-1.0.nix | 3 + .../haskell-modules/configuration-lts-1.1.nix | 3 + .../configuration-lts-1.10.nix | 3 + .../configuration-lts-1.11.nix | 3 + .../configuration-lts-1.12.nix | 3 + .../configuration-lts-1.13.nix | 3 + .../configuration-lts-1.14.nix | 3 + .../configuration-lts-1.15.nix | 3 + .../haskell-modules/configuration-lts-1.2.nix | 3 + .../haskell-modules/configuration-lts-1.4.nix | 3 + .../haskell-modules/configuration-lts-1.5.nix | 3 + .../haskell-modules/configuration-lts-1.7.nix | 3 + .../haskell-modules/configuration-lts-1.8.nix | 3 + .../haskell-modules/configuration-lts-1.9.nix | 3 + .../haskell-modules/configuration-lts-2.0.nix | 3 + .../haskell-modules/configuration-lts-2.1.nix | 3 + .../configuration-lts-2.10.nix | 3 + .../configuration-lts-2.11.nix | 3 + .../configuration-lts-2.12.nix | 3 + .../configuration-lts-2.13.nix | 3 + .../configuration-lts-2.14.nix | 3 + .../configuration-lts-2.15.nix | 3 + .../configuration-lts-2.16.nix | 3 + .../configuration-lts-2.17.nix | 3 + .../configuration-lts-2.18.nix | 3 + .../configuration-lts-2.19.nix | 3 + .../haskell-modules/configuration-lts-2.2.nix | 3 + .../configuration-lts-2.20.nix | 3 + .../configuration-lts-2.21.nix | 3 + .../configuration-lts-2.22.nix | 3 + .../haskell-modules/configuration-lts-2.3.nix | 3 + .../haskell-modules/configuration-lts-2.4.nix | 3 + .../haskell-modules/configuration-lts-2.5.nix | 3 + .../haskell-modules/configuration-lts-2.6.nix | 3 + .../haskell-modules/configuration-lts-2.7.nix | 3 + .../haskell-modules/configuration-lts-2.8.nix | 3 + .../haskell-modules/configuration-lts-2.9.nix | 3 + .../haskell-modules/configuration-lts-3.0.nix | 3 + .../haskell-modules/configuration-lts-3.1.nix | 3 + .../configuration-lts-3.10.nix | 3 + .../configuration-lts-3.11.nix | 3 + .../configuration-lts-3.12.nix | 3 + .../configuration-lts-3.13.nix | 3 + .../configuration-lts-3.14.nix | 3 + .../configuration-lts-3.15.nix | 3 + .../configuration-lts-3.16.nix | 3 + .../configuration-lts-3.17.nix | 3 + .../configuration-lts-3.18.nix | 3 + .../configuration-lts-3.19.nix | 3 + .../haskell-modules/configuration-lts-3.2.nix | 3 + .../configuration-lts-3.20.nix | 3 + .../configuration-lts-3.21.nix | 3 + .../configuration-lts-3.22.nix | 3 + .../haskell-modules/configuration-lts-3.3.nix | 3 + .../haskell-modules/configuration-lts-3.4.nix | 3 + .../haskell-modules/configuration-lts-3.5.nix | 3 + .../haskell-modules/configuration-lts-3.6.nix | 3 + .../haskell-modules/configuration-lts-3.7.nix | 3 + .../haskell-modules/configuration-lts-3.8.nix | 3 + .../haskell-modules/configuration-lts-3.9.nix | 3 + .../haskell-modules/configuration-lts-4.0.nix | 3 + .../haskell-modules/configuration-lts-4.1.nix | 3 + .../haskell-modules/configuration-lts-4.2.nix | 3 + .../haskell-modules/configuration-lts-5.0.nix | 3 + .../haskell-modules/configuration-lts-5.1.nix | 3 + .../haskell-modules/configuration-lts-5.2.nix | 3 + .../haskell-modules/configuration-lts-5.3.nix | 3 + .../haskell-modules/configuration-lts-5.4.nix | 3 + .../haskell-modules/configuration-lts-5.5.nix | 3 + .../haskell-modules/configuration-lts-5.6.nix | 3 + .../haskell-modules/configuration-lts-5.7.nix | 3 + .../haskell-modules/configuration-lts-5.8.nix | 3 + .../haskell-modules/configuration-lts-5.9.nix | 3 + .../haskell-modules/hackage-packages.nix | 379 +++++++++++++++--- 82 files changed, 562 insertions(+), 60 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index c9da1311f70..4288e9417f7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -2433,6 +2433,7 @@ self: super: { "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3565,6 +3566,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_3"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8758,6 +8760,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index d89ef60d7b0..73a65c8b5a7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -2433,6 +2433,7 @@ self: super: { "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3565,6 +3566,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_3"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8758,6 +8760,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index cad9603a921..6e6eb1960fb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -2433,6 +2433,7 @@ self: super: { "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3565,6 +3566,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_3"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8758,6 +8760,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index b89f8824820..dd2c73dd9e7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -2433,6 +2433,7 @@ self: super: { "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3565,6 +3566,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_3"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8758,6 +8760,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index be8230c08b4..40c40c0771a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -2433,6 +2433,7 @@ self: super: { "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3564,6 +3565,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_3"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8754,6 +8756,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index bc551fd25eb..5ba1a29c13b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -2433,6 +2433,7 @@ self: super: { "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3564,6 +3565,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_3"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8754,6 +8756,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index b02eb0fcf77..893b3132463 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -2432,6 +2432,7 @@ self: super: { "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3563,6 +3564,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8751,6 +8753,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index 597b2a1b016..086a8f96caa 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -2432,6 +2432,7 @@ self: super: { "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3563,6 +3564,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8751,6 +8753,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index b1eb20a0c0c..aa31bb4fc7a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -2425,6 +2425,7 @@ self: super: { "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3555,6 +3556,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8739,6 +8741,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index 8e90ce43394..51578a50705 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -2423,6 +2423,7 @@ self: super: { "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3552,6 +3553,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8726,6 +8728,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index d9792486944..3a67b223ac7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -2419,6 +2419,7 @@ self: super: { "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3543,6 +3544,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8698,6 +8700,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index 13f9773ae78..d2edd343231 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -2419,6 +2419,7 @@ self: super: { "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3542,6 +3543,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8694,6 +8696,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index 5a83f25146e..52b17245d47 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -2419,6 +2419,7 @@ self: super: { "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3542,6 +3543,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8692,6 +8694,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 43400835689..f52251d185c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -2419,6 +2419,7 @@ self: super: { "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3542,6 +3543,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8690,6 +8692,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 25257b8dc39..159383635a0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -2416,6 +2416,7 @@ self: super: { "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3539,6 +3540,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8685,6 +8687,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index cf5543200ca..c50ca30fa77 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -2414,6 +2414,7 @@ self: super: { "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3535,6 +3536,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8676,6 +8678,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index 6a8b3174699..f4fd2cd8576 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -2421,6 +2421,7 @@ self: super: { "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3549,6 +3550,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8720,6 +8722,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 49544f96644..fb9749c9486 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -2420,6 +2420,7 @@ self: super: { "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3547,6 +3548,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8715,6 +8717,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index ef3ff854fb7..4e3b2b6eec3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -2419,6 +2419,7 @@ self: super: { "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3546,6 +3547,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8712,6 +8714,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index 72e1bc84717..fe328d71f91 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -2419,6 +2419,7 @@ self: super: { "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3546,6 +3547,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8707,6 +8709,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index 097804f2e5b..d14e5b4a2f1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -2419,6 +2419,7 @@ self: super: { "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3544,6 +3545,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8702,6 +8704,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index d7c625d14a9..e41abe399da 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -2419,6 +2419,7 @@ self: super: { "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3543,6 +3544,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = dontDistribute super."gipeda"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8701,6 +8703,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index 2b90f02d5ce..76cdad114a3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -2401,6 +2401,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_1"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3520,6 +3521,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8622,6 +8624,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index e77c10ab6d5..e9b6c46cb69 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -2400,6 +2400,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_1"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3519,6 +3520,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_0_4"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8620,6 +8622,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index f6a24a76554..04377238e10 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -2388,6 +2388,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3502,6 +3503,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8576,6 +8578,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 2a007512714..ed39707ac20 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -2387,6 +2387,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3500,6 +3501,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8567,6 +8569,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index 3394d5ef7dc..3084bd6e5b8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -2387,6 +2387,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3500,6 +3501,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8566,6 +8568,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index ae17d545047..fe188ea6fb0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -2387,6 +2387,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3500,6 +3501,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8564,6 +8566,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index 6b385fddc20..280d1109333 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -2386,6 +2386,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3498,6 +3499,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8560,6 +8562,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index 9741068da6a..baed9b4b6d2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -2386,6 +2386,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3497,6 +3498,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8557,6 +8559,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index bd4d9405987..d439bfd44ad 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -2384,6 +2384,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3493,6 +3494,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8552,6 +8554,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index c0c87abdd24..97a5b4aa520 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -2382,6 +2382,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3489,6 +3490,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8547,6 +8549,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index 49efa4f5029..3a61f20966d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -2381,6 +2381,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3487,6 +3488,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8543,6 +8545,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index cb52dff2a14..a133f8e5ed9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -2381,6 +2381,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3486,6 +3487,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8540,6 +8542,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index dc237483868..cf59852c6e9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -2397,6 +2397,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_1"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3516,6 +3517,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8617,6 +8619,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index d47bba0680b..28ce83e8ad8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -2380,6 +2380,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3485,6 +3486,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8537,6 +8539,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index 89cef688391..014013bcd5d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -2380,6 +2380,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3485,6 +3486,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8534,6 +8536,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index 0aefafc1ffd..a17f9ef401d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -2380,6 +2380,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3485,6 +3486,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8533,6 +8535,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index 6220c374bfb..aa2ca3a0f74 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -2397,6 +2397,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3515,6 +3516,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8615,6 +8617,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index 5c73d66545d..b0cba8f674e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -2396,6 +2396,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3514,6 +3515,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8612,6 +8614,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index 72e7b32ca88..8b915c3fa3f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -2395,6 +2395,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3513,6 +3514,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8611,6 +8613,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index 0918e62bfe4..07ee07a13bb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -2392,6 +2392,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3510,6 +3511,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8603,6 +8605,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index 034e5683da8..7e52dd04e2c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -2391,6 +2391,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3509,6 +3510,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8603,6 +8605,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index 305c04fb3c5..1bc128eec5b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -2390,6 +2390,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3507,6 +3508,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8597,6 +8599,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index 08dd4690cd5..752611fe299 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -2388,6 +2388,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3503,6 +3504,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = dontDistribute super."git-annex"; @@ -8584,6 +8586,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index cecacc26564..2621b682725 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -2322,6 +2322,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3401,6 +3402,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -8327,6 +8329,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 49508950cf8..c22456e3fde 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -2321,6 +2321,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3398,6 +3399,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -8319,6 +8321,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index f770300e82a..b4429e65811 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -2309,6 +2309,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3375,6 +3376,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -8254,6 +8256,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index 4e9aef73398..512e50b34c9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -2308,6 +2308,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3373,6 +3374,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -8250,6 +8252,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index ec110da66b8..82434379c76 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -2307,6 +2307,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3372,6 +3373,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -8245,6 +8247,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index 9b7a4f2e275..b75f071de11 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -2307,6 +2307,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3372,6 +3373,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -8242,6 +8244,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index b9763756337..fc89326dea8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -2303,6 +2303,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3366,6 +3367,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -8235,6 +8237,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index c5bded5316d..cb77599cc2f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -2303,6 +2303,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3366,6 +3367,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -8231,6 +8233,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index d281aa02494..3954f26e498 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -2302,6 +2302,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3364,6 +3365,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -8221,6 +8223,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index ce0d7dec08a..815030d9dcc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -2301,6 +2301,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3363,6 +3364,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -8216,6 +8218,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index f7a4b59f04a..83f9a0923dd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -2300,6 +2300,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3361,6 +3362,7 @@ self: super: { "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -8208,6 +8210,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix index 7a9e647ce82..5760e899c8b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -2294,6 +2294,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3355,6 +3356,7 @@ self: super: { "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -8195,6 +8197,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 16ef6d6d76a..830a93f2cc0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -2319,6 +2319,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3394,6 +3395,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -8310,6 +8312,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix index 1879d93b0ea..1e842db7eed 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -2293,6 +2293,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3354,6 +3355,7 @@ self: super: { "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -8192,6 +8194,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix index b8eb05d327f..d2ba426e300 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix @@ -2292,6 +2292,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3351,6 +3352,7 @@ self: super: { "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -8176,6 +8178,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix index fb4ecde4d26..d85a7f7081a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix @@ -2292,6 +2292,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3349,6 +3350,7 @@ self: super: { "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -8170,6 +8172,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index 6f8e23e743a..c939e3fded7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -2318,6 +2318,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3392,6 +3393,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -8303,6 +8305,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index 1941ccba96c..97948f17848 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -2318,6 +2318,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3392,6 +3393,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -8302,6 +8304,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index f5521156bae..6563871a826 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -2317,6 +2317,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3390,6 +3391,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -8290,6 +8292,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index 4ddff009619..ccf8b2a6300 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -2317,6 +2317,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3389,6 +3390,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -8282,6 +8284,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index 40ee047b318..1fb8a3e6edd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -2314,6 +2314,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3386,6 +3387,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -8275,6 +8277,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index 626f1b391f5..325fdcc7778 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -2312,6 +2312,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3380,6 +3381,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -8265,6 +8267,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index 5d6ede96ceb..d4ca2e6fb55 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -2309,6 +2309,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3376,6 +3377,7 @@ self: super: { "ginsu" = dontDistribute super."ginsu"; "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20150727"; @@ -8260,6 +8262,7 @@ self: super: { "vinyl" = dontDistribute super."vinyl"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix index fc77f9db7e3..04242b21f00 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix @@ -2231,6 +2231,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3261,6 +3262,7 @@ self: super: { "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; "gipeda" = doDistribute super."gipeda_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20151218"; @@ -7892,6 +7894,7 @@ self: super: { "vinyl" = doDistribute super."vinyl_0_5_1"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix index 878c376c2b1..2b56b592c0c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix @@ -2229,6 +2229,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3255,6 +3256,7 @@ self: super: { "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; "gipeda" = doDistribute super."gipeda_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20151218"; @@ -7874,6 +7876,7 @@ self: super: { "vinyl" = doDistribute super."vinyl_0_5_1"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix index b9823de37b1..518d60405fa 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix @@ -2219,6 +2219,7 @@ self: super: { "cryptol" = doDistribute super."cryptol_2_2_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3238,6 +3239,7 @@ self: super: { "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; "gipeda" = doDistribute super."gipeda_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_5_20151218"; @@ -7823,6 +7825,7 @@ self: super: { "vinyl" = doDistribute super."vinyl_0_5_1"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix index 4840cb24ec7..dcee088ade7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix @@ -2183,6 +2183,7 @@ self: super: { "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3181,6 +3182,7 @@ self: super: { "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; "gipeda" = doDistribute super."gipeda_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_6_20160114"; @@ -7706,6 +7708,7 @@ self: super: { "vinyl" = doDistribute super."vinyl_0_5_1"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix index 92e71fcf820..884b11b28b6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix @@ -2175,6 +2175,7 @@ self: super: { "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3172,6 +3173,7 @@ self: super: { "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; "gipeda" = doDistribute super."gipeda_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_6_20160114"; @@ -7690,6 +7692,7 @@ self: super: { "vinyl" = doDistribute super."vinyl_0_5_1"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix index aed97a6ebe3..2f1000c9245 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix @@ -2174,6 +2174,7 @@ self: super: { "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3166,6 +3167,7 @@ self: super: { "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; "gipeda" = doDistribute super."gipeda_0_2"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_6_20160114"; @@ -7667,6 +7669,7 @@ self: super: { "vinyl" = doDistribute super."vinyl_0_5_1"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix index ae84f153d46..f831a7ec7cf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix @@ -2162,6 +2162,7 @@ self: super: { "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3143,6 +3144,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_6_20160114"; @@ -7627,6 +7629,7 @@ self: super: { "vinyl" = doDistribute super."vinyl_0_5_1"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.4.nix b/pkgs/development/haskell-modules/configuration-lts-5.4.nix index d6d80574547..fc4d8cb7798 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.4.nix @@ -2158,6 +2158,7 @@ self: super: { "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3130,6 +3131,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_6_20160114"; @@ -7594,6 +7596,7 @@ self: super: { "vinyl" = doDistribute super."vinyl_0_5_1"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.5.nix b/pkgs/development/haskell-modules/configuration-lts-5.5.nix index 53be2667b40..62c28b5dc61 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.5.nix @@ -2154,6 +2154,7 @@ self: super: { "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3126,6 +3127,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_6_20160114"; @@ -7584,6 +7586,7 @@ self: super: { "vintage-basic" = dontDistribute super."vintage-basic"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.6.nix b/pkgs/development/haskell-modules/configuration-lts-5.6.nix index 156a21a6ba8..ce744723e3b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.6.nix @@ -2143,6 +2143,7 @@ self: super: { "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3112,6 +3113,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_6_20160114"; @@ -7556,6 +7558,7 @@ self: super: { "vintage-basic" = dontDistribute super."vintage-basic"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.7.nix b/pkgs/development/haskell-modules/configuration-lts-5.7.nix index 3bf116e7058..2bda8436a28 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.7.nix @@ -2139,6 +2139,7 @@ self: super: { "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3108,6 +3109,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_6_20160114"; @@ -7540,6 +7542,7 @@ self: super: { "vintage-basic" = dontDistribute super."vintage-basic"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.8.nix b/pkgs/development/haskell-modules/configuration-lts-5.8.nix index 60bcd23a8ca..0f0b7a65ccf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.8.nix @@ -2138,6 +2138,7 @@ self: super: { "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3106,6 +3107,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_6_20160114"; @@ -7537,6 +7539,7 @@ self: super: { "vintage-basic" = dontDistribute super."vintage-basic"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.9.nix b/pkgs/development/haskell-modules/configuration-lts-5.9.nix index 30de9ab9147..86b1a521d58 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.9.nix @@ -2133,6 +2133,7 @@ self: super: { "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; @@ -3099,6 +3100,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; "git-annex" = doDistribute super."git-annex_6_20160114"; @@ -7501,6 +7503,7 @@ self: super: { "vintage-basic" = dontDistribute super."vintage-basic"; "vinyl-gl" = dontDistribute super."vinyl-gl"; "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 8c7140d9f4b..6e24fb903e2 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -724,6 +724,7 @@ self: { description = "A dependently typed functional programming language and proof assistant"; license = "unknown"; hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ abbradar ]; }) {inherit (pkgs) emacs;}; "Agda_2_4_2_4" = callPackage @@ -760,6 +761,7 @@ self: { description = "A dependently typed functional programming language and proof assistant"; license = "unknown"; hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ abbradar ]; }) {inherit (pkgs) emacs;}; "Agda" = callPackage @@ -797,7 +799,7 @@ self: { homepage = "http://wiki.portal.chalmers.se/agda/"; description = "A dependently typed functional programming language and proof assistant"; license = "unknown"; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + maintainers = with stdenv.lib.maintainers; [ abbradar ]; }) {inherit (pkgs) emacs;}; "Agda-executable" = callPackage @@ -20020,28 +20022,29 @@ self: { }) {}; "VKHS" = callPackage - ({ mkDerivation, aeson, base, bimap, bytestring, containers, curl - , curlhs, directory, failure, filepath, mtl, optparse-applicative - , parsec, pretty-show, regexpr, safe, split, tagsoup - , template-haskell, text, time, transformers, utf8-string, vector + ({ mkDerivation, aeson, base, bytestring, case-insensitive, clock + , containers, data-default-class, directory, EitherT, filepath + , http-client, http-client-tls, http-types, mtl, network-uri + , optparse-applicative, parsec, pipes, pipes-http, regexpr, split + , tagsoup, text, time, utf8-string, vector }: mkDerivation { pname = "VKHS"; - version = "0.5.7"; - sha256 = "89cb9291667358d2df2fb86e1cb87fef42ebfbd410e31222d8b3d90199df72cd"; + version = "1.6.1"; + sha256 = "9a744578cdde23d4ffd477ef44443e52abf862ad48f5c328af229582b5f4c94a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson base bimap bytestring containers curlhs directory failure - filepath mtl optparse-applicative parsec pretty-show regexpr safe - split tagsoup template-haskell text time transformers utf8-string - vector + aeson base bytestring case-insensitive clock containers + data-default-class directory EitherT filepath http-client + http-client-tls http-types mtl network-uri optparse-applicative + parsec pipes pipes-http split tagsoup time utf8-string vector ]; - executableSystemDepends = [ curl ]; + executableHaskellDepends = [ regexpr text ]; homepage = "http://github.com/grwlf/vkhs"; description = "Provides access to Vkontakte social network via public API"; license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) curl;}; + }) {}; "Validation" = callPackage ({ mkDerivation, base, bifunctors, semigroupoids, semigroups }: @@ -20171,6 +20174,19 @@ self: { license = "GPL"; }) {}; + "ViennaRNAParser_1_2_9" = callPackage + ({ mkDerivation, base, hspec, parsec, process, transformers }: + mkDerivation { + pname = "ViennaRNAParser"; + version = "1.2.9"; + sha256 = "f4e8964ce0710a0461d49e790784a8b82579f4c6079c5732b7fe1ae09fefb219"; + libraryHaskellDepends = [ base parsec process transformers ]; + testHaskellDepends = [ base hspec parsec ]; + description = "Libary for parsing ViennaRNA package output"; + license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "Vulkan" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -23170,7 +23186,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "aeson_0_11_1_3" = callPackage + "aeson_0_11_1_4" = callPackage ({ mkDerivation, attoparsec, base, base-orphans, bytestring , containers, deepseq, dlist, fail, ghc-prim, hashable, HUnit, mtl , QuickCheck, quickcheck-instances, scientific, semigroups, syb @@ -23180,8 +23196,8 @@ self: { }: mkDerivation { pname = "aeson"; - version = "0.11.1.3"; - sha256 = "eeef5e20f55687f0aa5f230f770b0ad6ada2e0694ff5830767faeb227f6cd09f"; + version = "0.11.1.4"; + sha256 = "59ee31bb0fe71ae68bbfa3f3b977443ff200c6dfaaa442485e7295a75fcf7845"; libraryHaskellDepends = [ attoparsec base bytestring containers deepseq dlist fail ghc-prim hashable mtl scientific semigroups syb tagged template-haskell text @@ -34188,6 +34204,7 @@ self: { ]; description = "Library for Nix expression dependency generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "autonix-deps-kf5" = callPackage @@ -34209,6 +34226,7 @@ self: { ]; description = "Generate dependencies for KDE 5 Nix expressions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "autoproc" = callPackage @@ -44838,6 +44856,25 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; + "cabal-rpm_0_9_10" = callPackage + ({ mkDerivation, base, Cabal, directory, filepath, process, time + , unix + }: + mkDerivation { + pname = "cabal-rpm"; + version = "0.9.10"; + sha256 = "6533970ff2b3d28fcdf99d20dcea9f382e2f1610b8610244073679bb82c6d88d"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base Cabal directory filepath process time unix + ]; + homepage = "https://github.com/juhp/cabal-rpm"; + description = "RPM packaging tool for Haskell Cabal-based packages"; + license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "cabal-scripts" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -51803,6 +51840,7 @@ self: { homepage = "http://github.com/haskell-distributed/cloud-haskell"; description = "The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "cloudfront-signer" = callPackage @@ -58149,8 +58187,8 @@ self: { }: mkDerivation { pname = "creatur"; - version = "5.9.9"; - sha256 = "3662a2b632bb86edb14b5f89d5be7cbda94401e651aa43d4e24f15ddf72aa209"; + version = "5.9.10"; + sha256 = "d953d471c6dae5c10decf870103b01bd7a8f89d4f64a985951499c1d419ac9fd"; libraryHaskellDepends = [ array base bytestring cereal cond directory exceptions filepath gray-extended hdaemonize hsyslog MonadRandom mtl old-locale process @@ -59337,6 +59375,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "cryptonite-openssl" = callPackage + ({ mkDerivation, base, bytestring, cryptonite, memory, openssl + , tasty, tasty-hunit, tasty-kat, tasty-quickcheck + }: + mkDerivation { + pname = "cryptonite-openssl"; + version = "0.1"; + sha256 = "0a06b7903b069d17203f4d485033bcc7334c4cbdb478b43cbd321083de133964"; + libraryHaskellDepends = [ base bytestring memory ]; + librarySystemDepends = [ openssl ]; + testHaskellDepends = [ + base bytestring cryptonite tasty tasty-hunit tasty-kat + tasty-quickcheck + ]; + homepage = "https://github.com/haskell-crypto/cryptonite-openssl"; + description = "Crypto stuff using OpenSSL cryptographic library"; + license = stdenv.lib.licenses.bsd3; + }) {inherit (pkgs) openssl;}; + "cryptsy-api" = callPackage ({ mkDerivation, aeson, base, bytestring, deepseq, either , http-client, http-client-tls, old-locale, pipes-attoparsec @@ -64153,6 +64210,28 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "derive_2_5_24" = callPackage + ({ mkDerivation, base, bytestring, containers, directory, filepath + , haskell-src-exts, pretty, process, syb, template-haskell + , transformers, uniplate + }: + mkDerivation { + pname = "derive"; + version = "2.5.24"; + sha256 = "ba0494092c69a301f59fbc19e08ca3834d6e6fe1fd957b381b5eaba9319bfa8a"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring containers directory filepath haskell-src-exts + pretty process syb template-haskell transformers uniplate + ]; + executableHaskellDepends = [ base ]; + homepage = "https://github.com/ndmitchell/derive#readme"; + description = "A program and library to derive instances for data types"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "derive-IG" = callPackage ({ mkDerivation, base, instant-generics, template-haskell }: mkDerivation { @@ -67907,6 +67986,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-async"; description = "Cloud Haskell Async API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "distributed-process-azure" = callPackage @@ -67996,6 +68076,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-client-server"; description = "The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "distributed-process-ekg" = callPackage @@ -68082,6 +68163,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-execution"; description = "Execution Framework for The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "distributed-process-extras_0_2_0" = callPackage @@ -68411,6 +68493,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-supervisor"; description = "Supervisors for The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "distributed-process-task_0_1_1" = callPackage @@ -68484,6 +68567,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-task"; description = "Task Framework for The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "distributed-process-tests" = callPackage @@ -68508,6 +68592,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process/tree/master/distributed-process-tests"; description = "Tests and test support tools for distributed-process"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "distributed-process-zookeeper" = callPackage @@ -71681,8 +71766,8 @@ self: { }: mkDerivation { pname = "egison"; - version = "3.5.10"; - sha256 = "fe238837980117e0ac89dfc048e31444889d00c3d3216251ccd3dac3c471a81e"; + version = "3.6.0"; + sha256 = "16ef278a19fdd9bbc7d58fa8864049b17c47f6ad236e020d00927467726833b2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -86465,6 +86550,33 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "giphy-api" = callPackage + ({ mkDerivation, aeson, base, basic-prelude, bytestring, containers + , directory, either, hspec, lens, microlens, microlens-th, mtl + , network-uri, optparse-applicative, servant, servant-client, text + }: + mkDerivation { + pname = "giphy-api"; + version = "0.1.0.0"; + sha256 = "b854ab4ffc977bf54a8b7c45b23799a3d81747394c4c4c3d93f32e9242653dd6"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base containers either microlens microlens-th mtl network-uri + servant servant-client text + ]; + executableHaskellDepends = [ + base lens network-uri optparse-applicative text + ]; + testHaskellDepends = [ + aeson base basic-prelude bytestring containers directory hspec lens + network-uri text + ]; + homepage = "http://github.com/passy/giphy-api#readme"; + description = "Giphy HTTP API wrapper and CLI search tool"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "gist" = callPackage ({ mkDerivation, aeson, base, bytestring, conduit, http-conduit , text @@ -91661,6 +91773,7 @@ self: { ]; description = "Extended Converter Library for groundhog embedded types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "groundhog-inspector" = callPackage @@ -110386,6 +110499,37 @@ self: { license = "unknown"; }) {}; + "hopenpgp-tools_0_17_1" = callPackage + ({ mkDerivation, aeson, alex, ansi-wl-pprint, array, attoparsec + , base, base16-bytestring, binary, binary-conduit, bytestring + , conduit, conduit-extra, containers, crypto-pubkey, cryptohash + , directory, errors, fgl, graphviz, happy, hOpenPGP, ixset-typed + , lens, monad-loops, openpgp-asciiarmor, optparse-applicative + , resourcet, text, time, time-locale-compat, transformers + , unordered-containers, wl-pprint-extras, wl-pprint-terminfo, yaml + }: + mkDerivation { + pname = "hopenpgp-tools"; + version = "0.17.1"; + sha256 = "1715f4c74b2299c50bba11a3315b960c510b20cc9a74a0cc371df9ed2f56ccfe"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson ansi-wl-pprint array attoparsec base base16-bytestring binary + binary-conduit bytestring conduit conduit-extra containers + crypto-pubkey cryptohash directory errors fgl graphviz hOpenPGP + ixset-typed lens monad-loops openpgp-asciiarmor + optparse-applicative resourcet text time time-locale-compat + transformers unordered-containers wl-pprint-extras + wl-pprint-terminfo yaml + ]; + executableToolDepends = [ alex happy ]; + homepage = "http://floss.scru.org/hopenpgp-tools"; + description = "hOpenPGP-based command-line tools"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hopenssl" = callPackage ({ mkDerivation, base, bytestring, mtl, openssl }: mkDerivation { @@ -113289,6 +113433,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hsebaysdk_0_3_1_0" = callPackage + ({ mkDerivation, aeson, base, bytestring, http-client, http-types + , text, time, transformers, unordered-containers + }: + mkDerivation { + pname = "hsebaysdk"; + version = "0.3.1.0"; + sha256 = "491ba5adf18c8d09be59346f236c9bfceed6f6db353438e8b595c3fb6f3df173"; + libraryHaskellDepends = [ + aeson base bytestring http-client http-types text time transformers + unordered-containers + ]; + homepage = "https://github.com/creichert/hsebaysdk"; + description = "Haskell eBay SDK"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hsemail" = callPackage ({ mkDerivation, base, doctest, hspec, mtl, old-time, parsec }: mkDerivation { @@ -115258,6 +115420,31 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hspec-snap_0_4_0_1" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers + , digestive-functors, directory, HandsomeSoup, hspec, hspec-core + , hxt, lens, mtl, snap, snap-core, text, transformers + }: + mkDerivation { + pname = "hspec-snap"; + version = "0.4.0.1"; + sha256 = "42fead47290131c3072453aee3883b7c4a7a34d5dde989ca6e0b9df8b3e08d3a"; + libraryHaskellDepends = [ + aeson base bytestring containers digestive-functors HandsomeSoup + hspec hspec-core hxt lens mtl snap snap-core text transformers + ]; + testHaskellDepends = [ + aeson base bytestring containers digestive-functors directory + HandsomeSoup hspec hspec-core hxt lens mtl snap snap-core text + transformers + ]; + jailbreak = true; + homepage = "https://github.com/dbp/hspec-snap"; + description = "A library for testing with Hspec and the Snap Web Framework"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hspec-structured-formatter" = callPackage ({ mkDerivation, base, hspec }: mkDerivation { @@ -131920,15 +132107,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "language-javascript_0_6_0_2" = callPackage + "language-javascript_0_6_0_3" = callPackage ({ mkDerivation, alex, array, base, blaze-builder, bytestring , Cabal, containers, happy, hspec, mtl, QuickCheck, text , utf8-light, utf8-string }: mkDerivation { pname = "language-javascript"; - version = "0.6.0.2"; - sha256 = "fce59a0d5483aacd326dacf378662b347224e41e8c0afb9d03761a33bc675d6f"; + version = "0.6.0.3"; + sha256 = "d6010de849a0783705fc34755cb540be98a15979bfeee41f3660b50cddafa49f"; libraryHaskellDepends = [ array base blaze-builder bytestring containers mtl text utf8-string ]; @@ -133859,6 +134046,31 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; + "lentil_0_1_11_0" = callPackage + ({ mkDerivation, ansi-wl-pprint, base, csv, directory, filemanip + , filepath, hspec, natural-sort, optparse-applicative, parsec + , regex-tdfa + }: + mkDerivation { + pname = "lentil"; + version = "0.1.11.0"; + sha256 = "7185c00900bb288df3f335c87e522e12a4ba2052c4937d98d50a053a609bb71f"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + ansi-wl-pprint base csv directory filemanip filepath natural-sort + optparse-applicative parsec regex-tdfa + ]; + testHaskellDepends = [ + ansi-wl-pprint base csv directory filemanip filepath hspec + natural-sort optparse-applicative parsec regex-tdfa + ]; + homepage = "http://www.ariis.it/static/articles/lentil/page.html"; + description = "frugal issue tracker"; + license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "lenz" = callPackage ({ mkDerivation, base, base-unicode-symbols, transformers }: mkDerivation { @@ -134237,6 +134449,7 @@ self: { librarySystemDepends = [ archive ]; description = "Read many archive formats with libarchive and conduit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {archive = null;}; "libconfig" = callPackage @@ -153631,6 +153844,30 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "octane_0_4_9" = callPackage + ({ mkDerivation, base, binary, binary-bits, bytestring, containers + , data-binary-ieee754, deepseq, tasty, tasty-hspec, text + }: + mkDerivation { + pname = "octane"; + version = "0.4.9"; + sha256 = "5ed8ab1abcc8061cebe6e978d9b3de6419bb7a9b042796f17f28c6da36fbf708"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base binary binary-bits bytestring containers data-binary-ieee754 + deepseq text + ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ + base binary binary-bits bytestring containers tasty tasty-hspec + ]; + homepage = "https://github.com/tfausak/octane#readme"; + description = "Parse Rocket League replays"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "octohat" = callPackage ({ mkDerivation, aeson, base, base-compat, base16-bytestring , base64-bytestring, bytestring, containers, cryptohash, dotenv @@ -156952,7 +157189,7 @@ self: { license = "GPL"; }) {}; - "pandoc_1_17_0_1" = callPackage + "pandoc_1_17_0_2" = callPackage ({ mkDerivation, aeson, ansi-terminal, array, base , base64-bytestring, binary, blaze-html, blaze-markup, bytestring , cmark, containers, data-default, deepseq, Diff, directory @@ -156967,8 +157204,8 @@ self: { }: mkDerivation { pname = "pandoc"; - version = "1.17.0.1"; - sha256 = "5d003fe7c6dec96560bf940ef857e169204f0b1428edd799ddcf4046c50898f5"; + version = "1.17.0.2"; + sha256 = "f099eecf102cf215741da7a993d90f0ab135d6f84cb23f9da77050bd1c9a9d53"; configureFlags = [ "-fhttps" ]; isLibrary = true; isExecutable = true; @@ -166227,44 +166464,48 @@ self: { }) {}; "postgrest" = callPackage - ({ mkDerivation, aeson, base, base64-string, bytestring - , case-insensitive, cassava, containers, errors, hasql - , hasql-backend, hasql-postgres, heredoc, hlint, hspec, hspec-wai - , hspec-wai-json, HTTP, http-types, jwt, MissingH - , optparse-applicative, packdeps, parsec, process, Ranged-sets - , regex-tdfa, safe, scientific, string-conversions, text, time - , transformers, unix, unordered-containers, vector, wai, wai-cors - , wai-extra, wai-middleware-static, warp + ({ mkDerivation, aeson, async, base, base64-string, bytestring + , case-insensitive, cassava, containers, contravariant, errors + , hasql, hasql-pool, hasql-transaction, heredoc, hspec, hspec-wai + , hspec-wai-json, HTTP, http-types, interpolatedstring-perl6, jwt + , monad-control, mtl, optparse-applicative, parsec, process + , Ranged-sets, regex-tdfa, safe, scientific, string-conversions + , text, time, transformers, transformers-base, unix + , unordered-containers, vector, wai, wai-cors, wai-extra + , wai-middleware-static, warp }: mkDerivation { pname = "postgrest"; - version = "0.3.0.2"; - sha256 = "5ce3b9b85a51ca6cb3aecc9e1ba84047ab276915c1c0293d2bf91d252c4ee366"; + version = "0.3.1.0"; + sha256 = "592a36bac9f78bfea68acd78f50c188223890fc6509c5f239dc05debd4c94191"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson base bytestring case-insensitive cassava containers errors - hasql hasql-backend hasql-postgres HTTP http-types jwt MissingH - optparse-applicative parsec Ranged-sets regex-tdfa safe scientific - string-conversions text time unordered-containers vector wai - wai-cors wai-extra wai-middleware-static + aeson base bytestring case-insensitive cassava containers + contravariant errors hasql hasql-pool hasql-transaction HTTP + http-types interpolatedstring-perl6 jwt mtl optparse-applicative + parsec Ranged-sets regex-tdfa safe scientific string-conversions + text time unordered-containers vector wai wai-cors wai-extra + wai-middleware-static ]; executableHaskellDepends = [ - aeson base bytestring case-insensitive cassava containers errors - hasql hasql-backend hasql-postgres HTTP http-types jwt MissingH - optparse-applicative parsec Ranged-sets regex-tdfa safe scientific - string-conversions text time transformers unix unordered-containers - vector wai wai-cors wai-extra wai-middleware-static warp + aeson base bytestring case-insensitive cassava containers + contravariant errors hasql hasql-pool hasql-transaction HTTP + http-types interpolatedstring-perl6 jwt mtl optparse-applicative + parsec Ranged-sets regex-tdfa safe scientific string-conversions + text time unix unordered-containers vector wai wai-cors wai-extra + wai-middleware-static warp ]; testHaskellDepends = [ - aeson base base64-string bytestring case-insensitive cassava - containers errors hasql hasql-backend hasql-postgres heredoc hlint - hspec hspec-wai hspec-wai-json HTTP http-types jwt MissingH - optparse-applicative packdeps parsec process Ranged-sets regex-tdfa - safe scientific string-conversions text time unordered-containers - vector wai wai-cors wai-extra wai-middleware-static + aeson async base base64-string bytestring case-insensitive cassava + containers contravariant errors hasql hasql-pool hasql-transaction + heredoc hspec hspec-wai hspec-wai-json HTTP http-types + interpolatedstring-perl6 jwt monad-control mtl optparse-applicative + parsec process Ranged-sets regex-tdfa safe scientific + string-conversions text time transformers transformers-base unix + unordered-containers vector wai wai-cors wai-extra + wai-middleware-static warp ]; - jailbreak = true; homepage = "https://github.com/begriffs/postgrest"; description = "REST API for any Postgres database"; license = stdenv.lib.licenses.mit; @@ -169848,8 +170089,8 @@ self: { }: mkDerivation { pname = "purescript-bridge"; - version = "0.3.0.3"; - sha256 = "2656f56eb3c09ac758219bcec67725757dd744c4d47fad25e26cb9af04dd8479"; + version = "0.3.0.6"; + sha256 = "40f8d1499b86c0bca75f581b163c7eab9a29db144e18049064958f364503f886"; libraryHaskellDepends = [ base containers directory filepath generic-deriving text ]; @@ -172867,8 +173108,8 @@ self: { }: mkDerivation { pname = "rebase"; - version = "0.5"; - sha256 = "005c556d164d4debc2770f91a66d5f67413a88e3343aab563ceca8de61308707"; + version = "0.5.1"; + sha256 = "e5cab23afd40971c4ff0e5feb0eedd7ff84ba9c73e807a9d7451cea8e64c5a80"; libraryHaskellDepends = [ base base-prelude bifunctors bytestring containers contravariant contravariant-extras deepseq dlist either fail hashable mtl @@ -190202,13 +190443,12 @@ self: { }: mkDerivation { pname = "snap-loader-dynamic"; - version = "0.10.0.3"; - sha256 = "7cd7ac11071c0479dcea5a798aab57e4043a50a3a31bf76ed1ce39dba79d645a"; + version = "0.10.0.4"; + sha256 = "f502f7cae63c5ee5c26be5a5e751fc211d922193dc88b3bae9ab447b70b659c0"; libraryHaskellDepends = [ base directory directory-tree hint mtl snap-core template-haskell time unix ]; - jailbreak = true; homepage = "http://snapframework.com/"; description = "Snap: A Haskell Web Framework: dynamic loader"; license = stdenv.lib.licenses.bsd3; @@ -201615,6 +201855,7 @@ self: { ]; description = "Tasty Tests for groundhog converters"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tasty-hspec_1_1" = callPackage @@ -215800,6 +216041,24 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "vinyl-plus" = callPackage + ({ mkDerivation, base, contravariant, doctest, ghc-prim + , profunctors, transformers, unordered-containers, vinyl + }: + mkDerivation { + pname = "vinyl-plus"; + version = "0.1.0.0"; + sha256 = "438d84c4f71422229b673b14aee7bb14defa8a3f7b9232f67a8a4f91fb2a29d0"; + libraryHaskellDepends = [ + base contravariant ghc-prim profunctors transformers + unordered-containers vinyl + ]; + testHaskellDepends = [ base doctest vinyl ]; + homepage = "http://github.com/andrew/vinyl-plus"; + description = "Vinyl records utilities"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "vinyl-utils" = callPackage ({ mkDerivation, base, contravariant, transformers, vinyl }: mkDerivation { From e74a8d08ccf5657aca08176175f662e484570aa5 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 23 Mar 2016 20:09:14 +0300 Subject: [PATCH 498/678] haskellPackages.Agda: add myself as a maintainer --- pkgs/development/haskell-modules/configuration-hackage2nix.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index d15300b8c28..4fbcc592910 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -99,6 +99,8 @@ package-maintainers: - persistent-template - persistent-zookeeper - shakespeare + abbradar: + - Agda dont-distribute-packages: # hard restrictions that really belong into meta.platforms From 7b5728c0d49d5d2c4bcd6193664a0ad9ff7fd129 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 23 Mar 2016 19:05:27 +0100 Subject: [PATCH 499/678] configuration-hackage2nix.yaml: update list of broken packages --- .../haskell-modules/configuration-hackage2nix.yaml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index 4fbcc592910..74cab1ec9e9 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -199,7 +199,6 @@ dont-distribute-packages: agda-server: [ i686-linux, x86_64-darwin, x86_64-linux ] agda-snippets-hakyll: [ i686-linux, x86_64-darwin, x86_64-linux ] agda-snippets: [ i686-linux, x86_64-darwin, x86_64-linux ] - Agda: [ x86_64-darwin ] AGI: [ i686-linux, x86_64-darwin, x86_64-linux ] AhoCorasick: [ i686-linux, x86_64-darwin, x86_64-linux ] airbrake: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -306,6 +305,8 @@ dont-distribute-packages: Aurochs: [ i686-linux, x86_64-darwin, x86_64-linux ] authoring: [ i686-linux, x86_64-darwin, x86_64-linux ] AutoForms: [ i686-linux, x86_64-darwin, x86_64-linux ] + autonix-deps-kf5: [ x86_64-darwin ] + autonix-deps: [ x86_64-darwin ] autoproc: [ i686-linux, x86_64-darwin, x86_64-linux ] avahi: [ i686-linux, x86_64-darwin, x86_64-linux ] AvlTree: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -642,6 +643,7 @@ dont-distribute-packages: clocked: [ i686-linux, x86_64-darwin, x86_64-linux ] clogparse: [ i686-linux, x86_64-darwin, x86_64-linux ] clone-all: [ i686-linux, x86_64-darwin, x86_64-linux ] + cloud-haskell: [ x86_64-darwin ] cloudfront-signer: [ i686-linux, x86_64-darwin, x86_64-linux ] cloudyfs: [ i686-linux, x86_64-linux, x86_64-darwin ] clua: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -926,10 +928,17 @@ dont-distribute-packages: discount: [ i686-linux, x86_64-darwin, x86_64-linux ] disjoint-set: [ i686-linux, x86_64-darwin, x86_64-linux ] DisTract: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-process-async: [ x86_64-darwin ] distributed-process-azure: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-process-client-server: [ x86_64-darwin ] + distributed-process-execution: [ x86_64-darwin ] distributed-process-lifted: [ i686-linux, x86_64-darwin, x86_64-linux ] distributed-process-platform: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-process-registry: [ x86_64-darwin ] distributed-process-registry: [ x86_64-linux ] + distributed-process-supervisor: [ x86_64-darwin ] + distributed-process-task: [ x86_64-darwin ] + distributed-process-tests: [ x86_64-darwin ] distributed-process-zookeeper: [ i686-linux, x86_64-darwin, x86_64-linux ] distribution-plot: [ i686-linux, x86_64-darwin, x86_64-linux ] distribution: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -1417,6 +1426,7 @@ dont-distribute-packages: gridfs: [ i686-linux, x86_64-darwin, x86_64-linux ] gridland: [ x86_64-darwin ] grm: [ i686-linux, x86_64-darwin, x86_64-linux ] + groundhog-converters: [ i686-linux, x86_64-darwin, x86_64-linux ] Grow: [ i686-linux, x86_64-darwin, x86_64-linux ] GrowlNotify: [ i686-linux, x86_64-darwin, x86_64-linux ] gruff-examples: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -2352,6 +2362,7 @@ dont-distribute-packages: lha: [ i686-linux, x86_64-darwin, x86_64-linux ] lhae: [ i686-linux, x86_64-darwin, x86_64-linux ] lhe: [ i686-linux, x86_64-darwin, x86_64-linux ] + libarchive-conduit: [ x86_64-darwin ] LibClang: [ i686-linux, x86_64-darwin, x86_64-linux ] libconfig: [ i686-linux, x86_64-linux, x86_64-darwin ] libcspm: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3607,6 +3618,7 @@ dont-distribute-packages: task-distribution: [ i686-linux, x86_64-darwin, x86_64-linux ] task: [ i686-linux, x86_64-darwin, x86_64-linux ] taskpool: [ x86_64-darwin ] + tasty-groundhog-converters: [ i686-linux, x86_64-darwin, x86_64-linux ] tasty-integrate: [ i686-linux, x86_64-darwin, x86_64-linux ] TBC: [ i686-linux, x86_64-darwin, x86_64-linux ] TBit: [ i686-linux, x86_64-darwin, x86_64-linux ] From 74ccfd690d51daa78200b9d455661670616bad6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Thu, 24 Mar 2016 11:47:59 +0100 Subject: [PATCH 500/678] octave: parallel building and check. I think those were not updated since 3.8.2. They worked for me. Let's see. --- pkgs/development/interpreters/octave/default.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/development/interpreters/octave/default.nix b/pkgs/development/interpreters/octave/default.nix index bdf6f775277..475e55760ce 100644 --- a/pkgs/development/interpreters/octave/default.nix +++ b/pkgs/development/interpreters/octave/default.nix @@ -40,11 +40,9 @@ stdenv.mkDerivation rec { ++ (stdenv.lib.optional (python != null) python) ; - # there is a mysterious sh: command not found - doCheck = false; + doCheck = true; - # problems on Hydra - enableParallelBuilding = false; + enableParallelBuilding = true; configureFlags = [ "--enable-readline" From 1f8ffdde5bd1a7f3d985bbb62478c21670e60e11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Thu, 24 Mar 2016 12:02:48 +0100 Subject: [PATCH 501/678] octave: update to 4.0.1 bugfix release, they say. --- pkgs/development/interpreters/octave/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/octave/default.nix b/pkgs/development/interpreters/octave/default.nix index 475e55760ce..e0dd5a65644 100644 --- a/pkgs/development/interpreters/octave/default.nix +++ b/pkgs/development/interpreters/octave/default.nix @@ -18,11 +18,11 @@ let in stdenv.mkDerivation rec { - version = "4.0.0"; + version = "4.0.1"; name = "octave-${version}"; src = fetchurl { url = "mirror://gnu/octave/${name}.tar.xz"; - sha256 = "0x64b2lna4vrlm4wwx6h1qdlmki6s2b9q90yjxldlvvrqvxf4syg"; + sha256 = "11y2w6jgngj4rxiy136mkcs02l52rxk60kapyfc4rgrxz5hli3ym"; }; buildInputs = [ gfortran readline ncurses perl flex texinfo qhull libX11 From 09302c7b56eb27ccdfa16d23abc25bd85d828ed3 Mon Sep 17 00:00:00 2001 From: obadz Date: Thu, 24 Mar 2016 12:10:13 +0000 Subject: [PATCH 502/678] ecryptfs: 108 -> 110 --- pkgs/tools/security/ecryptfs/default.nix | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/pkgs/tools/security/ecryptfs/default.nix b/pkgs/tools/security/ecryptfs/default.nix index 0ea5bc62fd4..08fee5c8c14 100644 --- a/pkgs/tools/security/ecryptfs/default.nix +++ b/pkgs/tools/security/ecryptfs/default.nix @@ -3,20 +3,22 @@ stdenv.mkDerivation rec { name = "ecryptfs-${version}"; - version = "108"; + version = "110"; src = fetchurl { url = "http://launchpad.net/ecryptfs/trunk/${version}/+download/ecryptfs-utils_${version}.orig.tar.gz"; - sha256 = "1pfpzc907m4qi5h2rxmkqq072c6g22pik2rilj4bl4qishd8p0sj"; + sha256 = "1x03m9s409fmzjcnsa9f9ghzkpxcnj9irj05rx7jlwm5cach0lqs"; }; - #TODO: replace wrapperDir below with from config.security.wrapperDir; + # TODO: replace wrapperDir below with from config.security.wrapperDir; + wrapperDir = "/var/setuid-wrappers"; + postPatch = '' FILES="$(grep -r '/bin/sh' src/utils -l; find src -name \*.c)" for file in $FILES; do substituteInPlace "$file" \ - --replace /sbin/mount.ecryptfs_private /var/setuid-wrappers/mount.ecryptfs_private \ - --replace /sbin/umount.ecryptfs_private /var/setuid-wrappers/umount.ecryptfs_private \ + --replace /sbin/mount.ecryptfs_private ${wrapperDir}/mount.ecryptfs_private \ + --replace /sbin/umount.ecryptfs_private ${wrapperDir}/umount.ecryptfs_private \ --replace /sbin/mount.ecryptfs $out/sbin/mount.ecryptfs \ --replace /sbin/umount.ecryptfs $out/sbin/umount.ecryptfs \ --replace /usr/bin/ecryptfs-rewrite-file $out/bin/ecryptfs-rewrite-file \ @@ -26,7 +28,7 @@ stdenv.mkDerivation rec { --replace /sbin/dmsetup ${lvm2}/sbin/dmsetup \ --replace /bin/mount ${utillinux}/bin/mount \ --replace /bin/umount ${utillinux}/bin/umount \ - --replace /sbin/unix_chkpwd /var/setuid-wrappers/unix_chkpwd \ + --replace /sbin/unix_chkpwd ${wrapperDir}/unix_chkpwd \ --replace /bin/bash ${bash}/bin/bash done ''; @@ -50,8 +52,8 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "Enterprise-class stacked cryptographic filesystem"; - license = licenses.gpl2Plus; + license = licenses.gpl2Plus; maintainers = [ maintainers.obadz ]; - platforms = platforms.linux; + platforms = platforms.linux; }; } From c22657b5f86258104934845655b7eb58a0ce5a24 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 24 Mar 2016 13:24:06 +0100 Subject: [PATCH 503/678] mplus: Don't start version with a letter --- pkgs/data/fonts/mplus-outline-fonts/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/data/fonts/mplus-outline-fonts/default.nix b/pkgs/data/fonts/mplus-outline-fonts/default.nix index eefb663f722..22a5245ec40 100644 --- a/pkgs/data/fonts/mplus-outline-fonts/default.nix +++ b/pkgs/data/fonts/mplus-outline-fonts/default.nix @@ -2,7 +2,7 @@ stdenv.mkDerivation rec { name = "mplus-${version}"; - version = "TESTFLIGHT-059"; + version = "059"; src = fetchurl { url = "mirror://sourceforgejp/mplus-fonts/62344/mplus-TESTFLIGHT-059.tar.xz"; From f942b09bf90862a7ecf9f37bfb723aac110f774f Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Thu, 24 Mar 2016 15:52:06 +0100 Subject: [PATCH 504/678] abduco: 0.5 -> 0.6 --- pkgs/tools/misc/abduco/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/abduco/default.nix b/pkgs/tools/misc/abduco/default.nix index d8f53a032af..cdfb57fc5f0 100644 --- a/pkgs/tools/misc/abduco/default.nix +++ b/pkgs/tools/misc/abduco/default.nix @@ -3,7 +3,7 @@ with stdenv.lib; stdenv.mkDerivation rec { - name = "abduco-0.5"; + name = "abduco-0.6"; meta = { homepage = http://brain-dump.org/projects/abduco; @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://www.brain-dump.org/projects/abduco/${name}.tar.gz"; - sha256 = "11phry5wnvwm9ckij5gxbrjfgdz3x38vpnm505q5ldc88im248mz"; + sha256 = "1x1m58ckwsprljgmdy93mvgjyg9x3cqrzdf3mysp0mx97zhhj2f9"; }; configFile = optionalString (conf!=null) (writeText "config.def.h" conf); From 64fe4ad82d8d779c99a0f09baed62d29f201e9c2 Mon Sep 17 00:00:00 2001 From: Svintsov Dmitry Date: Thu, 24 Mar 2016 17:15:10 +0500 Subject: [PATCH 505/678] mxu11x0: init at 1.3.11 --- lib/maintainers.nix | 1 + pkgs/os-specific/linux/mxu11x0/default.nix | 38 ++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 3 files changed, 41 insertions(+) create mode 100644 pkgs/os-specific/linux/mxu11x0/default.nix diff --git a/lib/maintainers.nix b/lib/maintainers.nix index c3ae1a5ef70..cbf7e02d3f4 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -349,6 +349,7 @@ tv = "Tomislav Viljetić "; tvestelind = "Tomas Vestelind "; twey = "James ‘Twey’ Kay "; + uralbash = "Svintsov Dmitry "; urkud = "Yury G. Kudryashov "; vandenoever = "Jos van den Oever "; vanzef = "Ivan Solyankin "; diff --git a/pkgs/os-specific/linux/mxu11x0/default.nix b/pkgs/os-specific/linux/mxu11x0/default.nix new file mode 100644 index 00000000000..4af40432403 --- /dev/null +++ b/pkgs/os-specific/linux/mxu11x0/default.nix @@ -0,0 +1,38 @@ +{ stdenv, fetchFromGitHub, kernel }: + +# it doesn't compile anymore on 3.14 +assert stdenv.lib.versionAtLeast kernel.version "3.18"; + +stdenv.mkDerivation { + name = "mxu11x0-1.3.11-${kernel.version}"; + + src = fetchFromGitHub { + owner = "ellysh"; + repo = "mxu11x0"; + rev = "de54053d6f297785d77aba9e9c880001519ffddf"; + sha256 = "1zmqanw22pgaj3b3lnciq33w6svm5ngg6g0k5xxwwijixg8ri3lf"; + }; + + preBuild = '' + sed -i -e "s/\$(uname -r).*/${kernel.modDirVersion}/g" driver/mxconf + sed -i -e "s/\$(shell uname -r).*/${kernel.modDirVersion}/g" driver/Makefile + sed -i -e 's|/lib/modules|${kernel.dev}/lib/modules|' driver/mxconf + sed -i -e 's|/lib/modules|${kernel.dev}/lib/modules|' driver/Makefile + ''; + installPhase = '' + install -v -D -m 644 ./driver/mxu11x0.ko "$out/lib/modules/${kernel.modDirVersion}/kernel/drivers/usb/serial/mxu11x0.ko" + install -v -D -m 644 ./driver/mxu11x0.ko "$out/lib/modules/${kernel.modDirVersion}/misc/mxu11x0.ko" + ''; + + dontStrip = true; + + enableParallelBuilding = true; + + meta = with stdenv.lib; { + description = "MOXA UPort 11x0 USB to Serial Hub driver"; + homepage = "https://github.com/ellysh/mxu11x0"; + license = licenses.gpl1; + maintainers = with maintainers; [ uralbash ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d4687af1ef6..83dd2b70a9f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10661,6 +10661,8 @@ let mba6x_bl = callPackage ../os-specific/linux/mba6x_bl { }; + mxu11x0 = callPackage ../os-specific/linux/mxu11x0 { }; + /* compiles but has to be integrated into the kernel somehow Let's have it uncommented and finish it.. */ From 9c274b4bef10f7e535ce5bf72f0259e7c0d76c93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Thu, 24 Mar 2016 15:44:14 +0000 Subject: [PATCH 506/678] bootstrapped-pip: support Python 2.6 --- .../python-modules/bootstrapped-pip/default.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/bootstrapped-pip/default.nix b/pkgs/development/python-modules/bootstrapped-pip/default.nix index c0e5ae0ec77..c53a2fd2477 100644 --- a/pkgs/development/python-modules/bootstrapped-pip/default.nix +++ b/pkgs/development/python-modules/bootstrapped-pip/default.nix @@ -9,6 +9,10 @@ let url = "https://pypi.python.org/packages/3.5/s/setuptools/setuptools-19.4-py2.py3-none-any.whl"; sha256 = "0801e6d862ca4ce24d918420d62f07ee2fe736dc016e3afa99d2103e7a02e9a6"; }; + argparse_source = fetchurl { + url = "https://pypi.python.org/packages/2.7/a/argparse/argparse-1.4.0-py2.py3-none-any.whl"; + sha256 = "0533cr5w14da8wdb2q4py6aizvbvsdbk3sj7m1jx9lwznvnlf5n3"; + }; in stdenv.mkDerivation rec { name = "python-${python.version}-bootstrapped-pip-${version}"; version = "8.0.2"; @@ -23,8 +27,11 @@ in stdenv.mkDerivation rec { unzip -d $out/${python.sitePackages} $src unzip -d $out/${python.sitePackages} ${setuptools_source} unzip -d $out/${python.sitePackages} ${wheel_source} + '' + stdenv.lib.optionalString (python.isPy26 or false) '' + unzip -d $out/${python.sitePackages} ${argparse_source} ''; + patchPhase = '' mkdir -p $out/bin ''; @@ -34,7 +41,9 @@ in stdenv.mkDerivation rec { installPhase = '' # install pip binary - echo '${python.interpreter} -m pip "$@"' > $out/bin/pip + echo '#!${python.interpreter}' > $out/bin/pip + echo 'import sys;from pip import main' >> $out/bin/pip + echo 'sys.exit(main())' >> $out/bin/pip chmod +x $out/bin/pip # wrap binaries with PYTHONPATH From 4001917359db57b75662581e55d33e38fa60bc2d Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Wed, 23 Mar 2016 20:41:49 +0100 Subject: [PATCH 507/678] dnscrypt-proxy service: cosmetic enhancements --- nixos/modules/services/networking/dnscrypt-proxy.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/nixos/modules/services/networking/dnscrypt-proxy.nix b/nixos/modules/services/networking/dnscrypt-proxy.nix index a6b5b1deed7..e6204a387bd 100644 --- a/nixos/modules/services/networking/dnscrypt-proxy.nix +++ b/nixos/modules/services/networking/dnscrypt-proxy.nix @@ -5,14 +5,17 @@ let apparmorEnabled = config.security.apparmor.enable; dnscrypt-proxy = pkgs.dnscrypt-proxy; cfg = config.services.dnscrypt-proxy; + resolverListFile = "${dnscrypt-proxy}/share/dnscrypt-proxy/dnscrypt-resolvers.csv"; localAddress = "${cfg.localAddress}:${toString cfg.localPort}"; + daemonArgs = [ "--local-address=${localAddress}" (optionalString cfg.tcpOnly "--tcp-only") (optionalString cfg.ephemeralKeys "-E") ] ++ resolverArgs; + resolverArgs = if (cfg.customResolver != null) then [ "--resolver-address=${cfg.customResolver.address}:${toString cfg.customResolver.port}" @@ -50,7 +53,7 @@ in services.dnsmasq.resolveLocalQueries = true; # this is the default } - ''; }; + ''; }; localAddress = mkOption { default = "127.0.0.1"; type = types.string; @@ -187,14 +190,18 @@ in systemd.services.dnscrypt-proxy = { description = "dnscrypt-proxy daemon"; + after = [ "network.target" ] ++ optional apparmorEnabled "apparmor.service"; requires = [ "dnscrypt-proxy.socket "] ++ optional apparmorEnabled "apparmor.service"; + serviceConfig = { Type = "simple"; NonBlocking = "true"; ExecStart = "${dnscrypt-proxy}/bin/dnscrypt-proxy ${toString daemonArgs}"; + User = "dnscrypt-proxy"; Group = "dnscrypt-proxy"; + PrivateTmp = true; PrivateDevices = true; }; From 03bdf8f03cbc9157bd04aa786d366bdbb2acd234 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Wed, 23 Mar 2016 20:42:01 +0100 Subject: [PATCH 508/678] dnscrypt-proxy service: additional hardening Run the daemon with private /home and /run/user to prevent it from enumerating users on the system. --- nixos/modules/services/networking/dnscrypt-proxy.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/networking/dnscrypt-proxy.nix b/nixos/modules/services/networking/dnscrypt-proxy.nix index e6204a387bd..3d5ce7b9d5c 100644 --- a/nixos/modules/services/networking/dnscrypt-proxy.nix +++ b/nixos/modules/services/networking/dnscrypt-proxy.nix @@ -204,6 +204,7 @@ in PrivateTmp = true; PrivateDevices = true; + ProtectHome = true; }; }; }; From 9bf6e6486031db37a6507156feb23b369ccebdcb Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Wed, 23 Mar 2016 20:42:36 +0100 Subject: [PATCH 509/678] dnscrypt-proxy service: use dynamic uid/gid The daemon doesn't have any portable data, reserving a UID/GID for it is redundant. This frees up UID/GID 151. --- nixos/modules/misc/ids.nix | 2 -- nixos/modules/services/networking/dnscrypt-proxy.nix | 7 ++++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/nixos/modules/misc/ids.nix b/nixos/modules/misc/ids.nix index 46c288f9296..f71d1e3fe20 100644 --- a/nixos/modules/misc/ids.nix +++ b/nixos/modules/misc/ids.nix @@ -176,7 +176,6 @@ seeks = 148; prosody = 149; i2pd = 150; - dnscrypt-proxy = 151; systemd-network = 152; systemd-resolve = 153; systemd-timesync = 154; @@ -414,7 +413,6 @@ seeks = 148; prosody = 149; i2pd = 150; - dnscrypt-proxy = 151; systemd-network = 152; systemd-resolve = 153; systemd-timesync = 154; diff --git a/nixos/modules/services/networking/dnscrypt-proxy.nix b/nixos/modules/services/networking/dnscrypt-proxy.nix index 3d5ce7b9d5c..2c5c82f4d55 100644 --- a/nixos/modules/services/networking/dnscrypt-proxy.nix +++ b/nixos/modules/services/networking/dnscrypt-proxy.nix @@ -173,11 +173,12 @@ in } '')); - users.extraUsers.dnscrypt-proxy = { - uid = config.ids.uids.dnscrypt-proxy; + users.users.dnscrypt-proxy = { description = "dnscrypt-proxy daemon user"; + isSystemUser = true; + group = "dnscrypt-proxy"; }; - users.extraGroups.dnscrypt-proxy.gid = config.ids.gids.dnscrypt-proxy; + users.groups.dnscrypt-proxy = {}; systemd.sockets.dnscrypt-proxy = { description = "dnscrypt-proxy listening socket"; From 1ca46105773a318dbd5d9a53e9704610de43b209 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Thu, 24 Mar 2016 15:14:10 +0100 Subject: [PATCH 510/678] dnscrypt-proxy service: change default upstream resolver Previously, the cisco resolver was used on the theory that it would provide the best user experience regardless of location. The downsides of cisco are 1) logging; 2) missing supoprt for DNS security extensions. The new upstream resolver is located in Holland, supports DNS security, and *claims* to not log activity. For users outside of Europe, this will mean reduced performance, but I believe it's a worthy tradeoff. --- nixos/modules/services/networking/dnscrypt-proxy.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nixos/modules/services/networking/dnscrypt-proxy.nix b/nixos/modules/services/networking/dnscrypt-proxy.nix index 2c5c82f4d55..886bfc30468 100644 --- a/nixos/modules/services/networking/dnscrypt-proxy.nix +++ b/nixos/modules/services/networking/dnscrypt-proxy.nix @@ -74,13 +74,13 @@ in ''; }; resolverName = mkOption { - default = "cisco"; + default = "dnscrypt.eu-nl"; type = types.nullOr types.string; description = '' The name of the upstream DNSCrypt resolver to use. See - ${resolverListFile} for alternative resolvers - (e.g., if you are concerned about logging and/or server - location). + ${resolverListFile} for alternative resolvers. + The default resolver is located in Holland, supports DNS security + extensions, and claims to not keep logs. ''; }; customResolver = mkOption { From 2438c61255657764a928878ca7e87d18e7a587cf Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Thu, 24 Mar 2016 16:41:52 +0100 Subject: [PATCH 511/678] dnscrypt-proxy vmtest: more specific waitForUnit The test sometimes times out waiting for multi-user.target; this should be more robust. --- nixos/tests/dnscrypt-proxy.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nixos/tests/dnscrypt-proxy.nix b/nixos/tests/dnscrypt-proxy.nix index 20ec3a333e7..b686e9582a7 100644 --- a/nixos/tests/dnscrypt-proxy.nix +++ b/nixos/tests/dnscrypt-proxy.nix @@ -23,10 +23,11 @@ import ./make-test.nix ({ pkgs, ... }: { testScript = '' $client->start; - $client->waitForUnit("multi-user.target"); + $client->waitForUnit("sockets.target"); + $client->waitForUnit("dnsmasq"); # The daemon is socket activated; sending a single ping should activate it. $client->execute("${pkgs.iputils}/bin/ping -c1 example.com"); - $client->succeed("systemctl is-active dnscrypt-proxy.service"); + $client->succeed("systemctl is-active dnscrypt-proxy"); ''; }) From 63b6498aa08fb72a756a242ec2c93c26e7cded99 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Thu, 24 Mar 2016 17:03:48 +0100 Subject: [PATCH 512/678] dnscrypt-proxy: disable darwin build The darwin build has been broken for a long time and I'm unable to properly debug the issue. What appears to be happening is that the symbol `HAVE_SANDBOX_INIT` ends up being defined as 1 while `HAVE_SANDBOX_H` ends up being 0, resulting in undefined reference errors when `sandbox_init()` is called (because `` is not included first). This is a regression from dnscrypt-proxy 1.6.0 to 1.6.1. For context, sandbox.h is a deprecated OSX mechanism for sandboxing. The build failure is at https://hydra.nixos.org/build/32705849/nixlog/1/raw This patch closes NixOS/nixpkgs#14064 --- pkgs/tools/networking/dnscrypt-proxy/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/networking/dnscrypt-proxy/default.nix b/pkgs/tools/networking/dnscrypt-proxy/default.nix index 380dd676411..565a83047ef 100644 --- a/pkgs/tools/networking/dnscrypt-proxy/default.nix +++ b/pkgs/tools/networking/dnscrypt-proxy/default.nix @@ -24,6 +24,7 @@ stdenv.mkDerivation rec { homepage = https://dnscrypt.org/; license = licenses.isc; maintainers = with maintainers; [ joachifm jgeerds ]; - platforms = platforms.all; + # upstream claims OSX support, but Hydra fails + platforms = with platforms; allBut [ darwin ]; }; } From fab439201e1c48ab8670ee073ab8f5905a2b6c15 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 24 Mar 2016 17:36:26 +0100 Subject: [PATCH 513/678] Keep track of Nixpkgs/NixOS evaluation statistics --- pkgs/top-level/metrics.nix | 54 ++++++++++++++++++++++++++++++++++++++ pkgs/top-level/release.nix | 2 ++ 2 files changed, 56 insertions(+) create mode 100644 pkgs/top-level/metrics.nix diff --git a/pkgs/top-level/metrics.nix b/pkgs/top-level/metrics.nix new file mode 100644 index 00000000000..44cf87f1094 --- /dev/null +++ b/pkgs/top-level/metrics.nix @@ -0,0 +1,54 @@ +{ nixpkgs, pkgs }: + +with pkgs; + +runCommand "nixpkgs-metrics" + { buildInputs = [ nix time ]; + requiredSystemFeatures = [ "benchmark" ]; + } + '' + export NIX_DB_DIR=$TMPDIR + export NIX_STATE_DIR=$TMPDIR + nix-store --init + + mkdir -p $out/nix-support + + run() { + local name="$1" + shift + + echo "running $@" + NIX_SHOW_STATS=1 time "$@" > /dev/null 2> stats + + cat stats + + x=$(sed -e 's/.*time elapsed: \([0-9\.]\+\).*/\1/ ; t ; d' stats) + [[ -n $x ]] || exit 1 + echo "$name.time $x s" >> $out/nix-support/hydra-metrics + + x=$(sed -e 's/.* \([0-9]\+\)maxresident.*/\1/ ; t ; d' stats) + [[ -n $x ]] || exit 1 + echo "$name.maxresident $x KiB" >> $out/nix-support/hydra-metrics + + x=$(sed -e 's/.*total allocations: \([0-9]\+\) bytes.*/\1/ ; t ; d' stats) + [[ -n $x ]] || exit 1 + echo "$name.allocations $x B" >> $out/nix-support/hydra-metrics + + x=$(sed -e 's/.*values allocated: \([0-9]\+\) .*/\1/ ; t ; d' stats) + [[ -n $x ]] || exit 1 + echo "$name.values $x" >> $out/nix-support/hydra-metrics + } + + run nixos.smallContainer nix-instantiate --dry-run ${nixpkgs}/nixos/release.nix -A closures.smallContainer.x86_64-linux + run nixos.kde nix-instantiate --dry-run ${nixpkgs}/nixos/release.nix -A closures.kde.x86_64-linux + run nixos.lapp nix-instantiate --dry-run ${nixpkgs}/nixos/release.nix -A closures.lapp.x86_64-linux + run nix-env.qa nix-env -f ${nixpkgs} -qa + run nix-env.qaDrv nix-env -f ${nixpkgs} -qa --drv-path --meta --xml + + export GC_INITIAL_HEAP_SIZE=128k + run nix-env.qaAggressive nix-env -f ${nixpkgs} -qa + run nix-env.qaDrvAggressive nix-env -f ${nixpkgs} -qa --drv-path --meta --xml + + lines=$(find ${nixpkgs} -name "*.nix" -type f | xargs cat | wc -l) + echo "loc $lines" >> $out/nix-support/hydra-metrics + '' diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix index b1da5bf3035..afdcb3627df 100644 --- a/pkgs/top-level/release.nix +++ b/pkgs/top-level/release.nix @@ -25,6 +25,8 @@ let jobs = { tarball = import ./make-tarball.nix { inherit pkgs nixpkgs officialRelease; }; + metrics = import ./metrics.nix { inherit pkgs nixpkgs; }; + manual = import ../../doc; lib-tests = import ../../lib/tests/release.nix { inherit nixpkgs; }; From c23e9e12f85c3dc7d5412d9a35d0fbfe59d2ccba Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 24 Mar 2016 17:38:58 +0100 Subject: [PATCH 514/678] Add metrics job to unstable aggregate --- pkgs/top-level/release.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix index afdcb3627df..b46b5895626 100644 --- a/pkgs/top-level/release.nix +++ b/pkgs/top-level/release.nix @@ -35,6 +35,7 @@ let meta.description = "Release-critical builds for the Nixpkgs unstable channel"; constituents = [ jobs.tarball + jobs.metrics jobs.manual jobs.lib-tests jobs.stdenv.x86_64-linux From 03df731fb5cb318592382e33928504a52e894746 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 24 Mar 2016 18:06:46 +0100 Subject: [PATCH 515/678] nixpkgs-metrics: Suppress build products --- pkgs/top-level/metrics.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/metrics.nix b/pkgs/top-level/metrics.nix index 44cf87f1094..2a54566ef4a 100644 --- a/pkgs/top-level/metrics.nix +++ b/pkgs/top-level/metrics.nix @@ -12,6 +12,7 @@ runCommand "nixpkgs-metrics" nix-store --init mkdir -p $out/nix-support + touch $out/nix-support/hydra-build-products run() { local name="$1" From 0c6db0ca48612f18e5c2b744dfa385ba8eecc950 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 15 Mar 2016 19:35:07 +0300 Subject: [PATCH 516/678] cc-wrapper: add option to skip flags for native optimizations --- pkgs/build-support/cc-wrapper/cc-wrapper.sh | 14 ++++++++++++++ pkgs/build-support/cc-wrapper/gnat-wrapper.sh | 14 ++++++++++++++ pkgs/development/libraries/crypto++/default.nix | 1 - pkgs/misc/emulators/higan/0001-change-flags.diff | 9 --------- pkgs/stdenv/darwin/default.nix | 1 + pkgs/stdenv/linux/default.nix | 1 + pkgs/stdenv/native/default.nix | 1 + pkgs/stdenv/nix/default.nix | 1 + pkgs/tools/networking/pingtcp/default.nix | 5 ----- pkgs/tools/security/crackxls/default.nix | 6 ------ 10 files changed, 32 insertions(+), 21 deletions(-) diff --git a/pkgs/build-support/cc-wrapper/cc-wrapper.sh b/pkgs/build-support/cc-wrapper/cc-wrapper.sh index 41567fde269..3b6f2acfee8 100644 --- a/pkgs/build-support/cc-wrapper/cc-wrapper.sh +++ b/pkgs/build-support/cc-wrapper/cc-wrapper.sh @@ -91,6 +91,20 @@ if [ "$NIX_ENFORCE_PURITY" = 1 -a -n "$NIX_STORE" ]; then params=("${rest[@]}") fi + +# Clear march/mtune=native -- they bring impurity. +if [ "$NIX_ENFORCE_NO_NATIVE" = 1 ]; then + rest=() + for i in "${params[@]}"; do + if [[ "$i" = -m*=native ]]; then + skip $i + else + rest=("${rest[@]}" "$i") + fi + done + params=("${rest[@]}") +fi + if [[ "$isCpp" = 1 ]]; then NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE ${NIX_CXXSTDLIB_COMPILE-@default_cxx_stdlib_compile@}" NIX_CFLAGS_LINK="$NIX_CFLAGS_LINK $NIX_CXXSTDLIB_LINK" diff --git a/pkgs/build-support/cc-wrapper/gnat-wrapper.sh b/pkgs/build-support/cc-wrapper/gnat-wrapper.sh index ae46b40ac63..4b3ba386917 100644 --- a/pkgs/build-support/cc-wrapper/gnat-wrapper.sh +++ b/pkgs/build-support/cc-wrapper/gnat-wrapper.sh @@ -70,6 +70,20 @@ if [ "$NIX_ENFORCE_PURITY" = 1 -a -n "$NIX_STORE" ]; then fi +# Clear march/mtune=native -- they bring impurity. +if [ "$NIX_ENFORCE_NO_NATIVE" = 1 ]; then + rest=() + for i in "${params[@]}"; do + if [[ "$i" = -m*=native ]]; then + skip $i + else + rest=("${rest[@]}" "$i") + fi + done + params=("${rest[@]}") +fi + + # Add the flags for the GNAT compiler proper. extraAfter=($NIX_GNATFLAGS_COMPILE) extraBefore=() diff --git a/pkgs/development/libraries/crypto++/default.nix b/pkgs/development/libraries/crypto++/default.nix index 788d488659a..940af8c44e9 100644 --- a/pkgs/development/libraries/crypto++/default.nix +++ b/pkgs/development/libraries/crypto++/default.nix @@ -25,7 +25,6 @@ stdenv.mkDerivation rec { '' sed -i GNUmakefile \ -e 's|-march=native|${marchflags} -fPIC|g' \ - -e 's|-mtune=native||g' \ -e '/^CXXFLAGS =/s|-g ||' ''; diff --git a/pkgs/misc/emulators/higan/0001-change-flags.diff b/pkgs/misc/emulators/higan/0001-change-flags.diff index 78f4a248c5f..9d7608b9328 100644 --- a/pkgs/misc/emulators/higan/0001-change-flags.diff +++ b/pkgs/misc/emulators/higan/0001-change-flags.diff @@ -11,15 +11,6 @@ diff -rupN higan_v095-source.orig/GNUmakefile higan_v095-source/GNUmakefile objects := libco # profile-guided optimization mode -@@ -43,7 +44,7 @@ ifeq ($(platform),windows) - else ifeq ($(platform),macosx) - flags += -march=native - else ifeq ($(platform),linux) -- flags += -march=native -fopenmp -+ flags += -fopenmp - link += -fopenmp - link += -Wl,-export-dynamic - link += -lX11 -lXext -ldl diff -rupN higan_v095-source.orig/icarus/GNUmakefile higan_v095-source/icarus/GNUmakefile --- higan_v095-source.orig/icarus/GNUmakefile 2015-11-04 10:28:26.186486119 +0100 +++ higan_v095-source/icarus/GNUmakefile 2015-11-04 10:28:48.755059317 +0100 diff --git a/pkgs/stdenv/darwin/default.nix b/pkgs/stdenv/darwin/default.nix index e73e3969253..6f82fceae52 100644 --- a/pkgs/stdenv/darwin/default.nix +++ b/pkgs/stdenv/darwin/default.nix @@ -26,6 +26,7 @@ in rec { commonPreHook = '' export NIX_ENFORCE_PURITY="''${NIX_ENFORCE_PURITY-1}" + export NIX_ENFORCE_NO_NATIVE="''${NIX_ENFORCE_NO_NATIVE-1}" export NIX_IGNORE_LD_THROUGH_GCC=1 stripAllFlags=" " # the Darwin "strip" command doesn't know "-s" export MACOSX_DEPLOYMENT_TARGET=10.7 diff --git a/pkgs/stdenv/linux/default.nix b/pkgs/stdenv/linux/default.nix index 1841c3a0693..24d8ccec61a 100644 --- a/pkgs/stdenv/linux/default.nix +++ b/pkgs/stdenv/linux/default.nix @@ -23,6 +23,7 @@ rec { commonPreHook = '' export NIX_ENFORCE_PURITY="''${NIX_ENFORCE_PURITY-1}" + export NIX_ENFORCE_NO_NATIVE="''${NIX_ENFORCE_NO_NATIVE-1}" ${if system == "x86_64-linux" then "NIX_LIB64_IN_SELF_RPATH=1" else ""} ${if system == "mips64el-linux" then "NIX_LIB32_IN_SELF_RPATH=1" else ""} ''; diff --git a/pkgs/stdenv/native/default.nix b/pkgs/stdenv/native/default.nix index bd90d580d3f..291ef5a5079 100644 --- a/pkgs/stdenv/native/default.nix +++ b/pkgs/stdenv/native/default.nix @@ -16,6 +16,7 @@ rec { # Disable purity tests; it's allowed (even needed) to link to # libraries outside the Nix store (like the C library). export NIX_ENFORCE_PURITY= + export NIX_ENFORCE_NO_NATIVE="''${NIX_ENFORCE_NO_NATIVE-1}" ''; prehookFreeBSD = '' diff --git a/pkgs/stdenv/nix/default.nix b/pkgs/stdenv/nix/default.nix index 0e3434be017..e58972e5c8a 100644 --- a/pkgs/stdenv/nix/default.nix +++ b/pkgs/stdenv/nix/default.nix @@ -6,6 +6,7 @@ import ../generic rec { preHook = '' export NIX_ENFORCE_PURITY="''${NIX_ENFORCE_PURITY-1}" + export NIX_ENFORCE_NO_NATIVE="''${NIX_ENFORCE_NO_NATIVE-1}" export NIX_IGNORE_LD_THROUGH_GCC=1 ''; diff --git a/pkgs/tools/networking/pingtcp/default.nix b/pkgs/tools/networking/pingtcp/default.nix index 4d99eaaeff6..a1b1f549ee4 100644 --- a/pkgs/tools/networking/pingtcp/default.nix +++ b/pkgs/tools/networking/pingtcp/default.nix @@ -13,11 +13,6 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - postPatch = '' - substituteInPlace {.,pfcquirks}/CMakeLists.txt \ - --replace "-march=native" "" - ''; - enableParallelBuilding = true; doCheck = false; diff --git a/pkgs/tools/security/crackxls/default.nix b/pkgs/tools/security/crackxls/default.nix index c8ea45a39db..f4c92ac701f 100644 --- a/pkgs/tools/security/crackxls/default.nix +++ b/pkgs/tools/security/crackxls/default.nix @@ -13,12 +13,6 @@ stdenv.mkDerivation rec { buildInputs = [ pkgconfig autoconf automake openssl libgsf gmp ]; - patchPhase = '' - substituteInPlace Makefile.in \ - --replace '-march=native' "" \ - --replace '-mtune=native' "" - ''; - installPhase = '' mkdir -p $out/bin From f965c8f20756465bee33bba8707c9febb1f7babf Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Thu, 24 Mar 2016 17:30:52 +0100 Subject: [PATCH 517/678] vdirsyncer: 0.9.2 -> 0.9.3 Regarding homepage update, changelog says "Moved to pimutils organization on GitHub. Old links should redirect, but be aware of client software that doesn't properly handle redirects." --- pkgs/tools/misc/vdirsyncer/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/vdirsyncer/default.nix b/pkgs/tools/misc/vdirsyncer/default.nix index a411f8a2fc2..fedfaa48aa3 100644 --- a/pkgs/tools/misc/vdirsyncer/default.nix +++ b/pkgs/tools/misc/vdirsyncer/default.nix @@ -3,13 +3,13 @@ # Packaging documentation at: # https://github.com/untitaker/vdirsyncer/blob/master/docs/packaging.rst pythonPackages.buildPythonApplication rec { - version = "0.9.2"; + version = "0.9.3"; name = "vdirsyncer-${version}"; namePrefix = ""; src = fetchurl { url = "https://pypi.python.org/packages/source/v/vdirsyncer/${name}.tar.gz"; - sha256 = "1g1107cz4sk41d2z6k6pn9n2fzd26m72j8aj33zn483vfvmyrc4q"; + sha256 = "1wjhzjfcvwz68j6wc5cmjsw69ggwcpfy7jp7z7q6fnwwp4dr98lc"; }; propagatedBuildInputs = with pythonPackages; [ @@ -29,7 +29,7 @@ pythonPackages.buildPythonApplication rec { ''; meta = with stdenv.lib; { - homepage = https://github.com/untitaker/vdirsyncer; + homepage = https://github.com/pimutils/vdirsyncer; description = "Synchronize calendars and contacts"; maintainers = with maintainers; [ matthiasbeyer jgeerds ]; platforms = platforms.all; From db6ae35bd9617d062c56beba5114b28e21ebff36 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Thu, 24 Mar 2016 19:02:02 +0100 Subject: [PATCH 518/678] cadaver: fix build against newer versions of openssl Apply patch from Arch Linux. See https://hydra.nixos.org/build/33258957/nixlog/1/raw --- pkgs/tools/networking/cadaver/default.nix | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/networking/cadaver/default.nix b/pkgs/tools/networking/cadaver/default.nix index a6752606da6..6bc96a5b8c7 100644 --- a/pkgs/tools/networking/cadaver/default.nix +++ b/pkgs/tools/networking/cadaver/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, openssl }: +{ stdenv, fetchurl, fetchpatch, openssl }: stdenv.mkDerivation rec { name = "cadaver-0.23.3"; @@ -8,11 +8,20 @@ stdenv.mkDerivation rec { sha256 = "1jizq69ifrjbjvz5y79wh1ny94gsdby4gdxwjad4bfih6a5fck7x"; }; - buildInputs = [openssl]; - configureFlags = ["--with-ssl"]; + patches = [ + (fetchpatch { + url = https://projects.archlinux.org/svntogit/community.git/plain/trunk/disable-sslv2.patch?h=packages/cadaver; + name = "disable-sslv2.patch"; + sha256 = "1qx65hv584wdarks51yhd3y38g54affkphm5wz27xiz4nhmbssrr"; + }) + ]; + + configureFlags = "--with-ssl"; + + buildInputs = [ openssl ]; meta = with stdenv.lib; { - description = "A command-line WebDAV client for Unix"; + description = "A command-line WebDAV client"; homepage = http://www.webdav.org/cadaver; maintainers = with maintainers; [ ianwookim ]; license = licenses.gpl2; From 119c287c7177e6abcb43e1eb9e0e9e1b3456cdf7 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 24 Mar 2016 21:12:48 +0300 Subject: [PATCH 519/678] cc-wrapper: use Bash arrays properly --- pkgs/build-support/cc-wrapper/cc-wrapper.sh | 4 ++-- pkgs/build-support/cc-wrapper/gnat-wrapper.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/build-support/cc-wrapper/cc-wrapper.sh b/pkgs/build-support/cc-wrapper/cc-wrapper.sh index 3b6f2acfee8..3c3dbc03d41 100644 --- a/pkgs/build-support/cc-wrapper/cc-wrapper.sh +++ b/pkgs/build-support/cc-wrapper/cc-wrapper.sh @@ -84,7 +84,7 @@ if [ "$NIX_ENFORCE_PURITY" = 1 -a -n "$NIX_STORE" ]; then elif [ "$p" = -isystem ] && badPath "$p2"; then n=$((n + 1)); skip $p2 else - rest=("${rest[@]}" "$p") + rest+=("$p") fi n=$((n + 1)) done @@ -99,7 +99,7 @@ if [ "$NIX_ENFORCE_NO_NATIVE" = 1 ]; then if [[ "$i" = -m*=native ]]; then skip $i else - rest=("${rest[@]}" "$i") + rest+=("$i") fi done params=("${rest[@]}") diff --git a/pkgs/build-support/cc-wrapper/gnat-wrapper.sh b/pkgs/build-support/cc-wrapper/gnat-wrapper.sh index 4b3ba386917..012f826a111 100644 --- a/pkgs/build-support/cc-wrapper/gnat-wrapper.sh +++ b/pkgs/build-support/cc-wrapper/gnat-wrapper.sh @@ -62,7 +62,7 @@ if [ "$NIX_ENFORCE_PURITY" = 1 -a -n "$NIX_STORE" ]; then elif [ "${p:0:4}" = -aO/ ] && badPath "${p:3}"; then skip $p else - rest=("${rest[@]}" "$p") + rest+=("$p") fi n=$((n + 1)) done @@ -77,7 +77,7 @@ if [ "$NIX_ENFORCE_NO_NATIVE" = 1 ]; then if [[ "$i" = -m*=native ]]; then skip $i else - rest=("${rest[@]}" "$i") + rest+=("$i") fi done params=("${rest[@]}") From 73967e0eca06093e02b2bc7faee8e668eab4e83d Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Thu, 24 Mar 2016 20:21:07 +0100 Subject: [PATCH 520/678] jbig2enc: fix build --- ...5fe7e73d7ed95c9e12b52dd4984723f865fa.patch | 47 +++++++++++++++++++ pkgs/tools/graphics/jbig2enc/default.nix | 5 ++ 2 files changed, 52 insertions(+) create mode 100644 pkgs/tools/graphics/jbig2enc/53ce5fe7e73d7ed95c9e12b52dd4984723f865fa.patch diff --git a/pkgs/tools/graphics/jbig2enc/53ce5fe7e73d7ed95c9e12b52dd4984723f865fa.patch b/pkgs/tools/graphics/jbig2enc/53ce5fe7e73d7ed95c9e12b52dd4984723f865fa.patch new file mode 100644 index 00000000000..13e18fd0447 --- /dev/null +++ b/pkgs/tools/graphics/jbig2enc/53ce5fe7e73d7ed95c9e12b52dd4984723f865fa.patch @@ -0,0 +1,47 @@ +From 53ce5fe7e73d7ed95c9e12b52dd4984723f865fa Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Zdenko=20Podobn=C3=BD?= +Date: Sun, 6 Apr 2014 21:25:27 +0200 +Subject: [PATCH] fix build with leptonica 1.70 + +--- + configure.ac | 1 + + src/jbig2.cc | 13 +++++++++---- + 2 files changed, 10 insertions(+), 4 deletions(-) + +diff --git a/configure.ac b/configure.ac +index fe37c22..753a607 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -55,6 +55,7 @@ AC_CHECK_LIB([lept], [findFileFormatStream], [], [ + echo "Error! Leptonica not detected." + exit -1 + ]) ++AC_CHECK_FUNCS(expandBinaryPower2Low,,) + # test for function - it should detect leptonica dependecies + + # Check for possible dependancies of leptonica. +diff --git a/src/jbig2.cc b/src/jbig2.cc +index e10f042..515c1ef 100644 +--- a/src/jbig2.cc ++++ b/src/jbig2.cc +@@ -130,11 +130,16 @@ segment_image(PIX *pixb, PIX *piximg) { + // input color image, so we have to do it this way... + // is there a better way? + // PIX *pixd = pixExpandBinary(pixd4, 4); +- PIX *pixd = pixCreate(piximg->w, piximg->h, 1); +- pixCopyResolution(pixd, piximg); +- if (verbose) pixInfo(pixd, "mask image: "); +- expandBinaryPower2Low(pixd->data, pixd->w, pixd->h, pixd->wpl, ++ PIX *pixd; ++#ifdef HAVE_EXPANDBINARYPOWER2LOW ++ pixd = pixCreate(piximg->w, piximg->h, 1); ++ pixCopyResolution(pixd, piximg); ++ expandBinaryPower2Low(pixd->data, pixd->w, pixd->h, pixd->wpl, + pixd4->data, pixd4->w, pixd4->h, pixd4->wpl, 4); ++#else ++ pixd = pixExpandBinaryPower2(pixd4, 4); ++#endif ++ if (verbose) pixInfo(pixd, "mask image: "); + + pixDestroy(&pixd4); + pixDestroy(&pixsf4); diff --git a/pkgs/tools/graphics/jbig2enc/default.nix b/pkgs/tools/graphics/jbig2enc/default.nix index 71f0789286a..8d0b7d2d9f4 100644 --- a/pkgs/tools/graphics/jbig2enc/default.nix +++ b/pkgs/tools/graphics/jbig2enc/default.nix @@ -8,6 +8,11 @@ propagatedBuildInputs = [ leptonica zlib libwebp giflib libjpeg libpng libtiff ]; + patches = [ + # https://github.com/agl/jbig2enc/commit/53ce5fe7e73d7ed95c9e12b52dd4984723f865fa + ./53ce5fe7e73d7ed95c9e12b52dd4984723f865fa.patch + ]; + # This is necessary, because the resulting library has # /tmp/nix-build-jbig2enc/src/.libs before /nix/store/jbig2enc/lib # in its rpath, which means that patchelf --shrink-rpath removes From 75326bee6a6578631145f911a688c4afb29aa248 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 24 Mar 2016 19:54:37 +0100 Subject: [PATCH 521/678] =?UTF-8?q?snapper:=20temporarily=20=E2=80=98fix?= =?UTF-8?q?=E2=80=99=20build=20like=20in=20e2cbf68?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes https://hydra.nixos.org/build/33510202. --- pkgs/top-level/all-packages.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 83dd2b70a9f..3f2eca7cc14 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -768,6 +768,7 @@ let bsod = callPackage ../misc/emulators/bsod { }; btrfs-progs = callPackage ../tools/filesystems/btrfs-progs { }; + btrfs-progs_4_4_1 = callPackage ../tools/filesystems/btrfs-progs/4.4.1.nix { }; btrbk = callPackage ../tools/backup/btrbk { }; @@ -11949,7 +11950,7 @@ let }; docker = callPackage ../applications/virtualization/docker { - btrfs-progs = callPackage ../tools/filesystems/btrfs-progs/4.4.1.nix { }; + btrfs-progs = btrfs-progs_4_4_1; go = go_1_4; }; @@ -13795,7 +13796,9 @@ let smartdeblur = callPackage ../applications/graphics/smartdeblur { }; - snapper = callPackage ../tools/misc/snapper { }; + snapper = callPackage ../tools/misc/snapper { + btrfs-progs = btrfs-progs_4_4_1; + }; snd = callPackage ../applications/audio/snd { }; From 96edcf403cb5d6ac60bb87589865f4995dc7c117 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 24 Mar 2016 01:47:27 +0100 Subject: [PATCH 522/678] sane-backends-git: 2016-03-05 -> 2016-03-24 Changes: - epsonds: fixed resolution setting bug DS-60000 workaround is needed no more - pixma: backend version 0.17.29 --- pkgs/applications/graphics/sane/backends/git.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/graphics/sane/backends/git.nix b/pkgs/applications/graphics/sane/backends/git.nix index 84e1f783e2a..b285edd71e0 100644 --- a/pkgs/applications/graphics/sane/backends/git.nix +++ b/pkgs/applications/graphics/sane/backends/git.nix @@ -1,10 +1,10 @@ { callPackage, fetchgit, ... } @ args: callPackage ./generic.nix (args // { - version = "2016-03-05"; + version = "2016-03-24"; src = fetchgit { - sha256 = "dc84530d5e0233427acfd132aa08a4cf9973c936ff72a66ee08ecf836200d367"; - rev = "23eb95582da718791103b83ea002e947caa0f5fc"; + sha256 = "593672ccfef6e3e0f3cb8ae4bbc67db9b2f1a821df4914343e4cf32f75cea865"; + rev = "41a416e4afcf6cada69193dc408ef184d0e5f678"; url = "git://alioth.debian.org/git/sane/sane-backends.git"; }; }) From 6db204b7d97fe2b55dd69c0bf05022eb2afc6f3c Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 23 Mar 2016 15:34:58 +0100 Subject: [PATCH 523/678] netsniff-ng: 0.6.0 -> 0.6.1 --- pkgs/tools/networking/netsniff-ng/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/netsniff-ng/default.nix b/pkgs/tools/networking/netsniff-ng/default.nix index b83b7927679..93b20704620 100644 --- a/pkgs/tools/networking/netsniff-ng/default.nix +++ b/pkgs/tools/networking/netsniff-ng/default.nix @@ -4,14 +4,14 @@ stdenv.mkDerivation rec { name = "netsniff-ng-${version}"; - version = "0.6.0"; + version = "0.6.1"; # Upstream recommends and supports git src = fetchFromGitHub rec { repo = "netsniff-ng"; owner = repo; rev = "v${version}"; - sha256 = "0vfs1vsrsbiqxp6nrdibxa60wivapjhj3sdpa4v90m3pfnqif46z"; + sha256 = "0nl0xq7dwhryrd8i5iav8fj4x9jrna0afhfim5nrx2kwp5yylnvi"; }; buildInputs = [ bison flex geoip geolite-legacy libcli libnet libnl From 99c4f143d90493ca8c79a28482488b7ab53046e9 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 23 Mar 2016 13:36:31 +0100 Subject: [PATCH 524/678] debian-devscripts: rename from deprecated debian_devscripts --- pkgs/tools/package-management/dpkg/default.nix | 2 +- pkgs/top-level/aliases.nix | 1 + pkgs/top-level/all-packages.nix | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/package-management/dpkg/default.nix b/pkgs/tools/package-management/dpkg/default.nix index f65b25d119d..ad351914cb3 100644 --- a/pkgs/tools/package-management/dpkg/default.nix +++ b/pkgs/tools/package-management/dpkg/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { }; postPatch = '' - # dpkg tries to force some dependents like debian_devscripts to use + # dpkg tries to force some dependents like debian-devscripts to use # -fstack-protector-strong - not (yet?) a good idea. Disable for now: substituteInPlace scripts/Dpkg/Vendor/Debian.pm \ --replace "stackprotectorstrong => 1" "stackprotectorstrong => 0" diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index f2e1bbc5102..e17bfec2958 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -22,6 +22,7 @@ rec { cool-old-term = cool-retro-term; # added 2015-01-31 cupsBjnp = cups-bjnp; # added 2016-01-02 cv = progress; # added 2015-09-06 + debian_devscripts = debian-devscripts; # added 2016-03-23 dwarf_fortress = dwarf-fortress; # added 2016-01-23 dwbWrapper = dwb; # added 2015-01 enblendenfuse = enblend-enfuse; # 2015-09-30 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3f2eca7cc14..662fb9e5426 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1341,7 +1341,7 @@ let dcfldd = callPackage ../tools/system/dcfldd { }; - debian_devscripts = callPackage ../tools/misc/debian-devscripts { + debian-devscripts = callPackage ../tools/misc/debian-devscripts { inherit (perlPackages) CryptSSLeay LWP TimeDate DBFile FileDesktopEntry; }; From 87ad35e336bcaefc0254c01d76c5e2356c315e43 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 20 Mar 2016 20:03:18 +0000 Subject: [PATCH 525/678] Fix comments typos. --- pkgs/top-level/aliases.nix | 2 +- pkgs/top-level/default.nix | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index c0b93335c80..b9f072e6ca6 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -3,7 +3,7 @@ self: with self; let - # Removind recurseForDerivation prevents derivations of aliased attribute + # Removing recurseForDerivation prevents derivations of aliased attribute # set to appear while listing all the packages available. removeRecurseForDerivations = _n: alias: with lib; if alias.recurseForDerivations or false then diff --git a/pkgs/top-level/default.nix b/pkgs/top-level/default.nix index 61fd39f8ca5..4de75c2ed57 100644 --- a/pkgs/top-level/default.nix +++ b/pkgs/top-level/default.nix @@ -88,11 +88,11 @@ let crossSystem platform lib; }; - # Allow packages to be overriden globally via the `packageOverrides' + # Allow packages to be overridden globally via the `packageOverrides' # configuration option, which must be a function that takes `pkgs' - # as an argument and returns a set of new or overriden packages. + # as an argument and returns a set of new or overridden packages. # The `packageOverrides' function is called with the *original* - # (un-overriden) set of packages, allowing packageOverrides + # (un-overridden) set of packages, allowing packageOverrides # attributes to refer to the original attributes (e.g. "foo = # ... pkgs.foo ..."). pkgs = pkgsWithOverrides (self: config.packageOverrides or (super: {})); @@ -122,11 +122,11 @@ let aliases = self: super: import ./aliases.nix super; # stdenvOverrides is used to avoid circular dependencies for building - # the standard build environment. This mechanism use the override + # the standard build environment. This mechanism uses the override # mechanism to implement some staged compilation of the stdenv. # # We don't want stdenv overrides in the case of cross-building, or - # otherwise the basic overrided packages will not be built with the + # otherwise the basic overridden packages will not be built with the # crossStdenv adapter. stdenvOverrides = self: super: lib.optionalAttrs (crossSystem == null && super.stdenv ? overrides) From 311ddcbd7a77fbbf89da5403a0b095718b81d802 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Thu, 24 Mar 2016 18:12:49 +0100 Subject: [PATCH 526/678] ispc: fix build --- pkgs/development/compilers/ispc/default.nix | 7 +++++-- pkgs/development/compilers/ispc/gcc5.patch | 22 +++++++++++++++++++++ 2 files changed, 27 insertions(+), 2 deletions(-) create mode 100644 pkgs/development/compilers/ispc/gcc5.patch diff --git a/pkgs/development/compilers/ispc/default.nix b/pkgs/development/compilers/ispc/default.nix index 1995923842f..08f0d7e06b1 100644 --- a/pkgs/development/compilers/ispc/default.nix +++ b/pkgs/development/compilers/ispc/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { sha256 = "15qi22qvmlx3jrhrf3rwl0y77v66prpan6qb66a55dw3pw2d4jvn"; }; - enableParallelBuilding = true; + enableParallelBuilding = false; doCheck = true; @@ -29,7 +29,10 @@ stdenv.mkDerivation rec { clang ]; - patchPhase = "sed -i -e 's/\\/bin\\///g' -e 's/-lcurses/-lncurses/g' Makefile"; + # https://github.com/ispc/ispc/pull/1190 + patches = [ ./gcc5.patch ]; + + postPatch = "sed -i -e 's/\\/bin\\///g' -e 's/-lcurses/-lncurses/g' Makefile"; installPhase = '' mkdir -p $out/bin diff --git a/pkgs/development/compilers/ispc/gcc5.patch b/pkgs/development/compilers/ispc/gcc5.patch new file mode 100644 index 00000000000..4f2b7b682fe --- /dev/null +++ b/pkgs/development/compilers/ispc/gcc5.patch @@ -0,0 +1,22 @@ +diff --git a/cbackend.cpp b/cbackend.cpp +index 3552205..9c05824 100644 +--- a/cbackend.cpp ++++ b/cbackend.cpp +@@ -1641,7 +1641,7 @@ void CWriter::printConstant(llvm::Constant *CPV, bool Static) { + V = Tmp.convertToDouble(); + } + +- if (isnan(V)) { ++ if (std::isnan(V)) { + // The value is NaN + + // FIXME the actual NaN bits should be emitted. +@@ -1665,7 +1665,7 @@ void CWriter::printConstant(llvm::Constant *CPV, bool Static) { + else + Out << "LLVM_NAN" << (Val == QuietNaN ? "" : "S") << "(\"" + << Buffer << "\") /*nan*/ "; +- } else if (isinf(V)) { ++ } else if (std::isinf(V)) { + // The value is Inf + if (V < 0) Out << '-'; + Out << "LLVM_INF" << From cb81a3fd2a75d203cdab674b6dacf27f480dc7b1 Mon Sep 17 00:00:00 2001 From: Slawomir Gonet Date: Thu, 24 Mar 2016 10:51:59 +0100 Subject: [PATCH 527/678] znapzend: init at 0.15.3 --- lib/maintainers.nix | 1 + pkgs/tools/backup/znapzend/default.nix | 72 ++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + pkgs/top-level/perl-packages.nix | 42 ++++++++++++--- 4 files changed, 109 insertions(+), 8 deletions(-) create mode 100644 pkgs/tools/backup/znapzend/default.nix diff --git a/lib/maintainers.nix b/lib/maintainers.nix index df6a3b36a7d..b71c56517f0 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -250,6 +250,7 @@ olcai = "Erik Timan "; orbitz = "Malcolm Matalka "; osener = "Ozan Sener "; + otwieracz = "Slawomir Gonet "; oxij = "Jan Malakhovski "; page = "Carles Pagès "; paholg = "Paho Lurie-Gregg "; diff --git a/pkgs/tools/backup/znapzend/default.nix b/pkgs/tools/backup/znapzend/default.nix new file mode 100644 index 00000000000..1534a0bab0a --- /dev/null +++ b/pkgs/tools/backup/znapzend/default.nix @@ -0,0 +1,72 @@ +{ stdenv, fetchFromGitHub, zfs, mbuffer, perl, perlPackages, wget, autoconf, automake }: + +let + version = "0.15.3"; + checksum = "1xk0lgb23kv1cl0wc2rav75hjrjigd0cp3hjw9gxab835vsvnkq0"; +in +stdenv.mkDerivation rec { + name = "znapzend-${version}"; + + src = fetchFromGitHub{ + owner = "oetiker"; + repo = "znapzend"; + rev = "v${version}"; + sha256 = checksum; + }; + + buildInputs = [ perl perlPackages.TestHarness perlPackages.Mojolicious + perlPackages.TAPParserSourceHandlerpgTAP perlPackages.MojoIOLoopForkCall + perlPackages.IOPipely wget ]; + + nativeBuildInputs = [ autoconf automake ]; + + preConfigure = '' + sed -i 's/^SUBDIRS =.*$/SUBDIRS = lib/' Makefile.am + + grep -v thirdparty/Makefile configure.ac > configure.ac.tmp + mv configure.ac.tmp configure.ac + + autoconf + ''; + + preBuild = '' + aclocal + automake + ''; + + postInstall = '' + substituteInPlace $out/bin/znapzend --replace "${perl}/bin/perl" \ + "${perl}/bin/perl \ + -I${perlPackages.TestHarness}/${perl.libPrefix} \ + -I${perlPackages.Mojolicious}/${perl.libPrefix} \ + -I${perlPackages.TAPParserSourceHandlerpgTAP}/${perl.libPrefix} \ + -I${perlPackages.MojoIOLoopForkCall}/${perl.libPrefix} \ + -I${perlPackages.IOPipely}/${perl.libPrefix} \ + " + substituteInPlace $out/bin/znapzendzetup --replace "${perl}/bin/perl" \ + "${perl}/bin/perl \ + -I${perlPackages.TestHarness}/${perl.libPrefix} \ + -I${perlPackages.Mojolicious}/${perl.libPrefix} \ + -I${perlPackages.TAPParserSourceHandlerpgTAP}/${perl.libPrefix} \ + -I${perlPackages.MojoIOLoopForkCall}/${perl.libPrefix} \ + -I${perlPackages.IOPipely}/${perl.libPrefix} \ + " + substituteInPlace $out/bin/znapzendztatz --replace "${perl}/bin/perl" \ + "${perl}/bin/perl \ + -I${perlPackages.TestHarness}/${perl.libPrefix} \ + -I${perlPackages.Mojolicious}/${perl.libPrefix} \ + -I${perlPackages.TAPParserSourceHandlerpgTAP}/${perl.libPrefix} \ + -I${perlPackages.MojoIOLoopForkCall}/${perl.libPrefix} \ + -I${perlPackages.IOPipely}/${perl.libPrefix} \ + " + ''; + + + meta = with stdenv.lib; { + description = "High performance open source ZFS backup with mbuffer and ssh support"; + homepage = http://www.znapzend.org; + license = licenses.gpl3; + maintainers = with maintainers; [ otwieracz ]; + platforms = platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 22cb6b3c8fa..fd60c9e52d8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3427,6 +3427,8 @@ let talkfilters = callPackage ../misc/talkfilters {}; + znapzend = callPackage ../tools/backup/znapzend { }; + tarsnap = callPackage ../tools/backup/tarsnap { }; tcpcrypt = callPackage ../tools/security/tcpcrypt { }; diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index bc14b4ce605..461a3b8e967 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -7727,17 +7727,43 @@ let self = _self // overrides; _self = with self; { description = "Embed a Perl interpreter in the Apache HTTP server"; }; }; - - Mojolicious = buildPerlPackage { - name = "Mojolicious-4.63"; + Mojolicious = buildPerlPackage rec { + name = "Mojolicious-6.56"; src = fetchurl { - url = mirror://cpan/authors/id/S/SR/SRI/Mojolicious-4.63.tar.gz; - sha256 = "f20f77e86fc560dac1c958e765ed64242dcf6343939ed605b45f2bbe2596d5e9"; + url = "mirror://cpan/authors/id/S/SR/SRI/${name}.tar.gz"; + sha256 = "82f73553836ac378edf825fd9f24be982653be9e0d78f8ba38b7841aabdafb02"; + }; + propagatedBuildInputs = [ JSONPP ]; + meta = { + homepage = http://mojolicious.org; + description = "Real-time web framework"; + license = with stdenv.lib.licenses; [ artistic2 ]; + }; + }; + + MojoIOLoopForkCall = buildPerlModule rec { + name = "Mojo-IOLoop-ForkCall-0.17"; + src = fetchurl { + url = "mirror://cpan/authors/id/J/JB/JBERGER/${name}.tar.gz"; + sha256 = "886de5c3b44194a86228471075fac4036073bda19093e776c702aa65c3ef1824"; + }; + propagatedBuildInputs = [ IOPipely Mojolicious ]; + meta = { + description = "Run blocking functions asynchronously by forking"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + }; + }; + + IOPipely = buildPerlPackage rec { + name = "IO-Pipely-0.005"; + src = fetchurl { + url = "mirror://cpan/authors/id/R/RC/RCAPUTO/${name}.tar.gz"; + sha256 = "e33b6cf5cb2b46ee308513f51e623987a50a89901e81bf19701dce35179f2e74"; }; meta = { - homepage = http://mojolicio.us; - description = "Real-time web framework"; - license = stdenv.lib.licenses.artistic2; + homepage = http://search.cpan.org/dist/IO-Pipely/; + description = "Portably create pipe() or pipe-like handles"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; }; From 3ff417cbb71ce875367d9a5b8341a7ce16a41664 Mon Sep 17 00:00:00 2001 From: Slawomir Gonet Date: Thu, 24 Mar 2016 10:52:13 +0100 Subject: [PATCH 528/678] znapzend service: init at 0.15.3 --- nixos/modules/module-list.nix | 1 + nixos/modules/services/backup/znapzend.nix | 36 ++++++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 nixos/modules/services/backup/znapzend.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 3dd60ad99dc..d317333f963 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -114,6 +114,7 @@ ./services/backup/rsnapshot.nix ./services/backup/sitecopy-backup.nix ./services/backup/tarsnap.nix + ./services/backup/znapzend.nix ./services/cluster/fleet.nix ./services/cluster/kubernetes.nix ./services/cluster/panamax.nix diff --git a/nixos/modules/services/backup/znapzend.nix b/nixos/modules/services/backup/znapzend.nix new file mode 100644 index 00000000000..648089f90b7 --- /dev/null +++ b/nixos/modules/services/backup/znapzend.nix @@ -0,0 +1,36 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + cfg = config.services.znapzend; +in +{ + options = { + services.znapzend = { + enable = mkEnableOption "ZnapZend daemon"; + }; + }; + + config = mkIf cfg.enable { + environment.systemPackages = [ pkgs.znapzend ]; + + systemd.services = { + "znapzend" = { + description = "ZnapZend - ZFS Backup System"; + after = [ "zfs.target" ]; + + path = with pkgs; [ znapzend zfs mbuffer openssh ]; + + script = '' + znapzend + ''; + + reload = '' + /bin/kill -HUP $MAINPID + ''; + }; + }; + + }; +} From 2a09776c3f460d59bcd11cf5970adafa7d3da3cb Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 24 Mar 2016 19:42:20 +0100 Subject: [PATCH 529/678] octoprint: 1.2.9 -> 1.2.10 Note: the 1.2.9 GitHub tarball's sha256 has changed. Changes: - Fixed an issue introduced by the fix for 1196 that had the "Upload to SD" button stop working correctly. - Fixed an issue causing an error on disconnect after or cancelling of an SD print, caused by the unsuccessful attempt to record print recovery data for the file on the printer's SD card. - Only add bed temperature line to temperature management specific start gcode in CuraEngine invocation if a bed temperature is actually set in the slicing profile. - If a communication timeout occurs during an active resend request, OctoPrint will now not send an M105 with an increased line number anymore but repeat the last resent command instead. - Don't add an extra ok for M28 response. - Add an extra ok for M29 response, but only if configured such in "Settings" > "Serial" > "Advanced options" > "Generate additional ok for M29" - Trigger M20 only once after finishing uploading to SD - Prevent M105 "cascade" due to communication timeouts - Fixed wrong tracking of extruder heating up for M109 Tn commands in multi-extruder setups. - Fixed start of SD file uploads not sending an M110. - Fixed job data not being reset when disconnecting while printing. --- pkgs/applications/misc/octoprint/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/octoprint/default.nix b/pkgs/applications/misc/octoprint/default.nix index 67b351ba906..b9b6c10a13f 100644 --- a/pkgs/applications/misc/octoprint/default.nix +++ b/pkgs/applications/misc/octoprint/default.nix @@ -2,13 +2,13 @@ pythonPackages.buildPythonApplication rec { name = "OctoPrint-${version}"; - version = "1.2.9"; + version = "1.2.10"; src = fetchFromGitHub { owner = "foosel"; repo = "OctoPrint"; rev = version; - sha256 = "00hhq52jqwykhk3p57mn9kkcjbjz6g9mcrp96vx8lqzhw42m3a86"; + sha256 = "1ips1083c4qrfnkssvp1lxrs92svlid29l225ifsymrinpbjawav"; }; # We need old Tornado From bcb030a5a430ef6b2f4af848c5c146f054ed495f Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 23 Mar 2016 13:45:43 +0100 Subject: [PATCH 530/678] minissdpd: 1.5.20160301 -> 1.5.20160301 --- pkgs/tools/networking/minissdpd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/minissdpd/default.nix b/pkgs/tools/networking/minissdpd/default.nix index a414b6f092e..307b17a7a7c 100644 --- a/pkgs/tools/networking/minissdpd/default.nix +++ b/pkgs/tools/networking/minissdpd/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { name = "minissdpd-${version}"; - version = "1.5.20160119"; + version = "1.5.20160301"; src = fetchurl { - sha256 = "0z0h2fqjlys9g08fbv0jg8l53h8cjlpdk45z4g71kwdk1m9ld8r2"; + sha256 = "053icnb25jg2vvjxirkznks3ipbbdjxac278y19rk2w9cirgi9lv"; url = "http://miniupnp.free.fr/files/download.php?file=${name}.tar.gz"; name = "${name}.tar.gz"; }; From 71d3b34bd7a7c5f210081e5063d0ea2f4c44cb70 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Thu, 24 Mar 2016 22:19:35 +0100 Subject: [PATCH 531/678] tpm-tools: fix build by applying debians patch --- ...fix-bool-error-parseStringWithValues.patch | 30 +++++++++++++++++++ pkgs/tools/security/tpm-tools/default.nix | 2 ++ 2 files changed, 32 insertions(+) create mode 100644 pkgs/tools/security/tpm-tools/03-fix-bool-error-parseStringWithValues.patch diff --git a/pkgs/tools/security/tpm-tools/03-fix-bool-error-parseStringWithValues.patch b/pkgs/tools/security/tpm-tools/03-fix-bool-error-parseStringWithValues.patch new file mode 100644 index 00000000000..87f7b8e815b --- /dev/null +++ b/pkgs/tools/security/tpm-tools/03-fix-bool-error-parseStringWithValues.patch @@ -0,0 +1,30 @@ +Title: Fix boolean comparison error (and FTBFS with gcc-5) +Date: 2015-06-28 +Author: Pierre Chifflier +Bug-Debian: http://bugs.debian.org/778147 +Index: tpm-tools/src/tpm_mgmt/tpm_nvcommon.c +=================================================================== +--- tpm-tools.orig/src/tpm_mgmt/tpm_nvcommon.c ++++ tpm-tools/src/tpm_mgmt/tpm_nvcommon.c +@@ -140,8 +140,8 @@ int parseStringWithValues(const char *aA + aArg); + return -1; + } +- if (!aArg[offset+numbytes] == '|' && +- !aArg[offset+numbytes] == 0) { ++ if (!(aArg[offset+numbytes] == '|' || ++ aArg[offset+numbytes] == 0)) { + logError(_("Illegal character following " + "hexadecimal number in %s\n"), + aArg + offset); +@@ -164,8 +164,8 @@ int parseStringWithValues(const char *aA + return -1; + } + +- if (!aArg[offset+numbytes] == '|' && +- !aArg[offset+numbytes] == 0) { ++ if (!(aArg[offset+numbytes] == '|' || ++ aArg[offset+numbytes] == 0)) { + logError(_("Illegal character following decimal " + "number in %s\n"), + aArg + offset); diff --git a/pkgs/tools/security/tpm-tools/default.nix b/pkgs/tools/security/tpm-tools/default.nix index a17bff9e32c..264beae9dc4 100644 --- a/pkgs/tools/security/tpm-tools/default.nix +++ b/pkgs/tools/security/tpm-tools/default.nix @@ -13,6 +13,8 @@ stdenv.mkDerivation rec { buildInputs = [ trousers openssl opencryptoki ]; + patches = [ ./03-fix-bool-error-parseStringWithValues.patch ]; + meta = with stdenv.lib; { description = "Management tools for TPM hardware"; longDescription = '' From 90a3c8d35884de08944ef901a8de57e1ae619b66 Mon Sep 17 00:00:00 2001 From: "Rommel M. Martinez" Date: Thu, 24 Mar 2016 20:34:01 +0800 Subject: [PATCH 532/678] deco: init at 0.0.1 --- pkgs/applications/misc/deco/default.nix | 36 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/applications/misc/deco/default.nix diff --git a/pkgs/applications/misc/deco/default.nix b/pkgs/applications/misc/deco/default.nix new file mode 100644 index 00000000000..170018dc972 --- /dev/null +++ b/pkgs/applications/misc/deco/default.nix @@ -0,0 +1,36 @@ +{ stdenv, fetchFromGitHub, scsh, feh, xlibs }: + +stdenv.mkDerivation rec { + pname = "deco"; + version = "0.0.1"; + name = "${pname}-${version}"; + + src = fetchFromGitHub { + owner = "ebzzry"; + repo = pname; + rev = "037f473ae4bdce5d3e2f76891785f0f7479cca75"; + sha256 = "1fv15nc9zqbn3c51vnm50yidj5ivpi61zg55cs46x3gi2x79x43q"; + }; + + installPhase = '' + mkdir -p $out/bin + cp ${pname} $out/bin + chmod +x $out/bin/${pname} + ''; + + postFixup = '' + substituteInPlace $out/bin/deco --replace "/usr/bin/env scsh" "${scsh}/bin/scsh" + substituteInPlace $out/bin/deco --replace "feh" "${feh}/bin/feh" + substituteInPlace $out/bin/deco --replace "xdpyinfo" "${xlibs.xdpyinfo}/bin/xdpyinfo" + ''; + + meta = with stdenv.lib; { + homepage = https://github.com/ebzzry/deco; + description = "A simple root image setter"; + license = licenses.mit; + maintainers = [ maintainers.ebzzry ]; + platforms = platforms.unix; + }; + + dontBuild = true; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 26175c4e6d2..813fb344498 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2041,6 +2041,8 @@ let darkice = callPackage ../tools/audio/darkice { }; + deco = callPackage ../applications/misc/deco { }; + icoutils = callPackage ../tools/graphics/icoutils { }; idutils = callPackage ../tools/misc/idutils { }; From 04bcb883323b6d5d9368fadab64d9e77d3295108 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Thu, 24 Mar 2016 23:57:54 +0100 Subject: [PATCH 533/678] hugs: fix build & meta fixups Fix build by applying a patch from Arch Linux. See https://hydra.nixos.org/build/33247205/log/raw Meta fixups - The license is actually 3-clause BSD license. - Use HTTPS homepage - Adopt the package - Convert src.sha256 to base32 --- .../development/interpreters/hugs/default.nix | 21 +++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/pkgs/development/interpreters/hugs/default.nix b/pkgs/development/interpreters/hugs/default.nix index b1c3df28d1f..14afe0279c3 100644 --- a/pkgs/development/interpreters/hugs/default.nix +++ b/pkgs/development/interpreters/hugs/default.nix @@ -6,10 +6,18 @@ stdenv.mkDerivation { src = fetchurl { url = http://cvs.haskell.org/Hugs/downloads/2006-09/hugs98-Sep2006.tar.gz; - sha256 = "3cf4d27673564cffe691bd14032369f646233f14daf2bc37c6c6df9f062b46b6"; + sha256 = "1dj65c39zpy6qqvvrwns2hzj6ipnd4ih655xj7kgyk2nfdvd5x1w"; }; - buildInputs = [ bison ]; + patches = + [ (fetchurl { + url = https://aur.archlinux.org/cgit/aur.git/plain/hsbase_inline.patch?h=hugs; + name = "hsbase_inline.patch"; + sha256 = "1h0sp16d17hlm6gj7zdbgwrjwi2l4q02m8p0wd60dp4gn9i9js0v"; + }) + ]; + + nativeBuildInputs = [ bison ]; postUnpack = "find -type f -exec sed -i 's@/bin/cp@cp@' {} +"; @@ -29,10 +37,11 @@ stdenv.mkDerivation { "--enable-pthreads" # build Hugs using POSIX threads C library ]; - meta = { - homepage = http://www.haskell.org/hugs; + meta = with stdenv.lib; { + homepage = https://www.haskell.org/hugs; description = "Haskell interpreter"; - license = "as-is"; # gentoo labels it this way - platforms = stdenv.lib.platforms.unix; # arbitrary choice + maintainers = with maintainers; [ joachifm ]; + license = licenses.bsd3; + platforms = platforms.all; }; } From 9dc6db5cc56a005dfb312e4ea4488104e12b61c3 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 23 Mar 2016 14:03:22 +0100 Subject: [PATCH 534/678] enblend-enfuse: 4.1.4 -> 4.1.5 --- pkgs/tools/graphics/enblend-enfuse/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/graphics/enblend-enfuse/default.nix b/pkgs/tools/graphics/enblend-enfuse/default.nix index c967b73001c..f1f5ac878ba 100644 --- a/pkgs/tools/graphics/enblend-enfuse/default.nix +++ b/pkgs/tools/graphics/enblend-enfuse/default.nix @@ -2,13 +2,13 @@ , boost, freeglut, glew, gsl, lcms2, libpng, libtiff, libxmi, mesa, vigra , help2man, pkgconfig, perl }: -let version = "4.1.4"; in +let version = "4.1.5"; in stdenv.mkDerivation rec { name = "enblend-enfuse-${version}"; src = fetchurl { url = "mirror://sourceforge/enblend/${name}.tar.gz"; - sha256 = "0208x01i129hqylmy6jh3krwdac47mx6fi8xccjm9h35c18c7xl5"; + sha256 = "08dz73jgrwfhz0kh57kz048qy1c6a35ckqn9xs5rajm449vnw0pg"; }; buildInputs = [ boost freeglut glew gsl lcms2 libpng libtiff libxmi mesa vigra ]; From b8dc71ef8a4c6c11ab9655539a06ec7fd67a3442 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Fri, 25 Mar 2016 03:05:17 +0000 Subject: [PATCH 535/678] scanmem: 0.15.2 -> 0.15.6 --- pkgs/tools/misc/scanmem/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/scanmem/default.nix b/pkgs/tools/misc/scanmem/default.nix index e21da0deca2..654ba4c1795 100644 --- a/pkgs/tools/misc/scanmem/default.nix +++ b/pkgs/tools/misc/scanmem/default.nix @@ -1,13 +1,13 @@ { stdenv, autoconf, automake, intltool, libtool, fetchFromGitHub, readline }: stdenv.mkDerivation rec { - version = "0.15.2"; + version = "0.15.6"; name = "scanmem-${version}"; src = fetchFromGitHub { owner = "scanmem"; repo = "scanmem"; rev = "v${version}"; - sha256 = "0f93ac5rycf46q60flab5nl7ksadjls13axijg5j5wy1yif0k094"; + sha256 = "16cw76ji3mp0sj8q0sz5wndavk10n0si1sm6kr5zpiws4sw047ii"; }; buildInputs = [ autoconf automake intltool libtool readline ]; preConfigure = '' @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { homepage = "https://github.com/scanmem/scanmem"; description = "Memory scanner for finding and poking addresses in executing processes"; maintainers = [ stdenv.lib.maintainers.chattered ]; - platforms = stdenv.lib.platforms.linux; + platforms = with stdenv.lib.platforms; linux ++ darwin; license = stdenv.lib.licenses.gpl3; }; } From f30e40df692e09a6747c04ae7c509fed380d61c8 Mon Sep 17 00:00:00 2001 From: Patrick Callahan Date: Thu, 24 Mar 2016 16:06:20 -0700 Subject: [PATCH 536/678] qgroundcontrol: init at 2.9.4 --- lib/maintainers.nix | 1 + .../0001-fix-gcc-cmath-namespace-issues.patch | 140 ++++++++++++++++++ .../robotics/qgroundcontrol/default.nix | 98 ++++++++++++ pkgs/top-level/all-packages.nix | 2 + 4 files changed, 241 insertions(+) create mode 100644 pkgs/applications/science/robotics/qgroundcontrol/0001-fix-gcc-cmath-namespace-issues.patch create mode 100644 pkgs/applications/science/robotics/qgroundcontrol/default.nix diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 5fccdcb4ae3..b496d1e5894 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -278,6 +278,7 @@ psibi = "Sibi "; pSub = "Pascal Wittmann "; puffnfresh = "Brian McKenna "; + pxc = "Patrick Callahan "; qknight = "Joachim Schiele "; ragge = "Ragnar Dahlen "; raskin = "Michael Raskin <7c6f434c@mail.ru>"; diff --git a/pkgs/applications/science/robotics/qgroundcontrol/0001-fix-gcc-cmath-namespace-issues.patch b/pkgs/applications/science/robotics/qgroundcontrol/0001-fix-gcc-cmath-namespace-issues.patch new file mode 100644 index 00000000000..e6c9ca38a98 --- /dev/null +++ b/pkgs/applications/science/robotics/qgroundcontrol/0001-fix-gcc-cmath-namespace-issues.patch @@ -0,0 +1,140 @@ +From fffc383c10c7c194e427d78c83802c3b910fa1c2 Mon Sep 17 00:00:00 2001 +From: Patrick Callahan +Date: Thu, 24 Mar 2016 18:17:57 -0700 +Subject: [PATCH] fix gcc cmath namespace issues + +--- + src/Vehicle/Vehicle.cc | 6 +++--- + src/comm/QGCFlightGearLink.cc | 4 ++-- + src/comm/QGCJSBSimLink.cc | 4 ++-- + src/uas/UAS.cc | 8 ++++---- + src/ui/QGCDataPlot2D.cc | 4 ++-- + 5 files changed, 13 insertions(+), 13 deletions(-) + +diff --git a/src/Vehicle/Vehicle.cc b/src/Vehicle/Vehicle.cc +index a0d3605..205b1de 100644 +--- a/src/Vehicle/Vehicle.cc ++++ b/src/Vehicle/Vehicle.cc +@@ -638,17 +638,17 @@ void Vehicle::setLongitude(double longitude){ + + void Vehicle::_updateAttitude(UASInterface*, double roll, double pitch, double yaw, quint64) + { +- if (isinf(roll)) { ++ if (std::isinf(roll)) { + _rollFact.setRawValue(0); + } else { + _rollFact.setRawValue(roll * (180.0 / M_PI)); + } +- if (isinf(pitch)) { ++ if (std::isinf(pitch)) { + _pitchFact.setRawValue(0); + } else { + _pitchFact.setRawValue(pitch * (180.0 / M_PI)); + } +- if (isinf(yaw)) { ++ if (std::isinf(yaw)) { + _headingFact.setRawValue(0); + } else { + yaw = yaw * (180.0 / M_PI); +diff --git a/src/comm/QGCFlightGearLink.cc b/src/comm/QGCFlightGearLink.cc +index 2a520fb..886aecf 100644 +--- a/src/comm/QGCFlightGearLink.cc ++++ b/src/comm/QGCFlightGearLink.cc +@@ -230,7 +230,7 @@ void QGCFlightGearLink::updateControls(quint64 time, float rollAilerons, float p + Q_UNUSED(systemMode); + Q_UNUSED(navMode); + +- if(!isnan(rollAilerons) && !isnan(pitchElevator) && !isnan(yawRudder) && !isnan(throttle)) ++ if(!std::isnan(rollAilerons) && !std::isnan(pitchElevator) && !std::isnan(yawRudder) && !std::isnan(throttle)) + { + QString state("%1\t%2\t%3\t%4\t%5\n"); + state = state.arg(rollAilerons).arg(pitchElevator).arg(yawRudder).arg(true).arg(throttle); +@@ -240,7 +240,7 @@ void QGCFlightGearLink::updateControls(quint64 time, float rollAilerons, float p + } + else + { +- qDebug() << "HIL: Got NaN values from the hardware: isnan output: roll: " << isnan(rollAilerons) << ", pitch: " << isnan(pitchElevator) << ", yaw: " << isnan(yawRudder) << ", throttle: " << isnan(throttle); ++ qDebug() << "HIL: Got NaN values from the hardware: std::isnan output: roll: " << std::isnan(rollAilerons) << ", pitch: " << std::isnan(pitchElevator) << ", yaw: " << std::isnan(yawRudder) << ", throttle: " << std::isnan(throttle); + } + } + +diff --git a/src/comm/QGCJSBSimLink.cc b/src/comm/QGCJSBSimLink.cc +index 1210621..89db371 100644 +--- a/src/comm/QGCJSBSimLink.cc ++++ b/src/comm/QGCJSBSimLink.cc +@@ -242,7 +242,7 @@ void QGCJSBSimLink::updateControls(quint64 time, float rollAilerons, float pitch + Q_UNUSED(systemMode); + Q_UNUSED(navMode); + +- if(!isnan(rollAilerons) && !isnan(pitchElevator) && !isnan(yawRudder) && !isnan(throttle)) ++ if(!std::isnan(rollAilerons) && !std::isnan(pitchElevator) && !std::isnan(yawRudder) && !std::isnan(throttle)) + { + QString state("%1\t%2\t%3\t%4\t%5\n"); + state = state.arg(rollAilerons).arg(pitchElevator).arg(yawRudder).arg(true).arg(throttle); +@@ -250,7 +250,7 @@ void QGCJSBSimLink::updateControls(quint64 time, float rollAilerons, float pitch + } + else + { +- qDebug() << "HIL: Got NaN values from the hardware: isnan output: roll: " << isnan(rollAilerons) << ", pitch: " << isnan(pitchElevator) << ", yaw: " << isnan(yawRudder) << ", throttle: " << isnan(throttle); ++ qDebug() << "HIL: Got NaN values from the hardware: isnan output: roll: " << std::isnan(rollAilerons) << ", pitch: " << std::isnan(pitchElevator) << ", yaw: " << std::isnan(yawRudder) << ", throttle: " << std::isnan(throttle); + } + //qDebug() << "Updated controls" << state; + } +diff --git a/src/uas/UAS.cc b/src/uas/UAS.cc +index 4d5c1c2..ac88852 100644 +--- a/src/uas/UAS.cc ++++ b/src/uas/UAS.cc +@@ -558,7 +558,7 @@ void UAS::receiveMessage(mavlink_message_t message) + + setAltitudeAMSL(hud.alt); + setGroundSpeed(hud.groundspeed); +- if (!isnan(hud.airspeed)) ++ if (!std::isnan(hud.airspeed)) + setAirSpeed(hud.airspeed); + speedZ = -hud.climb; + emit altitudeChanged(this, altitudeAMSL, altitudeRelative, -speedZ, time); +@@ -654,7 +654,7 @@ void UAS::receiveMessage(mavlink_message_t message) + + float vel = pos.vel/100.0f; + // Smaller than threshold and not NaN +- if ((vel < 1000000) && !isnan(vel) && !isinf(vel)) { ++ if ((vel < 1000000) && !std::isnan(vel) && !std::isinf(vel)) { + setGroundSpeed(vel); + emit speedChanged(this, groundSpeed, airSpeed, time); + } else { +@@ -1439,8 +1439,8 @@ void UAS::setExternalControlSetpoint(float roll, float pitch, float yaw, float t + if (countSinceLastTransmission++ >= 5) { + sendCommand = true; + countSinceLastTransmission = 0; +- } else if ((!isnan(roll) && roll != manualRollAngle) || (!isnan(pitch) && pitch != manualPitchAngle) || +- (!isnan(yaw) && yaw != manualYawAngle) || (!isnan(thrust) && thrust != manualThrust) || ++ } else if ((!std::isnan(roll) && roll != manualRollAngle) || (!std::isnan(pitch) && pitch != manualPitchAngle) || ++ (!std::isnan(yaw) && yaw != manualYawAngle) || (!std::isnan(thrust) && thrust != manualThrust) || + buttons != manualButtons) { + sendCommand = true; + +diff --git a/src/ui/QGCDataPlot2D.cc b/src/ui/QGCDataPlot2D.cc +index 2e530b2..9d5a774 100644 +--- a/src/ui/QGCDataPlot2D.cc ++++ b/src/ui/QGCDataPlot2D.cc +@@ -535,7 +535,7 @@ void QGCDataPlot2D::loadCsvLog(QString file, QString xAxisName, QString yAxisFil + { + bool okx = true; + x = text.toDouble(&okx); +- if (okx && !isnan(x) && !isinf(x)) ++ if (okx && !std::isnan(x) && !std::isinf(x)) + { + headerfound = true; + } +@@ -561,7 +561,7 @@ void QGCDataPlot2D::loadCsvLog(QString file, QString xAxisName, QString yAxisFil + y = text.toDouble(&oky); + // Only INF is really an issue for the plot + // NaN is fine +- if (oky && !isnan(y) && !isinf(y) && text.length() > 0 && text != " " && text != "\n" && text != "\r" && text != "\t") ++ if (oky && !std::isnan(y) && !std::isinf(y) && text.length() > 0 && text != " " && text != "\n" && text != "\r" && text != "\t") + { + // Only append definitely valid values + xValues.value(curveName)->append(x); +-- +2.7.4 + diff --git a/pkgs/applications/science/robotics/qgroundcontrol/default.nix b/pkgs/applications/science/robotics/qgroundcontrol/default.nix new file mode 100644 index 00000000000..47a6ee44952 --- /dev/null +++ b/pkgs/applications/science/robotics/qgroundcontrol/default.nix @@ -0,0 +1,98 @@ +{ stdenv, fetchgit, git, espeak, SDL, udev, doxygen, cmake, overrideCC#, gcc48 + , qtbase, qtlocation, qtserialport, qtdeclarative, qtconnectivity, qtxmlpatterns + , qtsvg, qtquick1, qtquickcontrols, qtgraphicaleffects + , makeQtWrapper, lndir + , gst_all_1, qt_gstreamer1, pkgconfig, glibc + , version ? "2.9.4" +}: + +stdenv.mkDerivation rec { + name = "qgroundcontrol-${version}"; + buildInputs = [ + SDL udev doxygen git + ] ++ gstInputs; + + qtInputs = [ + qtbase qtlocation qtserialport qtdeclarative qtconnectivity qtxmlpatterns qtsvg + qtquick1 qtquickcontrols qtgraphicaleffects + ]; + + gstInputs = with gst_all_1; [ + gstreamer gst-plugins-base + ]; + + enableParallelBuilding = true; + nativeBuildInputs = [ + pkgconfig makeQtWrapper + ] ++ qtInputs; + + patches = [ ./0001-fix-gcc-cmath-namespace-issues.patch ]; + + preConfigure = '' + git submodule init + git submodule update + + ''; + + configurePhase = '' + mkdir build + pushd build + + qmake ../qgroundcontrol.pro + + popd + ''; + + preBuild = "pushd build/"; + postBuild = "popd"; + + installPhase = '' + mkdir -p $out/share/applications + cp -v qgroundcontrol.desktop $out/share/applications + + mkdir -p $out/bin + cp -v build/release/qgroundcontrol "$out/bin/" + + mkdir -p $out/share/qgroundcontrol + cp -rv resources/ $out/share/qgroundcontrol + + mkdir -p $out/share/pixmaps + cp -v resources/icons/qgroundcontrol.png $out/share/pixmaps + + # we need to link to our Qt deps in our own output if we want + # this package to work without being installed as a system pkg + mkdir -p $out/lib/qt5 $out/etc/xdg + for pkg in $qtInputs; do + if [[ -d $pkg/lib/qt5 ]]; then + for dir in lib/qt5 share etc/xdg; do + if [[ -d $pkg/$dir ]]; then + ${lndir}/bin/lndir "$pkg/$dir" "$out/$dir" + fi + done + fi + done + ''; + + + postInstall = '' + wrapQtProgram "$out/bin/qgroundcontrol" \ + --prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH" + ''; + + + # TODO: package mavlink so we can build from a normal source tarball + src = fetchgit { + url = "https://github.com/mavlink/qgroundcontrol.git"; + rev = "refs/tags/v${version}"; + sha256 = "0rwn2ddlar58ydzdykvnab1anr4xzvb9x0sxx5rs037i49f6sqga"; + fetchSubmodules = true; + }; + + meta = { + description = "provides full ground station support and configuration for the PX4 and APM Flight Stacks"; + homepage = http://qgroundcontrol.org/; + license = stdenv.lib.licenses.gpl3Plus; + platforms = with stdenv.lib.platforms; linux; + maintainers = with stdenv.lib.maintainers; [ pxc ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 080cc10fcb1..095038f8349 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14349,6 +14349,8 @@ in qgis = callPackage ../applications/gis/qgis {}; + qgroundcontrol = qt55.callPackage ../applications/science/robotics/qgroundcontrol { }; + qtbitcointrader = callPackage ../applications/misc/qtbitcointrader { qt = qt4; }; From cdca9d64b42d11ff62f09f8dec60884ad3eafad0 Mon Sep 17 00:00:00 2001 From: Brad Ediger Date: Thu, 24 Mar 2016 22:05:04 -0500 Subject: [PATCH 537/678] dvdbackup: init at 0.4.2 --- lib/maintainers.nix | 1 + pkgs/applications/video/dvdbackup/default.nix | 20 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 3 files changed, 23 insertions(+) create mode 100644 pkgs/applications/video/dvdbackup/default.nix diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 5fccdcb4ae3..9a4b8680a84 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -60,6 +60,7 @@ bodil = "Bodil Stokke "; boothead = "Ben Ford "; bosu = "Boris Sukholitko "; + bradediger = "Brad Ediger "; bramd = "Bram Duvigneau "; bstrik = "Berno Strik "; bzizou = "Bruno Bzeznik "; diff --git a/pkgs/applications/video/dvdbackup/default.nix b/pkgs/applications/video/dvdbackup/default.nix new file mode 100644 index 00000000000..cb2a69b53ca --- /dev/null +++ b/pkgs/applications/video/dvdbackup/default.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchurl, libdvdread, libdvdcss, dvdauthor }: + +stdenv.mkDerivation rec { + version = "0.4.2"; + name = "dvdbackup-${version}"; + + src = fetchurl { + url = "mirror://sourceforge/dvdbackup/${name}.tar.xz"; + sha256 = "1rl3h7waqja8blmbpmwy01q9fgr5r0c32b8dy3pbf59bp3xmd37g"; + }; + + buildInputs = [ libdvdread libdvdcss dvdauthor ]; + + meta = { + description = "A tool to rip video DVDs from the command line"; + homepage = http://dvdbackup.sourceforge.net/; + license = stdenv.lib.licenses.gpl3Plus; + maintainers = [ stdenv.lib.maintainers.bradediger ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 080cc10fcb1..05e26199a17 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11818,6 +11818,8 @@ in dvdauthor = callPackage ../applications/video/dvdauthor { }; + dvdbackup = callPackage ../applications/video/dvdbackup { }; + dvd-slideshow = callPackage ../applications/video/dvd-slideshow { }; dwb-unwrapped = callPackage ../applications/networking/browsers/dwb { dconf = gnome3.dconf; }; From 8afda7e421cd58304818c9e84e9bd3c32ebc89f1 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Fri, 25 Mar 2016 05:07:19 +0000 Subject: [PATCH 538/678] s3cmd: 1.5.2 -> 1.6.1 --- pkgs/tools/networking/s3cmd/default.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/networking/s3cmd/default.nix b/pkgs/tools/networking/s3cmd/default.nix index 0ff741ef7e2..ec464438553 100644 --- a/pkgs/tools/networking/s3cmd/default.nix +++ b/pkgs/tools/networking/s3cmd/default.nix @@ -1,11 +1,14 @@ -{ stdenv, fetchurl, pythonPackages }: +{ stdenv, fetchFromGitHub, pythonPackages }: pythonPackages.buildPythonApplication rec { - name = "s3cmd-1.5.2"; + name = "s3cmd-${version}"; + version = "1.6.1"; - src = fetchurl { - url = "mirror://sourceforge/s3tools/${name}.tar.gz"; - sha256 = "0bdl2wvh4nri4n6hpaa8s9lk98xy4a1b0l9ym54fvmxxx1j6g2pz"; + src = fetchFromGitHub { + owner = "s3tools"; + repo = "s3cmd"; + rev = "v${version}"; + sha256 = "0aan6v1qj0pdkddhhkbaky44d54irm1pa8mkn52i2j86nb2rkcf9"; }; propagatedBuildInputs = with pythonPackages; [ python_magic dateutil ]; From ea443d719c62ae7bf9b4acac95e34ee4e1cdf62e Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Fri, 25 Mar 2016 06:28:01 +0100 Subject: [PATCH 539/678] nixos/tests: implement a trivial test for sudo This is an alternative to NixOS/nixpkgs#6721, with improvements suggested by @edolstra --- nixos/tests/misc.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/nixos/tests/misc.nix b/nixos/tests/misc.nix index 73af0cfad21..b926a62194b 100644 --- a/nixos/tests/misc.nix +++ b/nixos/tests/misc.nix @@ -23,6 +23,8 @@ import ./make-test.nix ({ pkgs, ...} : { { wantedBy = [ "multi-user.target" ]; where = "/tmp2"; }; + users.users.sybil = { isNormalUser = true; group = "wheel"; }; + security.sudo = { enable = true; wheelNeedsPassword = false; }; }; testScript = @@ -110,5 +112,10 @@ import ./make-test.nix ({ pkgs, ...} : { subtest "nix-db", sub { $machine->succeed("nix-store -qR /run/current-system | grep nixos-"); }; + + # Test sudo + subtest "sudo", sub { + $machine->succeed("su - sybil -c 'sudo true'"); + }; ''; }) From 8db43cbd9dd9235752da680f8daf09a7b15839e8 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Fri, 25 Mar 2016 06:16:31 +0000 Subject: [PATCH 540/678] innoextract: 1.5 -> 1.6 --- pkgs/tools/archivers/innoextract/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/archivers/innoextract/default.nix b/pkgs/tools/archivers/innoextract/default.nix index 6b442e7bf66..1f27730b19a 100644 --- a/pkgs/tools/archivers/innoextract/default.nix +++ b/pkgs/tools/archivers/innoextract/default.nix @@ -1,11 +1,11 @@ {stdenv, fetchurl, cmake, python, doxygen, lzma, boost}: stdenv.mkDerivation rec { - name = "innoextract-1.5"; + name = "innoextract-1.6"; src = fetchurl { url = "http://constexpr.org/innoextract/files/${name}.tar.gz"; - sha256 = "1ks8z8glak63xvqlv7dnmlzkjrwsn81lhybmai2mja6g5jclwngj"; + sha256 = "0gh3q643l8qlwla030cmf3qdcdr85ixjygkb7j4dbm7zbwa3yik6"; }; buildInputs = [ python doxygen lzma boost ]; From 803b21959e62bed3ebad6fc428311acf6f32ea8d Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Fri, 25 Mar 2016 07:39:40 +0100 Subject: [PATCH 541/678] bigloo: pin gcc version to 4.9 https://hydra.nixos.org/build/33120353/nixlog/1/raw --- 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 a58827c8e61..133325e6209 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4005,7 +4005,9 @@ let avra = callPackage ../development/compilers/avra { }; - bigloo = callPackage ../development/compilers/bigloo { }; + bigloo = callPackage ../development/compilers/bigloo { + stdenv = overrideCC stdenv gcc49; + }; colm = callPackage ../development/compilers/colm { }; From 60726164055ca689f9b37e7d4529e9927ec6c3ad Mon Sep 17 00:00:00 2001 From: Benjamin Staffin Date: Fri, 25 Mar 2016 00:46:00 -0700 Subject: [PATCH 542/678] jsonnet: 0.8.6 -> 0.8.7 --- pkgs/development/compilers/jsonnet/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/jsonnet/default.nix b/pkgs/development/compilers/jsonnet/default.nix index 73bdccb24f7..3489d03c5cc 100644 --- a/pkgs/development/compilers/jsonnet/default.nix +++ b/pkgs/development/compilers/jsonnet/default.nix @@ -1,6 +1,6 @@ { stdenv, lib, fetchFromGitHub, emscripten }: -let version = "0.8.6"; in +let version = "0.8.7"; in stdenv.mkDerivation { name = "jsonnet-${version}"; @@ -9,7 +9,7 @@ stdenv.mkDerivation { rev = "v${version}"; owner = "google"; repo = "jsonnet"; - sha256 = "1dkvm81gi1j02zs00mqshn9i71bcnqbxsm5hh3wwa2y0sffvgkwh"; + sha256 = "0adg7ijz10mc4xs5lfrby5g9sx96icf6cg39hvkh4wqjl85c6i9g"; }; buildInputs = [ emscripten ]; From fe60b57e493d3e923938df7d6fee35276557701d Mon Sep 17 00:00:00 2001 From: = Date: Thu, 24 Mar 2016 22:57:20 +0100 Subject: [PATCH 543/678] drumgizmo: 0.9.8.1 -> 0.9.9 --- pkgs/applications/audio/drumgizmo/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/audio/drumgizmo/default.nix b/pkgs/applications/audio/drumgizmo/default.nix index 9afcae1901e..08d0afcd3f2 100644 --- a/pkgs/applications/audio/drumgizmo/default.nix +++ b/pkgs/applications/audio/drumgizmo/default.nix @@ -3,12 +3,12 @@ }: stdenv.mkDerivation rec { - version = "0.9.8.1"; + version = "0.9.9"; name = "drumgizmo-${version}"; src = fetchurl { url = "http://www.drumgizmo.org/releases/${name}/${name}.tar.gz"; - sha256 = "1plfjhwhaz1mr3kgf5imcp3kjflk6ni9sq39gmxjxzya6gn2r6gg"; + sha256 = "03dnh2p4s6n107n0r86h9j1jwy85a8qwjkh0288k60qpdqy1c7vp"; }; configureFlags = [ "--enable-lv2" ]; @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "An LV2 sample based drum plugin"; homepage = http://www.drumgizmo.org; - license = licenses.gpl3; + license = licenses.lgpl3; platforms = platforms.linux; maintainers = [ maintainers.goibhniu maintainers.nico202 ]; }; From 48c3e72f93345e348c5d56e8988e418663a13550 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Thu, 17 Mar 2016 13:01:23 +0000 Subject: [PATCH 544/678] pythonPackages.cryptography: 1.1.1 -> 1.2.3 (fix openssl build) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit baf7f98b454cc2d404f119cd6b0eeecae0d5ac44) Signed-off-by: Domen Kožar --- pkgs/top-level/python-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 54ecc374b35..ff991be6dd7 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3633,11 +3633,11 @@ in modules // { cryptography = buildPythonPackage rec { # also bump cryptography_vectors - name = "cryptography-1.1.1"; + name = "cryptography-1.2.3"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/c/cryptography/${name}.tar.gz"; - sha256 = "1q5snbnn2am85zb5jrnxwzncl4kwa11740ws8g9b4ps5ywx944i9"; + sha256 = "0kj511z4g21fhcr649pyzpl0zzkkc7hsgxxjys6z8wwfvmvirccf"; }; buildInputs = [ pkgs.openssl self.pretend self.cryptography_vectors @@ -3653,11 +3653,11 @@ in modules // { cryptography_vectors = buildPythonPackage rec { # also bump cryptography - name = "cryptography_vectors-1.1.1"; + name = "cryptography_vectors-1.2.3"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/c/cryptography-vectors/${name}.tar.gz"; - sha256 = "17gi301p3wi39dr4dhrmpfflid3k004jp9cnvdp46b7p5lm6hb3w"; + sha256 = "0shawgpax79gvjrj0a313sll9gaqys7q1hxngn6j4k24lmz7bwki"; }; }; From 7a89a856224e00558033e975699b8b4486630b36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Fri, 25 Mar 2016 12:47:09 +0000 Subject: [PATCH 545/678] nix.useChroot: allow 'relaxed' as a value --- nixos/modules/services/misc/nix-daemon.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/misc/nix-daemon.nix b/nixos/modules/services/misc/nix-daemon.nix index 78f0cd18040..e079a5d80d4 100644 --- a/nixos/modules/services/misc/nix-daemon.nix +++ b/nixos/modules/services/misc/nix-daemon.nix @@ -39,7 +39,7 @@ let build-users-group = nixbld build-max-jobs = ${toString (cfg.maxJobs)} build-cores = ${toString (cfg.buildCores)} - build-use-chroot = ${if cfg.useChroot then "true" else "false"} + build-use-chroot = ${if (builtins.isBool cfg.useChroot) then (if cfg.useChroot then "true" else "false") else cfg.useChroot} build-chroot-dirs = ${toString cfg.chrootDirs} /bin/sh=${sh} $(echo $extraPaths) binary-caches = ${toString cfg.binaryCaches} trusted-binary-caches = ${toString cfg.trustedBinaryCaches} @@ -99,7 +99,7 @@ in }; useChroot = mkOption { - type = types.bool; + type = types.either types.bool (types.enum ["relaxed"]); default = false; description = " If set, Nix will perform builds in a chroot-environment that it From 6e08bd27fc3ee687f748806d532c551dd9fe1a8f Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 25 Mar 2016 14:50:53 +0100 Subject: [PATCH 546/678] Catalyst::Action::Rest: 1.19 -> 1.20 --- pkgs/top-level/perl-packages.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index e3cdfd49ce4..8870565701a 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -890,14 +890,13 @@ let self = _self // overrides; _self = with self; { }; CatalystActionREST = buildPerlPackage rec { - name = "Catalyst-Action-REST-1.19"; + name = "Catalyst-Action-REST-1.20"; src = fetchurl { - url = "mirror://cpan/authors/id/F/FR/FREW/${name}.tar.gz"; - sha256 = "0qiw6b932a73prrg8vw9brpdvjqm37c6wmbliyxvmz0kij6pi2qd"; + url = mirror://cpan/authors/id/J/JJ/JJNAPIORK/Catalyst-Action-REST-1.20.tar.gz; + sha256 = "c0470541ec0016b837db3186ed77915813c8b856b941db89b86db8602e31ead6"; }; buildInputs = [ TestRequires ]; - propagatedBuildInputs = [ CatalystRuntime ClassInspector LWP MROCompat - ModulePluggable Moose ParamsValidate URIFind namespaceautoclean ]; + propagatedBuildInputs = [ CatalystRuntime ClassInspector JSONMaybeXS MROCompat ModulePluggable Moose ParamsValidate URIFind namespaceautoclean ]; meta = { description = "Automated REST Method Dispatching"; license = "perl"; From e50bee65f020ccd9ca4bcfb91345e11d67fcadb6 Mon Sep 17 00:00:00 2001 From: Brian McKenna Date: Sat, 26 Mar 2016 00:50:56 +1100 Subject: [PATCH 547/678] opengl.extraPackages32: pkgsi686Linux in example Issue #12616 uses this example but the commit doesn't. --- nixos/modules/hardware/opengl.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/hardware/opengl.nix b/nixos/modules/hardware/opengl.nix index d3b146be6b3..0bc574d4819 100644 --- a/nixos/modules/hardware/opengl.nix +++ b/nixos/modules/hardware/opengl.nix @@ -103,7 +103,7 @@ in hardware.opengl.extraPackages32 = mkOption { type = types.listOf types.package; default = []; - example = literalExample "with pkgs; [ vaapiIntel libvdpau-va-gl vaapiVdpau ]"; + example = literalExample "with pkgs.pkgsi686Linux; [ vaapiIntel libvdpau-va-gl vaapiVdpau ]"; description = '' Additional packages to add to 32-bit OpenGL drivers on 64-bit systems. Used when is From 79d6dc91fe7486c03fd3a1e663b1e8ce7266c823 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 25 Mar 2016 15:00:50 +0100 Subject: [PATCH 548/678] firefox: 45.0 -> 45.0.1 --- pkgs/applications/networking/browsers/firefox/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox/default.nix b/pkgs/applications/networking/browsers/firefox/default.nix index e384196be46..792bc5dc240 100644 --- a/pkgs/applications/networking/browsers/firefox/default.nix +++ b/pkgs/applications/networking/browsers/firefox/default.nix @@ -133,8 +133,8 @@ in { firefox-unwrapped = common { pname = "firefox"; - version = "45.0"; - sha256 = "1wbrygxj285vs5qbpv3cq26w36bd533779mgi8d0gpxin44hzarn"; + version = "45.0.1"; + sha256 = "1j6raz51zcj2hxk0spk5zq8xzxi5nlxxm60dpnb7cs6dv334m0fi"; }; firefox-esr-unwrapped = common { From 574a6d34d229b0a2ac53db9c2e66333b020dcab2 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 25 Mar 2016 15:03:31 +0100 Subject: [PATCH 549/678] firefox-esr: 38.6.1 -> 45.0.1 --- pkgs/applications/networking/browsers/firefox/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox/default.nix b/pkgs/applications/networking/browsers/firefox/default.nix index 792bc5dc240..9089af711b7 100644 --- a/pkgs/applications/networking/browsers/firefox/default.nix +++ b/pkgs/applications/networking/browsers/firefox/default.nix @@ -139,8 +139,8 @@ in { firefox-esr-unwrapped = common { pname = "firefox-esr"; - version = "38.6.1esr"; - sha256 = "1zyhzczhknplxfmk2r7cczavbsml8ckyimibj2sphwdc300ls5wi"; + version = "45.0.1esr"; + sha256 = "0rkk3cr3r7v5xzbcqhyx8b633v4a16ika0wk46p0ichh9n5mci0s"; }; } From fca9b335ae81c86c34a52797c4b3ae81a445183a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 25 Mar 2016 16:08:20 +0100 Subject: [PATCH 550/678] Hide sendmailSetuidWrapper --- nixos/modules/services/mail/mail.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/mail/mail.nix b/nixos/modules/services/mail/mail.nix index b7e1d295f2c..63e8d78b5b0 100644 --- a/nixos/modules/services/mail/mail.nix +++ b/nixos/modules/services/mail/mail.nix @@ -12,9 +12,9 @@ with lib; sendmailSetuidWrapper = mkOption { default = null; + internal = true; description = '' - Configuration for the sendmail setuid wrwapper (like an element of - security.setuidOwners)"; + Configuration for the sendmail setuid wapper. ''; }; From 7f61c7289f62066c055411c2dfa466bfa2472e12 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 25 Mar 2016 16:42:50 +0100 Subject: [PATCH 551/678] blender: Disable i686-linux build The openimageio dependency doesn't build on i686. But probably nobody cares about running Blender on 32-bit anymore. http://hydra.nixos.org/build/33602734 --- pkgs/applications/misc/blender/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/misc/blender/default.nix b/pkgs/applications/misc/blender/default.nix index 7eb30bf76dc..0085da5b468 100644 --- a/pkgs/applications/misc/blender/default.nix +++ b/pkgs/applications/misc/blender/default.nix @@ -62,7 +62,7 @@ stdenv.mkDerivation rec { # They comment two licenses: GPLv2 and Blender License, but they # say: "We've decided to cancel the BL offering for an indefinite period." license = licenses.gpl2Plus; - platforms = platforms.linux; + platforms = [ "x86_64-linux" ]; maintainers = [ maintainers.goibhniu ]; }; } From c3ee17fe74958d19876dec19d4572374624b224f Mon Sep 17 00:00:00 2001 From: Octavian Cerna Date: Fri, 25 Mar 2016 17:55:26 +0200 Subject: [PATCH 552/678] quagga: 0.99.24.1 -> 1.0.20160315 --- pkgs/servers/quagga/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/quagga/default.nix b/pkgs/servers/quagga/default.nix index cdc2905d62d..b73086ca7c7 100644 --- a/pkgs/servers/quagga/default.nix +++ b/pkgs/servers/quagga/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "quagga-${version}"; - version = "0.99.24.1"; + version = "1.0.20160315"; src = fetchurl { url = "mirror://savannah/quagga/${name}.tar.gz"; - sha256 = "0kvmc810m7ssrvgb3213271rpywyxb646v5bzjl1jl88vx3imbl4"; + sha256 = "0qrjhp6l1hw35jrvcwyl0df4zjx1kqhrsafx307i6pzgs2xbgzr1"; }; buildInputs = @@ -64,7 +64,7 @@ stdenv.mkDerivation rec { It is more than a routed replacement, it can be used as a Route Server and a Route Reflector. ''; - homepage = http://www.quagga.net/; + homepage = http://www.nongnu.org/quagga/; license = licenses.gpl2; platforms = platforms.unix; maintainers = with maintainers; [ tavyc ]; From ddd480ac30579d780c8ffa9c590a8c86bb36d8d2 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 25 Mar 2016 17:15:57 +0100 Subject: [PATCH 553/678] Revert "Remove which -> type -P alias." This reverts commit e8e8164f348a0e8655e1d50a7a404bdc62055f4e. I misread the original commit as adding the "which" package, but it only adds it to base.nix. So then the original motivation (making it work in subshells) doesn't hold. Note that we already have some convenience aliases that don't work in subshells either (such as "ll"). --- nixos/modules/profiles/base.nix | 1 - nixos/modules/programs/bash/bash.nix | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/nixos/modules/profiles/base.nix b/nixos/modules/profiles/base.nix index 09183ee1809..b8057cadce2 100644 --- a/nixos/modules/profiles/base.nix +++ b/nixos/modules/profiles/base.nix @@ -17,7 +17,6 @@ pkgs.ddrescue pkgs.ccrypt pkgs.cryptsetup # needed for dm-crypt volumes - pkgs.which # 88K size # Some networking tools. pkgs.fuse diff --git a/nixos/modules/programs/bash/bash.nix b/nixos/modules/programs/bash/bash.nix index e4e264ec003..1c3c07a1c21 100644 --- a/nixos/modules/programs/bash/bash.nix +++ b/nixos/modules/programs/bash/bash.nix @@ -56,7 +56,7 @@ in */ shellAliases = mkOption { - default = config.environment.shellAliases; + default = config.environment.shellAliases // { which = "type -P"; }; description = '' Set of aliases for bash shell. See for an option format description. From 54e1628b19050f697638f655a3093b7f401052db Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Fri, 25 Mar 2016 16:59:45 +0100 Subject: [PATCH 554/678] checkstyle: 6.16.1 -> 6.17 --- pkgs/development/tools/analysis/checkstyle/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/analysis/checkstyle/default.nix b/pkgs/development/tools/analysis/checkstyle/default.nix index 8fbc720a272..0d961ab5c23 100644 --- a/pkgs/development/tools/analysis/checkstyle/default.nix +++ b/pkgs/development/tools/analysis/checkstyle/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - version = "6.16.1"; + version = "6.17"; name = "checkstyle-${version}"; src = fetchurl { url = "mirror://sourceforge/checkstyle/${name}-bin.tar.gz"; - sha256 = "169pwpxpzvi18hiji2w77s97lf8956wknch06bjbzvad7q9qfxid"; + sha256 = "1cfcjz1fg9ilqqaqlbzd5n7nsx1kzy6sabjp92b9d8mwy15bn5ql"; }; installPhase = '' From 0bce9599e7952e78cec78dc0ee291f51d1ed9101 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Fri, 25 Mar 2016 17:05:41 +0100 Subject: [PATCH 555/678] cpuminer: 2.4.3 -> 2.4.4 --- pkgs/tools/misc/cpuminer/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/cpuminer/default.nix b/pkgs/tools/misc/cpuminer/default.nix index 67249161e84..64657d7cd3b 100644 --- a/pkgs/tools/misc/cpuminer/default.nix +++ b/pkgs/tools/misc/cpuminer/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "cpuminer-${version}"; - version = "2.4.3"; + version = "2.4.4"; src = fetchurl { url = "mirror://sourceforge/cpuminer/pooler-${name}.tar.gz"; - sha256 = "1p66v96pz3vk1khwlmc26fg2d06c001755rrkcdv5wh8zyg6wv99"; + sha256 = "0xdgz5qlx1yr3mw2h4bwlbj94y6v2ygjy334cnc87xgzxf1wgann"; }; buildInputs = [ curl jansson ]; From 5455a71414dee91d5485487c6bee6d787b54ba19 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Fri, 25 Mar 2016 17:21:30 +0100 Subject: [PATCH 556/678] photonic: 1.7 -> 1.7.1 --- pkgs/applications/graphics/phototonic/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/phototonic/default.nix b/pkgs/applications/graphics/phototonic/default.nix index 6803b969b4b..a26346add7f 100644 --- a/pkgs/applications/graphics/phototonic/default.nix +++ b/pkgs/applications/graphics/phototonic/default.nix @@ -2,12 +2,14 @@ stdenv.mkDerivation rec { name = "phototonic-${version}"; - version = "1.7"; + version = "1.7.1"; src = fetchFromGitHub { repo = "phototonic"; owner = "oferkv"; - rev = "v${version}"; + # There is currently no tag for 1.7.1 see + # https://github.com/oferkv/phototonic/issues/214 + rev = "c37070e4a068570d34ece8de1e48aa0882c80c5b"; sha256 = "1agd3bsrpljd019qrjvlbim5l0bhpx53dhpc0gvyn0wmcdzn92gj"; }; From 54ca7e9f7514f97d4cd7d7d1a29f7e3ccc73683e Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 25 Mar 2016 17:29:02 +0100 Subject: [PATCH 557/678] Restore core dumps Systemd 229 sets kernel.core_pattern to "|/bin/false" by default, unless systemd-coredump is enabled. Revert back to the default of writing "core" in the current directory. --- nixos/modules/system/boot/coredump.nix | 27 +++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/nixos/modules/system/boot/coredump.nix b/nixos/modules/system/boot/coredump.nix index 25b11ed9c8a..3d80da9e457 100644 --- a/nixos/modules/system/boot/coredump.nix +++ b/nixos/modules/system/boot/coredump.nix @@ -33,19 +33,24 @@ with lib; }; - config = mkIf config.systemd.coredump.enable { + config = mkMerge [ + (mkIf config.systemd.coredump.enable { - environment.etc."systemd/coredump.conf".text = - '' - [Coredump] - ${config.systemd.coredump.extraConfig} - ''; + environment.etc."systemd/coredump.conf".text = + '' + [Coredump] + ${config.systemd.coredump.extraConfig} + ''; - # Have the kernel pass core dumps to systemd's coredump helper binary. - # From systemd's 50-coredump.conf file. See: - # - boot.kernel.sysctl."kernel.core_pattern" = "|${pkgs.systemd}/lib/systemd/systemd-coredump %p %u %g %s %t %e"; + # Have the kernel pass core dumps to systemd's coredump helper binary. + # From systemd's 50-coredump.conf file. See: + # + boot.kernel.sysctl."kernel.core_pattern" = "|${pkgs.systemd}/lib/systemd/systemd-coredump %p %u %g %s %t %e"; + }) - }; + (mkIf (!config.systemd.coredump.enable) { + boot.kernel.sysctl."kernel.core_pattern" = mkDefault "core"; + }) + ]; } From 98e8696290688cff4c67e2063ecdc56d2e8c1bc8 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Fri, 25 Mar 2016 10:34:51 +0100 Subject: [PATCH 558/678] Do not default to SBCL for wrapped non-SBCL lisp implementation --- pkgs/development/lisp-modules/clwrapper/common-lisp.sh | 2 +- pkgs/development/lisp-modules/clwrapper/default.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/lisp-modules/clwrapper/common-lisp.sh b/pkgs/development/lisp-modules/clwrapper/common-lisp.sh index b22ca016128..a4634152db7 100755 --- a/pkgs/development/lisp-modules/clwrapper/common-lisp.sh +++ b/pkgs/development/lisp-modules/clwrapper/common-lisp.sh @@ -1,3 +1,3 @@ #! /bin/sh -"$(dirname "$0")"/cl-wrapper.sh "${NIX_LISP_COMMAND:-sbcl}" "$@" +"$(dirname "$0")"/cl-wrapper.sh "${NIX_LISP_COMMAND:-$(ls "@lisp@/bin"/* | head -n 1)}" "$@" diff --git a/pkgs/development/lisp-modules/clwrapper/default.nix b/pkgs/development/lisp-modules/clwrapper/default.nix index be1f1f93a02..172af31f834 100644 --- a/pkgs/development/lisp-modules/clwrapper/default.nix +++ b/pkgs/development/lisp-modules/clwrapper/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation { installPhase='' mkdir -p "$out"/bin - cp ${./common-lisp.sh} "$out"/bin/common-lisp.sh + substituteAll ${./common-lisp.sh} "$out"/bin/common-lisp.sh substituteAll "${./build-with-lisp.sh}" "$out/bin/build-with-lisp.sh" substituteAll "${./cl-wrapper.sh}" "$out/bin/cl-wrapper.sh" chmod a+x "$out"/bin/* From 511ad5e5bfe1b29e56f0b15f15732c7c8c8e6ef1 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Fri, 25 Mar 2016 17:57:45 +0100 Subject: [PATCH 559/678] quicklisp (lispPackages.quicklisp): init --- .../lisp-modules/clwrapper/cl-wrapper.sh | 3 + .../lisp-modules/clwrapper/common-lisp.sh | 2 +- .../lisp-modules/lisp-packages.nix | 27 ++++++ pkgs/development/lisp-modules/quicklisp.sh | 85 +++++++++++++++++++ 4 files changed, 116 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/lisp-modules/quicklisp.sh diff --git a/pkgs/development/lisp-modules/clwrapper/cl-wrapper.sh b/pkgs/development/lisp-modules/clwrapper/cl-wrapper.sh index 05376c1e9a3..5bf375a4eff 100755 --- a/pkgs/development/lisp-modules/clwrapper/cl-wrapper.sh +++ b/pkgs/development/lisp-modules/clwrapper/cl-wrapper.sh @@ -19,16 +19,19 @@ case "$NIX_LISP" in sbcl) NIX_LISP_LOAD_FILE="--load" NIX_LISP_EXEC_CODE="--eval" + NIX_LISP_QUIT="(quit)" NIX_LISP_FINAL_PARAMETERS= ;; ecl) NIX_LISP_LOAD_FILE="-load" NIX_LISP_EXEC_CODE="-eval" + NIX_LISP_QUIT="(quit)" NIX_LISP_FINAL_PARAMETERS= ;; clisp) NIX_LISP_LOAD_FILE="-c -l" NIX_LISP_EXEC_CODE="-x" + NIX_LISP_QUIT="(quit)" NIX_LISP_FINAL_PARAMETERS="-repl" ;; esac diff --git a/pkgs/development/lisp-modules/clwrapper/common-lisp.sh b/pkgs/development/lisp-modules/clwrapper/common-lisp.sh index a4634152db7..43349cc7f8a 100755 --- a/pkgs/development/lisp-modules/clwrapper/common-lisp.sh +++ b/pkgs/development/lisp-modules/clwrapper/common-lisp.sh @@ -1,3 +1,3 @@ #! /bin/sh -"$(dirname "$0")"/cl-wrapper.sh "${NIX_LISP_COMMAND:-$(ls "@lisp@/bin"/* | head -n 1)}" "$@" +source "@out@"/bin/cl-wrapper.sh "${NIX_LISP_COMMAND:-$(ls "@lisp@/bin"/* | head -n 1)}" "$@" diff --git a/pkgs/development/lisp-modules/lisp-packages.nix b/pkgs/development/lisp-modules/lisp-packages.nix index 36e0b34e005..8e3c56d49a8 100644 --- a/pkgs/development/lisp-modules/lisp-packages.nix +++ b/pkgs/development/lisp-modules/lisp-packages.nix @@ -575,5 +575,32 @@ let lispPackages = rec { }; }; + quicklisp = buildLispPackage rec { + baseName = "quicklisp"; + version = "2016-01-21"; + description = "The Common Lisp package manager"; + deps = []; + src = pkgs.fetchgit { + url = "https://github.com/quicklisp/quicklisp-client/"; + rev = "refs/tags/version-${version}"; + sha256 = "0a6zjsd5c8zg2x26lc027538xfl182xvg7ps81pyvi4k5qd42xhd"; + }; + overrides = x: rec { + inherit clwrapper; + quicklispdist = pkgs.fetchurl { + # Will usually be replaced with a fresh version anyway, but needs to be + # a valid distinfo.txt + url = "http://beta.quicklisp.org/dist/quicklisp/2016-03-18/distinfo.txt"; + sha256 = "13mvign4rsicfvg3vs3vj1qcjvj2m1aqhq93ck0sgizxfcj5167m"; + }; + buildPhase = '' true; ''; + postInstall = '' + substituteAll ${./quicklisp.sh} "$out"/bin/quicklisp + chmod a+x "$out"/bin/quicklisp + cp "${quicklispdist}" "$out/lib/common-lisp/quicklisp/quicklisp-distinfo.txt" + ''; + }; + }; + }; in lispPackages diff --git a/pkgs/development/lisp-modules/quicklisp.sh b/pkgs/development/lisp-modules/quicklisp.sh new file mode 100644 index 00000000000..30d14419461 --- /dev/null +++ b/pkgs/development/lisp-modules/quicklisp.sh @@ -0,0 +1,85 @@ +#! /usr/bin/env bash + +op= +end_param= +args=() +cmd_args=() + +while let "$#"; do + if test -n "$end_param" || test "$1" = "${1#--}"; then + if test -n "$op"; then + args[${#args[@]}]="$1"; + else + op="$1" + fi + shift + else + case "$1" in + --) + end_param=1; shift; + ;; + --quicklisp-dir) + NIX_QUICKLISP_DIR="$2"; + shift; shift; + ;; + --help) + echo "Operation: init, run, update, install {system-name}" + exit 0; + ;; + *) + echo "Unknown parameter [$1]" >&2 + exit 2; + ;; + esac + fi +done + +NIX_QUICKLISP_DIR="${NIX_QUICKLISP_DIR:-${HOME}/quicklisp}" + +case "$op" in + '') echo "Specify an operation: init, install, run, update" + ;; + install) + NIX_LISP_SKIP_CODE=1 source "@clwrapper@/bin/common-lisp.sh"; + + cmd_args[${#cmd_args[@]}]="$NIX_LISP_EXEC_CODE" + cmd_args[${#cmd_args[@]}]="(load \"$NIX_QUICKLISP_DIR/setup.lisp\")" + for i in "${args[@]}"; do + cmd_args[${#cmd_args[@]}]="$NIX_LISP_EXEC_CODE" + cmd_args[${#cmd_args[@]}]="(ql:quickload :$i)" + done + cmd_args[${#cmd_args[@]}]="$NIX_LISP_EXEC_CODE" + cmd_args[${#cmd_args[@]}]="$NIX_LISP_QUIT" + + "@clwrapper@/bin/common-lisp.sh" "${cmd_args[@]}" + ;; + update) + NIX_LISP_SKIP_CODE=1 source "@clwrapper@/bin/common-lisp.sh" + + ln -sfT "@out@/lib/common-lisp/quicklisp/asdf.lisp" "$NIX_QUICKLISP_DIR/asdf.lisp" + cp -f "@out@/lib/common-lisp/quicklisp/setup.lisp" "$NIX_QUICKLISP_DIR/setup.lisp" + + if test -d "$NIX_QUICKLISP_DIR/quicklisp"; then + mv "$NIX_QUICKLISP_DIR/quicklisp"{,-old-$(date +%Y%m%d-%H%M%S)} + fi + + ln -sfT "@out@/lib/common-lisp/quicklisp/quicklisp" "$NIX_QUICKLISP_DIR/quicklisp" + + "@clwrapper@/bin/common-lisp.sh" "$NIX_LISP_EXEC_CODE" \ + "(load \"$NIX_QUICKLISP_DIR/setup.lisp\")" "$NIX_LISP_EXEC_CODE" \ + "(ql:update-all-dists)" "$NIX_LISP_EXEC_CODE" "$NIX_LISP_QUIT" + ;; + init) + mkdir -p "$NIX_QUICKLISP_DIR"/{dists/quicklisp,tmp,local-projects} + echo 1 > "$NIX_QUICKLISP_DIR/dists/quicklisp/enabled.txt" + cp -f "@out@/lib/common-lisp/quicklisp/quicklisp-distinfo.txt" \ + "$NIX_QUICKLISP_DIR/dists/quicklisp/distinfo.txt" + + NIX_QUICKLISP_DIR="$NIX_QUICKLISP_DIR" "$0" update + ;; + run) + NIX_LISP_SKIP_CODE=1 source "@clwrapper@/bin/common-lisp.sh" + "@clwrapper@/bin/common-lisp.sh" "$NIX_LISP_EXEC_CODE" \ + "(load \"$NIX_QUICKLISP_DIR/setup.lisp\")" "${args[@]}" + ;; +esac From 0d84a3fde249f1a6244844b63acac19f247a1e0d Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Fri, 25 Mar 2016 19:56:25 +0100 Subject: [PATCH 560/678] eggdrop: fix build with gcc5 --- ...33255f56bbd2317c26da12d702796d67ed50.patch | 36 +++++++++++++++++++ pkgs/tools/networking/eggdrop/default.nix | 5 +++ 2 files changed, 41 insertions(+) create mode 100644 pkgs/tools/networking/eggdrop/b34a33255f56bbd2317c26da12d702796d67ed50.patch diff --git a/pkgs/tools/networking/eggdrop/b34a33255f56bbd2317c26da12d702796d67ed50.patch b/pkgs/tools/networking/eggdrop/b34a33255f56bbd2317c26da12d702796d67ed50.patch new file mode 100644 index 00000000000..03277838e88 --- /dev/null +++ b/pkgs/tools/networking/eggdrop/b34a33255f56bbd2317c26da12d702796d67ed50.patch @@ -0,0 +1,36 @@ +From b34a33255f56bbd2317c26da12d702796d67ed50 Mon Sep 17 00:00:00 2001 +From: Geo Van Osterom +Date: Thu, 22 Oct 2015 00:12:42 -0400 +Subject: [PATCH] Fix gcc 5 compile errors + +--- + src/net.c | 2 +- + src/tclhash.c | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/src/net.c b/src/net.c +index a1937de..c369fda 100644 +--- a/src/net.c ++++ b/src/net.c +@@ -560,7 +560,7 @@ int open_address_listen(sockname_t *addr) + /* Returns a socket number for a listening socket that will accept any + * connection -- port # is returned in port + */ +-inline int open_listen(int *port) ++extern inline int open_listen(int *port) + { + int sock; + sockname_t name; +diff --git a/src/tclhash.c b/src/tclhash.c +index 9729acb..22c3d05 100644 +--- a/src/tclhash.c ++++ b/src/tclhash.c +@@ -113,7 +113,7 @@ static inline void tcl_bind_list_delete(tcl_bind_list_t *tl) + nfree(tl); + } + +-inline void garbage_collect_tclhash(void) ++extern inline void garbage_collect_tclhash(void) + { + tcl_bind_list_t *tl, *tl_next, *tl_prev; + tcl_bind_mask_t *tm, *tm_next, *tm_prev; diff --git a/pkgs/tools/networking/eggdrop/default.nix b/pkgs/tools/networking/eggdrop/default.nix index cf7fb20df68..623b42d6fc1 100644 --- a/pkgs/tools/networking/eggdrop/default.nix +++ b/pkgs/tools/networking/eggdrop/default.nix @@ -11,6 +11,11 @@ stdenv.mkDerivation rec { buildInputs = [ tcl ]; + patches = [ + # https://github.com/eggheads/eggdrop/issues/123 + ./b34a33255f56bbd2317c26da12d702796d67ed50.patch + ]; + preConfigure = '' prefix=$out/eggdrop mkdir -p $prefix From 83f37b8d10f83542b4b9fb596c930e28b8bfd735 Mon Sep 17 00:00:00 2001 From: NeQuissimus Date: Fri, 25 Mar 2016 15:07:06 -0400 Subject: [PATCH 561/678] oh-my-zsh: 2016-03-19 -> 2016-03-24 --- pkgs/shells/oh-my-zsh/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/shells/oh-my-zsh/default.nix b/pkgs/shells/oh-my-zsh/default.nix index e8c0aef8c78..a7e57b145d6 100644 --- a/pkgs/shells/oh-my-zsh/default.nix +++ b/pkgs/shells/oh-my-zsh/default.nix @@ -7,12 +7,12 @@ stdenv.mkDerivation rec { name = "oh-my-zsh-git-${version}"; - version = "2016-03-19"; + version = "2016-03-24"; src = fetchgit { url = "https://github.com/robbyrussell/oh-my-zsh"; - rev = "8ac1859f377b5292597f11f5973bae1ebc8e2dce"; - sha256 = "1zq3rps1jqw1gmhqsmcz38c0c1mk5d3z3n8m34v8k5zsfh5y4bha"; + rev = "9280f2c874b1126ee9399c353d1e0184fd39b4e4"; + sha256 = "1rldqfs5vkqxp3r7nn5q1837a363gml0d5pji0zkl7ia49f7bdnk"; }; phases = "installPhase"; From 45a2d9e177737aff5fae21854c5420804a59743b Mon Sep 17 00:00:00 2001 From: Cole Mickens Date: Fri, 25 Mar 2016 14:31:21 -0700 Subject: [PATCH 562/678] python.pyjwt: platforms: linux -> unix --- pkgs/top-level/python-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ff991be6dd7..88c238ef8b4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -17165,7 +17165,7 @@ in modules // { downloadPage = https://github.com/progrium/pyjwt/releases; license = licenses.mit; maintainers = with maintainers; [ prikhi ]; - platforms = platforms.linux; + platforms = platforms.unix; }; }; From ec4685cf709ed10727f92bc30182f5c145e3f6bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 26 Mar 2016 08:26:45 +0100 Subject: [PATCH 563/678] firefox-esr: fix build after 574a6d34d2 We're now using only newer versions that have ./configure in the root. ${pname} isn't the correct directory name for esr versions. --- pkgs/applications/networking/browsers/firefox/default.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox/default.nix b/pkgs/applications/networking/browsers/firefox/default.nix index 9089af711b7..41f8cc155a8 100644 --- a/pkgs/applications/networking/browsers/firefox/default.nix +++ b/pkgs/applications/networking/browsers/firefox/default.nix @@ -81,13 +81,9 @@ common = { pname, version, sha256 }: stdenv.mkDerivation rec { preConfigure = '' + configureScript="$(realpath ./configure)" mkdir ../objdir cd ../objdir - if [ -e ../${pname}-${version} ]; then - configureScript=../${pname}-${version}/configure - else - configureScript=../mozilla-*/configure - fi ''; preInstall = From 013f808a069291e08bb446e2de87882aa00c5945 Mon Sep 17 00:00:00 2001 From: "Bruno Bzeznik Bruno.Bzeznik@imag.fr" Date: Fri, 25 Mar 2016 15:09:51 +0100 Subject: [PATCH 564/678] netcdf-fortran: init at 4.4.3 --- .../libraries/netcdf-fortran/default.nix | 20 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 22 insertions(+) create mode 100644 pkgs/development/libraries/netcdf-fortran/default.nix diff --git a/pkgs/development/libraries/netcdf-fortran/default.nix b/pkgs/development/libraries/netcdf-fortran/default.nix new file mode 100644 index 00000000000..e7215555475 --- /dev/null +++ b/pkgs/development/libraries/netcdf-fortran/default.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchurl, netcdf, hdf5, curl, gfortran }: +stdenv.mkDerivation rec { + name = "netcdf-fortran-${version}"; + version = "4.4.3"; + + src = fetchurl { + url = "https://github.com/Unidata/netcdf-fortran/archive/v${version}.tar.gz"; + sha256 = "4170fc018c9ee8222e317215c6a273542623185f5f6ee00d37bbb4e024e4e998"; + }; + + buildInputs = [ netcdf hdf5 curl gfortran ]; + doCheck = true; + + meta = { + description = "Fortran API to manipulate netcdf files"; + homepage = "http://www.unidata.ucar.edu/software/netcdf/"; + license = stdenv.lib.licenses.free; + maintainers = stdenv.lib.maintainers.bzizou; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1c0222dae43..927a0db9ab1 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2386,6 +2386,8 @@ in netcdfcxx4 = callPackage ../development/libraries/netcdf-cxx4 { }; + netcdffortran = callPackage ../development/libraries/netcdf-fortran { }; + nco = callPackage ../development/libraries/nco { }; nc6 = callPackage ../tools/networking/nc6 { }; From 0f5db56b0bdc3ee1d53b482960042edd11fa2c4d Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 24 Mar 2016 12:28:32 +0100 Subject: [PATCH 565/678] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20160308-3-g8057d11-dirty using the following inputs: - Nixpkgs: https://github.com/NixOS/nixpkgs/commit/840709b4a328998017b85479a9fce233d486c180 - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/ab666959f09636bea6aa2b57a3941cfd3c211471 - LTS Haskell: https://github.com/fpco/lts-haskell/commit/6c45757bda6547fb7bb847982c4b50b41bc31c07 - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/d8a2cae77932579034f28ce11e4bfed4db1aa65a --- pkgs/development/haskell-modules/hackage-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 6e24fb903e2..2182469ef2d 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -18788,6 +18788,7 @@ self: { homepage = "http://github.com/aelve/Spock-lucid"; description = "Lucid support for Spock"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Spock-worker_0_2_1_3" = callPackage @@ -20044,6 +20045,7 @@ self: { homepage = "http://github.com/grwlf/vkhs"; description = "Provides access to Vkontakte social network via public API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Validation" = callPackage @@ -170097,6 +170099,7 @@ self: { testHaskellDepends = [ base Cabal HUnit ]; description = "Generate PureScript data types from Haskell data types"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "purescript-bundle-fast" = callPackage From ce2c13675d2bba293278373ca793a8c6eca4e197 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 24 Mar 2016 12:26:56 +0100 Subject: [PATCH 566/678] configuration-hackage2nix.yaml: update list of broken packages --- .../haskell-modules/configuration-hackage2nix.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index 74cab1ec9e9..ecfc08b1d39 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -935,6 +935,7 @@ dont-distribute-packages: distributed-process-lifted: [ i686-linux, x86_64-darwin, x86_64-linux ] distributed-process-platform: [ i686-linux, x86_64-darwin, x86_64-linux ] distributed-process-registry: [ x86_64-darwin ] + distributed-process-registry: [ x86_64-darwin ] distributed-process-registry: [ x86_64-linux ] distributed-process-supervisor: [ x86_64-darwin ] distributed-process-task: [ x86_64-darwin ] @@ -3051,6 +3052,7 @@ dont-distribute-packages: punkt: [ i686-linux, x86_64-darwin, x86_64-linux ] Pup-Events-Demo: [ i686-linux, x86_64-darwin, x86_64-linux ] puppetresources: [ i686-linux, x86_64-darwin, x86_64-linux ] + purescript-bridge: [ x86_64-darwin ] push-notify-ccs: [ i686-linux, x86_64-darwin, x86_64-linux ] push-notify-general: [ i686-linux, x86_64-darwin, x86_64-linux ] push-notify: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3495,6 +3497,7 @@ dont-distribute-packages: split-record: [ i686-linux, x86_64-darwin, x86_64-linux ] Spock-auth: [ i686-linux, x86_64-darwin, x86_64-linux ] Spock-digestive: [ x86_64-darwin ] + Spock-lucid: [ x86_64-darwin ] Spock-worker: [ x86_64-darwin ] Spock: [ x86_64-darwin ] spoonutil: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3874,6 +3877,7 @@ dont-distribute-packages: visual-prof: [ i686-linux, x86_64-darwin, x86_64-linux ] vivid: [ i686-linux, x86_64-darwin, x86_64-linux ] vk-aws-route53: [ i686-linux, x86_64-darwin, x86_64-linux ] + VKHS: [ i686-linux, x86_64-darwin, x86_64-linux ] vowpal-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] voyeur: [ i686-linux, x86_64-linux ] vrpn: [ x86_64-darwin ] From 1f78d14028a653829d6acca207a8ad3a8ae9520e Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 26 Mar 2016 13:18:48 +0100 Subject: [PATCH 567/678] curl3: mark as broken This is an ancient version of curl, that currently has 19 known vulnerabilities. It is used by and was added to support only one package. --- pkgs/tools/networking/curl/7.15.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/networking/curl/7.15.nix b/pkgs/tools/networking/curl/7.15.nix index 356c9b4f32d..56046d5423d 100644 --- a/pkgs/tools/networking/curl/7.15.nix +++ b/pkgs/tools/networking/curl/7.15.nix @@ -74,5 +74,6 @@ stdenv.mkDerivation rec { homepage = "http://curl.haxx.se/"; description = "A command line tool for transferring files with URL syntax"; platforms = with stdenv.lib.platforms; allBut darwin; + broken = true; }; } From 1379baca94f3a14231811705ee7fb309571bad2b Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 26 Mar 2016 13:20:37 +0100 Subject: [PATCH 568/678] gsb: mark as broken No active maintenance for several years; dependencies cannot be met. --- pkgs/games/gsb/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/games/gsb/default.nix b/pkgs/games/gsb/default.nix index 4c1a385baaf..1c8f0334bf1 100644 --- a/pkgs/games/gsb/default.nix +++ b/pkgs/games/gsb/default.nix @@ -69,6 +69,7 @@ stdenv.mkDerivation rec { license = licenses.unfree; maintainers = with maintainers; [ jcumming ]; platforms = [ "x86_64-linux" "i686-linux" ] ; + broken = true; }; } From c53a762b7e6c79393b80d912320cefa4181549df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Sat, 26 Mar 2016 11:02:33 -0300 Subject: [PATCH 569/678] evince: add shared_mime_info dir to XDG_DATA_DIRS env variable --- pkgs/desktops/gnome-3/3.18/core/evince/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/desktops/gnome-3/3.18/core/evince/default.nix b/pkgs/desktops/gnome-3/3.18/core/evince/default.nix index 3229d10104d..d0857a1d32a 100644 --- a/pkgs/desktops/gnome-3/3.18/core/evince/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/evince/default.nix @@ -39,6 +39,10 @@ stdenv.mkDerivation rec { sed -i 's/\(if (++n_items == \)5\(.*\)/\1${builtins.toString recentListSize}\2/' shell/ev-window.c ''; + preFixup = '' + gappsWrapperArgs+=(--prefix XDG_DATA_DIRS : "${shared_mime_info}/share") + ''; + doCheck = false; # would need pythonPackages.dogTail, which is missing meta = with stdenv.lib; { From f273dd226c89027cf4c04aaa1bd90ddea9573c89 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 26 Mar 2016 11:43:52 +0300 Subject: [PATCH 570/678] swarm: init at 3.1 --- .../tools/analysis/swarm/default.nix | 30 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 32 insertions(+) create mode 100644 pkgs/development/tools/analysis/swarm/default.nix diff --git a/pkgs/development/tools/analysis/swarm/default.nix b/pkgs/development/tools/analysis/swarm/default.nix new file mode 100644 index 00000000000..a67d9b8d42e --- /dev/null +++ b/pkgs/development/tools/analysis/swarm/default.nix @@ -0,0 +1,30 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + name = "swarm-${version}"; + version = "3.1"; + + src = fetchurl { + url = "http://www.spinroot.com/swarm/swarm${version}.tar"; + sha256 = "12hi6wy0v0jfbrmgfxpnz7vxfzz3g1c6z7dj8p8kc2nm0q5bii47"; + }; + + sourceRoot = "."; + + buildPhase = '' + gcc -O2 -lm swarm.c -o swarm + ''; + + installPhase = '' + install -Dm755 swarm $out/bin/swarm + install -Dm644 swarm.1 $out/share/man/man1/swarm.1 + ''; + + meta = with stdenv.lib; { + description = "Verification script generator for Spin"; + homepage = http://spinroot.com/; + license = licenses.free; + platforms = platforms.linux; + maintainers = with maintainers; [ abbradar ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 927a0db9ab1..7f0ab25e92e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6161,6 +6161,8 @@ in strace = callPackage ../development/tools/misc/strace { }; + swarm = callPackage ../development/tools/analysis/swarm { }; + swig1 = callPackage ../development/tools/misc/swig { }; swig2 = callPackage ../development/tools/misc/swig/2.x.nix { }; swig3 = callPackage ../development/tools/misc/swig/3.x.nix { }; From ef06c7db8f0f64d856c6cc641344036a1fcd7952 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 26 Mar 2016 11:44:09 +0300 Subject: [PATCH 571/678] spin: add ispin with tools --- pkgs/development/tools/analysis/spin/default.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/analysis/spin/default.nix b/pkgs/development/tools/analysis/spin/default.nix index ab9954735f3..6da6bd4b4f9 100644 --- a/pkgs/development/tools/analysis/spin/default.nix +++ b/pkgs/development/tools/analysis/spin/default.nix @@ -1,7 +1,9 @@ -{ stdenv, fetchurl, makeWrapper, yacc, gcc }: +{ stdenv, lib, fetchurl, makeWrapper, yacc, gcc +, withISpin ? true, tk, swarm, graphviz }: let binPath = stdenv.lib.makeBinPath [ gcc ]; + ibinPath = stdenv.lib.makeBinPath [ gcc tk swarm graphviz tk ]; in stdenv.mkDerivation rec { name = "spin-${version}"; @@ -22,9 +24,13 @@ in stdenv.mkDerivation rec { sourceRoot = "Spin/Src${version}"; installPhase = '' - install -D spin $out/bin/spin + install -Dm755 spin $out/bin/spin wrapProgram $out/bin/spin \ --prefix PATH : ${binPath} + '' + lib.optionalString withISpin '' + install -Dm755 ../iSpin/ispin.tcl $out/bin/ispin + wrapProgram $out/bin/ispin \ + --prefix PATH ':' "$out/bin:${ibinPath}" ''; meta = with stdenv.lib; { From e781a8257b4312f6b138c7d0511c77d8c06ed819 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 26 Mar 2016 17:01:22 +0300 Subject: [PATCH 572/678] ffmpeg: add libopus support --- pkgs/development/libraries/ffmpeg/generic.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/ffmpeg/generic.nix b/pkgs/development/libraries/ffmpeg/generic.nix index 1113db5c136..52273857fe9 100644 --- a/pkgs/development/libraries/ffmpeg/generic.nix +++ b/pkgs/development/libraries/ffmpeg/generic.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, pkgconfig, perl, texinfo, yasm , alsaLib, bzip2, fontconfig, freetype, gnutls, libiconv, lame, libass, libogg , libtheora, libva, libvdpau, libvorbis, libvpx, lzma, libpulseaudio, SDL, soxr -, x264, xvidcore, zlib +, x264, xvidcore, zlib, libopus , openglSupport ? false, mesa ? null # Build options , runtimeCpuDetectBuild ? true # Detect CPU capabilities at runtime @@ -126,6 +126,7 @@ stdenv.mkDerivation rec { "--enable-libx264" "--enable-libxvid" "--enable-zlib" + (ifMinVer "2.8" "--enable-libopus") # Developer flags (enableFeature debugDeveloper "debug") (enableFeature optimizationsDeveloper "optimizations") @@ -139,7 +140,7 @@ stdenv.mkDerivation rec { buildInputs = [ bzip2 fontconfig freetype gnutls libiconv lame libass libogg libtheora - libvdpau libvorbis lzma SDL soxr x264 xvidcore zlib + libvdpau libvorbis lzma SDL soxr x264 xvidcore zlib libopus ] ++ optional openglSupport mesa ++ optionals (!isDarwin) [ libvpx libpulseaudio ] # Need to be fixed on Darwin ++ optional (isLinux || isFreeBSD) libva From 6448c94e5789a108dc9e9c5f6e5d67669dcf27c3 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 26 Mar 2016 14:56:06 +0100 Subject: [PATCH 573/678] leocad: work around cmath problem introduced by recent glibc https://hydra.nixos.org/build/33610365/nixlog/1/raw --- pkgs/applications/graphics/leocad/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/graphics/leocad/default.nix b/pkgs/applications/graphics/leocad/default.nix index eaaf047c9bb..9ca9c592102 100644 --- a/pkgs/applications/graphics/leocad/default.nix +++ b/pkgs/applications/graphics/leocad/default.nix @@ -16,8 +16,11 @@ stdenv.mkDerivation rec { buildInputs = [ qt4 zlib ]; - prefixKey="INSTALL_PREFIX="; + prefixKey = "INSTALL_PREFIX="; configureScript = "qmake leocad.pro"; + postPatch = '' + substituteInPlace common/camera.cpp --replace "isnan(" "std::isnan(" + ''; meta = with stdenv.lib; { description = "CAD program for creating virtual LEGO models"; From 3fe86ac5821aa4fadbfc6a41c5cde24273491e27 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 26 Mar 2016 15:39:20 +0100 Subject: [PATCH 574/678] io: fix gcc5 build c11 inline semantics breaks the build See https://github.com/stevedekorte/io/issues/316 and https://hydra.nixos.org/build/33606216/nixlog/1/raw --- pkgs/development/interpreters/io/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/interpreters/io/default.nix b/pkgs/development/interpreters/io/default.nix index f4854c237bd..4f4880aaca7 100644 --- a/pkgs/development/interpreters/io/default.nix +++ b/pkgs/development/interpreters/io/default.nix @@ -18,7 +18,8 @@ stdenv.mkDerivation { freeglut libsamplerate pcre libevent libedit yajl ]; - cmakeFlags = [ "-DCMAKE_BUILD_TYPE=release" ]; + # for gcc5; c11 inline semantics breaks the build + NIX_CFLAGS_COMPILE = "-fgnu89-inline"; meta = { description = "Io programming language"; From a4ed0524076c620aa6fc8224ef08360ab72c2ee4 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 26 Mar 2016 15:46:28 +0100 Subject: [PATCH 575/678] zoom: fix gcc5 build https://hydra.nixos.org/build/33122239/nixlog/1/raw --- pkgs/games/zoom/default.nix | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/pkgs/games/zoom/default.nix b/pkgs/games/zoom/default.nix index 200b9c24c7d..d6e79289525 100644 --- a/pkgs/games/zoom/default.nix +++ b/pkgs/games/zoom/default.nix @@ -2,21 +2,26 @@ # !!! assert freetype == xorg.freetype -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "zoom-1.1.5"; src = fetchurl { - url = http://www.logicalshift.co.uk/unix/zoom/zoom-1.1.5.tar.gz; + url = "http://www.logicalshift.co.uk/unix/zoom/${name}.tar.gz"; sha256 = "1g6van7f7sg3zfcz80mncnnbccyg2hnm0hq4x558vpsm0lf7z5pj"; }; buildInputs = [ perl expat xlibsWrapper freetype ]; - # Zoom doesn't add the right directory in the include path. - CFLAGS = [ "-I" (freetype + "/include/freetype2") ]; + NIX_CFLAGS_COMPILE = [ + # Zoom doesn't add the right directory in the include path. + "-I" (freetype + "/include/freetype2") + + # for gcc5; c11 inline semantics breaks the build + "-fgnu89-inline" + ]; meta = with stdenv.lib; { - description = "Player for Z-Code, TADS and HUGO stories or games, usually text adventures ('interactive fiction')"; + description = "Player for Z-Code, TADS and HUGO stories or games"; longDescription = '' Zoom is a player for Z-Code, TADS and HUGO stories or games. These are usually text adventures ('interactive fiction'), and were first created From 0b060bdf68d41210d99593fe80f7148c0446244f Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 26 Mar 2016 15:49:28 +0100 Subject: [PATCH 576/678] yad: fix gcc5 build https://hydra.nixos.org/build/33612450/nixlog/1/raw --- pkgs/tools/misc/yad/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/tools/misc/yad/default.nix b/pkgs/tools/misc/yad/default.nix index d884d48f521..d874d9b4b14 100644 --- a/pkgs/tools/misc/yad/default.nix +++ b/pkgs/tools/misc/yad/default.nix @@ -13,6 +13,9 @@ stdenv.mkDerivation rec { "--enable-icon-browser" ]; + # for gcc5: c11 inline semantics breaks the build + NIX_CFLAGS_COMPILE = "-fgnu89-inline"; + buildInputs = [ gtk2 ]; nativeBuildInputs = [ pkgconfig intltool ]; From cb896a1e7f64697639a9cbfa05f9d05232573454 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 26 Mar 2016 15:54:07 +0100 Subject: [PATCH 577/678] yad: ad-hoc patching to fix undefined reference errors --- pkgs/tools/misc/yad/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/tools/misc/yad/default.nix b/pkgs/tools/misc/yad/default.nix index d874d9b4b14..2c8660a4913 100644 --- a/pkgs/tools/misc/yad/default.nix +++ b/pkgs/tools/misc/yad/default.nix @@ -20,6 +20,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig intltool ]; + postPatch = '' + sed -i src/file.c -e '21i#include ' + sed -i src/form.c -e '21i#include ' + ''; + preFixup = "rm $out/share/icons/hicolor/icon-theme.cache"; meta = { From 29c3314fe4d547f5f21e228a26d41e6aa1db45a4 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 26 Mar 2016 16:14:38 +0100 Subject: [PATCH 578/678] hugin: add missing dependencies https://hydra.nixos.org/build/33609995/nixlog/2/raw --- pkgs/applications/graphics/hugin/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/hugin/default.nix b/pkgs/applications/graphics/hugin/default.nix index 97181cb0d1b..338b3cf0f97 100644 --- a/pkgs/applications/graphics/hugin/default.nix +++ b/pkgs/applications/graphics/hugin/default.nix @@ -1,6 +1,6 @@ { stdenv, cmake, fetchurl, gnumake, pkgconfig, makeWrapper , boost, gettext, tclap, wxGTK -, freeglut, glew, libXi, libXmu, mesa +, freeglut, glew, libX11, libXi, libXmu, mesa, cairo , autopanosiftc, enblend-enfuse, exiv2, fftw, ilmbase, lensfun, libpng, libtiff , openexr, panotools, perlPackages, sqlite, vigra }: @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { NIX_CFLAGS_COMPILE = "-I${ilmbase}/include/OpenEXR"; buildInputs = [ boost gettext tclap wxGTK - freeglut glew libXi libXmu mesa + freeglut glew libX11 libXi libXmu mesa cairo exiv2 fftw ilmbase lensfun libtiff libpng openexr panotools sqlite vigra perlPackages.ImageExifTool makeWrapper From c13ddd14bda4905bb9eebff5ab30c10516869baf Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 26 Mar 2016 16:47:46 +0100 Subject: [PATCH 579/678] udftools: fix gcc5 build -fgnu89-inline was insufficient, revert to -std=gnu90 See https://hydra.nixos.org/build/33103604/nixlog/1/raw Also fix various undefined reference errors by ad-hoc patching --- pkgs/tools/filesystems/udftools/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/tools/filesystems/udftools/default.nix b/pkgs/tools/filesystems/udftools/default.nix index 329950f8969..7cb924c6cf1 100644 --- a/pkgs/tools/filesystems/udftools/default.nix +++ b/pkgs/tools/filesystems/udftools/default.nix @@ -10,9 +10,15 @@ stdenv.mkDerivation rec { buildInputs = [ ncurses readline ]; + NIX_CFLAGS_COMPILE = "-std=gnu90"; + preConfigure = '' sed -e '1i#include ' -i cdrwtool/cdrwtool.c -i pktsetup/pktsetup.c sed -e 's@[(]char[*][)]spm [+]=@spm = ((char*) spm) + @' -i wrudf/wrudf.c + sed -e '27i#include ' -i include/udf_endian.h + sed -e '38i#include ' -i wrudf/wrudf-cdrw.c + sed -e '12i#include ' -i wrudf/wrudf-cdr.c + sed -e '37i#include ' -i wrudf/ide-pc.c ''; meta = with stdenv.lib; { From a366aab37738e38ee960c89a02bb54b971a86dcf Mon Sep 17 00:00:00 2001 From: Eike Kettner Date: Sat, 26 Mar 2016 16:57:34 +0100 Subject: [PATCH 580/678] makemkv 1.9.7 -> 1.9.9 --- pkgs/applications/video/makemkv/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/video/makemkv/default.nix b/pkgs/applications/video/makemkv/default.nix index b65dfe921c4..30fd9a57c4b 100644 --- a/pkgs/applications/video/makemkv/default.nix +++ b/pkgs/applications/video/makemkv/default.nix @@ -4,17 +4,17 @@ stdenv.mkDerivation rec { name = "makemkv-${ver}"; - ver = "1.9.7"; + ver = "1.9.9"; builder = ./builder.sh; src_bin = fetchurl { url = "http://www.makemkv.com/download/makemkv-bin-${ver}.tar.gz"; - sha256 = "1b1kdfs89ms2vyi4406ydw01py0mvvij01rx9anblgy10bc0yvfy"; + sha256 = "1rsmsfyxjh18bdj93gy7whm4j6k1098zfak8napxsqfli7dyijb6"; }; src_oss = fetchurl { url = "http://www.makemkv.com/download/makemkv-oss-${ver}.tar.gz"; - sha256 = "169fl1v3i133ihldyfq3akj3x30qsxndw7q52vv90gmn5r52bzb9"; + sha256 = "070x8l88nv70abd9gy8jchs09mh09x6psjc0zs4vplk61cbqk3b0"; }; buildInputs = [openssl qt4 mesa zlib pkgconfig libav]; From 89c6b3c11ad68c226d2a388a154cb616b42a9bc3 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 26 Mar 2016 18:01:30 +0100 Subject: [PATCH 581/678] perf: fix build https://hydra.nixos.org/build/33553564/nixlog/1/raw --- pkgs/os-specific/linux/kernel/perf.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/kernel/perf.nix b/pkgs/os-specific/linux/kernel/perf.nix index 1e5c64ccb8a..ad80d2ed93c 100644 --- a/pkgs/os-specific/linux/kernel/perf.nix +++ b/pkgs/os-specific/linux/kernel/perf.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation { # Note: we don't add elfutils to buildInputs, since it provides a # bad `ld' and other stuff. - NIX_CFLAGS_COMPILE = "-I${elfutils}/include -Wno-error=cpp"; + NIX_CFLAGS_COMPILE = "-I${elfutils}/include -Wno-error=cpp -Wno-error=bool-compare"; NIX_CFLAGS_LINK = "-L${elfutils}/lib"; installFlags = "install install-man ASCIIDOC8=1"; From 387e15764b5de8d26b0130c20b995755631eaf3a Mon Sep 17 00:00:00 2001 From: Patrick Callahan Date: Mon, 22 Feb 2016 12:53:14 -0700 Subject: [PATCH 582/678] genromfs: init at 0.5.2 --- pkgs/tools/filesystems/genromfs/default.nix | 23 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 25 insertions(+) create mode 100644 pkgs/tools/filesystems/genromfs/default.nix diff --git a/pkgs/tools/filesystems/genromfs/default.nix b/pkgs/tools/filesystems/genromfs/default.nix new file mode 100644 index 00000000000..db1968fccdc --- /dev/null +++ b/pkgs/tools/filesystems/genromfs/default.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + version = "0.5.2"; + name = "genromfs-${version}"; + + src = fetchurl { + url = "mirror://sourceforge/romfs/genromfs/${version}/${name}.tar.gz"; + sha256 = "0q6rpq7cmclmb4ayfyknvzbqysxs4fy8aiahlax1sb2p6k3pzwrh"; + }; + + postPatch = '' + substituteInPlace Makefile --replace "prefix = /usr" "prefix = $out" + ''; + + meta = with stdenv.lib; { + homepage = "http://romfs.sourceforge.net/"; + description = "Tool for creating romfs file system images"; + license = licenses.gpl2; + maintainers = with maintainers; [ pxc ]; + platforms = platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7f0ab25e92e..19ffb049346 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -757,6 +757,8 @@ in gencfsm = callPackage ../tools/security/gencfsm { }; + genromfs = callPackage ../tools/filesystems/genromfs { }; + gist = callPackage ../tools/text/gist { }; gmic = callPackage ../tools/graphics/gmic { }; From 7a3e154c27b5df288ddd3f428adc1e1030fcf88c Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sat, 26 Mar 2016 17:38:50 +0000 Subject: [PATCH 583/678] osrm-backend: add patch fixing build by un-hard-coding gcc-ar and gcc-ranlib paths --- .../servers/osrm-backend/4.5.0-gcc-binutils.patch | 15 +++++++++++++++ pkgs/servers/osrm-backend/default.nix | 1 + 2 files changed, 16 insertions(+) create mode 100644 pkgs/servers/osrm-backend/4.5.0-gcc-binutils.patch diff --git a/pkgs/servers/osrm-backend/4.5.0-gcc-binutils.patch b/pkgs/servers/osrm-backend/4.5.0-gcc-binutils.patch new file mode 100644 index 00000000000..87b9b9501c4 --- /dev/null +++ b/pkgs/servers/osrm-backend/4.5.0-gcc-binutils.patch @@ -0,0 +1,15 @@ +diff --git a/CMakeLists.txt b/CMakeLists.txt +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -127,8 +127,9 @@ if(CMAKE_BUILD_TYPE MATCHES Release) + if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" AND + NOT "${CMAKE_CXX_COMPILER_VERSION}" VERSION_LESS "4.9.0" AND NOT MINGW) + message(STATUS "Using gcc specific binutils for LTO.") +- set(CMAKE_AR "/usr/bin/gcc-ar") +- set(CMAKE_RANLIB "/usr/bin/gcc-ranlib") ++ # Just let PATH do its job ++ set(CMAKE_AR "gcc-ar") ++ set(CMAKE_RANLIB "gcc-ranlib") + endif() + endif (HAS_LTO_FLAG) + endif() diff --git a/pkgs/servers/osrm-backend/default.nix b/pkgs/servers/osrm-backend/default.nix index 3e9e2158524..43db076b2a9 100644 --- a/pkgs/servers/osrm-backend/default.nix +++ b/pkgs/servers/osrm-backend/default.nix @@ -10,6 +10,7 @@ stdenv.mkDerivation rec { patches = [ ./4.5.0-openmp.patch + ./4.5.0-gcc-binutils.patch (substituteAll { src = ./4.5.0-default-profile-path.template.patch; }) From 0fdf7106e5db0ff9fdfcf46bcfae81bfb581df84 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sat, 26 Mar 2016 18:07:55 +0000 Subject: [PATCH 584/678] osrm-backend: switch src to use fetchFromGitHub --- pkgs/servers/osrm-backend/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/servers/osrm-backend/default.nix b/pkgs/servers/osrm-backend/default.nix index 43db076b2a9..9c1dd23b39f 100644 --- a/pkgs/servers/osrm-backend/default.nix +++ b/pkgs/servers/osrm-backend/default.nix @@ -1,11 +1,13 @@ -{stdenv, fetchurl, cmake, luabind, libosmpbf, stxxl, tbb, boost, expat, protobuf, bzip2, zlib, substituteAll}: +{stdenv, fetchFromGitHub, cmake, luabind, libosmpbf, stxxl, tbb, boost, expat, protobuf, bzip2, zlib, substituteAll}: stdenv.mkDerivation rec { name = "osrm-backend-4.5.0"; - src = fetchurl { - url = "https://github.com/Project-OSRM/osrm-backend/archive/v4.5.0.tar.gz"; - sha256 = "af61e883051f2ecb73520ace6f17cc6da30edc413208ff7cf3d87992eca0756c"; + src = fetchFromGitHub { + rev = "v4.5.0"; + owner = "Project-OSRM"; + repo = "osrm-backend"; + sha256 = "19a8d1llvsrysyk1q48dpmh75qcbibfjlszndrysk11yh62hdvsz"; }; patches = [ From 8f5db83d9931900974f000288c0571928c5e2ead Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 26 Mar 2016 19:19:47 +0100 Subject: [PATCH 585/678] rtl8723bs: only works with kernel 3.19 and later See e.g., https://hydra.nixos.org/build/33512583/nixlog/1/raw --- pkgs/os-specific/linux/rtl8723bs/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/os-specific/linux/rtl8723bs/default.nix b/pkgs/os-specific/linux/rtl8723bs/default.nix index 1739ac1faa7..6d55c5522f4 100644 --- a/pkgs/os-specific/linux/rtl8723bs/default.nix +++ b/pkgs/os-specific/linux/rtl8723bs/default.nix @@ -31,5 +31,6 @@ stdenv.mkDerivation rec { homepage = "https://github.com/hadess/rtl8723bs"; license = stdenv.lib.licenses.gpl2; platforms = [ "x86_64-linux" "i686-linux" ]; + broken = !stdenv.lib.versionAtLeast kernel.version "3.19"; }; } From 74838cd03da1e8b8da4825fcac5717e43f2ed166 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 26 Mar 2016 20:14:43 +0100 Subject: [PATCH 586/678] accelio: kernel 4.2 is the most recent supported kernel All Hydra builds on more recent kernels fail; from reading the accelio documentation, I get the impression that 4.2 is the most recent supported kernel version. --- pkgs/development/libraries/accelio/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/libraries/accelio/default.nix b/pkgs/development/libraries/accelio/default.nix index 637976977b1..8aa2dc6bb79 100644 --- a/pkgs/development/libraries/accelio/default.nix +++ b/pkgs/development/libraries/accelio/default.nix @@ -55,5 +55,7 @@ stdenv.mkDerivation rec { license = licenses.bsd3; platforms = with platforms; linux ++ freebsd; maintainers = with maintainers; [ wkennington ]; + # kernel 4.2 is the most recent supported kernel + broken = kernel != null && builtins.compareVersions kernel.version "4.2" == 1; }; } From eeca73dfaca3d02996c0baf90f6f022ec93330e8 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 26 Mar 2016 20:22:50 +0100 Subject: [PATCH 587/678] jool: mark broken for kernel versions > 4.3 All hydra builds for kernel version >4.3 fail; the build failure indicates changes to the kernel API used by the package. --- pkgs/os-specific/linux/jool/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/os-specific/linux/jool/default.nix b/pkgs/os-specific/linux/jool/default.nix index fdb2f041a65..389dcc22053 100644 --- a/pkgs/os-specific/linux/jool/default.nix +++ b/pkgs/os-specific/linux/jool/default.nix @@ -26,5 +26,7 @@ stdenv.mkDerivation { description = "Fairly compliant SIIT and Stateful NAT64 for Linux - kernel modules"; platforms = platforms.linux; maintainers = with maintainers; [ fpletz ]; + # kernel version 4.3 is the most recent supported version + broken = builtins.compareVersions kernel.version "4.3" == 1; }; } From 304c4a514e187fdd05d9d70707f5fd58176c6561 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 26 Mar 2016 21:00:04 +0100 Subject: [PATCH 588/678] grsecurity: fix gcc plugin Also needs mpfr and libmpc --- pkgs/build-support/grsecurity/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/build-support/grsecurity/default.nix b/pkgs/build-support/grsecurity/default.nix index 841effcfca1..fc4d1a26d7a 100644 --- a/pkgs/build-support/grsecurity/default.nix +++ b/pkgs/build-support/grsecurity/default.nix @@ -123,12 +123,14 @@ let grsecurityOverrider = args: grkern: { # Apparently as of gcc 4.6, gcc-plugin headers (which are needed by PaX plugins) # include libgmp headers, so we need these extra tweaks - buildInputs = args.buildInputs ++ [ pkgs.gmp ]; + # As of gcc5 we also need libmpc + buildInputs = args.buildInputs ++ [ pkgs.gmp pkgs.libmpc pkgs.mpfr ]; preConfigure = '' + extraIncludes="-I${pkgs.gmp}/include -I${pkgs.libmpc}/include -I${pkgs.mpfr}/include" ${args.preConfigure or ""} - sed -i 's|-I|-I${pkgs.gmp}/include -I|' scripts/gcc-plugin.sh - sed -i 's|HOST_EXTRACFLAGS +=|HOST_EXTRACFLAGS += -I${pkgs.gmp}/include|' tools/gcc/Makefile - sed -i 's|HOST_EXTRACXXFLAGS +=|HOST_EXTRACXXFLAGS += -I${pkgs.gmp}/include|' tools/gcc/Makefile + sed -i "s|-I|$extraIncludes -I|" scripts/gcc-plugin.sh + sed -i "s|HOST_EXTRACFLAGS +=|HOST_EXTRACFLAGS += $extraIncludes|" tools/gcc/Makefile + sed -i "s|HOST_EXTRACXXFLAGS +=|HOST_EXTRACXXFLAGS += $extraIncludes|" tools/gcc/Makefile rm localversion-grsec echo ${localver grkern} > localversion-grsec ''; From f95572829527061f7cc4eb1f142e0de3acce87fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Wed, 23 Mar 2016 15:41:13 +0000 Subject: [PATCH 589/678] openimageio: 1.6.9 -> 1.6.11 (fixes build on i686) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit b5d47a8cfe359fd0a6e10c85a7e7622b24173ce9) Signed-off-by: Domen Kožar --- pkgs/applications/graphics/openimageio/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/openimageio/default.nix b/pkgs/applications/graphics/openimageio/default.nix index 97607e81951..79db732750d 100644 --- a/pkgs/applications/graphics/openimageio/default.nix +++ b/pkgs/applications/graphics/openimageio/default.nix @@ -4,11 +4,11 @@ stdenv.mkDerivation rec { name = "openimageio-${version}"; - version = "1.6.9"; + version = "1.6.11"; src = fetchurl { url = "https://github.com/OpenImageIO/oiio/archive/Release-${version}.zip"; - sha256 = "0942xj877875f4dpfg7aqwyw015y82vkhaqap7yhybmvzsfj7wki"; + sha256 = "0cr0z81a41bg193dx9crcq1mns7mmzz7qys4lrbm18cmdbwkk88x"; }; buildInputs = [ From df0481276d935f47faf1c64fdf9b66f264074470 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 26 Mar 2016 22:53:41 +0100 Subject: [PATCH 590/678] openafsClient: 1.6.14 -> 1.6.17 According to the changelog, the delta between these versions contains fixes for several CVEs. See https://www.openafs.org/dl/openafs/1.6.17/RELNOTES-1.6.17 and https://www.openafs.org/dl/openafs/1.6.16/RELNOTES-1.6.16 and https://www.openafs.org/dl/openafs/1.6.15/RELNOTES-1.6.15 --- pkgs/servers/openafs-client/default.nix | 37 ++++++++++--------------- 1 file changed, 14 insertions(+), 23 deletions(-) diff --git a/pkgs/servers/openafs-client/default.nix b/pkgs/servers/openafs-client/default.nix index 5d8e255f47f..a6581612e1d 100644 --- a/pkgs/servers/openafs-client/default.nix +++ b/pkgs/servers/openafs-client/default.nix @@ -1,27 +1,18 @@ { stdenv, fetchurl, fetchgit, which, autoconf, automake, flex, yacc, kernel, glibc, ncurses, perl, kerberos }: -let - version = if stdenv.lib.versionAtLeast kernel.version "4.2" - then "1.6.14-1-602130" - else "1.6.14"; -in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "openafs-${version}-${kernel.version}"; + version = "1.6.17"; - src = if version == "1.6.14-1-602130" - # 1.6.14 + patches to run on linux 4.2 that will get into 1.6.15 - then fetchgit { - url = "git://git.openafs.org/openafs.git"; - rev = "feab09080ec050b3026eff966352b058e2c2295b"; - sha256 = "03j71c7y487jbjmm6ydr1hw38pf43j2dz153xknndf4x4v21nnp2"; - } - else fetchurl { - url = "http://www.openafs.org/dl/openafs/${version}/openafs-${version}-src.tar.bz2"; - sha256 = "3e62c798a7f982c4f88d85d32e46bee6a47848d207b1e318fe661ce44ae4e01f"; - }; + src = fetchurl { + url = "http://www.openafs.org/dl/openafs/${version}/openafs-${version}-src.tar.bz2"; + sha256 = "16532f4951piv1g2i539233868xfs1damrnxql61gjgxpwnklhcn"; + }; - buildInputs = [ autoconf automake flex yacc ncurses perl which ]; + nativeBuildInputs = [ autoconf automake flex yacc perl which ]; + + buildInputs = [ ncurses ]; preConfigure = '' ln -s "${kernel.dev}/lib/modules/"*/build $TMP/linux @@ -47,11 +38,11 @@ stdenv.mkDerivation { ) ''; - meta = { + meta = with stdenv.lib; { description = "Open AFS client"; - homepage = http://www.openafs.org; - license = stdenv.lib.licenses.ipl10; - platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.z77z ]; + homepage = https://www.openafs.org; + license = licenses.ipl10; + platforms = platforms.linux; + maintainers = [ maintainers.z77z ]; }; } From b741198116cc7c6d3df5c38b8f4531069bdbb13d Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 26 Mar 2016 23:11:21 +0100 Subject: [PATCH 591/678] openafsClient: mark as broken on unsupported kernels Sandboxed builds against linux 3.14 and 4.4 fail; 3.18.29 and 4.3 succeed. From this, I conclude that 4.3 is the latest supported version, while the lower bound is set to the oldest kernel in nixpkgs >3.14 (the changelog does not indicate otherwise). It appears that openafs-client is simply incompatible with grsec; all hydra builds of openafs-client on grsec fail; local sandboxed builds against grsec with the most recent openafs-client also fail. --- pkgs/servers/openafs-client/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/servers/openafs-client/default.nix b/pkgs/servers/openafs-client/default.nix index a6581612e1d..abc6d78f20c 100644 --- a/pkgs/servers/openafs-client/default.nix +++ b/pkgs/servers/openafs-client/default.nix @@ -44,5 +44,9 @@ stdenv.mkDerivation rec { license = licenses.ipl10; platforms = platforms.linux; maintainers = [ maintainers.z77z ]; + broken = + (builtins.compareVersions kernel.version "3.18" == -1) || + (builtins.compareVersions kernel.version "4.4" != -1) || + (kernel.features.grsecurity or false); }; } From 2a097803d4a740c60fd557829c1d3479fbb6c357 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sun, 27 Mar 2016 01:19:43 +0100 Subject: [PATCH 592/678] spl: mark as broken on grsec kernels All hydra builds against grsec kernels fail; non-grsec kernels succeed. --- pkgs/os-specific/linux/spl/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/os-specific/linux/spl/default.nix b/pkgs/os-specific/linux/spl/default.nix index 772ff0b6009..09cdcbf8a24 100644 --- a/pkgs/os-specific/linux/spl/default.nix +++ b/pkgs/os-specific/linux/spl/default.nix @@ -62,5 +62,6 @@ stdenv.mkDerivation rec { platforms = platforms.linux; license = licenses.gpl2Plus; maintainers = with maintainers; [ jcumming wizeman wkennington ]; + broken = (kernel.features.grsecurity or false); }; } From 2182fd52addfdd83dc999fdcb36651aedf5f1877 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sun, 27 Mar 2016 01:21:52 +0100 Subject: [PATCH 593/678] rtl8812au: mark as broken on grsec kernels All hydra builds against grsec kernels fail; builds against vanilla kernels work. --- pkgs/os-specific/linux/rtl8812au/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/rtl8812au/default.nix b/pkgs/os-specific/linux/rtl8812au/default.nix index 6279deac60a..bc6a97029c7 100644 --- a/pkgs/os-specific/linux/rtl8812au/default.nix +++ b/pkgs/os-specific/linux/rtl8812au/default.nix @@ -27,5 +27,6 @@ stdenv.mkDerivation rec { homepage = "https://github.com/csssuf/rtl8812au"; license = stdenv.lib.licenses.gpl2; platforms = [ "x86_64-linux" "i686-linux" ]; + broken = (kernel.features.grsecurity or false); }; -} \ No newline at end of file +} From 1939256550691bdaa39df3080d9afd1bdf9e6b65 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sun, 27 Mar 2016 01:33:59 +0100 Subject: [PATCH 594/678] lttng-modules: mark as broken on grsec All hydra builds against grsec kernels fail; seemingly because the PaX hardening plugins are incompatible with lttng-modules (the code writes to locations marked as read-only). --- pkgs/os-specific/linux/lttng-modules/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/os-specific/linux/lttng-modules/default.nix b/pkgs/os-specific/linux/lttng-modules/default.nix index dc21176fa3c..91a3464d1fa 100644 --- a/pkgs/os-specific/linux/lttng-modules/default.nix +++ b/pkgs/os-specific/linux/lttng-modules/default.nix @@ -25,6 +25,7 @@ stdenv.mkDerivation rec { license = with licenses; [ lgpl21 gpl2 mit ]; platforms = platforms.linux; maintainers = [ maintainers.bjornfor ]; + broken = (kernel.features.grsecurity or false); }; } From 8f261d717d76ede4bf52e35e717522dbbd11029e Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sun, 27 Mar 2016 01:36:30 +0100 Subject: [PATCH 595/678] accelio: mark as broken on grsec kernels All hydra builds against grsec kernels fail. --- pkgs/development/libraries/accelio/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/accelio/default.nix b/pkgs/development/libraries/accelio/default.nix index 8aa2dc6bb79..76c5cf32bbd 100644 --- a/pkgs/development/libraries/accelio/default.nix +++ b/pkgs/development/libraries/accelio/default.nix @@ -56,6 +56,8 @@ stdenv.mkDerivation rec { platforms = with platforms; linux ++ freebsd; maintainers = with maintainers; [ wkennington ]; # kernel 4.2 is the most recent supported kernel - broken = kernel != null && builtins.compareVersions kernel.version "4.2" == 1; + broken = kernel != null && + (builtins.compareVersions kernel.version "4.2" == 1 || + (kernel.features.grsecurity or false)); }; } From c54d577db429743df61c1fc0e4b2671ace0e8010 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Fri, 25 Mar 2016 18:28:57 +0900 Subject: [PATCH 596/678] cached-property: init at 1.3.0 --- pkgs/top-level/python-packages.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 88c238ef8b4..5353cf367be 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1809,6 +1809,26 @@ in modules // { propagatedBuildInputs = with self; [ boto crcmod psutil ]; }; + cached-property = buildPythonPackage rec { + version = "1.3.0"; + name = "cached-property-${version}"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/c/cached-property/${name}.tar.gz"; + sha256 = "10dwi3s6f154ag9dvqy5jiwp31fs57lbxjcjgn4cwvi8qyqpi3j5"; + }; + + buildInputs = with self; [ freezegun ]; + + meta = { + description = "A decorator for caching properties in classes"; + homepage = https://github.com/pydanny/cached-property; + license = licenses.bsd3; + platforms = platforms.linux; + maintainers = with maintainers; [ ericsagnes ]; + }; + }; + cgroup-utils = buildPythonPackage rec { version = "0.6"; name = "cgroup-utils-${version}"; From c867346b055320af07518190a98234e99a211f6d Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Sun, 27 Mar 2016 01:42:13 +0900 Subject: [PATCH 597/678] dockerpty: 0.3.4 -> 0.4.1 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5353cf367be..bdf2b7d1317 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4932,11 +4932,11 @@ in modules // { }; dockerpty = buildPythonPackage rec { - name = "dockerpty-0.3.4"; + name = "dockerpty-0.4.1"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/dockerpty/${name}.tar.gz"; - sha256 = "a51044cc49089a2408fdf6769a63eebe0b16d91f34716ecee681984446ce467d"; + sha256 = "1kjn64wx23jmr8dcc6g7bwlmrhfmxr77gh6iphqsl39sayfxdab9"; }; propagatedBuildInputs = with self; [ six ]; From bdbdb03a160a99f071c8884099f4f30369d034af Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Sun, 27 Mar 2016 01:43:38 +0900 Subject: [PATCH 598/678] docker-py: 1.5.0 -> 1.7.2 --- pkgs/top-level/python-packages.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index bdf2b7d1317..1438e48ddd3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4912,11 +4912,12 @@ in modules // { }; docker = buildPythonPackage rec { - name = "docker-py-1.5.0"; + name = "docker-py-${version}"; + version = "1.7.2"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/docker-py/${name}.tar.gz"; - sha256 = "1l7q0179y4lmv24z4q12653141wc1b1zzgbfw46yzbs6mj7i4939"; + sha256 = "0k6hm3vmqh1d3wr9rryyif5n4rzvcffdlb1k4jvzp7g4996d3ccm"; }; propagatedBuildInputs = with self; [ six requests2 websocket_client ]; From e3f00861dfe92d12df93dd9123ef72033206160a Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Sun, 27 Mar 2016 01:44:49 +0900 Subject: [PATCH 599/678] docker-compose: 1.5.2 -> 1.6.2 --- pkgs/top-level/python-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1438e48ddd3..62dd47cba92 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -8839,14 +8839,13 @@ in modules // { }; docker_compose = buildPythonPackage rec { - version = "1.5.2"; + version = "1.6.2"; name = "docker-compose-${version}"; namePrefix = ""; - disabled = isPy3k || isPyPy; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/docker-compose/${name}.tar.gz"; - sha256 = "79aa7e2e6ef9ab1936f8777476ffd4bb329875ec3d3664d239896d2f2a3c4f4f"; + sha256 = "10i4032d99hm5nj1p74pcad9i3gz1h5x3096byklncgssfyjqki6"; }; # lots of networking and other fails @@ -8854,8 +8853,9 @@ in modules // { buildInputs = with self; [ mock pytest nose ]; propagatedBuildInputs = with self; [ requests2 six pyyaml texttable docopt docker dockerpty websocket_client - enum34 jsonschema + enum34 jsonschema cached-property ]; + patchPhase = '' sed -i "s/'requests >= 2.6.1, < 2.8'/'requests'/" setup.py ''; From fd9416fb4b517ceb8a6af6184204d585f6e02c9f Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sun, 27 Mar 2016 03:20:05 +0200 Subject: [PATCH 600/678] codeblocks: fix build https://hydra.nixos.org/build/33633573/nixlog/1/raw --- pkgs/applications/editors/codeblocks/default.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/codeblocks/default.nix b/pkgs/applications/editors/codeblocks/default.nix index 53b7b5750a0..f11a8b5cc3a 100644 --- a/pkgs/applications/editors/codeblocks/default.nix +++ b/pkgs/applications/editors/codeblocks/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, autoconf, automake, libtool, pkgconfig, file, zip, wxGTK, gtk -, contribPlugins ? false, hunspell, gamin, boost +, contribPlugins ? false, hunspell, gamin, boost, libX11, cairo }: with { inherit (stdenv.lib) optionalString optional optionals; }; @@ -14,7 +14,9 @@ stdenv.mkDerivation rec { sha256 = "044njhps4cm1ijfdyr5f9wjyd0vblhrz9b4603ma52wcdq25093p"; }; - buildInputs = [ automake autoconf libtool pkgconfig file zip wxGTK gtk ] + nativeBuildInputs = [ automake autoconf libtool pkgconfig ]; + + buildInputs = [ file zip wxGTK gtk libX11 cairo ] ++ optionals contribPlugins [ hunspell gamin boost ]; enableParallelBuilding = true; patches = [ ./writable-projects.patch ]; @@ -23,6 +25,9 @@ stdenv.mkDerivation rec { configureFlags = [ "--enable-pch=no" ] ++ optional contribPlugins "--with-contrib-plugins"; + # for whatever reason, the build config does not set these flag ... + NIX_CFLAGS_COMPILE = "-lX11 -lcairo"; + # Fix boost 1.59 compat # Try removing in the next version CPPFLAGS = "-DBOOST_ERROR_CODE_HEADER_ONLY -DBOOST_SYSTEM_NO_DEPRECATED"; From 695c2e4ee46c9533f4081fff74c3de157aec9a79 Mon Sep 17 00:00:00 2001 From: Louis Taylor Date: Sun, 27 Mar 2016 03:06:58 +0100 Subject: [PATCH 601/678] kernel-config: do not use NFSD_PNFS on >=4.6 --- pkgs/os-specific/linux/kernel/common-config.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/kernel/common-config.nix b/pkgs/os-specific/linux/kernel/common-config.nix index f3dd32386bc..e7e81f4877f 100644 --- a/pkgs/os-specific/linux/kernel/common-config.nix +++ b/pkgs/os-specific/linux/kernel/common-config.nix @@ -210,7 +210,7 @@ with stdenv.lib; OCFS2_DEBUG_MASKLOG? n BTRFS_FS_POSIX_ACL y UBIFS_FS_ADVANCED_COMPR? y - ${optionalString (versionAtLeast version "4.0") '' + ${optionalString (versionAtLeast version "4.0" && versionOlder version "4.6") '' NFSD_PNFS y ''} NFSD_V2_ACL y From 8b7e150bb94fec38451eda20e644bda928caac9d Mon Sep 17 00:00:00 2001 From: Louis Taylor Date: Sun, 27 Mar 2016 03:08:24 +0100 Subject: [PATCH 602/678] linux-testing: 4.5-rc7 -> 4.6-rc1 --- pkgs/os-specific/linux/kernel/linux-testing.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-testing.nix b/pkgs/os-specific/linux/kernel/linux-testing.nix index 57a825ec0a0..e58230712a9 100644 --- a/pkgs/os-specific/linux/kernel/linux-testing.nix +++ b/pkgs/os-specific/linux/kernel/linux-testing.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.5-rc7"; - modDirVersion = "4.5.0-rc7"; - extraMeta.branch = "4.5"; + version = "4.6-rc1"; + modDirVersion = "4.6.0-rc1"; + extraMeta.branch = "4.6"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/testing/linux-${version}.tar.xz"; - sha256 = "0z43s7ccikmqigv4insjvizs3bkx2lgjvzsz5rmmpcga28dz44kq"; + sha256 = "1y73sjd7i48d1c8x52z59imx8g8d00wy67r5666cvwqrq8d407h0"; }; features.iwlwifi = true; From 26bd115c9c014279686ebdbfcfc5d7458b95e70f Mon Sep 17 00:00:00 2001 From: Kevin Cox Date: Sat, 26 Mar 2016 22:01:00 -0400 Subject: [PATCH 603/678] etcd: 2.1.2 -> 2.3.0 --- nixos/modules/services/misc/etcd.nix | 1 + pkgs/top-level/go-packages.nix | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/misc/etcd.nix b/nixos/modules/services/misc/etcd.nix index b3354e33096..bc8064e3c87 100644 --- a/nixos/modules/services/misc/etcd.nix +++ b/nixos/modules/services/misc/etcd.nix @@ -114,6 +114,7 @@ in { }) // (mapAttrs' (n: v: nameValuePair "ETCD_${n}" v) cfg.extraConf); serviceConfig = { + Type = "notify"; ExecStart = "${pkgs.etcd}/bin/etcd"; User = "etcd"; PermissionsStartOnly = true; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index bc87da0f206..5735aac8ad1 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -789,10 +789,11 @@ let }; etcd = buildFromGitHub { - rev = "v2.1.2"; + rev = "v2.3.0"; owner = "coreos"; repo = "etcd"; - sha256 = "1d3wl9rqbhkkdhfkjfrzjfcwz8hx315zbjbmij3pf62bc1p5nh60"; + sha256 = "1cchlhsdbbqal145cvdiq7rzqqi131iq7z0r2hmzwx414k04wyn7"; + buildInputs = [ pkgs.libpcap tablewriter ]; }; fsnotify.v0 = buildGoPackage rec { From bd9737cc3efd6bd7bc6b75e42f6b8355cbe0139e Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sun, 27 Mar 2016 04:09:06 +0200 Subject: [PATCH 604/678] linux_chromiumos: require 64bit build host I noticed that almost all the Hydra build failures were on i686. Sure enough, upstream says that you need an x86_64 machine to build the kernel. --- pkgs/os-specific/linux/kernel/linux-chromiumos-3.14.nix | 3 +++ pkgs/os-specific/linux/kernel/linux-chromiumos-3.18.nix | 3 +++ 2 files changed, 6 insertions(+) diff --git a/pkgs/os-specific/linux/kernel/linux-chromiumos-3.14.nix b/pkgs/os-specific/linux/kernel/linux-chromiumos-3.14.nix index fb52b14c9ae..d781a5b9685 100644 --- a/pkgs/os-specific/linux/kernel/linux-chromiumos-3.14.nix +++ b/pkgs/os-specific/linux/kernel/linux-chromiumos-3.14.nix @@ -1,5 +1,8 @@ { stdenv, fetchgit, perl, buildLinux, ncurses, openssh, ... } @ args: +# ChromiumOS requires a 64bit build host +assert stdenv.is64bit; + import ./generic.nix (args // rec { version = "3.14.0"; extraMeta.branch = "3.14"; diff --git a/pkgs/os-specific/linux/kernel/linux-chromiumos-3.18.nix b/pkgs/os-specific/linux/kernel/linux-chromiumos-3.18.nix index 9ab3f70c97f..fc0997eabdd 100644 --- a/pkgs/os-specific/linux/kernel/linux-chromiumos-3.18.nix +++ b/pkgs/os-specific/linux/kernel/linux-chromiumos-3.18.nix @@ -1,5 +1,8 @@ { stdenv, fetchgit, perl, buildLinux, ncurses, ... } @ args: +# ChromiumOS requires a 64bit build host +assert stdenv.is64bit; + import ./generic.nix (args // rec { version = "3.18.0"; extraMeta.branch = "3.18"; From 6911785c03d5e5fccc9cc95781a96c08108c94a2 Mon Sep 17 00:00:00 2001 From: Peter Hoeg Date: Sun, 27 Mar 2016 15:08:23 +0800 Subject: [PATCH 605/678] togglesg-download: init at 2016-02-08 --- pkgs/tools/misc/togglesg-download/default.nix | 41 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 +- 2 files changed, 44 insertions(+), 1 deletion(-) create mode 100644 pkgs/tools/misc/togglesg-download/default.nix diff --git a/pkgs/tools/misc/togglesg-download/default.nix b/pkgs/tools/misc/togglesg-download/default.nix new file mode 100644 index 00000000000..30b632f525d --- /dev/null +++ b/pkgs/tools/misc/togglesg-download/default.nix @@ -0,0 +1,41 @@ +{ stdenv, fetchFromGitHub, buildPythonApplication, makeWrapper, ffmpeg }: + +buildPythonApplication rec { + + name = "togglesg-download-git-${version}"; + version = "2016-02-08"; + + src = fetchFromGitHub { + owner = "0x776b7364"; + repo = "toggle.sg-download"; + rev = "5cac3ec039d67ad29240b2fa850a8db595264e3d"; + sha256 = "0pqw73aa5b18d5ws4zj6gcmzap6ag526jrylqq80m0yyh9yxw5hs"; + }; + + nativeBuildInputs = [ makeWrapper ]; + + doCheck = false; + dontBuild = true; + dontStrip = true; + + installPhase = '' + mkdir -p $out/bin + install -m755 download_toggle_video2.py $out/bin/download_toggle_video2.py + ''; + + postInstall = stdenv.lib.optionalString (ffmpeg != null) + ''wrapProgram $out/bin/download_toggle_video2.py --prefix PATH : "${ffmpeg}/bin"''; + + meta = with stdenv.lib; { + homepage = "https://github.com/0x776b7364/toggle.sg-download"; + description = "Command-line tool to download videos from toggle.sg written in Python"; + longDescription = '' + toggle.sg requires SilverLight in order to view videos. This tool will + allow you to download the video files for viewing in your media player and + on your OS of choice. + ''; + license = licenses.mit; + platforms = platforms.all; + maintainers = [ maintainers.peterhoeg ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7f0ab25e92e..67c547e0f05 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3279,7 +3279,7 @@ in talkfilters = callPackage ../misc/talkfilters {}; znapzend = callPackage ../tools/backup/znapzend { }; - + tarsnap = callPackage ../tools/backup/tarsnap { }; tcpcrypt = callPackage ../tools/security/tcpcrypt { }; @@ -16340,5 +16340,7 @@ in mg = callPackage ../applications/editors/mg { }; + togglesg-download = callPackage ../tools/misc/togglesg-download { }; + } From 3819384395ec1a6490303c09c645d1d4e96265eb Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sun, 27 Mar 2016 11:56:28 +0300 Subject: [PATCH 606/678] skype: small cleanup --- .../networking/instant-messengers/skype/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/networking/instant-messengers/skype/default.nix b/pkgs/applications/networking/instant-messengers/skype/default.nix index 1e84e015bc1..98672a29d0b 100644 --- a/pkgs/applications/networking/instant-messengers/skype/default.nix +++ b/pkgs/applications/networking/instant-messengers/skype/default.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { cat > $out/bin/skype << EOF #!${stdenv.shell} export PULSE_LATENCY_MSEC=60 # workaround for pulseaudio glitches - $out/libexec/skype/skype --resources=$out/libexec/skype "\$@" + exec $out/libexec/skype/skype --resources=$out/libexec/skype "\$@" EOF chmod +x $out/bin/skype @@ -67,5 +67,6 @@ stdenv.mkDerivation rec { description = "A proprietary voice-over-IP (VoIP) client"; homepage = http://www.skype.com/; license = stdenv.lib.licenses.unfree; + platforms = [ "i686-linux" ]; }; } From c86a8fc19f870c9b817df4afb82631c354b86a40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 26 Mar 2016 10:25:42 +0100 Subject: [PATCH 607/678] doc: remove comments that are no longer relevant --- doc/languages-frameworks/index.xml | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/doc/languages-frameworks/index.xml b/doc/languages-frameworks/index.xml index e63ff3ab140..7922f2a5f5a 100644 --- a/doc/languages-frameworks/index.xml +++ b/doc/languages-frameworks/index.xml @@ -25,20 +25,5 @@ such as Perl or Haskell. These are described in this chapter. - - - + From e3da83297fdfcac1af29805aa55e437bc1d45d3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 26 Mar 2016 10:26:29 +0100 Subject: [PATCH 608/678] texlive: document in nixpkgs manual Fixes #13240. It's not really better than source-code comments it replaced, but it's in a better accessible place. --- doc/languages-frameworks/index.xml | 1 + doc/languages-frameworks/texlive.xml | 59 +++++++++++++++++++ .../typesetting/tex/texlive-new/default.nix | 28 +-------- 3 files changed, 63 insertions(+), 25 deletions(-) create mode 100644 doc/languages-frameworks/texlive.xml diff --git a/doc/languages-frameworks/index.xml b/doc/languages-frameworks/index.xml index 7922f2a5f5a..ab62afa40d6 100644 --- a/doc/languages-frameworks/index.xml +++ b/doc/languages-frameworks/index.xml @@ -23,6 +23,7 @@ such as Perl or Haskell. These are described in this chapter. + diff --git a/doc/languages-frameworks/texlive.xml b/doc/languages-frameworks/texlive.xml new file mode 100644 index 00000000000..0e3c1dd13d7 --- /dev/null +++ b/doc/languages-frameworks/texlive.xml @@ -0,0 +1,59 @@ +
+ +TeX Live + +Since release 15.09 there is a new TeX Live packaging that lives entirely under attribute texlive. +
User's guide + + + For basic usage just pull texlive.combined.scheme-basic for an environment with basic LaTeX support. + + It typically won't work to use separately installed packages together. + Instead, you can build a custom set of packages like this: + +texlive.combine { + inherit (texlive) scheme-small collection-langkorean algorithms cm-super; +} + + There are all the schemes, collections and a few thousand packages, as defined upstream (perhaps with tiny differences). + + + By default you only get executables and files needed during runtime, and a little documentation for the core packages. To change that, you need to add pkgFilter function to combine. + +texlive.combine { + # inherit (texlive) whatever-you-want; + pkgFilter = pkg: + pkg.tlType == "run" || pkg.tlType == "bin" || pkg.pname == "cm-super"; + # elem tlType [ "run" "bin" "doc" "source" ] + # there are also other attributes: version, name +} + + + + You can list packages e.g. by nix-repl. + +$ nix-repl +nix-repl> texlive.collection-<TAB> + + + +
+ +
Known problems + + + Some tools are still missing, e.g. luajittex; + + some apps aren't packaged/tested yet (asymptote, biber, etc.); + + feature/bug: when a package is rejected by pkgFilter, its dependencies are still propagated; + + in case of any bugs or feature requests, file a github issue or better a pull request and /cc @vcunat. + +
+ + +
+ diff --git a/pkgs/tools/typesetting/tex/texlive-new/default.nix b/pkgs/tools/typesetting/tex/texlive-new/default.nix index 5fe52ba07ba..fbf4adde2ae 100644 --- a/pkgs/tools/typesetting/tex/texlive-new/default.nix +++ b/pkgs/tools/typesetting/tex/texlive-new/default.nix @@ -1,29 +1,7 @@ -/* (new) TeX Live user docs - - Basic usage: just pull texlive.combined.scheme-basic - for an environment with basic LaTeX support. - There are all the schemes as defined upstream (with tiny differences, perhaps). - - You can compose your own collection like this: - texlive.combine { - inherit (texlive) scheme-small collection-langkorean algorithms cm-super; - } - - By default you only get executables and files needed during runtime, - and a little documentation for the core packages. - To change that, you need to add `pkgFilter` function to `combine`. - texlive.combine { - # inherit (texlive) whatever-you-want; - pkgFilter = pkg: - pkg.tlType == "run" || pkg.tlType == "bin" || pkg.pname == "cm-super"; - # elem tlType [ "run" "bin" "doc" "source" ] - # there are also other attributes: version, name - } - - Known bugs: - * some tools are still missing, e.g. luajittex - * some apps aren't packaged/tested yet (xdvi, asymptote, biber, etc.) - * feature/bug: when a package is rejected by pkgFilter, - its dependencies are still propagated - * in case of any bugs or feature requests, file a github issue and /cc @vcunat +/* TeX Live user docs + - source: ../../../../../doc/languages-frameworks/texlive.xml + - current html: http://nixos.org/nixpkgs/manual/#sec-language-texlive */ - { stdenv, lib, fetchurl, runCommand, writeText, buildEnv , callPackage, ghostscriptX, harfbuzz, poppler_min , makeWrapper, perl, python, ruby From b1a8ae2a35113c6df3a2a20ba74972396113f10c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 27 Mar 2016 13:30:41 +0100 Subject: [PATCH 609/678] ffmpeg: fix bad merge --- pkgs/development/libraries/ffmpeg/generic.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/ffmpeg/generic.nix b/pkgs/development/libraries/ffmpeg/generic.nix index 122ded4d302..c62278729a7 100644 --- a/pkgs/development/libraries/ffmpeg/generic.nix +++ b/pkgs/development/libraries/ffmpeg/generic.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, pkgconfig, perl, texinfo, yasm , alsaLib, bzip2, fontconfig, freetype, gnutls, libiconv, lame, libass, libogg , libtheora, libva, libvorbis, libvpx, lzma, libpulseaudio, soxr -, x264, xvidcore, zlib, libopus, SDL +, x264, xvidcore, zlib, libopus , openglSupport ? false, mesa ? null # Build options , runtimeCpuDetectBuild ? true # Detect CPU capabilities at runtime From 1b30674165928d853203e12fdd74afb3c9ea68a9 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sun, 27 Mar 2016 14:36:11 +0200 Subject: [PATCH 610/678] eclipse-plugin-testng: 6.9.10 -> 6.9.11 --- pkgs/applications/editors/eclipse/plugins.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/editors/eclipse/plugins.nix b/pkgs/applications/editors/eclipse/plugins.nix index 3bde9b1434c..0e0c75fcfc8 100644 --- a/pkgs/applications/editors/eclipse/plugins.nix +++ b/pkgs/applications/editors/eclipse/plugins.nix @@ -377,16 +377,16 @@ rec { testng = buildEclipsePlugin rec { name = "testng-${version}"; - version = "6.9.10.201512020421"; + version = "6.9.11.201603260617"; srcFeature = fetchurl { url = "http://beust.com/eclipse-old/eclipse_${version}/features/org.testng.eclipse_${version}.jar"; - sha256 = "17y0cb1xprldjav14iy2sinv7lcw4xnjs2fwz9gl41m9m1c0hajk"; + sha256 = "0cd7d3bdp6f081vrampsv53z55g1mjn04w9ngz3h8dr0h6jnxz3y"; }; srcPlugin = fetchurl { url = "http://beust.com/eclipse-old/eclipse_${version}/plugins/org.testng.eclipse_${version}.jar"; - sha256 = "1iwq0ifk9l56z11vhy5yscvl8l1xk6igkp103v9vwvcx6nlmkfgc"; + sha256 = "10kdwnydmsvngn8ahijxrv50aps6wa4ckbf7p24mxbwlnmpqfj03"; }; meta = with stdenv.lib; { From 45604fc46b4192984be2b81f0f7fa3537499a1aa Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sat, 26 Mar 2016 21:27:36 +0100 Subject: [PATCH 611/678] buku: init at 1.8 --- pkgs/applications/misc/buku/default.nix | 34 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 +++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/applications/misc/buku/default.nix diff --git a/pkgs/applications/misc/buku/default.nix b/pkgs/applications/misc/buku/default.nix new file mode 100644 index 00000000000..ccebb8bfc11 --- /dev/null +++ b/pkgs/applications/misc/buku/default.nix @@ -0,0 +1,34 @@ +{ stdenv, pythonPackages, fetchFromGitHub, + encryptionSupport ? false +}: + +pythonPackages.buildPythonApplication rec { + version = "1.8"; + name = "buku-${version}"; + + src = fetchFromGitHub { + owner = "jarun"; + repo = "buku"; + rev = "53d48ee56a3abfb53b94ed25fb620ee759141c96"; + sha256 = "185d3gndw20c3l6f3mf0iq4qapm8g30bl0hn0wsqpp36vl0bpq28"; + }; + + buildInputs = stdenv.lib.optional encryptionSupport pythonPackages.pycrypto; + + phases = [ "unpackPhase" "installPhase" "fixupPhase" ]; + + installPhase = '' + make install PREFIX=$out + ''; + + doCheck = false; + + meta = with stdenv.lib; { + description = "Private cmdline bookmark manager"; + homepage = https://github.com/jarun/Buku; + license = licenses.gpl3; + platforms = platforms.linux; + maintainers = with maintainers; [ matthiasbeyer ]; + }; +} + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7f0ab25e92e..444a2cde3c0 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -915,6 +915,10 @@ in burp = callPackage ../tools/backup/burp { }; + buku = callPackage ../applications/misc/buku { + pythonPackages = python3Packages; + }; + byzanz = callPackage ../applications/video/byzanz {}; ori = callPackage ../tools/backup/ori { }; From 28af80fcc05fba494c2b0c143169cb47177ac704 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sun, 27 Mar 2016 15:30:21 +0300 Subject: [PATCH 612/678] skype: use clang-built qt4 to fix segfault --- pkgs/top-level/all-packages.nix | 8 +++++++- pkgs/top-level/release.nix | 1 + 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 380b698236f..79eab4733a3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13544,7 +13544,13 @@ in siproxd = callPackage ../applications/networking/siproxd { }; - skype = callPackage_i686 ../applications/networking/instant-messengers/skype { }; + # Needed for skype + qt4-clang = qt4.override { + stdenv = clangStdenv; + }; + skype = callPackage_i686 ../applications/networking/instant-messengers/skype { + qt4 = pkgsi686Linux.qt4-clang; + }; skype4pidgin = callPackage ../applications/networking/instant-messengers/pidgin-plugins/skype4pidgin { }; diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix index cc1e9b791f7..94dabc76f16 100644 --- a/pkgs/top-level/release.nix +++ b/pkgs/top-level/release.nix @@ -184,6 +184,7 @@ let pythonFull = linux; sbcl = linux; qt3 = linux; + qt4-clang = [ "i686-linux" ]; quake3demo = linux; reiserfsprogs = linux; rubber = allBut cygwin; From 4a425483881d1e7b0c72a8ed6127bc65e0bf4032 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Tue, 22 Mar 2016 20:59:00 +0000 Subject: [PATCH 613/678] cmis: fix build with gcc5 --- .../development/libraries/libcmis/default.nix | 6 ++- pkgs/development/libraries/libcmis/gcc5.patch | 39 +++++++++++++++++++ 2 files changed, 43 insertions(+), 2 deletions(-) create mode 100644 pkgs/development/libraries/libcmis/gcc5.patch diff --git a/pkgs/development/libraries/libcmis/default.nix b/pkgs/development/libraries/libcmis/default.nix index 5535623298a..6e0007111bc 100644 --- a/pkgs/development/libraries/libcmis/default.nix +++ b/pkgs/development/libraries/libcmis/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, boost, libxml2, pkgconfig, curl }: +{ stdenv, fetchurl, boost, libxml2, pkgconfig, curl, autoreconfHook }: stdenv.mkDerivation rec { name = "libcmis-${version}"; @@ -9,7 +9,9 @@ stdenv.mkDerivation rec { sha256 = "1dprvk4fibylv24l7gr49gfqbkfgmxynvgssvdcycgpf7n8h4zm8"; }; - buildInputs = [ boost libxml2 pkgconfig curl ]; + patches = [ ./gcc5.patch ]; + + buildInputs = [ boost libxml2 pkgconfig curl autoreconfHook ]; configureFlags = "--without-man --with-boost=${boost.dev} --disable-werror --disable-tests"; # Cppcheck cannot find all the include files (use --check-config for details) diff --git a/pkgs/development/libraries/libcmis/gcc5.patch b/pkgs/development/libraries/libcmis/gcc5.patch new file mode 100644 index 00000000000..952f8e1abd7 --- /dev/null +++ b/pkgs/development/libraries/libcmis/gcc5.patch @@ -0,0 +1,39 @@ +diff -urN libcmis-0.5.0.org/m4/boost.m4 libcmis-0.5.0/m4/boost.m4 +--- libcmis-0.5.0.org/m4/boost.m4 2014-03-28 15:19:57.000000000 +0100 ++++ libcmis-0.5.0/m4/boost.m4 2015-09-21 14:42:25.149565264 +0200 +@@ -68,7 +68,9 @@ + dnl everything else. + dnl Cannot use 'dnl' after [$4] because a trailing dnl may break AC_CACHE_CHECK + (eval "$ac_cpp conftest.$ac_ext") 2>&AS_MESSAGE_LOG_FD | ++ grep -v '#' | + tr -d '\r' | ++ tr -s '\n' ' ' | + $SED -n -e "$1" >conftest.i 2>&1], + [$3], + [$4]) +@@ -201,7 +203,7 @@ + AC_CACHE_CHECK([for Boost's header version], + [boost_cv_lib_version], + [m4_pattern_allow([^BOOST_LIB_VERSION$])dnl +- _BOOST_SED_CPP([/^boost-lib-version = /{s///;s/\"//g;p;g;}], ++ _BOOST_SED_CPP([[/^boost-lib-version = /{s///;s/[\" ]//g;p;q;}]], + [#include + boost-lib-version = BOOST_LIB_VERSION], + [boost_cv_lib_version=`cat conftest.i`])]) +@@ -209,7 +211,7 @@ + boost_major_version=`echo "$boost_cv_lib_version" | sed 's/_//;s/_.*//'` + case $boost_major_version in #( + '' | *[[!0-9]]*) +- AC_MSG_ERROR([invalid value: boost_major_version=$boost_major_version]) ++ AC_MSG_ERROR([invalid value: boost_major_version='$boost_major_version']) + ;; + esac + fi +@@ -930,6 +932,7 @@ + # the same defines as GCC's). + # TODO: Move the test on GCC 4.4 up once it's released. + for i in \ ++ _BOOST_gcc_test(5, 2) \ + _BOOST_gcc_test(4, 3) \ + _BOOST_gcc_test(4, 2) \ + _BOOST_gcc_test(4, 1) \ From ea7068f44c7812c963d1401c9bc8fd1b48cbe071 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sun, 27 Mar 2016 15:37:07 +0100 Subject: [PATCH 614/678] direnv: 2.7.0 -> 2.8.0 --- pkgs/tools/misc/direnv/default.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/misc/direnv/default.nix b/pkgs/tools/misc/direnv/default.nix index e05889fdb4b..72a8f61bf3f 100644 --- a/pkgs/tools/misc/direnv/default.nix +++ b/pkgs/tools/misc/direnv/default.nix @@ -1,14 +1,13 @@ { fetchurl, stdenv, go }: -let - version = "2.7.0"; -in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "direnv-${version}"; + version = "2.8.0"; + src = fetchurl { url = "http://github.com/zimbatm/direnv/archive/v${version}.tar.gz"; name = "direnv-${version}.tar.gz"; - sha256 = "3cfa8f41e740c0dc09d854f3833058caec0ea0d67d19e950f97eee61106b0daf"; + sha256 = "1l1kvjgpak7cc9s37qipfw6lybb4650zwd8kcdagm409gs89mil6"; }; buildInputs = [ go ]; From e39f9a2c11883f0c9df41448b1a53c05b19d99cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Sun, 27 Mar 2016 12:14:46 -0300 Subject: [PATCH 615/678] awesome: include manual pages --- .../window-managers/awesome/default.nix | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/window-managers/awesome/default.nix b/pkgs/applications/window-managers/awesome/default.nix index 181983e48b0..2991169a702 100644 --- a/pkgs/applications/window-managers/awesome/default.nix +++ b/pkgs/applications/window-managers/awesome/default.nix @@ -3,7 +3,7 @@ , xcb-util-cursor, makeWrapper, pango, gobjectIntrospection, unclutter , compton, procps, iproute, coreutils, curl, alsaUtils, findutils, xterm , which, dbus, nettools, git, asciidoc, doxygen -#, xmlto, docbook_xml_dtd_45 , docbook_xsl +, xmlto, docbook_xml_dtd_45, docbook_xsl, findXMLCatalogs }: let @@ -26,25 +26,29 @@ stdenv.mkDerivation rec { platforms = platforms.linux; }; - buildInputs = [ + nativeBuildInputs = [ asciidoc - cairo cmake - dbus doxygen + imagemagick + makeWrapper + pkgconfig + xmlto docbook_xml_dtd_45 docbook_xsl findXMLCatalogs + ]; + + buildInputs = [ + cairo + dbus gdk_pixbuf gobjectIntrospection git - imagemagick lgi libpthreadstubs libstartup_notification libxdg_basedir lua - makeWrapper nettools pango - pkgconfig xcb-util-cursor xorg.libXau xorg.libXdmcp @@ -55,7 +59,6 @@ stdenv.mkDerivation rec { xorg.xcbutilkeysyms xorg.xcbutilrenderutil xorg.xcbutilwm - #xmlto docbook_xml_dtd_45 docbook_xsl ]; #cmakeFlags = "-DGENERATE_MANPAGES=ON"; From f7d17e1130bfaadc685d626e1a422b62572b6012 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sun, 27 Mar 2016 17:17:46 +0200 Subject: [PATCH 616/678] python-packages: Replace md5 by sha256 hashsums --- pkgs/top-level/python-packages.nix | 35 +++++++++++++----------------- 1 file changed, 15 insertions(+), 20 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ff991be6dd7..6f7efade120 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2549,7 +2549,6 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/b/bugwarrior/${name}.tar.gz"; - # md5 = "09c93f86a27ffc092e69b46889a3bf50"; # provided by pypi website. sha256 = "efe41756c152789f39006f157add9bedfa2b85d2cac15c067e635e37c70cb8f8"; }; @@ -2595,7 +2594,6 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/python-bugzilla/python-${name}.tar.gz"; - # md5 = "c95befd1fecad21f742beaa8180538c0"; # provided by pypi website. sha256 = "11361635a4f1613803a0b9b93ba9126f7fd36180653f953e2590b1536d107d46"; }; @@ -2723,7 +2721,7 @@ in modules // { }; }; - zc_recipe_egg_fun = { buildout, version, md5 }: buildPythonPackage rec { + zc_recipe_egg_fun = { buildout, version, sha256 }: buildPythonPackage rec { inherit version; name = "zc.recipe.egg-${version}"; @@ -2731,7 +2729,7 @@ in modules // { doCheck = false; src = pkgs.fetchurl { - inherit md5; + inherit sha256; url = "https://pypi.python.org/packages/source/z/zc.recipe.egg/zc.recipe.egg-${version}.tar.gz"; }; meta.broken = true; # https://bitbucket.org/pypa/setuptools/issues/462/pkg_resourcesfind_on_path-thinks-the @@ -2739,12 +2737,12 @@ in modules // { zc_recipe_egg_buildout171 = self.zc_recipe_egg_fun { buildout = self.zc_buildout171; version = "1.3.2"; - md5 = "1cb6af73f527490dde461d3614a36475"; + sha256 = "12zl16fdz85l6hgrkqwily7d2brr9w5pdfqri5n978gh36mqf526"; }; zc_recipe_egg_buildout2 = self.zc_recipe_egg_fun { buildout = self.zc_buildout2; version = "2.0.3"; - md5 = "69a8ce276029390a36008150444aa0b4"; + sha256 = "0d7xkxxhm5bwrscchjzc88559njirqxishdwl2qjx3gij3s12l5s"; }; bunch = buildPythonPackage (rec { @@ -6773,7 +6771,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pew/${name}.tar.gz"; - md5 = "0a06ab0885b39f1ef3890893942f3225"; + sha256 = "0p188ah80l0rzbib2srahj2sswz8rcpqwbrbajyv2r5c1m5k6r4b"; }; propagatedBuildInputs = with self; [ virtualenv virtualenv-clone ]; @@ -8185,7 +8183,6 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/d/django-classy-tags/${name}.tar.gz"; - md5 = "eb686aa767ad8cf88c1fa0f400a42516"; sha256 = "0wxvpmjdzk0aajk33y4himn3wqjx7k0aqlka9j8ay3yfav78bdq0"; }; @@ -8308,7 +8305,6 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/d/django-reversion/${name}.tar.gz"; - md5 = "2de5a3fe82aaf505c134570f96fcc7a8"; sha256 = "0z8fxvxgbxfnalr5br74rsw6g42nry2q656rx7rsgmicd8n42v2r"; }; @@ -10336,7 +10332,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/i/importlib/importlib-1.0.2.tar.gz"; - md5 = "4aa23397da8bd7c7426864e88e4db7e1"; + sha256 = "131jvp6ahllcqblszjg6fxrzh4k50w8g60sq924b4nb8lxm9dl14"; }; }; @@ -11260,7 +11256,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/l/llfuse/${name}.tar.bz2"; - md5 = "6e71af191381da135a222e3c0e7569a1"; + sha256 = "1li7q04ljrvwharw4fblcbfhvk6s0l3lnv8yqb4c22lcgbkiqlps"; }; buildInputs = [ pkgs.pkgconfig pkgs.fuse pkgs.attr ]; @@ -12900,7 +12896,6 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/n/nose-cover3/${name}.tar.gz"; sha256 = "1la4hhc1yszjpcchvkqk5xmzlb2g1b3fgxj9wwc58qc549whlcc1"; - md5 = "82f981eaa007b430679899256050fa0c"; }; propagatedBuildInputs = with self; [ nose ]; @@ -13500,7 +13495,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/o/ordereddict/${name}.tar.gz"; - md5 = "a0ed854ee442051b249bfad0f638bbec"; + sha256 = "07qvy11nvgxpzarrni3wrww3vpc9yafgi2bch4j2vvvc42nb8d8w"; }; meta = { @@ -15685,7 +15680,7 @@ in modules // { src = pkgs.fetchurl { url = https://pypi.python.org/packages/source/p/python3-pika/python3-pika-0.9.14.tar.gz; - md5 = "f3a3ee58afe0ae06f1fa553710e1aa28"; + sha256 = "1c3hifwvn04kvlja88iawf0awyz726jynwnpcb6gn7376b4nfch7"; }; buildInputs = with self; [ nose mock pyyaml ]; @@ -20680,10 +20675,11 @@ in modules // { version = "0.8.2"; disabled = isPy33; - src = pkgs.fetchgit { - url = https://github.com/crosspop/sqlalchemy-imageattach.git; - rev = "refs/tags/${version}"; - md5 = "cffdcde30952176e35fccf385f579dda"; + src = pkgs.fetchFromGitHub { + repo = "sqlalchemy-imageattach"; + owner = "crosspop"; + rev = "${version}"; + sha256 = "1pqf7vk4lsvnhw169cqfyk0iz5f8n45470mdslklpi38z2fax9p0"; }; buildInputs = with self; [ pytest webob pkgs.imagemagick nose ]; @@ -21711,7 +21707,6 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/T/Twiggy/Twiggy-0.4.5.tar.gz"; - # md5 = "b0dfbbb7f56342e448af4d22a47a339c"; # provided by pypi website. sha256 = "4e8f1894e5aee522db6cb245ccbfde3c5d1aa08d31330c7e3af783b0e66eec23"; }; @@ -24959,7 +24954,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/${baseName}/${name}.tar.gz"; - md5 = "5cc79077f386a17b539f1e51c05a3650"; + sha256 = "0lc1x0pai85avm1r452xnvxc12wijnhz87xv20yp3is9fs6rnkrh"; }; buildInputs = with self; [ pkgs.coreutils ]; From 78b75b8ecd94abcdea5728c3b4fe506d825496ec Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 26 Mar 2016 19:55:39 +0300 Subject: [PATCH 617/678] cutegram: fix meta information and parallel building --- .../instant-messengers/telegram/cutegram/default.nix | 3 ++- .../telegram/libqtelegram-aseman-edition/default.nix | 5 +++-- .../instant-messengers/telegram/telegram-qml/default.nix | 5 +++-- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix b/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix index ec188e98284..806ee1fb9f3 100644 --- a/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix +++ b/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { telegram-qml libqtelegram-aseman-edition gst_plugins_base gst_plugins_good gst_plugins_bad gst_plugins_ugly ]; nativeBuildInputs = [ makeQtWrapper ]; - enableParallelBuild = true; + enableParallelBuilding = true; configurePhase = "qmake -r PREFIX=$out"; @@ -32,6 +32,7 @@ stdenv.mkDerivation rec { homepage = "http://aseman.co/en/products/cutegram/"; license = licenses.gpl3; maintainers = with maintainers; [ profpatsch AndersonTorres ]; + platforms = platforms.linux; }; } #TODO: appindicator, for system tray plugin (by @profpatsch) diff --git a/pkgs/applications/networking/instant-messengers/telegram/libqtelegram-aseman-edition/default.nix b/pkgs/applications/networking/instant-messengers/telegram/libqtelegram-aseman-edition/default.nix index 957c59b88e5..206b2a07476 100644 --- a/pkgs/applications/networking/instant-messengers/telegram/libqtelegram-aseman-edition/default.nix +++ b/pkgs/applications/networking/instant-messengers/telegram/libqtelegram-aseman-edition/default.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { }; buildInputs = [ qtbase qtmultimedia qtquick1 ]; - enableParallelBuild = true; + enableParallelBuilding = true; patchPhase = '' substituteInPlace libqtelegram-ae.pro --replace "/libqtelegram-ae" "" @@ -27,8 +27,9 @@ stdenv.mkDerivation rec { version = "6.1"; description = "A fork of libqtelegram by Aseman, using qmake"; homepage = src.meta.homepage; - license = stdenv.lib.licenses.gpl3; + license = licenses.gpl3; maintainers = [ maintainers.profpatsch ]; + platforms = platforms.linux; }; } diff --git a/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix b/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix index aa442cbe8b2..372531f658e 100644 --- a/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix +++ b/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { }; propagatedBuildInputs = [ qtbase qtmultimedia qtquick1 libqtelegram-aseman-edition ]; - enableParallelBuild = true; + enableParallelBuilding = true; patchPhase = '' substituteInPlace telegramqml.pro --replace "/\$\$LIB_PATH" "" @@ -28,8 +28,9 @@ stdenv.mkDerivation rec { version = "0.9.2"; description = "Telegram API tools for QtQml and Qml"; homepage = src.meta.homepage; - license = stdenv.lib.licenses.gpl3; + license = licenses.gpl3; maintainers = [ maintainers.profpatsch ]; + platforms = platforms.linux; }; } From ea5c7d553c0f43a971fe75216b595a31dc80af94 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 21 Mar 2016 18:18:54 +0300 Subject: [PATCH 618/678] dspam service: run after postgresql to prevent segfaults --- nixos/modules/services/mail/dspam.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/modules/services/mail/dspam.nix b/nixos/modules/services/mail/dspam.nix index 46e6f216b21..89076ff0546 100644 --- a/nixos/modules/services/mail/dspam.nix +++ b/nixos/modules/services/mail/dspam.nix @@ -104,6 +104,7 @@ in { systemd.services.dspam = { description = "dspam spam filtering daemon"; wantedBy = [ "multi-user.target" ]; + after = [ "postgresql.service" ]; restartTriggers = [ cfgfile ]; serviceConfig = { @@ -114,7 +115,7 @@ in { RuntimeDirectoryMode = optional (cfg.domainSocket == defaultSock) "0750"; PermissionsStartOnly = true; # DSPAM segfaults on just about every error - Restart = "on-failure"; + Restart = "on-abort"; RestartSec = "1s"; }; From 25754a5fc2fe5a9b7b1f1bacbbe289f92972da47 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 21 Mar 2016 18:46:26 +0300 Subject: [PATCH 619/678] uwsgi service: use python.buildEnv, fix PATH --- nixos/modules/services/web-servers/uwsgi.nix | 50 +++++++------------- 1 file changed, 16 insertions(+), 34 deletions(-) diff --git a/nixos/modules/services/web-servers/uwsgi.nix b/nixos/modules/services/web-servers/uwsgi.nix index e6c25e6215c..56f077e62a8 100644 --- a/nixos/modules/services/web-servers/uwsgi.nix +++ b/nixos/modules/services/web-servers/uwsgi.nix @@ -32,17 +32,27 @@ let self = pythonPackages; }; - json = builtins.toJSON { + penv = python.buildEnv.override { + extraLibs = (c.pythonPackages or (self: [])) pythonPackages; + }; + + uwsgiCfg = { uwsgi = if c.type == "normal" then { inherit plugins; } // removeAttrs c [ "type" "pythonPackages" ] // optionalAttrs (python != null) { - pythonpath = "@PYTHONPATH@"; - env = (c.env or {}) // { - PATH = optionalString (c ? env.PATH) "${c.env.PATH}:" + "@PATH@"; - }; + pythonpath = "${penv}/${python.sitePackages}"; + env = + # Argh, uwsgi expects list of key-values there instead of a dictionary. + let env' = c.env or []; + getPath = + x: if hasPrefix "PATH=" x + then substring (stringLength "PATH=") (stringLength x) x + else null; + oldPaths = filter (x: x != null) (map getPath env'); + in env' ++ [ "PATH=${optionalString (oldPaths != []) "${last oldPaths}:"}${penv}/bin" ]; } else if c.type == "emperor" then { @@ -55,35 +65,7 @@ let else throw "`type` attribute in UWSGI configuration should be either 'normal' or 'emperor'"; }; - in - if python == null || c.type != "normal" - then pkgs.writeTextDir "${name}.json" json - else pkgs.stdenv.mkDerivation { - name = "uwsgi-config"; - inherit json; - passAsFile = [ "json" ]; - nativeBuildInputs = [ pythonPackages.wrapPython ]; - pythonInputs = (c.pythonPackages or (self: [])) pythonPackages; - - buildCommand = '' - mkdir $out - declare -A pythonPathsSeen=() - program_PYTHONPATH= - program_PATH= - if [ -n "$pythonInputs" ]; then - for i in $pythonInputs; do - _addToPythonPath $i - done - fi - # A hack to replace "@PYTHONPATH@" with a JSON list - if [ -n "$program_PYTHONPATH" ]; then - program_PYTHONPATH="\"''${program_PYTHONPATH//:/\",\"}\"" - fi - substitute $jsonPath $out/${name}.json \ - --replace '"@PYTHONPATH@"' "[$program_PYTHONPATH]" \ - --subst-var-by PATH "$program_PATH" - ''; - }; + in pkgs.writeTextDir "${name}.json" (builtins.toJSON uwsgiCfg); in { From d95dfd06eeae6336dec70b892c6c19ec43a85fce Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 19 Mar 2016 04:19:16 +0300 Subject: [PATCH 620/678] octoprint-plugins.m3d-fio: 0.29 -> 0.30.2 --- pkgs/applications/misc/octoprint/plugins.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/octoprint/plugins.nix b/pkgs/applications/misc/octoprint/plugins.nix index d7927535f15..7ff6686a937 100644 --- a/pkgs/applications/misc/octoprint/plugins.nix +++ b/pkgs/applications/misc/octoprint/plugins.nix @@ -8,13 +8,13 @@ in { m3d-fio = buildPlugin rec { name = "M3D-Fio-${version}"; - version = "0.29"; + version = "0.30.2"; src = fetchFromGitHub { owner = "donovan6000"; repo = "M3D-Fio"; rev = "V${version}"; - sha256 = "17jyr7qf9psq3xcckk1zjhaw0h8a0mh3v8lcv9vgqzni27kq9pnb"; + sha256 = "1knm41hwjf6v4yjx8khr2zd9ryndmw8bkp3y80hgjc5p4nqxrmg3"; }; patches = [ From 539f1f36593e2c825dcb9a68ef6abc4dcb3c1af3 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sun, 27 Mar 2016 19:35:32 +0300 Subject: [PATCH 621/678] dwarf-fortress-packages: recurse into attrs (to build free packages) --- 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 682328140b2..08bd8f56760 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14511,7 +14511,7 @@ in duckmarines = callPackage ../games/duckmarines { love = love_0_9; }; - dwarf-fortress-packages = callPackage ../games/dwarf-fortress { }; + dwarf-fortress-packages = recurseIntoAttrs (callPackage ../games/dwarf-fortress { }); dwarf-fortress = dwarf-fortress-packages.dwarf-fortress.override { }; From 5471eed63ce770491a93f5c07543ba4ba818a90e Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sun, 27 Mar 2016 20:53:55 +0300 Subject: [PATCH 622/678] wxgtk: explicitly link to libX11 and libcairo --- pkgs/development/libraries/wxGTK-2.8/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/wxGTK-2.8/default.nix b/pkgs/development/libraries/wxGTK-2.8/default.nix index d7ca92f70d9..50220c227f7 100644 --- a/pkgs/development/libraries/wxGTK-2.8/default.nix +++ b/pkgs/development/libraries/wxGTK-2.8/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, pkgconfig, gtk, libXinerama, libSM, libXxf86vm, xf86vidmodeproto -, gstreamer, gst_plugins_base, GConf +, gstreamer, gst_plugins_base, GConf, libX11, cairo , withMesa ? true, mesa ? null, compat24 ? false, compat26 ? true, unicode ? true, }: @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { sha256 = "1l1w4i113csv3bd5r8ybyj0qpxdq83lj6jrc5p7cc10mkwyiagqz"; }; - buildInputs = [ gtk libXinerama libSM libXxf86vm xf86vidmodeproto gstreamer gst_plugins_base GConf ] + buildInputs = [ gtk libXinerama libSM libXxf86vm xf86vidmodeproto gstreamer gst_plugins_base GConf libX11 cairo ] ++ optional withMesa mesa; nativeBuildInputs = [ pkgconfig ]; @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { + optionalString withMesa "${mesa}/lib "; # Work around a bug in configure. - NIX_CFLAGS_COMPILE = "-DHAVE_X11_XLIB_H=1"; + NIX_CFLAGS_COMPILE = [ "-DHAVE_X11_XLIB_H=1" "-lX11" "-lcairo" ]; preConfigure = " substituteInPlace configure --replace 'SEARCH_INCLUDE=' 'DUMMY_SEARCH_INCLUDE=' From 4e9ddd37703d8807d8f68cd949d83be22df9cdaf Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sun, 27 Mar 2016 20:54:35 +0300 Subject: [PATCH 623/678] Revert "codeblocks: fix build" This reverts commit fd9416fb4b517ceb8a6af6184204d585f6e02c9f. This shouldn't be needed now that we properly link wxGTK. --- pkgs/applications/editors/codeblocks/default.nix | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/pkgs/applications/editors/codeblocks/default.nix b/pkgs/applications/editors/codeblocks/default.nix index f11a8b5cc3a..53b7b5750a0 100644 --- a/pkgs/applications/editors/codeblocks/default.nix +++ b/pkgs/applications/editors/codeblocks/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, autoconf, automake, libtool, pkgconfig, file, zip, wxGTK, gtk -, contribPlugins ? false, hunspell, gamin, boost, libX11, cairo +, contribPlugins ? false, hunspell, gamin, boost }: with { inherit (stdenv.lib) optionalString optional optionals; }; @@ -14,9 +14,7 @@ stdenv.mkDerivation rec { sha256 = "044njhps4cm1ijfdyr5f9wjyd0vblhrz9b4603ma52wcdq25093p"; }; - nativeBuildInputs = [ automake autoconf libtool pkgconfig ]; - - buildInputs = [ file zip wxGTK gtk libX11 cairo ] + buildInputs = [ automake autoconf libtool pkgconfig file zip wxGTK gtk ] ++ optionals contribPlugins [ hunspell gamin boost ]; enableParallelBuilding = true; patches = [ ./writable-projects.patch ]; @@ -25,9 +23,6 @@ stdenv.mkDerivation rec { configureFlags = [ "--enable-pch=no" ] ++ optional contribPlugins "--with-contrib-plugins"; - # for whatever reason, the build config does not set these flag ... - NIX_CFLAGS_COMPILE = "-lX11 -lcairo"; - # Fix boost 1.59 compat # Try removing in the next version CPPFLAGS = "-DBOOST_ERROR_CODE_HEADER_ONLY -DBOOST_SYSTEM_NO_DEPRECATED"; From 7b82f5a3fb81aa3c413aa05554a1fa85c14776e3 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sun, 27 Mar 2016 20:56:27 +0300 Subject: [PATCH 624/678] pgadmin: enable parallel building --- pkgs/applications/misc/pgadmin/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/misc/pgadmin/default.nix b/pkgs/applications/misc/pgadmin/default.nix index 55db70c1d24..894aeaab425 100644 --- a/pkgs/applications/misc/pgadmin/default.nix +++ b/pkgs/applications/misc/pgadmin/default.nix @@ -9,6 +9,8 @@ stdenv.mkDerivation rec { sha256 = "0gkqpj8cg6jd6yhssrij1cbh960rg9fkjbdzcpryi6axwv0ag7ki"; }; + enableParallelBuilding = true; + buildInputs = [ postgresql wxGTK libxml2 libxslt openssl ]; preConfigure = '' From a452b43ee5fd5e5321b5b5e6a233a118c4efeb07 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sun, 27 Mar 2016 19:46:35 +0200 Subject: [PATCH 625/678] lttng-modules: mark as broken on kernel version <3.18 On linux 3.14, we get errors like error: 'struct snd_soc_codec' has no member named 'name' __string( name, codec->CODEC_NAME_FIELD ) indicating that the module is incompatible with the linux API in this kernel version. See https://hydra.nixos.org/build/33102405/nixlog/1/raw --- pkgs/os-specific/linux/lttng-modules/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/lttng-modules/default.nix b/pkgs/os-specific/linux/lttng-modules/default.nix index 91a3464d1fa..f029c6b82be 100644 --- a/pkgs/os-specific/linux/lttng-modules/default.nix +++ b/pkgs/os-specific/linux/lttng-modules/default.nix @@ -25,7 +25,9 @@ stdenv.mkDerivation rec { license = with licenses; [ lgpl21 gpl2 mit ]; platforms = platforms.linux; maintainers = [ maintainers.bjornfor ]; - broken = (kernel.features.grsecurity or false); + broken = + (builtins.compareVersions kernel.version "3.18" == -1) || + (kernel.features.grsecurity or false); }; } From 5e985c42d665f5046bf5efc9248997b77b492526 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sun, 27 Mar 2016 21:36:33 +0300 Subject: [PATCH 626/678] cutegram: fix playing media files --- .../instant-messengers/telegram/cutegram/default.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix b/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix index 806ee1fb9f3..29a0f188516 100644 --- a/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix +++ b/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix @@ -2,7 +2,7 @@ , qtbase, qtmultimedia, qtquick1, qtquickcontrols , qtimageformats, qtgraphicaleffects , telegram-qml, libqtelegram-aseman-edition -, gst_plugins_base, gst_plugins_good, gst_plugins_bad, gst_plugins_ugly +, gst_all_1 , makeQtWrapper }: stdenv.mkDerivation rec { @@ -18,13 +18,18 @@ stdenv.mkDerivation rec { [ qtbase qtmultimedia qtquick1 qtquickcontrols qtimageformats qtgraphicaleffects telegram-qml libqtelegram-aseman-edition - gst_plugins_base gst_plugins_good gst_plugins_bad gst_plugins_ugly ]; + ] ++ (with gst_all_1; [ gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly ]); + nativeBuildInputs = [ makeQtWrapper ]; + enableParallelBuilding = true; configurePhase = "qmake -r PREFIX=$out"; - fixupPhase = "wrapQtProgram $out/bin/cutegram"; + fixupPhase = '' + wrapQtProgram $out/bin/cutegram \ + --prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0" + ''; meta = with stdenv.lib; { version = "2.7.1"; From dd16dcbba4a69b85b64ac043cebee5a8538c4fb4 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sun, 27 Mar 2016 20:05:21 +0200 Subject: [PATCH 627/678] linux_grsec_3_14: mark as broken First, The patch is outdated, I failed to find it anywhere in the mirror repos. Second, the build fails, and while it may be "fixed" by ad-hoc patching (it appears to simply need some missing includes), this would mean shipping a potentially insecure software package. Given that the only reason to use grsecurity is security, this is both misleading and exposes users to undue risk. Finally, the build has been broken for quite a long time with no complaints, leading me to believe that the number of actual users is quite low. --- pkgs/os-specific/linux/kernel/linux-grsecurity-3.14.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/os-specific/linux/kernel/linux-grsecurity-3.14.nix b/pkgs/os-specific/linux/kernel/linux-grsecurity-3.14.nix index a67a91b4d0c..da628620764 100644 --- a/pkgs/os-specific/linux/kernel/linux-grsecurity-3.14.nix +++ b/pkgs/os-specific/linux/kernel/linux-grsecurity-3.14.nix @@ -1,5 +1,7 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: +throw "grsecurity stable is no longer supported; please update your configuration" + import ./generic.nix (args // rec { version = "3.14.51"; extraMeta.branch = "3.14"; From acf664814e37c54a7c12b1d065354cab15382793 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 2 Feb 2016 16:56:05 +0300 Subject: [PATCH 628/678] texlive.combine: patch paths into texmf.cnf ...instead of environment variables. Close #12768. --- .../typesetting/tex/texlive-new/combine.nix | 21 +++++++++---------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/pkgs/tools/typesetting/tex/texlive-new/combine.nix b/pkgs/tools/typesetting/tex/texlive-new/combine.nix index e69c6ec425c..0619a3cc26c 100644 --- a/pkgs/tools/typesetting/tex/texlive-new/combine.nix +++ b/pkgs/tools/typesetting/tex/texlive-new/combine.nix @@ -60,21 +60,24 @@ in buildEnv { + '' export PATH="$out/bin:$out/share/texmf/scripts/texlive:${perl}/bin:$PATH" - export TEXMFCNF="$out/share/texmf/web2c" - export TEXMFDIST="$out/share/texmf" - export TEXMFSYSCONFIG="$out/share/texmf-config" - export TEXMFSYSVAR="$out/share/texmf-var" export PERL5LIB="$out/share/texmf/scripts/texlive" '' + - # patch texmf-dist -> texmf to be sure - # TODO: cleanup the search paths incl. SELFAUTOLOC, and perhaps do lua actions? + # patch texmf-{dist,local} -> texmf to be sure + # TODO: perhaps do lua actions? # tried inspiration from install-tl, sub do_texmf_cnf '' ( cd ./share/texmf/web2c/ local cnfOrig="$(realpath ./texmf.cnf)" rm ./texmf.cnf - cat "$cnfOrig" | sed 's/texmf-dist/texmf/g' > ./texmf.cnf + sed \ + -e 's,texmf-dist,texmf,g' \ + -e 's,texmf-local,texmf,g' \ + -e "s,\$SELFAUTOLOC,$out,g" \ + -e "s,\$SELFAUTODIR,$out/share,g" \ + -e "s,\$SELFAUTOPARENT,$out/share,g" \ + -e "s,\$SELFAUTOGRANDPARENT,$out/share,g" \ + "$cnfOrig" > ./texmf.cnf rm updmap.cfg ) @@ -112,10 +115,6 @@ in buildEnv { rm "$link" makeWrapper "$target" "$link" \ --prefix PATH : "$out/bin:${perl}/bin" \ - --set TEXMFCNF "$out/share/texmf/web2c" \ - --set TEXMFDIST "$out/share/texmf" \ - --set TEXMFSYSCONFIG "$out/share/texmf-config" \ - --set TEXMFSYSVAR "$out/share/texmf-var" \ --prefix PERL5LIB : "$out/share/texmf/scripts/texlive" # avoid using non-nix shebang in $target by calling interpreter From 05cc16e35e2f7258d831dd20e80850fd8e75190c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 27 Mar 2016 20:22:33 +0100 Subject: [PATCH 629/678] perlPackages.TestMockModule: fix build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit 7bd9321c6d10b4af965c8c3dcaae023f5d2646e7) Signed-off-by: Domen Kožar --- pkgs/top-level/perl-packages.nix | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index c7b9b43d880..b77e53dcdf9 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -11805,18 +11805,33 @@ let self = _self // overrides; _self = with self; { }; }; - TestMockModule = buildPerlPackage { - name = "Test-MockModule-0.05"; + TestMockModule = buildPerlModule { + name = "Test-MockModule-0.11"; src = fetchurl { - url = mirror://cpan/authors/id/S/SI/SIMONFLK/Test-MockModule-0.05.tar.gz; - sha256 = "01vf75higpap5mwm5fyas08b3qcmy5bfq1c3wl4h0y3nihjibib7"; + url = mirror://cpan/authors/id/G/GF/GFRANKS/Test-MockModule-0.11.tar.gz; + sha256 = "1f8l5y9dzik7a19mdbydqa0yxc4x0ilgpf9yaq6ix0bzlsilnn05"; }; + propagatedBuildInputs = [ SUPER ]; meta = { maintainers = with maintainers; [ ocharles ]; platforms = stdenv.lib.platforms.unix; }; }; + SUPER = buildPerlPackage rec { + name = "SUPER-1.20141117"; + src = fetchurl { + url = "mirror://cpan/authors/id/C/CH/CHROMATIC/${name}.tar.gz"; + sha256 = "1a620e7d60aee9b13b1b26a44694c43fdb2bba1755cfff435dae83c7d42cc0b2"; + }; + propagatedBuildInputs = [ SubIdentify ]; + meta = { + description = "Control superclass method dispatch"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + }; + }; + + TestMockObject = buildPerlPackage rec { name = "Test-MockObject-1.20150527"; src = fetchurl { From d7034e6d5fd3671c7b3050e26c7a57b29c68457a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sun, 27 Mar 2016 20:22:16 +0100 Subject: [PATCH 630/678] nixUnstable: bump MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit bb6d3c16d3a851c646c0d1fc6976b546c766a227) Signed-off-by: Domen Kožar --- pkgs/tools/package-management/nix/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/package-management/nix/default.nix b/pkgs/tools/package-management/nix/default.nix index 768193857c6..608fb31df78 100644 --- a/pkgs/tools/package-management/nix/default.nix +++ b/pkgs/tools/package-management/nix/default.nix @@ -97,10 +97,10 @@ in rec { }; nixUnstable = lib.lowPrio (common rec { - name = "nix-1.12pre4509_69f28eb"; + name = "nix-1.12pre4523_3b81b26"; src = fetchurl { - url = "http://hydra.nixos.org/build/33307573/download/4/${name}.tar.xz"; - sha256 = "0i8l9vlcrhmlq8f7hx3x083lpmp903xy0zbr4gsdc9365j9vlgqk"; + url = "http://hydra.nixos.org/build/33598573/download/4/${name}.tar.xz"; + sha256 = "0469zv09m85824w4vqj2ag0nciq51xvrvsys7bd5v4nrxihk9991"; }; }); From f8540e36ed03217febda1267d80a52bcc86803f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Tue, 22 Mar 2016 23:13:40 +0000 Subject: [PATCH 631/678] fix perl modules for i3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit ca6ac920ed0eb2bb0f4284c118c8c416742d5810) Signed-off-by: Domen Kožar --- pkgs/top-level/perl-packages.nix | 29 ++++++++++++++++++++++------- 1 file changed, 22 insertions(+), 7 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index b77e53dcdf9..d03e23ddf80 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -6372,19 +6372,20 @@ let self = _self // overrides; _self = with self; { }; InlineC = buildPerlPackage rec { - name = "Inline-C-0.62"; + name = "Inline-C-0.76"; src = fetchurl { - url = "mirror://cpan/authors/id/E/ET/ETJ/${name}.tar.gz"; - sha256 = "0clggdpj5mmi35vm2991f9jsgv2a3s8r4f1bd88xxk8akv5b8i3r"; + url = "mirror://cpan/authors/id/I/IN/INGY/${name}.tar.gz"; + sha256 = "0dcs39zjiglif3ss8p8yl0jyqk7qvc9g1ad9wi4kq79k9lxp3s92"; }; postPatch = '' # this test will fail with chroot builds rm -f t/08taint.t + rm -f t/28autowrap.t ''; - buildInputs = [ TestWarn FileCopyRecursive ]; + buildInputs = [ TestWarn FileCopyRecursive FileShareDirInstall IOAll Pegex YAMLLibYAML ]; propagatedBuildInputs = [ Inline ]; meta = { @@ -8560,10 +8561,10 @@ let self = _self // overrides; _self = with self; { }; Mouse = buildPerlModule rec { - name = "Mouse-2.3.0"; + name = "Mouse-v2.4.5"; src = fetchurl { - url = "mirror://cpan/authors/id/G/GF/GFUJI/${name}.tar.gz"; - sha256 = "0ycl521mmc5989934502730rzsi9xqihdpnjihrkhflqmrzmaqwq"; + url = "mirror://cpan/authors/id/S/SY/SYOHEX/${name}.tar.gz"; + sha256 = "1f4dps68f2w1fwqjfpr4kllbcbwd744v3h1r9rkpwc2fhvq3q8hl"; }; buildInputs = [ ModuleBuildXSUtil TestException TestLeakTrace TestRequires TestOutput @@ -9384,6 +9385,20 @@ let self = _self // overrides; _self = with self; { }; }; + Pegex = buildPerlPackage rec { + name = "Pegex-0.60"; + src = fetchurl { + url = "mirror://cpan/authors/id/I/IN/INGY/${name}.tar.gz"; + sha256 = "317347f8c6355e886d87aef4c30fb4cb6cfa3e46adf62f59e6141ec05a97f2cf"; + }; + buildInputs = [ FileShareDirInstall YAMLLibYAML ]; + meta = { + homepage = https://github.com/ingydotnet/pegex-pm; + description = "Acmeist PEG Parser Framework"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + }; + }; + Perl5lib = buildPerlPackage rec { name = "perl5lib-1.02"; src = fetchurl { From 3027abe92703979e4fd94c12e62b1fe649f20eaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Fri, 25 Mar 2016 09:49:39 +0000 Subject: [PATCH 632/678] libgda: 5.2.2 -> 5.2.4 (fix build) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit efc7b847e3c6727ad8f441e7c900d49f9cce0304) Signed-off-by: Domen Kožar --- pkgs/desktops/gnome-3/3.18/misc/libgda/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.18/misc/libgda/default.nix b/pkgs/desktops/gnome-3/3.18/misc/libgda/default.nix index 1fcb411d120..12065b53600 100644 --- a/pkgs/desktops/gnome-3/3.18/misc/libgda/default.nix +++ b/pkgs/desktops/gnome-3/3.18/misc/libgda/default.nix @@ -2,7 +2,7 @@ let major = "5.2"; - minor = "2"; + minor = "4"; in stdenv.mkDerivation rec { version = "${major}.${minor}"; @@ -10,7 +10,7 @@ in stdenv.mkDerivation rec { src = fetchurl { url = "mirror://gnome/sources/libgda/${major}/${name}.tar.xz"; - sha256 = "c9b8b1c32f1011e47b73c5dcf36649aaef2f1edaa5f5d75be20d9caadc2bc3e4"; + sha256 = "0pkn9dlb53j73ajkhj8lkf5pa26ci1gwl0bcvxdsmjrwb3fkivic"; }; configureFlags = [ From 6bcee1d9b223e6552243c7844bb1c8ca31d436d0 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 23 Mar 2016 08:44:35 -0500 Subject: [PATCH 633/678] kde5.l10n.nl: re-enable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit e81ee2be29e92599f568681e3a9601d356ff8892) Signed-off-by: Domen Kožar --- pkgs/desktops/kde-5/applications-15.12/l10n.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkgs/desktops/kde-5/applications-15.12/l10n.nix b/pkgs/desktops/kde-5/applications-15.12/l10n.nix index a0605e3bd55..3f06b9e41ad 100644 --- a/pkgs/desktops/kde-5/applications-15.12/l10n.nix +++ b/pkgs/desktops/kde-5/applications-15.12/l10n.nix @@ -152,13 +152,10 @@ lib.mapAttrs (name: attr: pkgs.recurseIntoAttrs attr) { qt4 = callPackage (kdeLocale4 "nds" {}) {}; qt5 = callPackage (kdeLocale5 "nds" {}) {}; }; - # TODO: build broken in 15.11.80; re-enable in next release - /* nl = { qt4 = callPackage (kdeLocale4 "nl" {}) {}; qt5 = callPackage (kdeLocale5 "nl" {}) {}; }; - */ nn = { qt4 = callPackage (kdeLocale4 "nn" {}) {}; qt5 = callPackage (kdeLocale5 "nn" {}) {}; From 0e5b441133631e2686e3c690f4e6bfca8fc6f318 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 23 Mar 2016 08:44:49 -0500 Subject: [PATCH 634/678] kde5.l10n.sr: patch shebangs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit cb9f989b18d32bfa1206d6091afbfaeff50fed28) Signed-off-by: Domen Kožar --- pkgs/desktops/kde-5/applications-15.12/l10n.nix | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/pkgs/desktops/kde-5/applications-15.12/l10n.nix b/pkgs/desktops/kde-5/applications-15.12/l10n.nix index 3f06b9e41ad..9b211faf444 100644 --- a/pkgs/desktops/kde-5/applications-15.12/l10n.nix +++ b/pkgs/desktops/kde-5/applications-15.12/l10n.nix @@ -193,9 +193,19 @@ lib.mapAttrs (name: attr: pkgs.recurseIntoAttrs attr) { qt5 = callPackage (kdeLocale5 "sl" {}) {}; }; sr = { - qt4 = callPackage (kdeLocale4 "sr" {}) {}; + qt4 = callPackage (kdeLocale4 "sr" { + preConfigure = '' + patchShebangs \ + 4/sr/sr@latin/scripts/ts-pmap-compile.py \ + 4/sr/scripts/ts-pmap-compile.py \ + 4/sr/data/resolve-sr-hybrid \ + 4/sr/sr@ijekavian/scripts/ts-pmap-compile.py \ + 4/sr/sr@ijekavianlatin/scripts/ts-pmap-compile.py + ''; + }) {}; qt5 = callPackage (kdeLocale5 "sr" { preConfigure = '' + patchShebangs 5/sr/data/resolve-sr-hybrid sed -e 's/add_subdirectory(kdesdk)//' -i 5/sr/data/CMakeLists.txt ''; }) {}; From 4d7e3be8bb60fbb46a6380148ce6c4e79f3b06df Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 23 Mar 2016 08:44:05 -0500 Subject: [PATCH 635/678] calamares: mark broken MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit b8db5897c757a9a828e4bc64786ac508e8a950bb) Signed-off-by: Domen Kožar --- pkgs/tools/misc/calamares/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/misc/calamares/default.nix b/pkgs/tools/misc/calamares/default.nix index ab00d52c777..f9f9f06eb51 100644 --- a/pkgs/tools/misc/calamares/default.nix +++ b/pkgs/tools/misc/calamares/default.nix @@ -51,5 +51,6 @@ stdenv.mkDerivation rec { license = licenses.gpl3; maintainers = with stdenv.lib.maintainers; [ tstrobel ]; platforms = platforms.linux; + broken = true; }; } From 0d73970db6cfae2ae9a98a027ea40f618303ddeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Tue, 22 Mar 2016 21:04:30 +0000 Subject: [PATCH 636/678] xen: use gcc49 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit 0e41e8bbf0d54d4f7918b8010e9f2e77ce27cca6) Signed-off-by: Domen Kožar --- pkgs/top-level/all-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 545098b073c..89f2ae1a19c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14228,9 +14228,9 @@ in xdotool = callPackage ../tools/X11/xdotool { }; - xen_4_5_0 = callPackage ../applications/virtualization/xen/4.5.0.nix { }; - xen_4_5_2 = callPackage ../applications/virtualization/xen/4.5.2.nix { }; - xen_xenServer = callPackage ../applications/virtualization/xen/4.5.0.nix { xenserverPatched = true; }; + xen_4_5_0 = callPackage ../applications/virtualization/xen/4.5.0.nix { stdenv = overrideCC stdenv gcc49; }; + xen_4_5_2 = callPackage ../applications/virtualization/xen/4.5.2.nix { stdenv = overrideCC stdenv gcc49; }; + xen_xenServer = callPackage ../applications/virtualization/xen/4.5.0.nix { xenserverPatched = true; stdenv = overrideCC stdenv gcc49; }; xen = xen_4_5_2; win-spice = callPackage ../applications/virtualization/driver/win-spice { }; From 38afa836b3d9eba56a4686ff81980b98921130e2 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 27 Mar 2016 23:27:51 +0200 Subject: [PATCH 637/678] openvpn: 2.3.8 -> 2.3.10 In particular, this fixes the systemd-ask-password regression re-introduced by cb1c818491c6335aefd3eb3c3e57d76d038f5259. --- pkgs/tools/networking/openvpn/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/openvpn/default.nix b/pkgs/tools/networking/openvpn/default.nix index f90370edf51..4f27c89fa82 100644 --- a/pkgs/tools/networking/openvpn/default.nix +++ b/pkgs/tools/networking/openvpn/default.nix @@ -3,11 +3,11 @@ with stdenv.lib; stdenv.mkDerivation rec { - name = "openvpn-2.3.8"; + name = "openvpn-2.3.10"; src = fetchurl { url = "http://swupdate.openvpn.net/community/releases/${name}.tar.gz"; - sha256 = "0lbw22qv3m0axhs13razr6b4x1p7jcpvf9rzb15b850wyvpka92k"; + sha256 = "1xn8kv4v4h4v8mhd9k4s9rilb7k30jgb9rm7n4fwmfrm5swvbc7q"; }; patches = optional stdenv.isLinux ./systemd-notify.patch; From f9b5ed66d10af4ace464b1031ee3b18bc6c8509d Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 27 Mar 2016 23:31:08 +0200 Subject: [PATCH 638/678] Inline qt4-clang This prevents a potential name/version conflict in nix-env, and a large Hydra build for a proprietary package. --- pkgs/top-level/all-packages.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 89f2ae1a19c..fe654a12f79 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13548,12 +13548,10 @@ in siproxd = callPackage ../applications/networking/siproxd { }; - # Needed for skype - qt4-clang = qt4.override { - stdenv = clangStdenv; - }; skype = callPackage_i686 ../applications/networking/instant-messengers/skype { - qt4 = pkgsi686Linux.qt4-clang; + qt4 = qt4.override { + stdenv = clangStdenv; + }; }; skype4pidgin = callPackage ../applications/networking/instant-messengers/pidgin-plugins/skype4pidgin { }; From 891fa19e29e689793d897664baf4fa139b6a914b Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Mon, 28 Mar 2016 00:02:10 +0200 Subject: [PATCH 639/678] Fix Midori build --- pkgs/applications/networking/browsers/midori/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/networking/browsers/midori/default.nix b/pkgs/applications/networking/browsers/midori/default.nix index a2a8c5ded7e..9eaf254b23b 100644 --- a/pkgs/applications/networking/browsers/midori/default.nix +++ b/pkgs/applications/networking/browsers/midori/default.nix @@ -39,6 +39,8 @@ stdenv.mkDerivation rec { -DUSE_ZEITGEIST=OFF ''; + NIX_LDFLAGS="-lX11"; + preFixup = '' wrapProgram $out/bin/midori \ --prefix GIO_EXTRA_MODULES : "${glib_networking}/lib/gio/modules" \ From af3ec2046ad8fcb851a49ed0ead99cdf4f225b97 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Mon, 28 Mar 2016 00:55:10 +0200 Subject: [PATCH 640/678] perl-Alien-Wx: pass ModuleBuild dependency --- pkgs/top-level/perl-packages.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index d03e23ddf80..109027c5769 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -113,7 +113,8 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/M/MD/MDOOTSON/${name}.tar.gz"; sha256 = "075m880klf66pbcfk0la2nl60vd37jljizqndrklh5y4zvzdy1nr"; }; - propagatedBuildInputs = [ pkgs.pkgconfig pkgs.gtk2 pkgs.wxGTK ModulePluggable ]; + propagatedBuildInputs = [ pkgs.pkgconfig pkgs.gtk2 pkgs.wxGTK + ModulePluggable ModuleBuild ]; }; AnyEvent = buildPerlPackage rec { From 1a97cfb91f9f76f463bc0b9bc1a08850e737201a Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Mon, 28 Mar 2016 01:00:27 +0200 Subject: [PATCH 641/678] lilypond: set some HOME during the build for Metafont --- pkgs/misc/lilypond/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/misc/lilypond/default.nix b/pkgs/misc/lilypond/default.nix index 8b2be0914e3..731dc263a02 100644 --- a/pkgs/misc/lilypond/default.nix +++ b/pkgs/misc/lilypond/default.nix @@ -30,6 +30,8 @@ stdenv.mkDerivation rec{ # confused the version detection… sed -re 's%("[$]exe" --version .*)([|\\] *$)%\1 | sed -re "s@/nix/store/[a-z0-9]{32}-@@" \2%' \ -i configure + + export HOME=$TMPDIR/home ''; postInstall = '' From 0d18980bf56c7c0b77ec6ddbff40a96ee221f524 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Mon, 28 Mar 2016 01:18:32 +0200 Subject: [PATCH 642/678] perl-Net-SMTP-SSL: update --- 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 109027c5769..64fb80ed06d 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -8965,10 +8965,10 @@ let self = _self // overrides; _self = with self; { }; NetSMTPSSL = buildPerlPackage { - name = "Net-SMTP-SSL-1.01"; + name = "Net-SMTP-SSL-1.03"; src = fetchurl { - url = mirror://cpan/authors/id/C/CW/CWEST/Net-SMTP-SSL-1.01.tar.gz; - sha256 = "12b2xvrd253ngvzwf81s9han4jr94l39vs5ca70pzr3wpi39qn8k"; + url = mirror://cpan/authors/id/R/RJ/RJBS/Net-SMTP-SSL-1.03.tar.gz; + sha256 = "05y94mb1vdw32mvwb0cp2h4ggh32f8j8nwwfjb8kjwxvfkfhyp9h"; }; propagatedBuildInputs = [IOSocketSSL]; }; From d5207802faacaf895fe3f653e9dbef2ae40183d5 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 28 Mar 2016 00:16:38 +0200 Subject: [PATCH 643/678] mcelog: 134 -> 135 --- pkgs/os-specific/linux/mcelog/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/mcelog/default.nix b/pkgs/os-specific/linux/mcelog/default.nix index 40368d1c08f..cd2cd511435 100644 --- a/pkgs/os-specific/linux/mcelog/default.nix +++ b/pkgs/os-specific/linux/mcelog/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { name = "mcelog-${version}"; - version = "134"; + version = "135"; src = fetchFromGitHub { - sha256 = "1kah9fcbc8m7sncylcd2n4xcbm5dwgyzplm3d7zwgkdg6xgxjlc7"; + sha256 = "1bkbcb2zz7x7q893f1r8bm783jb3v7ww1yqys1hmqzn40hdwfr8p"; rev = "v${version}"; repo = "mcelog"; owner = "andikleen"; From f11fd4a4763251d677eb54d3cada85b2b6618c82 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Sun, 27 Mar 2016 19:25:31 -0500 Subject: [PATCH 644/678] perlPackages.DataInteger: depend on ModuleBuild --- pkgs/top-level/perl-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 64fb80ed06d..d2261814e15 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -2766,6 +2766,7 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/Z/ZE/ZEFRAM/${name}.tar.gz"; sha256 = "1dk04jf78sv63lww1qzagxlywcc04cfd3cfvzz168d24db9cr5bz"; }; + buildInputs = [ ModuleBuild ]; }; DataOptList = buildPerlPackage { From 2d182a29922a9ee95f5bdd03d0d3de4b6efb966b Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Sun, 27 Mar 2016 20:08:23 -0500 Subject: [PATCH 645/678] perlPackages.AuthenDecHpwd: Depend on ModuleBuild --- pkgs/top-level/perl-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index d2261814e15..cd8d044422a 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -412,6 +412,7 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/Z/ZE/ZEFRAM/${name}.tar.gz"; sha256 = "67f45fef6a23b7548f387b675cbf7881bf9da62d7d007cbf90d3a4b851b99eb7"; }; + buildInputs = [ ModuleBuild ]; propagatedBuildInputs = [ ScalarString DataInteger DigestCRC ]; }; From fb7ebfb8a6e7779e5f58f1fa4f9dd9a282dcb71b Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Sun, 27 Mar 2016 20:09:00 -0500 Subject: [PATCH 646/678] perlPackages.AuthenPassphrase: Depend on ModuleBuild --- pkgs/top-level/perl-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index cd8d044422a..466476d0f43 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -431,6 +431,7 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/Z/ZE/ZEFRAM/${name}.tar.gz"; sha256 = "55db4520617d859d88c0ee54965da815b7226d792b8cdc8debf92073559e0463"; }; + buildInputs = [ ModuleBuild ]; propagatedBuildInputs = [ModuleRuntime ParamsClassify CryptPasswdMD5 CryptDES DataEntropy CryptUnixCryptXS CryptEksblowfish CryptMySQL DigestMD4 AuthenDecHpwd]; }; From 37131c116c1834b212b1417fe97e9b9e0a694d8d Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Sun, 27 Mar 2016 20:09:26 -0500 Subject: [PATCH 647/678] perlPackages.CGIFormBuilder: Depend on CGI --- pkgs/top-level/perl-packages.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 466476d0f43..55979e5fc56 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -1505,6 +1505,8 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/N/NW/NWIGER/${name}.tgz"; sha256 = "0qx8kxj0iy55ss9kraqr8q2m4igi2ylajff7d6qvphqpfx90fjb5"; }; + + propagatedBuildInputs = [ CGI ]; }; CGIPSGI = buildPerlPackage { From 692547202d61d4dd9f4c418ac669b5042c29be32 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Sun, 27 Mar 2016 20:09:49 -0500 Subject: [PATCH 648/678] perlPackages.CGISession: Depend on CGI --- pkgs/top-level/perl-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 55979e5fc56..344f68501d1 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -1528,6 +1528,7 @@ let self = _self // overrides; _self = with self; { sha256 = "1xsl2pz1jrh127pq0b01yffnj4mnp9nvkp88h5mndrscq9hn8xa6"; }; buildInputs = [ DBFile ]; + propagatedBuildInputs = [ CGI ]; }; CGISimple = buildPerlPackage rec { From 189d29e5f6ec30a6656c95238252a36b9eb2d070 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Sun, 27 Mar 2016 20:10:09 -0500 Subject: [PATCH 649/678] perlPackages.ClassMix: Depend on CGI --- pkgs/top-level/perl-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 344f68501d1..72d6a808916 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -1817,6 +1817,7 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/Z/ZE/ZEFRAM/${name}.tar.gz"; sha256 = "054d0db62df90f22601f2a18fc84e9ca026d81601f5940b2fcc543e39d69b36b"; }; + buildInputs = [ ModuleBuild ]; propagatedBuildInputs = [ParamsClassify]; }; From 5dd946ded9551c30429bd89aaf2de14ef49ef24d Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Sun, 27 Mar 2016 20:10:31 -0500 Subject: [PATCH 650/678] perlPackages.CryptEksblowfish: Depend on ModuleBuild --- pkgs/top-level/perl-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 72d6a808916..72ebc59daf5 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -2422,6 +2422,7 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/Z/ZE/ZEFRAM/${name}.tar.gz"; sha256 = "3cc7126d5841107237a9be2dc5c7fbc167cf3c4b4ce34678a8448b850757014c"; }; + buildInputs = [ ModuleBuild ]; propagatedBuildInputs = [ClassMix]; }; From 4532a2a75d69771b2c55f26c42d9c078df18bc53 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Sun, 27 Mar 2016 20:11:00 -0500 Subject: [PATCH 651/678] perlPackages.DataEntropy: Depend on ModuleBuild --- pkgs/top-level/perl-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 72ebc59daf5..f33bb25f20c 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -2707,6 +2707,7 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/Z/ZE/ZEFRAM/${name}.tar.gz"; sha256 = "2611c4a1a3038594d79ea4ed14d9e15a9af8f77105f51667795fe4f8a53427e4"; }; + buildInputs = [ ModuleBuild ]; propagatedBuildInputs = [ParamsClassify DataFloat CryptRijndael HTTPLite]; }; From 9fc9ede52d230cbc156d1ebb0e39c26949eca6a8 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Sun, 27 Mar 2016 20:11:25 -0500 Subject: [PATCH 652/678] perlPackages.DataFloat: Depend on ModuleBuild --- pkgs/top-level/perl-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index f33bb25f20c..70a3e3cf16e 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -2717,6 +2717,7 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/Z/ZE/ZEFRAM/${name}.tar.gz"; sha256 = "698ecb092a3284e260cd3c3208408feb791d7d0f06a02673f9125ab2d51cc2d8"; }; + buildInputs = [ ModuleBuild ]; }; DataGUID = buildPerlPackage { From 2a44c63c43e3a85d22c8c24077fca09ff72e0962 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Sun, 27 Mar 2016 20:11:56 -0500 Subject: [PATCH 653/678] perlPackages.HTMLTemplate: Depend on CGI --- pkgs/top-level/perl-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 70a3e3cf16e..5f975359f2b 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -5761,6 +5761,7 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/W/WO/WONKO/${name}.tar.gz"; sha256 = "07ahpfgidxsw2yb7y8i7bbr8s64aq6qgq832h9jswmksxbd0l43q"; }; + propagatedBuildInputs = [ CGI ]; }; HTMLTidy = buildPerlPackage rec { From df9a6362ea8e875a2cd9f3d9997699be32e4d1e0 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Sun, 27 Mar 2016 20:12:16 -0500 Subject: [PATCH 654/678] perlPackages.HTTPLite: Depend on ModuleBuild --- pkgs/top-level/perl-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 5f975359f2b..2d317e0290b 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -5907,6 +5907,7 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/N/NE/NEILB/${name}.tar.gz"; sha256 = "10svyy8r5ca86spz21r0k2mdy8g2slzssin4qbg101zc9kr5r65a"; }; + buildInputs = [ ModuleBuild ]; }; HTTPMessage = buildPerlPackage { From 849e743040d3723e5731781e5094d3020ae008b5 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Sun, 27 Mar 2016 20:12:49 -0500 Subject: [PATCH 655/678] perlPackages.NetOpenIDConsumer: Depend on CGI --- pkgs/top-level/perl-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 2d317e0290b..212ee567e79 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -9151,7 +9151,7 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/W/WR/WROG/${name}.tar.gz"; sha256 = "1nh9988436rmmmd6x2zz1fyrqy2005a1gvqzgvnc1pg2ylg61fqf"; }; - propagatedBuildInputs = [ NetOpenIDCommon JSON LWP ]; + propagatedBuildInputs = [ CGI NetOpenIDCommon JSON LWP ]; }; PackageConstants = buildPerlPackage { From aa73eadc1c4d018aad3520094f2318229f47b59e Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Sun, 27 Mar 2016 20:13:27 -0500 Subject: [PATCH 656/678] perlPackages.ParamsClassify: Depend on ModuleBuild --- pkgs/top-level/perl-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 212ee567e79..9494790eac9 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -9246,7 +9246,7 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/modules/by-module/Params/${name}.tar.gz"; sha256 = "1d4ysd95flszrxrnjgy6s7b80jkagjsb939h42i2hix4q20sy0a1"; }; - buildInputs = [ ExtUtilsParseXS ]; + buildInputs = [ ModuleBuild ExtUtilsParseXS ]; }; ParamsUtil = buildPerlPackage { From ce5914c8983ad08bc4ccdc27c19ad7252ad6beb5 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Sun, 27 Mar 2016 20:13:51 -0500 Subject: [PATCH 657/678] perlPackages.ScalarString: Depend on ModuleBuild --- pkgs/top-level/perl-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 9494790eac9..884b6447da3 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -10307,6 +10307,7 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/Z/ZE/ZEFRAM/${name}.tar.gz"; sha256 = "d3a45cc137bb9f7d8848d5a10a5142d275a98f8dcfd3adb60593cee9d33fa6ae"; }; + buildInputs = [ ModuleBuild ]; }; ScopeGuard = buildPerlPackage { From 200ddaa54fbe4c73153b4acf96aa64dca039391c Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Sun, 27 Mar 2016 20:35:22 -0500 Subject: [PATCH 658/678] perlPackages.DataSerializer: Depend on ModuleBuild --- pkgs/top-level/perl-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 884b6447da3..48207510aa8 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -2829,6 +2829,7 @@ let self = _self // overrides; _self = with self; { url = mirror://cpan/authors/id/N/NE/NEELY/Data-Serializer-0.60.tar.gz; sha256 = "0ca4s811l7f2bqkx7vnyxbpp4f0qska89g2pvsfb3k0bhhbk0jdk"; }; + buildInputs = [ ModuleBuild ]; meta = { description = "Modules that serialize data structures"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; From 36b88f8df7f845f0473e50f30f6fafc5169dac14 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Sun, 27 Mar 2016 20:36:53 -0500 Subject: [PATCH 659/678] perlPackages.DateTimeFormatDateParse: Depend on ModuleBuild --- pkgs/top-level/perl-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 48207510aa8..b28625d88d4 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -3014,6 +3014,7 @@ let self = _self // overrides; _self = with self; { url = mirror://cpan/authors/id/J/JH/JHOBLITT/DateTime-Format-DateParse-0.05.tar.gz; sha256 = "f6eca4c8be66ce9992ee150932f8fcf07809fd3d1664caf200b8a5fd3a7e5ebc"; }; + buildInputs = [ ModuleBuild ]; propagatedBuildInputs = [ DateTime DateTimeTimeZone TimeDate ]; meta = { description = "Parses Date::Parse compatible formats"; From c3d6b5e8f25706157172e338bfd585a537d3b92e Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Sun, 27 Mar 2016 21:00:45 -0500 Subject: [PATCH 660/678] I18NLangTags: Removed, as this version is 12 years old and is now bundled with core. --- pkgs/top-level/perl-packages.nix | 9 --------- 1 file changed, 9 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index b28625d88d4..f2cf8f04777 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -6006,14 +6006,6 @@ let self = _self // overrides; _self = with self; { }; }; - I18NLangTags = buildPerlPackage { - name = "I18N-LangTags-0.35"; - src = fetchurl { - url = mirror://cpan/authors/id/S/SB/SBURKE/I18N-LangTags-0.35.tar.gz; - sha256 = "0idwfi7k8l44d9akpdj6ygdz3q8zxr690m18s7w23ms9d55bh3jy"; - }; - }; - "if" = null; # For backwards compatibility. @@ -6802,7 +6794,6 @@ let self = _self // overrides; _self = with self; { url = mirror://cpan/authors/id/T/TO/TODDR/Locale-Maketext-1.23.tar.gz; sha256 = "1r1sq7djafvk5abzc4l068p39dz44hlpgdldj3igvn2bjz78cli1"; }; - propagatedBuildInputs = [I18NLangTags]; }; LocaleMaketextFuzzy = buildPerlPackage { From 125ee11a35fc22a0104ec512f608a4396fba5c4f Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Sun, 27 Mar 2016 21:08:31 -0500 Subject: [PATCH 661/678] perlPackage.RTClientREST: Depend on CGI --- pkgs/top-level/perl-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index f2cf8f04777..fbc237b5de4 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -10254,7 +10254,7 @@ let self = _self // overrides; _self = with self; { sha256 = "832c84b4f19e97781e8902f123a659fdcfef68e0ed9cfe09055852e9d68f7afc"; }; buildInputs = [ TestException ]; - propagatedBuildInputs = [ DateTime DateTimeFormatDateParse Error ExceptionClass HTTPCookies HTTPMessage LWP ParamsValidate URI ]; + propagatedBuildInputs = [ CGI DateTime DateTimeFormatDateParse Error ExceptionClass HTTPCookies HTTPMessage LWP ParamsValidate URI ]; meta = { description = "Talk to RT installation using REST protocol"; license = "perl"; From 8d1660ce1498343df366b40c4821cf0cc7b0640c Mon Sep 17 00:00:00 2001 From: Peter Hoeg Date: Thu, 24 Mar 2016 22:08:40 +0800 Subject: [PATCH 662/678] virtualbox service: fix use of deprecated option names --- nixos/modules/programs/virtualbox.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/programs/virtualbox.nix b/nixos/modules/programs/virtualbox.nix index a00b1e5f64d..be96cf23b39 100644 --- a/nixos/modules/programs/virtualbox.nix +++ b/nixos/modules/programs/virtualbox.nix @@ -1,8 +1,8 @@ let msg = "Importing is " - + "deprecated, please use `services.virtualboxHost.enable = true' " + + "deprecated, please use `virtualisation.virtualbox.host.enable = true' " + "instead."; in { config.warnings = [ msg ]; - config.services.virtualboxHost.enable = true; + config.virtualisation.virtualbox.host.enable = true; } From eb4a9d4d9ca526f8d4c4fab64545b147ce1da31b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 28 Mar 2016 08:51:39 +0200 Subject: [PATCH 663/678] Revert "texlive.combine: patch paths into texmf.cnf" This reverts commit acf664814e37c54a7c12b1d065354cab15382793. Let's revert until we catch the bugs in this. --- .../typesetting/tex/texlive-new/combine.nix | 21 ++++++++++--------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/pkgs/tools/typesetting/tex/texlive-new/combine.nix b/pkgs/tools/typesetting/tex/texlive-new/combine.nix index 0619a3cc26c..e69c6ec425c 100644 --- a/pkgs/tools/typesetting/tex/texlive-new/combine.nix +++ b/pkgs/tools/typesetting/tex/texlive-new/combine.nix @@ -60,24 +60,21 @@ in buildEnv { + '' export PATH="$out/bin:$out/share/texmf/scripts/texlive:${perl}/bin:$PATH" + export TEXMFCNF="$out/share/texmf/web2c" + export TEXMFDIST="$out/share/texmf" + export TEXMFSYSCONFIG="$out/share/texmf-config" + export TEXMFSYSVAR="$out/share/texmf-var" export PERL5LIB="$out/share/texmf/scripts/texlive" '' + - # patch texmf-{dist,local} -> texmf to be sure - # TODO: perhaps do lua actions? + # patch texmf-dist -> texmf to be sure + # TODO: cleanup the search paths incl. SELFAUTOLOC, and perhaps do lua actions? # tried inspiration from install-tl, sub do_texmf_cnf '' ( cd ./share/texmf/web2c/ local cnfOrig="$(realpath ./texmf.cnf)" rm ./texmf.cnf - sed \ - -e 's,texmf-dist,texmf,g' \ - -e 's,texmf-local,texmf,g' \ - -e "s,\$SELFAUTOLOC,$out,g" \ - -e "s,\$SELFAUTODIR,$out/share,g" \ - -e "s,\$SELFAUTOPARENT,$out/share,g" \ - -e "s,\$SELFAUTOGRANDPARENT,$out/share,g" \ - "$cnfOrig" > ./texmf.cnf + cat "$cnfOrig" | sed 's/texmf-dist/texmf/g' > ./texmf.cnf rm updmap.cfg ) @@ -115,6 +112,10 @@ in buildEnv { rm "$link" makeWrapper "$target" "$link" \ --prefix PATH : "$out/bin:${perl}/bin" \ + --set TEXMFCNF "$out/share/texmf/web2c" \ + --set TEXMFDIST "$out/share/texmf" \ + --set TEXMFSYSCONFIG "$out/share/texmf-config" \ + --set TEXMFSYSVAR "$out/share/texmf-var" \ --prefix PERL5LIB : "$out/share/texmf/scripts/texlive" # avoid using non-nix shebang in $target by calling interpreter From 8ffe6817134e6ccbad2cd1a69a420182649938cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 28 Mar 2016 09:05:12 +0200 Subject: [PATCH 664/678] qt4-clang: fix fallout from f9b5ed66d10 There's still the question of Hydra binaries etc. but this should at least fix evaluation and running problems. --- pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/release.nix | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a1fc1bc4336..9c458eb9130 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13551,7 +13551,7 @@ in siproxd = callPackage ../applications/networking/siproxd { }; skype = callPackage_i686 ../applications/networking/instant-messengers/skype { - qt4 = qt4.override { + qt4 = pkgsi686Linux.qt4.override { stdenv = clangStdenv; }; }; diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix index 94dabc76f16..cc1e9b791f7 100644 --- a/pkgs/top-level/release.nix +++ b/pkgs/top-level/release.nix @@ -184,7 +184,6 @@ let pythonFull = linux; sbcl = linux; qt3 = linux; - qt4-clang = [ "i686-linux" ]; quake3demo = linux; reiserfsprogs = linux; rubber = allBut cygwin; From b4e2172ad426fdaddfe636f2881ac94cde970398 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Mon, 28 Mar 2016 10:25:46 +0100 Subject: [PATCH 665/678] fix munin (and the test), refs #12801 #13999 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit 7877e33af8c0ec7f3a91c650ae4da6288b7dfe49) Signed-off-by: Domen Kožar --- pkgs/servers/monitoring/munin/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/monitoring/munin/default.nix b/pkgs/servers/monitoring/munin/default.nix index 51eda757e3c..71f76695bb2 100644 --- a/pkgs/servers/monitoring/munin/default.nix +++ b/pkgs/servers/monitoring/munin/default.nix @@ -55,7 +55,7 @@ stdenv.mkDerivation rec { doCheck = false; checkPhase = '' - export PERL5LIB="$PERL5LIB:${rrdtool}/lib/perl" + export PERL5LIB="$PERL5LIB:${rrdtool}/lib/perl5/site_perl" LC_ALL=C make -j1 test ''; @@ -109,10 +109,10 @@ stdenv.mkDerivation rec { *.jar) continue;; esac wrapProgram "$file" \ - --set PERL5LIB "$out/lib/perl5/site_perl:${rrdtool}/lib/perl:${with perlPackages; stdenv.lib.makePerlPath [ + --set PERL5LIB "$out/lib/perl5/site_perl:${with perlPackages; stdenv.lib.makePerlPath [ Log4Perl IOSocketInet6 Socket6 URI DBFile DateManip HTMLTemplate FileCopyRecursive FCGI NetCIDR NetSNMP NetServer - ListMoreUtils TimeHiRes DBDPg LWPUserAgent + ListMoreUtils TimeHiRes DBDPg LWPUserAgent rrdtool ]}" done ''; From a7d34e0c1368de8ffb1f026722d6f1774bff73a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 28 Mar 2016 11:32:34 +0200 Subject: [PATCH 666/678] glu: fix the pkg-config file (fixes #14260) --- pkgs/development/libraries/mesa-glu/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/libraries/mesa-glu/default.nix b/pkgs/development/libraries/mesa-glu/default.nix index 0ea73a3a57f..8d433461d0c 100644 --- a/pkgs/development/libraries/mesa-glu/default.nix +++ b/pkgs/development/libraries/mesa-glu/default.nix @@ -7,6 +7,9 @@ stdenv.mkDerivation rec { url = "ftp://ftp.freedesktop.org/pub/mesa/glu/${name}.tar.bz2"; sha256 = "04nzlil3a6fifcmb95iix3yl8mbxdl66b99s62yzq8m7g79x0yhz"; }; + postPatch = '' + echo 'Cflags: -I''${includedir}' >> glu.pc.in + ''; buildInputs = [ pkgconfig ]; propagatedBuildInputs = [ mesa_noglu ]; From f9fff51c2af672e71c2f713fb9d8cabcbea8d4e4 Mon Sep 17 00:00:00 2001 From: aszlig Date: Mon, 28 Mar 2016 11:31:21 +0200 Subject: [PATCH 667/678] chromium: Link using gold linker flags I originally wanted to do this a long time (a31301d) but IIRC back then it didn't compile. Nowadays with the splitup of the gold linking flags and the binutils integration, it's merely just a switch to flip, so let's do that. Only tested it by building against the current Chromium stable version on 64bit, because right now builds on Hydra seem to time out (because of this?) anyway so we have nothing to lose here. The linking time was hereby reduced from >30 minutes (I didn't measure it exactly but looked half an hour later to the build progress and it was *still* linking) to about a few seconds, which I guess is even though the measurement is quite bogus a tremendous improvement nonetheless. Signed-off-by: aszlig --- pkgs/applications/networking/browsers/chromium/common.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/common.nix b/pkgs/applications/networking/browsers/chromium/common.nix index 247156a9470..5494b77b807 100644 --- a/pkgs/applications/networking/browsers/chromium/common.nix +++ b/pkgs/applications/networking/browsers/chromium/common.nix @@ -154,8 +154,8 @@ let gypFlags = mkGypFlags (gypFlagsUseSystemLibs // { linux_use_bundled_binutils = false; linux_use_bundled_gold = false; - linux_use_gold_binary = false; - linux_use_gold_flags = false; + linux_use_gold_flags = true; + proprietary_codecs = false; use_sysroot = false; use_gnome_keyring = gnomeKeyringSupport; From 350d196f7a1613170b81352b80933b2fdebbf98e Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 23 Mar 2016 08:44:15 -0500 Subject: [PATCH 668/678] kwin: allow CMake to set RPATH during build (cherry picked from commit 3ff6d0492a9fa939f559580dc841239a8f75142c) --- pkgs/desktops/kde-5/plasma-5.5/kwin/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/desktops/kde-5/plasma-5.5/kwin/default.nix b/pkgs/desktops/kde-5/plasma-5.5/kwin/default.nix index 2e86068b486..a09acb88aad 100644 --- a/pkgs/desktops/kde-5/plasma-5.5/kwin/default.nix +++ b/pkgs/desktops/kde-5/plasma-5.5/kwin/default.nix @@ -26,6 +26,7 @@ plasmaPackage { kwindowsystem plasma-framework qtdeclarative qtmultimedia qtx11extras ]; patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; + cmakeFlags = [ "-DCMAKE_SKIP_BUILD_RPATH=OFF" ]; postInstall = '' wrapQtProgram "$out/bin/kwin_x11" wrapQtProgram "$out/bin/kwin_wayland" From 7391011354b32aab4f481e50c5eec8e892e8f23f Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Wed, 23 Mar 2016 17:58:34 -0400 Subject: [PATCH 669/678] pythonPackages.pip: 8.0.2 -> 8.1.1 --- pkgs/top-level/python-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 814a2c56dd1..c8438382a7f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -15532,19 +15532,19 @@ in modules // { }; pip = buildPythonPackage rec { - version = "8.0.2"; + version = "8.1.1"; name = "pip-${version}"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pip/pip-${version}.tar.gz"; - sha256 = "46f4bd0d8dfd51125a554568d646fe4200a3c2c6c36b9f2d06d2212148439521"; + sha256 = "160pa7xg0vybidhszd1n0ik2xah0yz6gsym5hp8k7dmfd83d6y1y"; }; # pip detects that we already have bootstrapped_pip "installed", so we need # to force it a little. installFlags = [ "--ignore-installed" ]; - buildInputs = with self; [ mock scripttest virtualenv pytest ]; + buildInputs = with self; [ mock scripttest virtualenv pretend pytest ]; }; From 58a65c013dd63178c3e9c58ad5831647ccaea667 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Wed, 23 Mar 2016 17:58:48 -0400 Subject: [PATCH 670/678] python.bootstrapped-pip: 8.0.2 -> 8.1.1 --- pkgs/development/python-modules/bootstrapped-pip/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/bootstrapped-pip/default.nix b/pkgs/development/python-modules/bootstrapped-pip/default.nix index c53a2fd2477..dfa5f86944a 100644 --- a/pkgs/development/python-modules/bootstrapped-pip/default.nix +++ b/pkgs/development/python-modules/bootstrapped-pip/default.nix @@ -15,11 +15,11 @@ let }; in stdenv.mkDerivation rec { name = "python-${python.version}-bootstrapped-pip-${version}"; - version = "8.0.2"; + version = "8.1.1"; src = fetchurl { url = "https://pypi.python.org/packages/py2.py3/p/pip/pip-${version}-py2.py3-none-any.whl"; - sha256 = "249a6f3194be8c2e8cb4d4be3f6fd16a9f1e3336218caffa8e7419e3816f9988"; + sha256 = "0p62v87lm595kwmxrnqxc81dr7h6maaxj1y28b00bf9ag11c7fa4"; }; unpackPhase = '' From f5fe051c71e469024bf484cccef5b6929de50e16 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Tue, 8 Mar 2016 17:05:46 -0700 Subject: [PATCH 671/678] llvm: 3.7.1 -> 3.8.0 (close #13801) vcunat's review: - let's not switch the default versions of llvm* for now - the only changes I see is adding python to clang's buildInputs and using the big so-file as discussed in #12759 (BUILD_SHARED_LIBS -> LLVM_LINK_LLVM_DYLIB) - in future it will be nice to split libLLVM into a separate output --- .../compilers/llvm/3.8/clang/default.nix | 55 +++++++++++++ .../compilers/llvm/3.8/clang/purity.patch | 17 ++++ .../compilers/llvm/3.8/default.nix | 35 ++++++++ .../compilers/llvm/3.8/libc++/darwin.patch | 30 +++++++ .../compilers/llvm/3.8/libc++/default.nix | 40 ++++++++++ .../compilers/llvm/3.8/libc++/setup-hook.sh | 3 + .../compilers/llvm/3.8/libc++abi.nix | 47 +++++++++++ pkgs/development/compilers/llvm/3.8/lldb.nix | 49 ++++++++++++ pkgs/development/compilers/llvm/3.8/llvm.nix | 80 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 6 ++ 10 files changed, 362 insertions(+) create mode 100644 pkgs/development/compilers/llvm/3.8/clang/default.nix create mode 100644 pkgs/development/compilers/llvm/3.8/clang/purity.patch create mode 100644 pkgs/development/compilers/llvm/3.8/default.nix create mode 100644 pkgs/development/compilers/llvm/3.8/libc++/darwin.patch create mode 100644 pkgs/development/compilers/llvm/3.8/libc++/default.nix create mode 100644 pkgs/development/compilers/llvm/3.8/libc++/setup-hook.sh create mode 100644 pkgs/development/compilers/llvm/3.8/libc++abi.nix create mode 100644 pkgs/development/compilers/llvm/3.8/lldb.nix create mode 100644 pkgs/development/compilers/llvm/3.8/llvm.nix diff --git a/pkgs/development/compilers/llvm/3.8/clang/default.nix b/pkgs/development/compilers/llvm/3.8/clang/default.nix new file mode 100644 index 00000000000..047f87c92a9 --- /dev/null +++ b/pkgs/development/compilers/llvm/3.8/clang/default.nix @@ -0,0 +1,55 @@ +{ stdenv, fetch, cmake, libxml2, libedit, llvm, version, clang-tools-extra_src, python }: + +let + gcc = if stdenv.cc.isGNU then stdenv.cc.cc else stdenv.cc.cc.gcc; +in stdenv.mkDerivation { + name = "clang-${version}"; + + unpackPhase = '' + unpackFile ${fetch "cfe" "1ybcac8hlr9vl3wg8s4v6cp0c0qgqnwprsv85lihbkq3vqv94504"} + mv cfe-${version}.src clang + sourceRoot=$PWD/clang + unpackFile ${clang-tools-extra_src} + mv clang-tools-extra-* $sourceRoot/tools/extra + ''; + + buildInputs = [ cmake libedit libxml2 llvm python ]; + + cmakeFlags = [ + "-DCMAKE_BUILD_TYPE=Release" + "-DCMAKE_CXX_FLAGS=-std=c++11" + ] ++ + # Maybe with compiler-rt this won't be needed? + (stdenv.lib.optional stdenv.isLinux "-DGCC_INSTALL_PREFIX=${gcc}") ++ + (stdenv.lib.optional (stdenv.cc.libc != null) "-DC_INCLUDE_DIRS=${stdenv.cc.libc}/include"); + + patches = [ ./purity.patch ]; + + postPatch = '' + sed -i -e 's/Args.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/Tools.cpp + sed -i -e 's/DriverArgs.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/ToolChains.cpp + ''; + + # Clang expects to find LLVMgold in its own prefix + # Clang expects to find sanitizer libraries in its own prefix + postInstall = '' + ln -sv ${llvm}/lib/LLVMgold.so $out/lib + ln -sv ${llvm}/lib/clang/${version}/lib $out/lib/clang/${version}/ + ln -sv $out/bin/clang $out/bin/cpp + ''; + + enableParallelBuilding = true; + + passthru = { + isClang = true; + } // stdenv.lib.optionalAttrs stdenv.isLinux { + inherit gcc; + }; + + meta = { + description = "A c, c++, objective-c, and objective-c++ frontend for the llvm compiler"; + homepage = http://llvm.org/; + license = stdenv.lib.licenses.bsd3; + platforms = stdenv.lib.platforms.all; + }; +} diff --git a/pkgs/development/compilers/llvm/3.8/clang/purity.patch b/pkgs/development/compilers/llvm/3.8/clang/purity.patch new file mode 100644 index 00000000000..2d1c68d865e --- /dev/null +++ b/pkgs/development/compilers/llvm/3.8/clang/purity.patch @@ -0,0 +1,17 @@ +--- a/lib/Driver/Tools.cpp 2016-02-12 15:51:41.000000000 -0700 ++++ b/lib/Driver/Tools.cpp 2016-03-08 15:39:06.790111122 -0700 +@@ -8833,15 +8833,6 @@ + CmdArgs.push_back("-shared"); + } + +- if (Arch == llvm::Triple::arm || Arch == llvm::Triple::armeb || +- Arch == llvm::Triple::thumb || Arch == llvm::Triple::thumbeb || +- (!Args.hasArg(options::OPT_static) && +- !Args.hasArg(options::OPT_shared))) { +- CmdArgs.push_back("-dynamic-linker"); +- CmdArgs.push_back(Args.MakeArgString( +- D.DyldPrefix + getLinuxDynamicLinker(Args, ToolChain))); +- } +- + CmdArgs.push_back("-o"); + CmdArgs.push_back(Output.getFilename()); diff --git a/pkgs/development/compilers/llvm/3.8/default.nix b/pkgs/development/compilers/llvm/3.8/default.nix new file mode 100644 index 00000000000..a2a702a617e --- /dev/null +++ b/pkgs/development/compilers/llvm/3.8/default.nix @@ -0,0 +1,35 @@ +{ newScope, stdenv, isl, fetchurl, overrideCC, wrapCC }: +let + callPackage = newScope (self // { inherit stdenv isl version fetch; }); + + version = "3.8.0"; + + fetch = fetch_v version; + fetch_v = ver: name: sha256: fetchurl { + url = "http://llvm.org/releases/${ver}/${name}-${ver}.src.tar.xz"; + inherit sha256; + }; + + compiler-rt_src = fetch "compiler-rt" "1c2nkp9563873ffz22qmhc0wakgj428pch8rmhym8agjamz3ily8"; + clang-tools-extra_src = fetch "clang-tools-extra" "1i0yrgj8qrzjjswraz0i55lg92ljpqhvjr619d268vka208aigdg"; + + self = { + llvm = callPackage ./llvm.nix { + inherit compiler-rt_src stdenv; + }; + + clang-unwrapped = callPackage ./clang { + inherit clang-tools-extra_src stdenv; + }; + + clang = wrapCC self.clang-unwrapped; + + stdenv = overrideCC stdenv self.clang; + + lldb = callPackage ./lldb.nix {}; + + libcxx = callPackage ./libc++ {}; + + libcxxabi = callPackage ./libc++abi.nix {}; + }; +in self diff --git a/pkgs/development/compilers/llvm/3.8/libc++/darwin.patch b/pkgs/development/compilers/llvm/3.8/libc++/darwin.patch new file mode 100644 index 00000000000..bf83f169cfc --- /dev/null +++ b/pkgs/development/compilers/llvm/3.8/libc++/darwin.patch @@ -0,0 +1,30 @@ +diff -ru -x '*~' libcxx-3.4.2.src-orig/lib/CMakeLists.txt libcxx-3.4.2.src/lib/CMakeLists.txt +--- libcxx-3.4.2.src-orig/lib/CMakeLists.txt 2013-11-15 18:18:57.000000000 +0100 ++++ libcxx-3.4.2.src/lib/CMakeLists.txt 2014-09-24 14:04:01.000000000 +0200 +@@ -56,7 +56,7 @@ + "-compatibility_version 1" + "-current_version ${LIBCXX_VERSION}" + "-install_name /usr/lib/libc++.1.dylib" +- "-Wl,-reexport_library,/usr/lib/libc++abi.dylib" ++ "-Wl,-reexport_library,${LIBCXX_LIBCXXABI_LIB_PATH}/libc++abi.dylib" + "-Wl,-unexported_symbols_list,${CMAKE_CURRENT_SOURCE_DIR}/libc++unexp.exp" + "/usr/lib/libSystem.B.dylib") + else() +@@ -64,14 +64,14 @@ + list(FIND ${CMAKE_OSX_ARCHITECTURES} "armv7" OSX_HAS_ARMV7) + if (OSX_HAS_ARMV7) + set(OSX_RE_EXPORT_LINE +- "${CMAKE_OSX_SYSROOT}/usr/lib/libc++abi.dylib" ++ "${CMAKE_OSX_SYSROOT}${LIBCXX_LIBCXXABI_LIB_PATH}/libc++abi.dylib" + "-Wl,-reexported_symbols_list,${CMAKE_CURRENT_SOURCE_DIR}/libc++sjlj-abi.exp") + else() + set(OSX_RE_EXPORT_LINE +- "-Wl,-reexport_library,${CMAKE_OSX_SYSROOT}/usr/lib/libc++abi.dylib") ++ "-Wl,-reexport_library,${CMAKE_OSX_SYSROOT}${LIBCXX_LIBCXXABI_LIB_PATH}/libc++abi.dylib") + endif() + else() +- set (OSX_RE_EXPORT_LINE "/usr/lib/libc++abi.dylib -Wl,-reexported_symbols_list,${CMAKE_CURRENT_SOURCE_DIR}/libc++abi${LIBCXX_LIBCPPABI_VERSION}.exp") ++ set (OSX_RE_EXPORT_LINE "${LIBCXX_LIBCXXABI_LIB_PATH}/libc++abi.dylib -Wl,-reexported_symbols_list,${CMAKE_CURRENT_SOURCE_DIR}/libc++abi${LIBCXX_LIBCPPABI_VERSION}.exp") + endif() + + list(APPEND link_flags diff --git a/pkgs/development/compilers/llvm/3.8/libc++/default.nix b/pkgs/development/compilers/llvm/3.8/libc++/default.nix new file mode 100644 index 00000000000..00bfb3518b1 --- /dev/null +++ b/pkgs/development/compilers/llvm/3.8/libc++/default.nix @@ -0,0 +1,40 @@ +{ lib, stdenv, fetch, cmake, libcxxabi, fixDarwinDylibNames, version }: + +stdenv.mkDerivation rec { + name = "libc++-${version}"; + + src = fetch "libcxx" "0i7iyzk024krda5spfpfi8jksh83yp3bxqkal0xp76ffi11bszrm"; + + postUnpack = '' + unpackFile ${libcxxabi.src} + ''; + + preConfigure = '' + # Get headers from the cxxabi source so we can see private headers not installed by the cxxabi package + cmakeFlagsArray=($cmakeFlagsArray -DLIBCXX_CXX_ABI_INCLUDE_PATHS="$NIX_BUILD_TOP/libcxxabi-${version}.src/include") + ''; + + patches = [ ./darwin.patch ]; + + buildInputs = [ cmake libcxxabi ] ++ lib.optional stdenv.isDarwin fixDarwinDylibNames; + + cmakeFlags = + [ "-DCMAKE_BUILD_TYPE=Release" + "-DLIBCXX_LIBCXXABI_LIB_PATH=${libcxxabi}/lib" + "-DLIBCXX_LIBCPPABI_VERSION=2" + "-DLIBCXX_CXX_ABI=libcxxabi" + ]; + + enableParallelBuilding = true; + + linkCxxAbi = stdenv.isLinux; + + setupHook = ./setup-hook.sh; + + meta = { + homepage = http://libcxx.llvm.org/; + description = "A new implementation of the C++ standard library, targeting C++11"; + license = "BSD"; + platforms = stdenv.lib.platforms.unix; + }; +} diff --git a/pkgs/development/compilers/llvm/3.8/libc++/setup-hook.sh b/pkgs/development/compilers/llvm/3.8/libc++/setup-hook.sh new file mode 100644 index 00000000000..9022fced6ec --- /dev/null +++ b/pkgs/development/compilers/llvm/3.8/libc++/setup-hook.sh @@ -0,0 +1,3 @@ +linkCxxAbi="@linkCxxAbi@" +export NIX_CXXSTDLIB_COMPILE+=" -isystem @out@/include/c++/v1" +export NIX_CXXSTDLIB_LINK=" -stdlib=libc++${linkCxxAbi:+" -lc++abi"}" diff --git a/pkgs/development/compilers/llvm/3.8/libc++abi.nix b/pkgs/development/compilers/llvm/3.8/libc++abi.nix new file mode 100644 index 00000000000..ec0be51a11c --- /dev/null +++ b/pkgs/development/compilers/llvm/3.8/libc++abi.nix @@ -0,0 +1,47 @@ +{ stdenv, cmake, fetch, libcxx, libunwind, llvm, version }: + +stdenv.mkDerivation { + name = "libc++abi-${version}"; + + src = fetch "libcxxabi" "0ambfcmr2nh88hx000xb7yjm9lsqjjz49w5mlf6dlxzmj3nslzx4"; + + buildInputs = [ cmake ] ++ stdenv.lib.optional (!stdenv.isDarwin && !stdenv.isFreeBSD) libunwind; + + postUnpack = '' + unpackFile ${libcxx.src} + unpackFile ${llvm.src} + export NIX_CFLAGS_COMPILE+=" -I$PWD/include" + export cmakeFlags="-DLLVM_PATH=$PWD/$(ls -d llvm-*) -DLIBCXXABI_LIBCXX_INCLUDES=$PWD/$(ls -d libcxx-*)/include" + '' + stdenv.lib.optionalString stdenv.isDarwin '' + export TRIPLE=x86_64-apple-darwin + ''; + + installPhase = if stdenv.isDarwin + then '' + for file in lib/*.dylib; do + # this should be done in CMake, but having trouble figuring out + # the magic combination of necessary CMake variables + # if you fancy a try, take a look at + # http://www.cmake.org/Wiki/CMake_RPATH_handling + install_name_tool -id $out/$file $file + done + make install + install -d 755 $out/include + install -m 644 ../include/*.h $out/include + '' + else '' + install -d -m 755 $out/include $out/lib + install -m 644 lib/libc++abi.so.1.0 $out/lib + install -m 644 ../include/cxxabi.h $out/include + ln -s libc++abi.so.1.0 $out/lib/libc++abi.so + ln -s libc++abi.so.1.0 $out/lib/libc++abi.so.1 + ''; + + meta = { + homepage = http://libcxxabi.llvm.org/; + description = "A new implementation of low level support for a standard C++ library"; + license = "BSD"; + maintainers = with stdenv.lib.maintainers; [ vlstill ]; + platforms = stdenv.lib.platforms.unix; + }; +} diff --git a/pkgs/development/compilers/llvm/3.8/lldb.nix b/pkgs/development/compilers/llvm/3.8/lldb.nix new file mode 100644 index 00000000000..fe69130e71a --- /dev/null +++ b/pkgs/development/compilers/llvm/3.8/lldb.nix @@ -0,0 +1,49 @@ +{ stdenv +, fetch +, cmake +, zlib +, ncurses +, swig +, which +, libedit +, llvm +, clang-unwrapped +, python +, version +}: + +stdenv.mkDerivation { + name = "lldb-${version}"; + + src = fetch "lldb" "008fdbyza13ym3v0xpans4z4azw4y16hcbgrrnc4rx2mxwaw62ws"; + + patchPhase = '' + sed -i 's|/usr/bin/env||' \ + scripts/Python/finish-swig-Python-LLDB.sh \ + scripts/Python/build-swig-Python.sh + ''; + + buildInputs = [ cmake python which swig ncurses zlib libedit ]; + + preConfigure = '' + export CXXFLAGS="-pthread" + export LDFLAGS="-ldl" + ''; + + cmakeFlags = [ + "-DCMAKE_BUILD_TYPE=Release" + "-DLLDB_PATH_TO_LLVM_BUILD=${llvm}" + "-DLLDB_PATH_TO_CLANG_BUILD=${clang-unwrapped}" + "-DPYTHON_VERSION_MAJOR=2" + "-DPYTHON_VERSION_MINOR=7" + ]; + + enableParallelBuilding = true; + + meta = { + description = "A next-generation high-performance debugger"; + homepage = http://llvm.org/; + license = stdenv.lib.licenses.bsd3; + platforms = stdenv.lib.platforms.all; + }; +} diff --git a/pkgs/development/compilers/llvm/3.8/llvm.nix b/pkgs/development/compilers/llvm/3.8/llvm.nix new file mode 100644 index 00000000000..db73999719d --- /dev/null +++ b/pkgs/development/compilers/llvm/3.8/llvm.nix @@ -0,0 +1,80 @@ +{ stdenv +, fetch +, perl +, groff +, cmake +, python +, libffi +, binutils +, libxml2 +, valgrind +, ncurses +, version +, zlib +, compiler-rt_src +, libcxxabi +, debugVersion ? false +, enableSharedLibraries ? !stdenv.isDarwin +}: + +let + src = fetch "llvm" "0ikfq0gxac8xpvxj23l4hk8f12ydx48fljgrz1gl9xp0ks704nsm"; +in stdenv.mkDerivation rec { + name = "llvm-${version}"; + + unpackPhase = '' + unpackFile ${src} + mv llvm-${version}.src llvm + sourceRoot=$PWD/llvm + unpackFile ${compiler-rt_src} + mv compiler-rt-* $sourceRoot/projects/compiler-rt + ''; + + buildInputs = [ perl groff cmake libxml2 python libffi ] + ++ stdenv.lib.optional stdenv.isDarwin libcxxabi; + + propagatedBuildInputs = [ ncurses zlib ]; + + # hacky fix: created binaries need to be run before installation + preBuild = '' + mkdir -p $out/ + ln -sv $PWD/lib $out + ''; + + cmakeFlags = with stdenv; [ + "-DCMAKE_BUILD_TYPE=${if debugVersion then "Debug" else "Release"}" + "-DLLVM_INSTALL_UTILS=ON" # Needed by rustc + "-DLLVM_BUILD_TESTS=ON" + "-DLLVM_ENABLE_FFI=ON" + "-DLLVM_ENABLE_RTTI=ON" + ] ++ stdenv.lib.optional enableSharedLibraries [ + "-DLLVM_LINK_LLVM_DYLIB=ON" + ] ++ stdenv.lib.optional (!isDarwin) + "-DLLVM_BINUTILS_INCDIR=${binutils}/include" + ++ stdenv.lib.optionals ( isDarwin) [ + "-DLLVM_ENABLE_LIBCXX=ON" + "-DCAN_TARGET_i386=false" + ]; + + postBuild = '' + rm -fR $out + + paxmark m bin/{lli,llvm-rtdyld} + + paxmark m unittests/ExecutionEngine/JIT/JITTests + paxmark m unittests/ExecutionEngine/MCJIT/MCJITTests + paxmark m unittests/Support/SupportTests + ''; + + enableParallelBuilding = true; + + passthru.src = src; + + meta = { + description = "Collection of modular and reusable compiler and toolchain technologies"; + homepage = http://llvm.org/; + license = stdenv.lib.licenses.bsd3; + maintainers = with stdenv.lib.maintainers; [ lovek323 raskin viric ]; + platforms = stdenv.lib.platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9c458eb9130..e726acd2da6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3921,6 +3921,7 @@ in clang = llvmPackages.clang; + clang_38 = llvmPackages_38.clang; clang_37 = llvmPackages_37.clang; clang_36 = llvmPackages_36.clang; clang_35 = wrapCC llvmPackages_35.clang; @@ -4418,6 +4419,7 @@ in llvm = llvmPackages.llvm; + llvm_38 = llvmPackages_38.llvm; llvm_37 = llvmPackages_37.llvm; llvm_36 = llvmPackages_36.llvm; llvm_35 = llvmPackages_35.llvm; @@ -4445,6 +4447,10 @@ in inherit (stdenvAdapters) overrideCC; }; + llvmPackages_38 = callPackage ../development/compilers/llvm/3.8 { + inherit (stdenvAdapters) overrideCC; + }; + manticore = callPackage ../development/compilers/manticore { }; mentorToolchains = recurseIntoAttrs ( From 2636fcf7cd66307745801ec5f3e4241e5c2712f6 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 28 Mar 2016 14:24:06 +0200 Subject: [PATCH 672/678] fix license --- .../networking/instant-messengers/blink/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/instant-messengers/blink/default.nix b/pkgs/applications/networking/instant-messengers/blink/default.nix index 1cb345ba63a..8076b27d1c5 100644 --- a/pkgs/applications/networking/instant-messengers/blink/default.nix +++ b/pkgs/applications/networking/instant-messengers/blink/default.nix @@ -43,7 +43,7 @@ pythonPackages.buildPythonApplication rec { homepage = http://icanblink.com/; description = "A state of the art, easy to use SIP client for Voice, Video and IM"; platforms = platforms.linux; - license = licenses.gplv3; + license = licenses.gpl3; maintainers = with maintainers; [ pSub ]; }; } From 729c06910899b59309a620d66aff192cdad8690b Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sat, 19 Mar 2016 21:16:15 +0100 Subject: [PATCH 673/678] bugseverywhere: init at 1.1.1 --- .../bugseverywhere/default.nix | 34 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 36 insertions(+) create mode 100644 pkgs/applications/version-management/bugseverywhere/default.nix diff --git a/pkgs/applications/version-management/bugseverywhere/default.nix b/pkgs/applications/version-management/bugseverywhere/default.nix new file mode 100644 index 00000000000..f8081ade61f --- /dev/null +++ b/pkgs/applications/version-management/bugseverywhere/default.nix @@ -0,0 +1,34 @@ +{ stdenv, pythonPackages, fetchurl }: + +# +# Upstream stopped development of this package. If this package does not build +# anymore, feel free to remove it by reverting the appropriate patch +# (git log --grep bugseverywhere) +# +pythonPackages.buildPythonApplication rec { + version = "1.1.1"; + name = "bugseverywhere-${version}"; + + src = fetchurl { + url = + "https://pypi.python.org/packages/source/b/bugs-everywhere/bugs-everywhere-${version}.tar.gz"; + sha256 = "1ikm3ckwpimwcvx32vy7gh5gbp7q750j3327m17nvrj99g3daz2d"; + }; + + # There are no tests in the repository. + doCheck = false; + + buildInputs = with pythonPackages; [ + jinja2 + cherrypy + ]; + + meta = with stdenv.lib; { + description = "Bugtracker supporting distributed revision control"; + homepage = "http://www.bugseverywhere.org/"; + license = licenses.gpl2Plus; + platforms = platforms.all; + maintainers = [ maintainers.matthiasbeyer ]; + }; +} + diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c2ef687d587..a7a2a810058 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -87,6 +87,8 @@ in modules // { blivet = callPackage ../development/python-modules/blivet { }; + bugseverywhere = callPackage ../applications/version-management/bugseverywhere {}; + dbus = callPackage ../development/python-modules/dbus { dbus = pkgs.dbus; }; From ed47bb1ca8a56a06b5ff27e35c115087520b9b7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 28 Mar 2016 14:35:47 +0200 Subject: [PATCH 674/678] qt55.vlc: fix build I tested it on a video to make sure the bug doesn't appear. --- pkgs/applications/video/vlc/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/applications/video/vlc/default.nix b/pkgs/applications/video/vlc/default.nix index 0e08c21fc99..a84f24a303a 100644 --- a/pkgs/applications/video/vlc/default.nix +++ b/pkgs/applications/video/vlc/default.nix @@ -27,6 +27,11 @@ stdenv.mkDerivation rec { sha256 = "1dazxbmzx2g5570pkg519a7fsj07rdr155kjsw7b9y8npql33lls"; }; + # Comment-out the Qt 5.5 version check, as we do apply the relevant patch. + # https://trac.videolan.org/vlc/ticket/16497 + postPatch = if (!withQt5) then null else + "sed '/I78ef29975181ee22429c9bd4b11d96d9e68b7a9c/s/^/: #/' -i configure"; + buildInputs = [ xz bzip2 perl zlib a52dec libmad faad2 ffmpeg alsaLib libdvdnav libdvdnav.libdvdread libbluray dbus fribidi libvorbis libtheora speex lua5 libgcrypt From be447475d308489b2f2379b33b5b06fe97226ebb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 28 Mar 2016 14:42:16 +0200 Subject: [PATCH 675/678] clang-3.5: mark as broken It seems unlikely someone will want to fix it anymore. --- pkgs/development/compilers/llvm/3.5/clang.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/compilers/llvm/3.5/clang.nix b/pkgs/development/compilers/llvm/3.5/clang.nix index 42ca4ba70e4..d3ce8a4f9ff 100644 --- a/pkgs/development/compilers/llvm/3.5/clang.nix +++ b/pkgs/development/compilers/llvm/3.5/clang.nix @@ -50,5 +50,6 @@ in stdenv.mkDerivation { homepage = http://llvm.org/; license = stdenv.lib.licenses.bsd3; platforms = stdenv.lib.platforms.all; + broken = true; }; } From c39fe339987b394f915bfac1c86dfa9a16d9d378 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 22 Jan 2016 11:36:00 +0100 Subject: [PATCH 676/678] kde5.yakuake: init at 3.0.2 --- pkgs/applications/misc/yakuake/3.0.nix | 66 ++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 68 insertions(+) create mode 100644 pkgs/applications/misc/yakuake/3.0.nix diff --git a/pkgs/applications/misc/yakuake/3.0.nix b/pkgs/applications/misc/yakuake/3.0.nix new file mode 100644 index 00000000000..f3aff480914 --- /dev/null +++ b/pkgs/applications/misc/yakuake/3.0.nix @@ -0,0 +1,66 @@ +{ stdenv +, lib +, fetchurl +, cmake +, extra-cmake-modules +, karchive +, kcrash +, kdbusaddons +, ki18n +, kiconthemes +, knewstuff +, knotifications +, knotifyconfig +, konsole +, kparts +, kwindowsystem +, makeQtWrapper + +}: + +let + pname = "yakuake"; + version = "3.0.2"; +in +stdenv.mkDerivation rec { + name = "${pname}-${version}"; + + src = fetchurl { + url = "http://download.kde.org/stable/${pname}/${version}/src/${name}.tar.xz"; + sha256 = "0vcdji1k8d3pz7k6lkw8ighkj94zff2l2cf9v1avf83f4hjyfhg5"; + }; + + buildInputs = [ + cmake + extra-cmake-modules + karchive + kcrash + kdbusaddons + ki18n + kiconthemes + knewstuff + knotifications + knotifyconfig + kparts + kwindowsystem + ]; + + nativeBuildInputs = [ + extra-cmake-modules + makeQtWrapper + ]; + + propagatedUserEnvPkgs = [ + konsole + ]; + + postInstall = '' + wrapQtProgram "$out/bin/yakuake" + ''; + + meta = { + homepage = https://yakuake.kde.org; + description = "Quad-style terminal emulator for KDE"; + maintainers = with lib.maintainers; [ fridh ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7f0ab25e92e..f3b7ac04327 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15272,6 +15272,8 @@ in themes = []; # extra themes, etc. }; + yakuake = callPackage ../applications/misc/yakuake/3.0.nix {}; + }; kde5 = From 9ee7b3f6284649f97c0c97125848ba0f651d3a41 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 28 Mar 2016 15:51:23 +0200 Subject: [PATCH 677/678] pythonPackages.scipy: use latest numpy version --- pkgs/top-level/python-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ff3a203d4fe..19041ad50c7 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -19469,7 +19469,7 @@ in modules // { url = "https://pypi.python.org/packages/source/s/scipy/scipy-${version}.tar.gz"; sha256 = "f600b755fb69437d0f70361f9e560ab4d304b1b66987ed5a28bdd9dd7793e089"; }; - numpy = self.numpy_1_10; + numpy = self.numpy; }; scikitimage = buildPythonPackage rec { From 654d2e672d2ec77a75d00645c9fff92d40979aa0 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 28 Mar 2016 15:01:37 +0200 Subject: [PATCH 678/678] pythonPackages.numpy: 1.10 -> 1.11 --- pkgs/top-level/python-packages.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 19041ad50c7..9c4a6989daa 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -13207,7 +13207,7 @@ in modules // { blas = pkgs.openblasCompat_2_14; }; - numpy = self.numpy_1_10; + numpy = self.numpy_1_11; numpy_1_10 = self.buildNumpyPackage rec { version = "1.10.4"; @@ -13217,6 +13217,14 @@ in modules // { }; }; + numpy_1_11 = self.buildNumpyPackage rec { + version = "1.11.0"; + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/n/numpy/numpy-${version}.tar.gz"; + sha256 = "0gml1ng7iqk4xcrvspjd5vnfqdwfinvjfyksfawvy5h8426jdld1"; + }; + }; + numpydoc = buildPythonPackage rec { name = "numpydoc-${version}"; version = "0.5";